@cce
14 years, 7 months ago
Try the solution at the end of this thread:
https://buddypress.org/forums/topic/friendly-http-error-messages-causes-404
14 years, 8 months ago
If you are still getting errors even after URL rewriting is set up, try the solution in this thread:
If I understand correctly, there is code in pluggable.php that fixes an issue with IIS5 but it breaks newer versions. Disabling
header(“Refresh: 0;url=$location”);
and replacing it with
header(“Location: $location”, true, $status);
fixes the problem as below:
if ( $is_IIS ) {
//header(“Refresh: 0;url=$location”);
} else {
if ( php_sapi_name() != ‘cgi-fcgi’ )
status_header($status); // This causes problems on IIS and some FastCGI setups
}
It looks like there is specific code in wordpress since 2.7 to address this, but it isn’t working for some reason.
http://lists.automattic.com/pipermail/wpmu-trac/2009-February/002772.html
This thread is similar:
https://buddypress.org/forums/topic/404-page-when-trying-to-create-a-group-forum
bump
15 years, 6 months ago