vBSEO settings are handled via vBSEO Control Panel ( vbseocp.php ). However there are some settings that needs to be updated via config_vbseo.php file.You can find the hidden options that you can use with vBSEO below.
These are the configuration options for avatar , attachment and iconimages inside urls. You can change them according to your needs.PHP Code:define('VBSEO_AVATAR_PREFIX', 'avatars/');
define('VBSEO_ATTACHMENTS_PREFIX', 'attachments/');
define('VBSEO_ICON_PREFIX', 'iconimages/');
This will allow you to define the uncategorized blog entries main category name.PHP Code:define('VBSEO_BLOG_CAT_UNDEF', 'uncategorized');
Will allow you to define custom character replacements inside url. It is widely used by international languaged forums.PHP Code:// ****** CUSTOM CHARACTER REPLACEMENTS ******
// The following array enables you to select a replacement for characters other than the ones replaced
// by default.
$vbseo_custom_char_replacement = array();
Some Options Below are in Beta Stages.
Allows you to define your full forum path. example usage :PHP Code:define('VBSEO_CUSTOM_DOCROOT', '');
PHP Code:define('VBSEO_CUSTOM_DOCROOT', '/my/forum/path');
Allows you to hide vBSEO version info inside vBSEO CopyrightPHP Code:define('VBSEO_NOVER_INFO', 0);
Allow you to enable mutliple page gars thread support. When this option is enabled inside thread url rewrite option you can see a new rewrite option for Gars pages.PHP Code:define('VBSEO_ENABLE_GARS', 0);
If your forum uses UTF8 language format , this options allows you to enable UTF8 support.PHP Code:define('VBSEO_UTF8_SUPPORT', 0);
This option allows you to enable Last Modified Header supportPHP Code:define('VBSEO_LASTMOD_HEADER', 0);
If your vBulletin is using a different extension you need to change this setting to match your extensionPHP Code:define('VBSEO_VB_EXT', 'php');
If you renamed vbulletin config.php for security reasons you need to update this setting to match your new config.php namePHP Code:define('VBSEO_VB_CONFIG', 'config.php');
This option replace default "+" space character with "-" and also activates character replacement optionPHP Code:define('VBSEO_URL_TAGS_FILTER', 0);
If you have mode then 1 vbseo instance on your server and you use cache support you need to define a different cache variable for each of your vbseo installation.PHP Code:define('VBSEO_CACHE_VAR', 'vbseo_storage');
Allows you to define autolink format.PHP Code:define('VBSEO_AUTOLINK_FORMAT', '<a href="%1">%2</a>');
Allows you to define vBSEO Slugs. For more information you can visit vBSEO Slugs - Custom Forum TitlesPHP Code:$vbseo_forum_slugs = array(
);
Allow you to define extra robot variables inside vBSEO Sitemap Generator reports.PHP Code:define('VBSEO_EXTRA_ROBOTS', '');


LinkBack URL
About LinkBacks






Reply With Quote

