10 Of The Best vBulletin Mods and Plugins For vb3

Category : vbulletin-and-coding-guides

One of the things that you will need to think about when you are running a vBulletin website is giving it an edge over the competition. There are a range of vBulletin mods and plugins out there that will enable you to do this and a lot of people don’t think about using them. We have compiled a list of 10 of the best vBulletin Mods and Plugins for you. Enjoy!

1. vbAdvanced

This is a great plugin for vBulletin that is actually a free content management system. This is very useful. Click here to visit the website.

2. iTrader

This is a great plugin that allows other users to give users on the website a rating. Websites like DigitalPoint use this. Click here to visit the website.

3. Signature Limit Plugin

This is a great plugin that actually limits the amount of signatures a user of your vBulletin site can have. Click here to visit the website.

4. Links & Download Manager

This is a fantastic plugin that actually allows you to manage your link downloads. Click here to visit the website.

5. vb Ad Management

This is a great plugin that will allow you to be able to manage your third party ads on your site. E.g. Adsense ads. Click here to visit the website.

6. Photoplug Image Gallery

This is a great plugin that installs an image gallery module for your vBulletin website. This will give users of your site a better experience. Click here to visit the website.

7. vbSEO Sitemap

This is a great plugin that actually generates a sitemap for your website that can be sued for Google and Yahoo SE Submission. Click here to visit the website.

8. Cyb – Post Count Permissions

This is a great plugin that will actually prevent new users of your website from posting too much content. There are many settings you can change in this plugin. Click here to visit the website.

9. reCaptcha Image Verification

This is a great plugin that will help protect your website from spambot registrations and posts. Click here to visit the website.

10. VbSociable Bookmarking

This is a plugin that allows you to post things to Digg, Stumbleupon and other social bookmarking websites. Click here to visit the website.

How to Backup Your vBulletin Database

Category : vbulletin-and-coding-guides

One of the most important things that you will need to think about when you have any website is creating a back up for the site. Of course, with vBulletin, this is absolutely no different and you will have to create a backup of your forum every so often. There are a few ways that you can do this and it is a lot easier to actually do than you might think.

Back up from vBulletin Admin Panel

One of the ways that you can back up your vBulletin website is actually from the admin panel. All you need to do is to navigate yourself to Maintenance, then Database Backup in order to start. When you get to the page, you will need to choose the databases that you wish to backup. You can select that databases that you would like to backup by simply selecting the heck boxes that are next to the names of the databases. You should note that you should only choose this method if you have a relatively small forum as it will output the entire database straight to you. If you have a larger forum, you should output the backup to a server.

Backup using PhpMyAdmin

Of course, another way that you can back up your vBulletin website is using PhpMyAdmin. All you need to do in order to do this is to log into your PhpMyAdmin control panel and then select the name of the vBulletin database that you would like to back up from the drop down menu. All you need to do then is to click the export tab and your database will be backed up and exported. The best thing to do is save the output as a file on your computer and then you can be sure that you have the file backed up.

Of course, there are a few other ways in which you can back up your vBulletin database but these two are by far the easiest in our opinion, and the safest.

How to install Recent Blog Mod vbulletin

Category : vbulletin-and-coding-guides

Here’s a how-to.

First of all download carp from here: http://www.geckotribe.com/rss/carp/

I am using the free version and it works perfectly. Unzip the carp archive (zip) and upload the carp folder to your forums home directory. Upload the carpsetup.php to the same directory as of your showthread.php (forums home) folder. Run the setup file, it will give you two choices.. 1) directory cache and the other.. mysql cache. I am using directory cache and I recommend you to try this one.

When you hit next, carp will install cache folders to your carp/ directory. If you don’t see any errors here then the setup is complete, you should now delete the carpsetup.php from the forum home directory and carpsetupinc.php from your forums/carp/ directory. If you encountered any errors here then it’s highly likely that you need to change the directory permissions for you /carp folder in order allow the script to create cache directories.

Now the rest of the process is fairly simple, as described by nevetS at vbulletin.org.

Open your admincp (vb) and create a custom profile field. It should be Single-Line text box. Click next and fill the fields. Give it an appropriate title/description, i.e:

For title: Blog Feed
For description: Enter your Blog’s RSS feed URL here i.e. http://myblog.com/rss.xml

Leave the default value field empty. Change max length allowed for user input to 200. Field should be editable by user, not a private field, not searchable on member list and do not show on member list. Leave the regular expressions field blank. In the Display page option below, set it to Edit profile and click save.

Now add two plugins in your admincp’s Plugins and Products >> Add new plugin. For the first plugin: Selected “global_start” as your hook location, give it an appropriate title (can be anything) and paste the following php code in the plugin php code area:

Code:
require_once 'carp/carp.php';CarpConf('cacheinterval',120);/** You may want to set a cachepath specifically for your forum **/CarpConf('cachepath','carp/');CarpConf('cacherelative',0);/** You can omit the above two lines without a problem **/CarpConf('cborder','');CarpConf('poweredby','');CarpConf('maxitems',1);CarpConf('iorder','link');

Set the plugin to active and click save.

Now it’s time to add the second plugin:

Attach it to postbit_display_start as the hook location, give it a title & paste the following code in the plugin php code area:

Code:
ob_start();CarpCacheShow($post[field5]);$blogentry = ob_get_contents();ob_end_clean();

Set the plugin to active and click save.

Now open your postbit template:

FIND

Code:
				<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>

ABOVE ADD

Code:
				<if condition="$post['field5']"><div class="smallfont">Recent Blog: $blogentry</div></if>

Save your template. Now to test it, go to your usercp> edit profile and scroll down, you will see the Blog Feed option there, add your blog’s rss feed and hit save changes. Now go to your forums and look for any of your post.. you will see the latest blog link below your username.

If you encounter any problems then post a message here and I will try to fix it accordingly.

Credit goes to nevetS for the mod.

Changing username colors on vbulletin

Category : vbulletin-and-coding-guides

If you would like to change the color for a usergroup you can do it by going here :

Admin CP -> Usergroups -> Usergroup Manager -> Edit Usergroup -> Username HTML Markup

And by adding html markup. For example, in the first box add :

HTML Code:
<span style= " color:red ">


and in the second one close it with

HTML Code:
< span >

That should be all.

How to remove powered by vBulletin from your vb forum title

Category : vbulletin-and-coding-guides

Most vBulletin users either think they have to leave powered by vBulletin in their vB powered forum title or they do not know how to do it, well, you can remove it from your forum without the need to pay vBulletin to remove it, its the footer signature you need to pay if you want to remove.

Now that we have just reinstalled this forum, the powered by vBulletin is back on, here is how I removed it:

  1. Login to your vBulletin control panel
  2. In Phrase Manager, search for phrase variable: x_powered_by_vbulletin
  3. It looks like this when you found it {1} – Powered by vBulletin
  4. copy and past {1} to the impute box as indicated in the attached image
  5. Save changes and you are done

Change the postbit to legacy vbulletin

Category : vbulletin-and-coding-guides

Nice simple tutorial here on how to change the postbit into a legacy format – down the left side not across the top.

Just go into:

Forums > ACP > vBulletin Options > vBulletin Options > Use Legacy (Vertical) Postbit Template > Yes

And your done

Bad Behavior has blocked 72 access attempts in the last 7 days.