I got Zenphoto installed just fine. The only problem is, my thumbnails aren't showing. I am 99% sure I have everything set correctly. I have done the following:
- cache and albums are both set to 777
- .htaccess file:
RewriteBase /photos
- GD is installed and enabled
I noticed it created a Thumbs.db file in my albums folder, but no thumbnails are showing. My photo gallery is at /var/www/html/photos (My server root is /var/www/html, so my .htaccess should be fine).
What am I doing wrong?
Comments
It seems like the image script is just closing the connection prematurely... I'll have to take a look at it later.
I noticed it's looking for the thumbnail photos in /photos/test/image/thumb (e.g. /photos/test/image/thumb/Flowers005.JPG). There is no image folder in my /photos/albums/test folder. The test folder only contains the photos. Is it supposed to automatically create the image and thumb folders?
Everything is done on the fly and all image data goes through i.php. It caches processed images in the cache folder and just passes them through if they're there.
Since the cache folder is empty, it means the images aren't being processed for some reason.
Try turning off mod_rewrite in the config file and see if you get thumbs. I don't think that'll do it though... I tried going directly to i.php on your server already with no luck.
Try uploading very small images. That's a bug we've been seeing.
It's back up and I tried uploading a small jpeg. The thumbnail showed for the smaller picture, but not the larger ones. What is the max resolution you have found to work with uploaded pics?
Or, is there a setting I can change to allow larger pictures?
It is beta, so this is the kind of thing we're looking for...
Cheers!
yields
Fatal error: Call to undefined function: imagecreatefromjpeg() in /home/vaguelyaware/public_html/gallery/zen/functions.php on line 35
hope it helps.
Thanks
www.richardcastellanos.com/zenphoto/
Any help is appreciated.
I disabled mod_rewrite and everything works great.
This is a great piece of software.
Can't wait for 1.0!
php_value memory_limit 150M
php_value post_max_size 150M
I recently had this problem too. Seems that the newer version of PHP has made some changes to the image create function.
What you need to do is open zen/i.php
--Go to Line 88-
Before line:
imagejpeg($newim, $newfile, $image_quality);
--Add line--
$fp=fopen($newfile,"w");fclose($fp);
Save and re-upload. This should work!
above solutions have not worked
check the absolute path and also check wether Rewritemod is turned on!.you should be alright after that