Darwin Sadeli wrote:
Hi,
Currently I'm trying to replicate wikipedia contents into a local system for a research project. I've managed to download the whole article database and image dumps, but the image thumbnails are still missing. Are the image thumbnails available for download, and if yes, where can I download it? Thanks.
Make sure you have: $wgUseImageResize = true;
Then make sure you have gd extension in php (thats bundled in and usually activated).
You can also use imagemagick instead of gd: $wgUseImageMagick = true; $wgImageMagickConvertCommand = "/usr/bin/convert";
Note: thumbnails are generated when you view an article.