Unable to display members profiles
-
Hi there,
Here is the context for my issues, I’m merging two wordpress installation :
installation 1 : wordpress 2.9 single user with buddypress 1.2.5.2 installed
Installation 2 : wordpress 3.0 multisite enabledexpected result : wordpress 3.0 + buddypress 1.2.5.2 + users merged from install 1 and install 2 (+ all datas recovered : activity, messages, friends…)
I merged successfully the users (changing every single id in every single tables of the DB with a script of mine).
I merged the users’ data (activity, messages, friends… etc… with a script of mine too).Everything’s runing fine
But, because there is BUT : I’m unable to access to the members profile page.Let’s say i’m working on http://test.mydomain.com/wordpress
http://test.mydomain.com/wordpress => main wordpress blog
http://test.mydomain.com/wordpress/buddypress => side blog with buddypress running (using define( ‘BP_ROOT_BLOG’, 3); in wp_config)So if I go to :
http://test.mydomain.com/wordpress => everything’s ok, the blog is displayed.
http://test.mydomain.com/wordpress/buddypress/groups => everything’s fine, groups are displayed
http://test.mydomain.com/wordpress/buddypress/groups/a-dummy-group/ => everything’s fine
http://test.mydomain.com/wordpress/buddypress/members => everything’s fine, I got the members list
…
http://test.mydomain.com/wordpress/buddypress/members/admin/ => FAIL : the member list is displayed.
http://test.mydomain.com/wordpress/buddypress/members/admin/groups => FAIL : same as above.
http://test.mydomain.com/wordpress/buddypress/members/othermember/ => and so on…Here is the content of my wp-config :
`define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/wordpress/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘test.mydomain.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/wordpress/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );
define( ‘BP_ROOT_BLOG’, 3);`Here is the content of my bp-custom.php :
`define( ‘BP_DEFAULT_COMPONENT’, ‘profile’ );
define( ‘BP_ENABLE_USERNAME_COMPATIBILITY_MODE’, true );
define ( ‘BP_IGNORE_DEPRECATED’, true );`EDIT :
I’m using the default buddypress themeHere is my .htaccess :
`RewriteEngine On
RewriteBase /wordpress/
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]`It has been severals hours I’m looking for a solution on google…
Thanks !
-
Hmm, I’ll test this tomorrow.
Thanks !
Up ?
- The topic ‘Unable to display members profiles’ is closed to new replies.