bobwood
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 404 on all single post pagesI found the answer to my problem on another site. Apparently, IIS still doesn’t like permalinks. To fix this, an edit needs to be made to pluggable.php in the wp-admin folder.
Disable:
‘header(“Refresh: 0;url=$location”);’
and replace it with:
‘header(“Location: $location”, true, $status);’
The end code should look like this:
‘if ( $is_IIS ) {
//header(“Refresh: 0;url=$location”);
header(“Location: $location”, true, $status);
} else {
if ( php_sapi_name() != ‘cgi-fcgi’ )
status_header($status); // This causes problems on IIS and some FastCGI setups
header(“Location: $location”, true, $status);
}’Forum: Fixing WordPress
In reply to: 404 on all single post pagesI should explain some more… I’m having similar issue. In the forums only, when someone tries to reply to a forum, they will receive a 404 error.
When someone creates a new post in the forums, a 404 will briefly appear until the redirect is complete. Again, this is only in the forums. Blog commments work just fine.
Visit http://www.fishwrench.com and use:
user: slopboss
pass: Skeeter1…if you’d like to test.
Here is more information about the php settings at my host: http://stats.violet.arvixe.com/phpinfo.php
Any help would be greatly appreciated.
Forum: Fixing WordPress
In reply to: 404 on all single post pagesNewb question… where is the htaccess file located?