I'm trying to do it on the album pages of my background websites. The album pages are pretty much outside of zenphoto, as far as the images displaying goes anyway. So that means that I can append the query string of that page easily, so I just want to have little dropdowns where users can order the results and filter them by resolution (exactly the same as here http://www.dualmonitorbackgrounds.com/themes/dmb/search.php )
I'm pretty sure it's working, yeah. Because I wrote the code and it didn't work so I turned off mod_rewrite in the config file and it worked perfectly.
Pretty sure I'm doing it right, I've hardly modified htaccess. Here is my htaccess in case I have screwed something up:
`ErrorDocument 404 /error404.php
RewriteCond %{HTTP_HOST} ^triplemonitorbackgrounds.com
RewriteRule ^(.*)$ http://www.triplemonitorbackgrounds.com/$1 [R=permanent,L]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^admin/?$ zen/admin.php [R,L]
RewriteCond %{REQUEST_FILENAME} -f [NC,OR]
RewriteCond %{REQUEST_FILENAME} -d [NC]
RewriteRule ^.*$ - [R,L]
RewriteRule index.php$ index.php [L,QSA]
RewriteRule ^page/([0-9]+)/?$ index.php?page=$1 [L,QSA]
RewriteRule ^page/([A-Za-z0-9-_]+)/?$ index.php?p=$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/([^/\]+)$ zen/i.php?a=$1&i=$2 [L,QSA]
# Catch-all - everything else gets handled in PHP for compatibility.
RewriteRule ^(.*)/?$ index.php?album=$1 [L,QSA]
</IfModule>`
Thanks for your help