Pagination problem
-
Hi,
Well I have worked through so many issues over the past week and a half. I went from having my WordPress MultiSite blogging network on a shared HostGator server to HostGator’s VPS server. After they transferred my site NOTHING worked. Pages were loading almost never. My busiest site went from 3000 unique visitors a day to 50 due to never loading pages. They couldn’t or wouldn’t help me fix whatever the issue was. So, after researching their 45 day refund policy I up and moved everything over to a new Shared Server GoDaddy account. They told me what I had would work on their shared server due to a different setup. I was told to install through their WordPress app because then they could offer me more support for it since it was their install. Well support was helpful throughout my 28 calls in 3 days, but still the site was not setup properly. For some reason the software wasn’t working well with the database even after changing everything that should have fixed it.
That is when I decided to go rogue and do my install since their support wasn’t all that good, and with every third person telling me they offer no help for WordPress (their install or mine).
I went and installed WordPress MU 3.0. My thought process was that my site was originally an MU site, so the structure would be there and then I could upgrade to WP Multisite 3.0.1 . Well, using my own knowledge of working through many problems I got it all set up correctly. Well mostly!
Today I had an issue with no one being able to comment…after removing the Antispam code from the htaccess file people can comment again.
It seems the only problem I have left is pagination in many places. Here is an example of what I am talking about.
https://extraordinaryintelligence.com/index.php?s=newsScroll to the bottom and click Next Page. I have a feeling the problem is somewhere in my htaccess file. I am attaching the code from that file below. Also, any time I change permalinks nothing happens to the htaccess file.
Thanks for any help,
Gene# BEGIN WPSuperCache <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / AddDefaultCharset UTF-8 RewriteCond %{REQUEST_URI} !^.*[^/]$ RewriteCond %{REQUEST_URI} !^.*//.*$ RewriteCond %{REQUEST_METHOD} !POST RewriteCond %{QUERY_STRING} !.*=.* RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$ RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\"]+ [NC] RewriteCond %{HTTP:Profile} !^[a-z0-9\"]+ [NC] RewriteCond %{HTTP:Accept-Encoding} gzip RewriteCond %{DOCUMENT_ROOT}/home/content/b/l/o/blogamerica/html/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f RewriteRule ^(.*) "/home/content/b/l/o/blogamerica/html/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz" [L] RewriteCond %{REQUEST_URI} !^.*[^/]$ RewriteCond %{REQUEST_URI} !^.*//.*$ RewriteCond %{REQUEST_METHOD} !POST RewriteCond %{QUERY_STRING} !.*=.* RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$ RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\"]+ [NC] RewriteCond %{HTTP:Profile} !^[a-z0-9\"]+ [NC] RewriteCond %{DOCUMENT_ROOT}/home/content/b/l/o/blogamerica/html/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f RewriteRule ^(.*) "/home/content/b/l/o/blogamerica/html/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html" [L] </IfModule> # END WPSuperCache RewriteEngine On RewriteBase / #uploaded files #RewriteRule ^(.*/)?files/$ index.php [L] #RewriteCond %{REQUEST_URI} !.*wp-content/plugins.* RewriteRule ^(.*/)?files/(.*) wp-content/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteCond %{REQUEST_URI} ^.*/wp-admin$ RewriteRule ^(.+)$ $1/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule . - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] <IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
- The topic ‘Pagination problem’ is closed to new replies.