I installed the phpautogallery a couple of days ago. So far, everything seemed to work fine.
I uploaded some series of photos and the pages with thumbs are generated correctly. however, when I click the thumbs some generate blank pages, some display the correct image. When I click the "previous" thumb and try to go to the desired image via "next >", it doesn't work either.
When checking the directory that contain the images, the images are there (otherwise the thumb could not be generated).
Below you'll find my .htaccess. I first activated the RewriteBase (addition 1). That didn't solve it. Then I added the other RewriteRules (Next additions): I saw that on other posts. That didn't help either.
.htaccess
-------------------------
RewriteEngine on
# Addition 1
RewriteBase /phpautogallery/
I did read almost all posts. Found someone else complaining that nothing had been created in /var/tmp/.... even though the script said so. This was a memory problem. I suffered from the same problem. As I run my own Linux server, I increased the memory_limit in php.ini from the default 8M to 16M. That allowed me to create/generate 800px images. I needed to increase it to 20M to be able to create/generate 1024px images.
Anyway the problem is solved.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I installed the phpautogallery a couple of days ago. So far, everything seemed to work fine.
I uploaded some series of photos and the pages with thumbs are generated correctly. however, when I click the thumbs some generate blank pages, some display the correct image. When I click the "previous" thumb and try to go to the desired image via "next >", it doesn't work either.
When checking the directory that contain the images, the images are there (otherwise the thumb could not be generated).
Below you'll find my .htaccess. I first activated the RewriteBase (addition 1). That didn't solve it. Then I added the other RewriteRules (Next additions): I saw that on other posts. That didn't help either.
.htaccess
-------------------------
RewriteEngine on
# Addition 1
RewriteBase /phpautogallery/
# Next additions
RewriteRule .*__phpAutoGallery__picLoader/.* __phpAutoGallery/loader/picloader.
RewriteRule .*__phpAutoGallery__picLoaderTmp/.* __phpAutoGallery/loader/picload
RewriteRule .*__phpAutoGallery__cssLoader/.* __phpAutoGallery/loader/cssloader.
RewriteRule .*__phpAutoGallery__videoLoader/.* __phpAutoGallery/loader/videoloa
RewriteCond %{REQUEST_URI} !.*__phpAutoGallery/wrapper\.php.*
RewriteRule .* /phpautogallery/__phpAutoGallery/wrapper.php [NE,QSA,L]
----------------
The error is reproducable. An image is always displayed or it is never displayed.
By the way: I'm not running a safe-enabled server.
Any help is appreciated. If you want to have a look:
www.harryvanderwolf.dyndns.org/phpautogallery
Me again: problem solved.
I did read almost all posts. Found someone else complaining that nothing had been created in /var/tmp/.... even though the script said so. This was a memory problem. I suffered from the same problem. As I run my own Linux server, I increased the memory_limit in php.ini from the default 8M to 16M. That allowed me to create/generate 800px images. I needed to increase it to 20M to be able to create/generate 1024px images.
Anyway the problem is solved.