Hidden vBSEO Config Options

Kenpachi

New Member
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.

PHP:
    define('VBSEO_AVATAR_PREFIX',          'avatars/');
    define('VBSEO_ATTACHMENTS_PREFIX',     'attachments/');
    define('VBSEO_ICON_PREFIX',            'iconimages/');

These are the configuration options for avatar , attachment and iconimages inside urls. You can change them according to your needs.

PHP:
    define('VBSEO_BLOG_CAT_UNDEF',         'uncategorized');

This will allow you to define the uncategorized blog entries main category name.

PHP:
    // ****** 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();
Will allow you to define custom character replacements inside url. It is widely used by international languaged forums.

Some Options Below are in Beta Stages.

PHP:
    define('VBSEO_CUSTOM_DOCROOT',         '');
Allows you to define your full forum path. example usage :
PHP:
    define('VBSEO_CUSTOM_DOCROOT',         '/my/forum/path');

PHP:
    define('VBSEO_NOVER_INFO',             0);

Allows you to hide vBSEO version info inside vBSEO Copyright

PHP:
    define('VBSEO_ENABLE_GARS',            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:
    define('VBSEO_UTF8_SUPPORT',           0);
If your forum uses UTF8 language format , this options allows you to enable UTF8 support.

PHP:
    define('VBSEO_LASTMOD_HEADER',         0);
This option allows you to enable Last Modified Header support

PHP:
    define('VBSEO_VB_EXT',                 'php');
If your vBulletin is using a different extension you need to change this setting to match your extension

PHP:
    define('VBSEO_VB_CONFIG',              'config.php');
If you renamed vbulletin config.php for security reasons you need to update this setting to match your new config.php name

PHP:
    define('VBSEO_URL_TAGS_FILTER',        0);
This option replace default "+" space character with "-" and also activates character replacement option

PHP:
    define('VBSEO_CACHE_VAR',              'vbseo_storage');
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:
    define('VBSEO_AUTOLINK_FORMAT',        '<a href="%1">%2</a>');
Allows you to define autolink format.

PHP:
    $vbseo_forum_slugs = array(
    );
Allows you to define vBSEO Slugs. For more information you can visit vBSEO Slugs - Custom Forum Titles - vBulletin SEO Forums

PHP:
    define('VBSEO_EXTRA_ROBOTS', '');
Allow you to define extra robot variables inside vBSEO Sitemap Generator reports.
 
Top