Problem with vbseo

acidman

New Member
with vbseo turned off he got access to all his forums and with vbseo turned on he got access to most forums except one/some of them?
 

acidman

New Member
try this:
open .htaccess file and remove the # from the beginning of those lines:

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

RewriteBase /forums (removed the # from this line and also change "/" to "/forums")
this is to your root vB folder (i.e. RewriteBase /forums/)
 

draque

New Member
Like this:

php_value memory_limit 64M
# 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\.ro
RewriteRule (.*) http://www.mysite.ro/$1 [L,R=301]

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

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
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]

and don't work.
 

acidman

New Member
nop, like this:

php_value memory_limit 64M
# 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\.ro
RewriteRule (.*) http://www.mysite.ro/$1 [L,R=301]

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

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
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]



and set the root folder for your forum exactly as it is:
for "www.sitename.url/forums" set "RewriteBase /forums"
or "www.sitename.url/forum" set "RewriteBase /forum" and so on...
for "www.sitename.url" just remove the # from the begining of the line "RewriteBase /"
 

draque

New Member
Yes i hve like this "www.sitename.url" and i remove the # from the begining of the line "RewriteBase /" and nothing change.
 

acidman

New Member
also u can try to change this:

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

to:

Code:
RewriteCond %{HTTP_HOST} ^[b]sitename[/b]\.[b]url[/b] [NC]
RewriteRule ^(.*) http://www.[b]sitename.url[/b]/$1 [L,R=301]
sitename.url = site actual url.
 

Grinderhand

New Member
Please try this as a test:

1. With VBSEO turned on, create a new forum. Then make a test post in this new forum.

2. Turn VBSEO off.

3. Make another new forum and make a test post in this forum.

4. Turn VBSEO on.

5. See which of the new forums is working.

Let us know the results.
 

draque

New Member
I have resolved the problem . The real problem was the name of the category "Stiri IT". I think is a bad ward . I renamed the category and now it works.
 

draque

New Member
Thanks.
but how to not apper #post3462 at to the end, like in this picture

poza12.jpg
 
Top