Too many Redirects in Chrome, 404 in FF when trying to accees group ater Update
- 
		Hi, when I try to open a group, I get a message “Too many redirects” in chrome. There are some slashes appended to the group url. `..-members/////////////////////`. I already deactivated all plugins and switched to another theme. The issue persists. This is my .htaccess: `RewriteEngine On 
 RewriteBase /#uploaded files 
 RewriteRule ^(.*/)?files/$ index.php [L]
 RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
 RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [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]# BEGIN WordPress RewriteEngine On 
 RewriteBase /
 RewriteRule ^index.php$ – [L]
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule . /index.php [L]# END WordPress` BP and WP are up 2 date. Any help is welcome. This is my bp-custom.php: `function redirect_to_forum() { 
 global $bp;$path = clean_url( $_SERVER ); $path = apply_filters( ‘bp_uri’, $path ); if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false ) 
 bp_core_redirect( $path . $bp->bp_options_nav . ‘/’ );
 }
 add_action( ‘wp’, ‘redirect_to_forum’ );if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) ) 
 define( ‘BP_AVATAR_THUMB_WIDTH’, 35 ); //change this with your desired thumb widthif ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) ) 
 define( ‘BP_AVATAR_THUMB_HEIGHT’, 35 ); //change this with your desired thumb heightif ( !defined( ‘BP_AVATAR_FULL_WIDTH’ ) ) 
 define( ‘BP_AVATAR_FULL_WIDTH’, 260 ); //change this with your desired full size,weel I changed it to 260 <img src="http://buddydev.com/wp-includes/images/smilies/icon_smile.gif" alt=" ” class=”wp-smiley”> ” class=”wp-smiley”>if ( !defined( ‘BP_AVATAR_FULL_HEIGHT’ ) ) 
 define( ‘BP_AVATAR_FULL_HEIGHT’, 260 ); //change this to default height for full avatar`And this my pl structure: `/%year%/%monthnum%/%day%/%postname%/` I did not change any core files. 
- The topic ‘Too many Redirects in Chrome, 404 in FF when trying to accees group ater Update’ is closed to new replies.