Archive for the 'vBulletin Quick Tips and Customizations' Category
[Any Version] Change logo to point to site homepage
166 Views Published 2 months ago in vBulletin Quick Tips and Customizations, vBulletin TipsNote: This only applies to the 3.x series
One reasonably common request for a simple change is to have the logo point to the site home page instead of the Forums home page. This is a simple change in the header template as follows.
Find this code:
Code:
<a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a>
and replace it with this:
Code:
<a href="$vboptions[homeurl]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[hometitle]" /></a>
Provided the url provided in AdminCP > vBulletin Options > Site Name / URL / Contact Details is correct, this will effect this change.
[Any Version] vBulletin Configuration Constants
231 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
Tags: database, installation, manage, modification, server, vb, vbulletin[Any Version] vBulletin Configuration Constants
75 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
76 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
85 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
86 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
85 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
69 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
71 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
69 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
71 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
58 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
63 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
69 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
[Any Version] vBulletin Configuration Constants
65 Views Published 6 months, 3 weeks ago in vBulletin Quick Tips and Customizations, vBulletin TipsI’ve managed to scrape up some defines/constants for use in vBulletin’s config file (config.php)
This forces all userinfo queries to include avatar information.
define(’AVATAR_ON_NAVBAR’, 1);
This bypasses the file checks, e.g that install.php one you get after installation. This is potential security risk, shouldn’t be enabled in production.
define(’BYPASS_FILE_CHECK’, 1);
This defines whether vBulletin is in demo mode or not.
define(’DEMO_MODE’, 1);
Our famous saviour for when modifications go bad…. thank you hooks ![]()
define(’DISABLE_HOOKS’, 1);
This forces all the hooks to be used, however, the above overrides this.
define(’FORCE_HOOKS’, 1);
This disables mail being sent out from your server.
define(’DISABLE_MAIL’, 1);
Sends pasword as raw…
Search
Delve Deeper
You are currently browsing the The Staff Lounge weblog archives for the 'vBulletin Quick Tips and Customizations' category.
Longer entries are truncated. Click the headline of an entry to read it in its entirety.Recent Entries
- Weblog Tools Collection: WordPress Personas For Firefox - Wordpress
- All styles have been updated to vBulletin 3.8.5 - AnnouncementsvBStyles
- vBulletin.com – vBulletin 3.8.5 Maintenance - AnnouncementsvBStyles
- vBulletin 3.8.5 Maintenance Release Now Available! - vBulletin AnnouncementsvBulletin.com
- Dev Blog: Firefox Personas, WordPress-style - Wordpress
Archives
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- September 2007
- August 2007
- July 2007
- May 2007
- April 2007
- March 2007
- January 2007
- October 2006
- September 2006
- August 2006
- July 2006
- October 2005
Categories
- Categories
- Announcements
- bbPress
- CinVin
- Community
- Developers' Blog
- Development
- ExtremePixels
- Invision Power Board
- Meta
- MyBB
- News
- News and Announcements
- Phorum
- phpBB
- Releases
- SEO vBulletin
- Simple Machines Forum
- Site Announcements
- The vB Geek
- Transverse Styles
- UseBB
- vBadvanced
- vBDrupal
- vBHackers
- vBSEO
- vBSEO Announcements
- vBSkinworks
- vBStyles
- vBulletin 3.7 Add-ons
- vBulletin Add-ons
- vBulletin Announcements
- vBulletin Fans
- vBulletin Quick Tips and Customizations
- vBulletin SEO
- vBulletin Setup
- vBulletin Setup Announcements
- vBulletin Tips
- vBulletin.com
- vBulletin.org
- Wordpress
- YaBB
- YaBB Chat and Support Community/YaBB News and Announcem
Popular Resources
- Phorum-5.2.8 final released (13 replies) - 30011 Views
- Phorum-5.2.9a released (10 replies) - 26743 Views
- IPB Resources - 11024 Views
- Weblog Tools Collection: WordPress Theme Releases for 01/14 - 9389 Views
- Weblog Tools Collection: WordPress Theme Releases for 01/10 - 8700 Views








