Insane 404 problem
-
I’m running WP multisite (and an old WPMU blog). I’m using the domain mapping plugin to map blog 2 to a new domain. After moving to a new VPS host (this is one of many WP sites on the VPS, the rest are fine but this is the only multisite), I’m getting random 404 errors on posts (the 404 errors are consistent, the posts that this happens to seem random – some new, some old).
Deactivating plugins doesn’t fix.
Changing themes doesn’t fix.
“ugly” permalinks and number permalinks work – nothing else does.
.htaccess looks ok (see below)
AllowOverride All is in my .httpd.conf
When I rename my .htaccess file, a new one is not generated.
.htaccess permissions are 644
WP 3.5
PHP 5.3I’ve spent hours on this – I’m pretty familiar with WordPress, but this really has me stumped.
Options FollowSymlinks # BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L] # END WordPress #BEGIN Image Upload HTTP Error Fix <IfModule mod_security.c> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule> <IfModule security_module> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule> <IfModule security2_module> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule> #END Image Upload HTTP Error Fix
I did look in the domain mapping setup and blog 2 is checked as primary, I’m not sure if that could be effecting it, temporarily blog 1 is replaced with another site but that never caused problems before and when that site is taken down and replaced with blog 1, it doesn’t fix the issue. Blog 1 has no 404 errors when up.
Thanks for any ideas, this is driving me nuts…
- The topic ‘Insane 404 problem’ is closed to new replies.