If images fail to upload or process correctly in FW Gallery, the cause is usually a server configuration issue rather than a problem with the extension itself. Work through the common causes below to identify and resolve the issue.
PHP enforces limits on how large an uploaded file can be. If your images exceed these limits, uploads will silently fail or produce an error. Two PHP settings control this:
upload_max_filesizeYou can raise these limits by editing your php.ini file or by adding override directives to your .htaccess file in your site root. Contact your hosting provider if you do not have direct access to these files.
FW Gallery requires a server-side image processing library to resize and handle uploaded images. Either GD or Imagick must be installed and enabled in your PHP environment. If neither is available, image processing will fail after upload.
Check with your hosting provider or system administrator to confirm that GD or Imagick is active. Most managed hosting plans include GD by default, but Imagick may need to be enabled separately.
The folder where FW Gallery stores uploaded images must be writable by the web server. If permissions are too restrictive, the server cannot save the uploaded file to disk.
If a specific image format is being rejected, your server or CMS configuration may be blocking that file type. Review the allowed file types in your site's media or upload settings and ensure the formats you are uploading (such as JPEG, PNG, or WebP) are included on the permitted list.
If you have confirmed all of the above are correctly configured and uploads still fail, gather the PHP error log output and contact Fastw3b support with those details.