![]() |
|
No Thumbnails & Images display - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: No Thumbnails & Images display (/thread-3229.html) |
No Thumbnails & Images display - branza - 04-07-2008 Howdy, As you can see the thumbnails & images aren't being displayed... i CHMODed the cache & albums folders correctly... thank you for your help .htaccess: htaccess file version 1.1.6.0Update the above and the define in setup.php when you make changes to the rewrite rules!NOTE: Change the RewriteBase below to the absolute path to your zenphoto directory. (Or let setup.php do it for you!)RewriteEngine On !!! Change this to the web path (eg: http://www.yourwebsite.com/photos --> /photos) !!!RewriteBase / RewriteRule ^admin/?$ zp-core/admin.php [R,L] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteRule index.php$ index.php [L,QSA] Rewrite rule addtion for searchRewriteRule ^page/([A-Za-z0-9-]+)/fields([0-9]+)/(.*)/([0-9]+)/?$ index.php?p=$1&searchfields=$2&words=$3&page=$4 [L,QSA] RewriteRule ^(.*)/image/(thumb|[0-9]{1,4})/([^/\]+)$ zp-core/i.php?a=$1&i=$3&s=$2 [L,QSA] Catch-all - everything else gets handled in PHP for compatibility.RewriteRule ^(.)/?$ index.php?album=$1 [L,QSA] No Thumbnails & Images display - sbillard - 04-07-2008 Check the size of your images. On servers which limit the memory for PHP scripts large images cannot be processed. No Thumbnails & Images display - branza - 05-07-2008 10x sbillard if i remove the .htaccess file everything works except the rewrite rule. No Thumbnails & Images display - sbillard - 05-07-2008 Well, that line is needed for processing the resizing of images. I am not sure how things worked without it (unless the thumbnails were already cached.) Sounds like mod_rewrite does not work on your site. No Thumbnails & Images display - benberg - 27-11-2008 Well same problem install went ok, but no thumbs and no pictures. And i got some problems in uploading, but i use FTP for uploading test pictures. more info 'bout server -> http://users.utu.fi/benberg/phpinfo.php yours No Thumbnails & Images display - acrylian - 27-11-2008 The error image indicates that the gd lib is probably not installed or working correctly although your phpinfo says it is. I suggest to contact your ISP about that. |