![]() |
|
Missing /albums/ - 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: Missing /albums/ (/thread-541.html) |
Missing /albums/ - PsyDuck - 2006-06-01 Hi! Just installed zenphoto 1.0.3 and all went well except for a small glitch.....I can't see the photos? I get this error in the apache error_log: the folder maja is located under "/srv/www/htdocs/zenphoto/albums/maja" Any ideas? Missing /albums/ - PsyDuck - 2006-06-01 Just discovered that rewrite wasn't enabled on my server! Still didn't work with rewrite after I enabled it though. :-( Missing /albums/ - Chilifrei64 - 2006-06-01 do you have a link to the gallery so we can better troubleshoot the problem? Missing /albums/ - PsyDuck - 2006-06-02 Here's the link http://claesson.homeip.net/zenphoto/ Works great with rewrite turned off. Missing /albums/ - PsyDuck - 2006-06-02 Finally found the error!! Had to change the apache configuration. Missing /albums/ - FatalCure - 2006-06-02 PsyDuck - Can you explain how, I have the same problem - .htaccess looks setup correctly LoadModule rewrite_module modules/mod_rewrite.so in \xampp\apache\conf\httpd.conf has the # removed. Gallery works fine if modrewrite is set to false but when set to true no images display, however with the stopdesign theme if I view it the gallery with rewrite off and the images get cached then when I turn it on they display, but links to albums don't. Thanks in advaced. Dave. Missing /albums/ - PsyDuck - 2006-06-02 As far as I understood it you have to enable symlinks for the Directory in order to get mod_rewrite to work Missing /albums/ - FatalCure - 2006-06-02 Hmm seems to half work.. Added: Options Indexes FollowSymLinks Now, http://www.fatalcure.org/photos/ comes up with: Zenphoto error: Album does not exist. However, links to my galleries now work, ie http://www.fatalcure.org/photos/rave Any ideas? Missing /albums/ - FatalCure - 2006-06-03 I'm also getting this in the error logs: [Sat Jun 03 08:05:24 2006] [warn] RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored. [Sat Jun 03 08:05:24 2006] [warn] RewriteCond: NoCase option for non-regex pattern '-d' is not supported and will be ignored. Missing /albums/ - FatalCure - 2006-06-03 Ok, just realised that http://www.fatalcure.org/photos/index.php actually works, but /photos comes up with that Missing /albums/ - FatalCure - 2006-06-03 Ok, something else that might help, damn I am making alot of posts in this thread, previous version still works but since the upgrade it comes up with the error I mentioned above, I might just stick with the previous version for now. Missing /albums/ - trisweb - 2006-06-03 Or turn off mod_rewrite -- it seems like your mod_rewrite version may be bad because of those log errors. Missing /albums/ - FatalCure - 2006-06-04 Can I upgrade the mod_rewrite modules from somewhere? Missing /albums/ - PsyDuck - 2006-06-04 What version of apache are you running? Missing /albums/ - FatalCure - 2006-06-04 Apache 2.2.0 Missing /albums/ - pipedarkfire - 2006-06-22 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 new fix for index.php passed as a paramRewriteRule index.php$ index.php [L,QSA] put above this lineRewriteRule ^([^/]+)/?$ 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. Missing /albums/ - FatalCure - 2006-06-22 Yep, that fix worked for me too, thanks for the email Alex. Missing /albums/ - unmake - 2006-09-21 thanks [b]pipedarkfire[/b] - fixed my install. |