If images fail to upload to property galleries in FW Real Estate, the cause is almost always a server-side PHP or filesystem configuration issue — not the component itself. Work through the checks below to identify and resolve the problem.
PHP enforces two separate size limits that both affect uploads. If either is too low, uploads will silently fail or return an error.
upload_max_filesize. Set this to at least 64M.Update these values in your php.ini file, or via a .htaccess or php.ini override in your Joomla root if your host allows it:
upload_max_filesize = 32M post_max_size = 64M
After making changes, restart your web server and verify the new values are active by checking Joomla's System Information page (System → System Information → PHP Information).
When FW Real Estate resizes an uploaded image, PHP loads the full image into memory. Large images or a low memory ceiling will cause the process to fail, often with a blank screen or a 500 error.
memory_limit = 256M
FW Real Estate uses PHP's GD library to resize images on upload (when Image Size Mode is set to Custom in Settings → General → Image Sizes). If GD is not installed, resizing will fail.
gd in the page.php-gd extension.
Joomla stores uploaded files in the images/ directory (and subdirectories created by FW Real Estate within it). If the web server process cannot write to this folder, uploads will fail.
images/ folder and all subdirectories used by FW Real Estate must be writable by the web server user.images/ directory.After correcting any of these settings, retry the upload from the property's Gallery tab. If uploads succeed but existing images are the wrong size, use the Resize Images button in Settings → General → Image Sizes to reprocess them.
