Viewing 7 replies - 1 through 7 (of 7 total)
  • I would guess there’s an issue with the .htaccess file. I’ve never installed both vbulletin and WordPress on the same server, but I know I’ve had issues in the past with other services that create a .htaccess file and then trying to install WordPress.

    So my advice would be to copy the .htaccess file, then delete it, and proceed with the WordPress install. Hopefully it will then work, and after that is done, re-upload the .htaccess file. In my experience, that’s always fixed the conflict.

    Thread Starter jimjam

    (@jimjam)

    Thanks, If I delete the htaccess file won’t that make my 500,000 forum posts become unreachable?

    I am very sure that WP installed OK, it sent me the email as well, so its there, but none of the files can be found. Maybe I need to add something to the original htaccess file but I’m just guessing.

    Okay I guess I misread your original question. I thought you were still trying to get it to install. But if it’s already installed, there must be a conflict with your .htaccess file from vbulletin, possibly a rewrite statement that is making your admin not accessible. Without seeing that file, it’s hard to say exactly what you’ll need to do to fix it.

    Thread Starter jimjam

    (@jimjam)

    This is the hataccess that is in the site root
    ________________________________________

    Options +FollowSymLinks
    # Comment the following line (add ‘#’ at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On

    # Some servers require the Rewritebase directive to be
    # enabled (remove ‘#’ at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    RewriteBase /

    #RewriteCond %{HTTP_HOST} !^www\.mysite\.co\.uk
    #RewriteRule (.*) http://www.mysite.co.uk/$1 [L,R=301]

    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    RewriteCond %{QUERY_STRING} !vbseourl=
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|chat|cron)
    RewriteRule ^(.*\.php(/.*)?)$ vbseo.php?vbseourl=$1 [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif)$
    RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1 [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php?vbseourl=$1 [L,QSA]

    Okay nothing I see right off the bat, but I’d still say it’s probably the rewrite rules that are the issue. To see if that is the issue, and solve it if it is, you can stop those rewrites on your WordPress directory.

    This forum post shows the code needed and some instructions. Basically this is what you’ll need to add:

    RewriteRule ^no_rewrite/magazine - [L]

    Add this above the rewrite rules from vbulletin. Make sure to back up your .htaccess file before making changes, in case it messes things up you can revert changes.

    Thread Starter jimjam

    (@jimjam)

    Thanks, that made no difference. 🙁

    It looks like a lot of those rewrite rules are related to the vBSEO plugin for vBulletin. You might try disabling that plugin in your vB install temporarily and see if it’s what’s causing the conflict.

    That will at least tell you whether it’s a WordPress/vB problem or a WordPress/vBSEO problem (and if it turns out to be the plugin, you could try asking at their support site, since they’d know a lot more about what their rewrite rules are doing).

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘New Installation went well then ……’ is closed to new replies.