Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Issue with links within BuddyPress


codyb
Participant

@codyb

Yes I do. Basically I wanted my site to be accessible using the address http://www.codyconnect.com/wp so in my /var/www/html I renamed the wordpress-mu to wp

I downloaded buddypress and placed it in /var/www/html/wp/wp-content/plugins/buddypress

Then I moved /var/www/html/wp/wp-content/plugins/buddypress/bp-themes/ to /var/www/html/wp/wp-content/bp-themes/

Its almost like these directories should be created by default when you create a user, but their not. I’m not sure if I’m missing something obvious here or what. Here is my .htaccess file in /var/www/html/wp/

RewriteEngine On

RewriteBase /wp/

#uploaded files

RewriteRule ^(.*/)?files/$ index.php [L]

RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*

RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

# add a trailing slash to /wp-admin

RewriteCond %{REQUEST_URI} ^.*/wp-admin$

RewriteRule ^(.+)$ $1/ [R=301,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]

<IfModule mod_security.c>

<Files async-upload.php>

SecFilterEngine Off

SecFilterScanPOST Off

</Files>

</IfModule>

Skip to toolbar