I have a website with Wordpress installed on a CentOS server. The installation is running fine except that Wordpress isn't generating thumbnails from uploaded images. Please help me resolve the issue.
I have a website with Wordpress installed on a CentOS server. The installation is running fine except that Wordpress isn't generating thumbnails from uploaded images. Please help me resolve the issue.
Wordpress, by default, generates thumbnails using the GD library ofPHP. Please check your PHP installation for GD support. If php-gd is not installed, then install it:
After installing it, just run the following command to check whether the support is installed or not:Code:#yum install php-gd
The output list should include 'gd' in it. This should resolve the thumbnail issue with Wordpress.Code:#php -m
Bookmarks