vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
New vBSEO Discount Level for Network Builders Meet vBSEO Team in New York (Nov. 3rd & 4th) vBSEO 3.2.0 GOLD Has Landed Success with vBSEO = 600ore Web Visitors + $1400 in a Day! Crawlability Inc. Files for SEO Technology Patent
se sw

Invalid Forum specified. msg!

This is a discussion on Invalid Forum specified. msg! within the Troubleshooting forums, part of the vBSEO Google/Yahoo Sitemap category; Hey there, http://www.joubonjala.com/forum/vbseo_sitemap/ I just followed the instruction, and didn't change any default options. But still got this msg.. Invalid ...

Go Back   vBulletin SEO Forums > vBSEO Google/Yahoo Sitemap > Troubleshooting

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read
  #1  
Old 08-30-2008, 02:49 AM
Junior Member
 
Real Name: Forum Lover
Join Date: Dec 2007
Posts: 6
Invalid Forum specified. msg!

Hey there,

http://www.joubonjala.com/forum/vbseo_sitemap/

I just followed the instruction, and didn't change any default options. But still got this msg..

Invalid Forum specified. If you followed a valid link, please notify the administrator

What wrong did I make?

Thanks in advance.
Attached Thumbnails
1.jpg  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 08-30-2008, 03:08 AM
briansol's Avatar
Senior Member
vBSEO Pre-Release TeamDesign for SEOBig Board Administrator
 
Real Name: Brian
Join Date: Apr 2006
Location: Central CT, USA
Posts: 5,473
add vbseo_sitemap to the htaccess file exclusions

(find the 2 instances of admicp (one is just admincp, the other is admincp/ (with the folder notation) and add vbseo_sitemap in the same manner using the | ("or" seperator))
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 08-30-2008, 03:41 AM
Junior Member
 
Real Name: Forum Lover
Join Date: Dec 2007
Posts: 6
Still I did not get you, mate. Newbie is here. :(
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 08-30-2008, 05:42 AM
briansol's Avatar
Senior Member
vBSEO Pre-Release TeamDesign for SEOBig Board Administrator
 
Real Name: Brian
Join Date: Apr 2006
Location: Central CT, USA
Posts: 5,473
open htaccess file

the bottom half looks like this:

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

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|gallery/|useralbums/)
RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images|useralbums)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
you want to add vbseo_sitemap like:

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

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|gallery/|useralbums/|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|useralbums|vbseo_sitemap)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]


Note: you may not have gallery or useralbums in yours.. i added those for my custom areas.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 08-30-2008, 07:12 AM
Junior Member
 
Real Name: Forum Lover
Join Date: Dec 2007
Posts: 6
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)
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]

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

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|gallery/|useralbums/|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|useralbums|vbseo_sitemap)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
So, here is my total .htaccess file. briansol, still no luck. :(
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 08-30-2008, 04:51 PM
briansol's Avatar
Senior Member
vBSEO Pre-Release TeamDesign for SEOBig Board Administrator
 
Real Name: Brian
Join Date: Apr 2006
Location: Central CT, USA
Posts: 5,473
no no... don't duplicate it... just add the bold stuff from my post above.


replace your entire file with this:


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|vbseo_sitemap)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 08-30-2008, 08:15 PM
Junior Member
 
Real Name: Forum Lover
Join Date: Dec 2007
Posts: 6
briansol... don't know why! but still no result. Got any other option? :(
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 08-31-2008, 03:46 AM
briansol's Avatar
Senior Member
vBSEO Pre-Release TeamDesign for SEOBig Board Administrator
 
Real Name: Brian
Join Date: Apr 2006
Location: Central CT, USA
Posts: 5,473
it's working now, htaccess wise.

the problem you are having

Code:
Parse error:  syntax error, unexpected $end in /home/joubonja/public_html/forum/includes/config.php on line 1
 
is a php error from vbulletin, not vbseo.

You must've entered something weird in your vb config file.

it is probably just a typo.

unexpected ends are usually a double-case of ?> closing php marks,
like

Code:
<?php
some code
code co
d
e
?>
?>
or an unfinsihed loop

like

Code:
<?php

while ($x) {
do stuff

?>
as in not closing the loop with }

but, the vb config file doesn't have any loops... so that's probably not the case.

make sure every line that isn't a multiple line statement ends in a semi colon ;
and that theres only one openr and closer tag.

if you don't know a line of php, your best option is to make a back up of your current file, and then re-upload the includes/config.php file form the distribution from vbulletin download. then re-enter your database info, etc into the config file.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 08-31-2008, 11:09 AM
Junior Member
 
Real Name: Forum Lover
Join Date: Dec 2007
Posts: 6
No, I was working on that time.. I site was off. Now its on again with same old that ugly msg in /forum/vbseo_sitemap/

Can you please check now?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 09-01-2008, 09:10 AM
Junior Member
 
Real Name: Forum Lover
Join Date: Dec 2007
Posts: 6
update... Its ok now. Thanks to briansol and Oleg Ignatiuk
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Invalid Thread Specified and Invalid Forum Specified Future Troubleshooting 1 08-08-2008 12:12 PM
Invalid Forum Specified Dumi Troubleshooting 3 09-10-2007 05:50 PM
Zoints Tag URL leads to invalid forum specified 6piston Troubleshooting 4 04-13-2007 06:46 AM


All times are GMT -4. The time now is 04:15 PM.


Powered by vBulletin Version 3.8.0 Beta 3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.