I had the same error
Zenphoto error: Album does not exist.
using xampp and noticed that the url was being rewritten to
Quote:index.php?album=index.php
which is probably a configuration problem somewhere and the quick fix for me was to just do this:
`
# new fix for index.php passed as a param
RewriteRule index\.php$ index.php [L,QSA]
# put above this line
RewriteRule ^([^/]+)/?$ index.php?album=$1 [L,QSA]
`
If anyone knows where the root problem of this might be I would appreciate it but for now I hope this helps others. I imagine it's one of the settings from the httpd.conf.