Message Text |
Hi Paul, Since the update the below code doesnt work for additional pages in my categories anymore.
<IF {MULTIPAGE}>
<br>Page: {PREVIOUS} <b>[{CURRENTPAGE}]</b> {NEXT}
</IF>
I changed it to {PAGINATION} but when i click on the additional pages it brings me back to the original category page and not the next one. The number of multipages are correct execpt they all link back to the main category only. If i enter the next category page manually in the web address it will show up with the proper page and links. I have included one of my site links in the example url for you to look at.
My map.xml is also messed up and is just generating the same category page over and over again, i guess it is feeding off the same multipages problem that's being regenerated for my categories.
My search page and album page pagination is working fine when i switched to {PAGINATION}
Below is my .htaccess if that may be the issue :
RewriteEngine on
# If not working, uncomment and correctly fill the line below:
# RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^(.+[^/])$ $1/ [R]
RewriteRule ^games/([a-z]+)/([0-9]+)$ link.php?action=$1&id=$2 RewriteRule ^games/([a-z]+)/([0-9]+)/$ link.php?action=$1&id=$2 RewriteRule ^games/([0-9]+)$ link.php?id=$1 RewriteRule ^games/([0-9]+)/$ link.php?id=$1
RewriteRule ^thread/([0-9]+)$ comments.php?id=$1 RewriteRule ^thread/([0-9]+)/$ comments.php?id=$1 RewriteRule ^thread/([0-9]+)/([0-9]+)$ comments.php?id=$1&page=$2 RewriteRule ^thread/([0-9]+)/([0-9]+)/$ comments.php?id=$1&page=$2
RewriteRule ^([0-9]+)$ index.php?action=displaycat&catid=$1 RewriteRule ^([0-9]+)/$ index.php?action=displaycat&catid=$1 RewriteRule ^([0-9]+)/([0-9]+)$ index.php?action=displaycat&catid=$1&page=$2 RewriteRule ^([0-9]+)/([0-9]+)/$ index.php?action=displaycat&catid=$1&page=$2
RewriteRule ^([-_/\+A-Za-z0-9]+)$ index.php?action=displaycat&catname=$1
ErrorDocument 404 /404.php
<Files php.ini>
order allow,deny
deny from all
</Files>
Let me know if you need anymore info. Ill try to leave my site as is for now so you can look at it. Really dont want to uninstall everything to go back down to version 4.0.39. I totally forgot to back up my database before the upgrade
Thanks, Fuee |