Skip to:
Content
Pages
Categories
Search
Top
Bottom

Still trying to get BP1.9 working


  • dharmen99
    Participant

    @dharmen99

    I have just reinstalled BP 1.9 in the hope that it would change the situation i have with ‘page not found’ errors for all the main navigation links. I believe i did this correctly, deactivating plugins, then BuddyPress itself, uploading manually and then reactivating, I resaved my numeric permalink settings. No change, ‘page not found’ messages on all none static pages. I read the following in the BP codex on 404 errors ‘…The mod_rewrite must be enabled on your server for pretty permalinks to work’. Presumably, as everything worked before the upgrade, the mod_rewrite is still on but how can I check that? I have been to the wp-config file and turned on wp-debug and I got a pretty long list and nothing that I could really understand, probably too long to post here but i can make it available if needed. i do not know what to try next! Will someone please help?

Viewing 3 replies - 1 through 3 (of 3 total)

  • aces
    Participant

    @aces

    Look in your .htaccess file in your main directory (where wpconfig.php is) for the appropriate block… something like:
    `
    # BEGIN WordPress

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]

    # END WordPress
    `


    aces
    Participant

    @aces

    i meant `wp-config.php`


    dharmen99
    Participant

    @dharmen99

    I have:

    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /now/
    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).*) $1 [L]
    RewriteRule ^[_0-9a-zA-Z-]+/(.*.php)$ $1 [L]
    RewriteRule . index.php [L]

    # END WordPress

    Presume that means its on?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Still trying to get BP1.9 working’ is closed to new replies.
Skip to toolbar