Status
Not open for further replies.

Raven

Active Member
587
2009
28
0
Hello ,

My forum : www.warez-4ever.org

I have host from scopehosts and today sever down for maintainance.

And after server up again my vbseo not work .

I try to acces one category (for example "Games") and say "404 - Not Found"

If dezactive vbseo forum work normaly.

vbulletin version : 3.8.4
vBSEO 3.3.0 version : 3.3.0

Thanks. :)
 
19 comments
Hmmm, try doing this it might work, who knows.
Go to your site, AdminCP > vBSEO > See the URL Convert method, try to change that to another format of thread links.
 
hey upload htaccess file again and overwrite again and ur problem will solve

if this not happen then ur server provider off any kind of option from server so contact with service provider
 
htaccess :

Code:
# 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\.yourdomain\.com

#RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301]



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



RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)

RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]



RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/

RewriteRule ^(.+)$ vbseo.php [L,QSA]

what is wrong?
 
your server is using lighttpd 1.4.26

so ask your host to put lighttpd rewrites in config

you can't use .htaccess with lighttpd
 
here are some steps to help you

take backup of vbseo config
remove vbseo completely (file and product)
get latest vbseo (3.5.1 PL1 right now)
Install it (upload files and install product)
contact your host and tell them to add these lines (edit as your needs) in lighttpd.conf and restart it

$HTTP["host"] == "yourdomain.com" {
server.document-root = "/path/to/your/public_html/"
url.rewrite-once = (
"^/forums/(sitemap.*\.(xml|txt)(\.gz)?)$" => "/forums/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1",
"^(/forums/(admincp|modcp|clientscript|cpstyles|images|customavatars)/.*)$" => "$1",
"^(/favicon\.ico|/robots\.txt|.*clear\.gif)$" => "$1",
"^/forums/(.+)\?(.*)$" => "/forums/vbseo.php?$2",
"^/forums/(.+)$" => "/forums/vbseo.php"
)
}

and your vbseo problem will be solved :)

if your host decline to add these then get a VPS or ask them to move you to any apache server
 
did you do what warez told you to?

you have to edit the settings so it fits your forum not just copy and paste his code


it also maybe your host,
 
@ WaReZ not working man ! :|

how can you expect someone to help you when you are just replying "not working"

provide a better response with

what you did
what was the result
you missed something or didn't understand something?

Which control panel you are using
cpanel or kloxo

if kloxo then you can add rewrite rules yourself
 
Status
Not open for further replies.
Back
Top