Ok, seem to have a similar problem to a lot of people here, my host (mosso.com) is v. strange about server paths so it may be particular to my host but here goes..
Here are the steps i've taken so far..
Installed the package to mydomain.com/zp/
Setup the db
Edited the config file as below
Went to mydomain.com/zp/setup.php
and got the dreaded no albums dir cant be found
PS. The package did not include an albums directory am i supposed to create it myself?
Any help greatly appreciated!
Here's my config files:
zp-config.php
.htaccess
RewriteEngine On
RewriteBase /zp/
RewriteCond %{REQUEST_FILENAME} -f [NC,OR]
RewriteCond %{REQUEST_FILENAME} -d [NC]
RewriteRule ^.*$ - [R,L]
RewriteRule ^admin/?$ zen/admin.php [R,L]
RewriteRule ^page/([0-9]+)/?$ index.php?page=$1 [L,QSA]
RewriteRule ^([^/]+)/?$ index.php?album=$1 [L,QSA]
RewriteRule ^([^/]+)/page/([0-9]+)/?$ index.php?album=$1&page=$2 [L,QSA]
RewriteRule ^([^/]+)/image/(thumb|[0-9]{1,4})/([^/\]+)$ zen/i.php?a=$1&i=$3&s=$2 [L,QSA]
RewriteRule ^([^/]+)/image/([^/\]+)$ albums/$1/$2 [L]
RewriteRule ^([^/]+)/([^/\]+)$ index.php?album=$1&image=$2 [L,QSA]
[/list]
[/list]
[/b][/i]
Mine had an albums dir... it would be in your zp folder - did you ensure that your ftp software uploaded everything? sometimes mine disconnects and i have to go over again.
Perhaps it's there and you haven't set it writeable (chmod 777) yet? This needs to be done for both the albums and cache folders.
Also regarding your setup url... Don't forget, if your gallery is in zp your setup will be domain-name.com/zp/zen/setup.php
You may not need to use the RewriteBase, I suggest trying to get it working without first.
Hope something there helps
x