Browse Bug? HELP!
OK, I installed a FREE copy and I have an issue with the Browse Categories For some reason the link just goes back to the index page.
Could someone please check this out and let me know what the problem is?
Here is the link http://www.bonsailibrary.com
I have installed the htaccess in the root directory as directed.
<---
php_flag magic_quotes_gpc Off
DirectoryIndex index.php
RewriteEngine On
RewriteRule ^browse/(.*/)?index([0-9]*).htm browse.php?category_path=$1&page=$2 [QSA,L]
# View Article rewrite rule
RewriteRule ^articles/([^/]+)-([0-9]*)(/([0-9]*))?.htm view-article.php?id=$2&page=$4 [QSA,L]
RewriteRule ^articles/(.+)/(.*)-([0-9]*)(/([0-9]*))?.htm view-article.php?cat=$1&id=$3&page=$5 [QSA,L]
RewriteRule ^members/([a-zA-Z0-9_]+)(-([0-9])+)?.htm$ view-account.php?username=$1&page=$3 [QSA,L]
RewriteRule ^members/index([0-9]*).html$ members-list.php?page=$1 [QSA,L]
# Static custom pages
RewriteRule ^([a-zA-Z0-9_\-]+)\.html$ pages.php?page=$1
--->
|