WP 3.0.4 Multisite Breaks BP Forum
-
I have recently uprgraded to WP 3.0.4 and BP 1.2.7. My PHP version is 5.2.17
When I enable multisite, the BP forum as well as other forms in BP results in white screen when submitted. For example, Go to Group -> Forum -> Post New Topic -> Submit -> page refreshes with blank white screen. BP/Multisite were working just fine running WP 3.0.
If I disable multisite, these forms submit correctly. I’m looking for the issue somehow involving the htaccess file. It seems that the form action is not recognized with multisite enabled.
Here is my multisite enabled htaccess (standard rules created when network is set up)
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]Here is my multisite config (from wp-config)
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘istelearning.org’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );Any help greatly appreciated.
- The topic ‘WP 3.0.4 Multisite Breaks BP Forum’ is closed to new replies.