<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Forum Administration Blog | Forum Admin | Successful Forum</title>
	
	<link>http://successfulforum.com</link>
	<description>Tips &amp; tricks for forum administrators to creating and managing an online community board with a human edited forum directory.</description>
	<lastBuildDate>Thu, 26 Apr 2012 15:41:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SuccessfulForum" /><feedburner:info uri="successfulforum" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>How to Build a vBulletin Powered Mobile Page</title>
		<link>http://successfulforum.com/vbulletin/how-to-build-a-vbulletin-powered-mobile-page/</link>
		<comments>http://successfulforum.com/vbulletin/how-to-build-a-vbulletin-powered-mobile-page/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 15:41:37 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Forum Talk]]></category>
		<category><![CDATA[Forums]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=1014</guid>
		<description><![CDATA[For some time now I have wanted to build a mobile vBulletin powered page for my mobile style and I finally succeeded after a few hours of messing around with it. It took a little bit of time, but I hope it helps you out. Why am I build this mobile page? Well I wanted [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><div id="attachment_1024" class="wp-caption alignleft" style="width: 150px">
	<a href="http://successfulforum.com/wp-content/uploads/2012/04/vbulletin-powered-mobile-page1.png"><img src="http://successfulforum.com/wp-content/uploads/2012/04/vbulletin-powered-mobile-page1-150x150.png" alt="" title="vbulletin-powered-mobile-page" width="150" height="150" class="size-thumbnail wp-image-1024" /></a>
	<p class="wp-caption-text">Click for Full Image</p>
</div>For some time now I have wanted to build a mobile vBulletin powered page for my mobile style and I finally succeeded after a few hours of messing around with it. It took a little bit of time, but I hope it helps you out. </p>
<p>Why am I build this mobile page? Well I wanted to make it easier to get mobile users to be able to see a page that had links to all my mobile apps without having to view it on the main forum style since I have set all mobile users to see the mobile style. </p>
<p><strong>1. Create a php page:</strong><br />
- Create a new file, whatever you want to call it (let&#8217;s say test.php).<br />
- Open up test.php and add the following (replace TEST with whatever template you want to show &#8211; WARNING: the template name is CASE SENSITIVE!!!):</p>
<pre class="brush: php; title: ; notranslate">&lt;?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL &amp; ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################

define('THIS_SCRIPT', 'test.php');
define('CSRF_PROTECTION', true);
// change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();

// get special data templates from the datastore
$specialtemplates = array();

// pre-cache templates used by all actions
$globaltemplates = array('Test',
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vb forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################

$navbits = construct_navbits(array('' =&gt; 'Test'));
$navbar = render_navbar_template($navbits);

// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle = 'Test';

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
$templater = vB_Template::create('Test');
$templater-&gt;register_page_templates();
$templater-&gt;register('navbar', $navbar);
$templater-&gt;register('pagetitle', $pagetitle);
print_output($templater-&gt;render());

?&gt; </pre>
<p>The above is based on Lynne and Gary’s post over at <a href="http://www.vbulletin.org/forum/showthread.php?t=228112" target="_blank">vBulletin.org</a> on &#8220;How to Create Your Own vBulletin Page&#8221;, but here we are building it out for Bulletin’s Mobile style.</p>
<p><strong>2. Creating the Template:</strong><br />
- Make sure you create this page in your Mobile Style, not your default or Master Style.<br />
- Open your mobile style and in the dropdown menu choose &#8220;Add New Template&#8221;<br />
- Add the following in your new template:</p>
<pre class="brush: php; title: ; notranslate">
{vb:stylevar htmldoctype}
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&lt;vb:if condition=&quot;$vboptions['enablefacebookconnect']&quot;&gt; xmlns:fb=&quot;http://www.facebook.com/2008/fbml&quot;&lt;/vb:if&gt; dir=&quot;{vb:stylevar textdirection}&quot; lang=&quot;{vb:stylevar languagecode}&quot; id=&quot;vbulletin_html&quot;&gt;
&lt;head&gt;
	{vb:raw headinclude}
	&lt;title&gt;{vb:raw vboptions.bbtitle}&lt;/title&gt;
	{vb:raw headinclude_bottom}
&lt;/head&gt;
&lt;body&gt;

{vb:raw header}

{vb:raw navbar}

&lt;div id=&quot;pagetitle&quot; class=&quot;pagetitle ui-bar-b&quot;&gt;
	&lt;h1 class=&quot;pagetitle&quot;&gt;{vb:raw pagetitle}&lt;/h1&gt;
&lt;/div&gt;

YOUR CONTENT HERE

{vb:raw footer}
 &lt;/body&gt;
&lt;/html&gt;
</pre>
<p><strong>A couple things of note:</strong><em><br />
Make sure that if you already have a normal vB powered page that you name your mobile style page something different as not to override your older page. </p>
<p>Please let me know if you have any questions or you can post in the comments if you need any help.</p>
]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/vbulletin/how-to-build-a-vbulletin-powered-mobile-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Ad Advertisments in Header</title>
		<link>http://successfulforum.com/generate-revenue/how-to-ad-advertisments-in-header/</link>
		<comments>http://successfulforum.com/generate-revenue/how-to-ad-advertisments-in-header/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 15:50:42 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Generate Revenue]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=1006</guid>
		<description><![CDATA[The other day Joe from BlackBerry Os left a comment on another post about adding ads to the mobile style and wanted to know how to ad an advertisement above the logo in the vBulletin Mobile Style. So I thought I would so a post on how to do it: In your admincp got to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The other day Joe from <a href="http://blackberryos.com" target="_blank">BlackBerry Os</a> left a comment on another post about adding ads to the mobile style and wanted to know how to ad an advertisement above the logo in the vBulletin Mobile Style.</p>
<p><img src="http://successfulforum.com/wp-content/uploads/2012/03/headerad-300x126.jpg" alt="" title="headerad" width="300" height="126" class="aligncenter size-medium wp-image-1007" /></p>
<p>So I thought I would so a post on how to do it:</p>
<p>In your admincp got to your mobile style and find Header, Open the header template and find:</p>
<pre class="brush: php; title: ; notranslate">&lt;div id=&quot;header&quot;&gt; </pre>
<p>(should be the second line)</p>
<p>And add your ad code <strong>above</strong></p>
<p>My current code looks like this </p>
<pre class="brush: php; title: ; notranslate">&lt;div align=&quot;center&quot;&gt;&lt;a href=&quot;URL&quot;&gt;
&lt;img src=&quot;IMAGE AD&quot; alt=&quot;Your Ad Text Here&quot;/&gt;&lt;/a&gt; &lt;/div&gt;</pre>
<p>This will display adds on every page of your site in the header. For the best results, I would suggest using a 320&#215;50 ad spot.</p>
<p>Please let me know if you have any questions or post in the comments if you need any help.</p>
<div id="ifyoulikedthat"><h3>If you liked this post, then try these...</h3><p><a href="http://successfulforum.com/generate-revenue/google-adsense-webinar-optmizing-adsense-on-your-forum/">Google Adsense Webinar: Optmizing Adsense On Your Forum</a> by James</p><p><a href="http://successfulforum.com/generate-revenue/how-i-used-a-premium-section-to-make-money-on-my-forum/">How I used a Premium Section To Make Money On My Forum</a> by James</p><p><a href="http://successfulforum.com/generate-revenue/how-to-add-ads-on-forumdisplay-vbulletin-mobile-style/">How to add ads on ForumDisplay vBulletin Mobile Style</a> by James</p></div>]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/generate-revenue/how-to-ad-advertisments-in-header/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Internet Brands Acquires Mobile App Creator Forum Runner</title>
		<link>http://successfulforum.com/vbulletin/internet-brands-acquires-mobile-app-creator-forum-runner/</link>
		<comments>http://successfulforum.com/vbulletin/internet-brands-acquires-mobile-app-creator-forum-runner/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 01:29:53 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Forum Talk]]></category>
		<category><![CDATA[Forums]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=999</guid>
		<description><![CDATA[This is pretty interesting&#8230; LOS ANGELES, CA, Mar 07, 2012 &#8211; Internet Brands today announced the acquisition of Forum Runner ( www.forumrunner.net ), a mobile application that allows forum users to interact with online communities from mobile devices. Forum Runner will operate as part of Internet Brands&#8217; vBulletin software division. You can read the rest [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This is pretty interesting&#8230;</p>
<p>LOS ANGELES, CA, Mar 07, 2012 &#8211; Internet Brands today announced the acquisition of Forum Runner ( www.forumrunner.net ), a mobile application that allows forum users to interact with online communities<br />
from mobile devices. Forum Runner will operate as part of Internet Brands&#8217; vBulletin software division. </p>
<p>You can read the rest of the story <a href="http://www.marketwatch.com/story/internet-brands-acquires-mobile-app-creator-forum-runner-2012-03-07"><strong>here</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/vbulletin/internet-brands-acquires-mobile-app-creator-forum-runner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Adsense After 1st and Last Post in vBulletin Mobile Style</title>
		<link>http://successfulforum.com/generate-revenue/add-adsense-after-1st-and-last-post-in-vbulletin-mobile-style/</link>
		<comments>http://successfulforum.com/generate-revenue/add-adsense-after-1st-and-last-post-in-vbulletin-mobile-style/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 17:16:14 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Generate Revenue]]></category>
		<category><![CDATA[Monetizing A Forum Tips]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=996</guid>
		<description><![CDATA[A couple weeks ago I showed you how to add Goolge Adsense to your vBulletin Mobile Sytle. I got an email from someone looking to add Adsense between the first and last post in a thread. So I’m happy to share how to do it here. First open up you mobile suite under your style [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>A couple weeks ago I showed you <a href="http://successfulforum.com/generate-revenue/how-to-add-ads-on-forumdisplay-vbulletin-mobile-style/">how to add Goolge Adsense</a> to your vBulletin Mobile Sytle. I got an email from someone looking to add Adsense between the first and last post in a thread.</p>
<p>So I’m happy to share how to do it here.</p>
<p>First open up you mobile suite under your style manager in your admincp</p>
<p>Open your postpit_legacy and add this to the very bottom:</p>
<pre class="brush: php; title: ; notranslate">&lt;vb:if condition=&quot;$post[postcount] % $vboptions[maxposts] == 1 OR $post['islastshown']&quot;&gt;

&lt;center&gt;

YOUR AD CODE HERE

&lt;br /&gt;
&lt;br /&gt;
&lt;/center&gt;
&lt;/vb:if&gt;
</pre>
<p>There are lots of different variables that you can use like showing ads just to certain users or non members or show only in certain forums, etc. This code will also work in the regular vBulletin style. </p>
<div id="ifyoulikedthat"><h3>If you liked this post, then try these...</h3><p><a href="http://successfulforum.com/generate-revenue/where-to-place-ads-on-your-forum/">Where To Place Ads On Your Forum!</a> by James</p><p><a href="http://successfulforum.com/generate-revenue/how-to-ad-advertisments-in-header/">How to Ad Advertisments in Header </a> by James</p><p><a href="http://successfulforum.com/generate-revenue/how-to-add-ads-on-forumdisplay-vbulletin-mobile-style/">How to add ads on ForumDisplay vBulletin Mobile Style</a> by James</p></div>]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/generate-revenue/add-adsense-after-1st-and-last-post-in-vbulletin-mobile-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add “What’s New” to vBulletin Mobile Style Header</title>
		<link>http://successfulforum.com/vbulletin/how-to-add-whats-new-to-vbulletin-mobile-style-header/</link>
		<comments>http://successfulforum.com/vbulletin/how-to-add-whats-new-to-vbulletin-mobile-style-header/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 15:33:29 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=979</guid>
		<description><![CDATA[One thing that bothers me and some of my members when using the vBulletin mobile style is that you have to do 2 taps (clicks) to see if any new posts have been made; you have to click on the grid button and then the “what’s new” button. My members hated that and so did [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>One thing that bothers me and some of my members when using the vBulletin mobile style is that you have to do 2 taps (clicks) to see if any new posts have been made; you have to click on the grid button and then the “what’s new” button. My members hated that and so did I, so I decided to implement it myself!  Here is how I did it:</p>
<p>First save the What’s New image below and upload it to your /images/mobile/ folder on your server.</p>
<p><img alt="" src="http://successfulforum.com/images/whats_new.png" title="What&#039;s New Button" class="none" width="28" height="28" /></p>
<p>Then go to your AdminCp and go to your Styles and Templates, Style Manager, choose your mobile style and use the dropdown menu and click on the Edit Template, then go to the header template and find:</p>
<pre class="brush: php; title: ; notranslate">&lt;a href=&quot;mobile.php?{vb:raw session.sessionurl}do=notifications&quot; data-role=&quot;button&quot; data-inline=&quot;true&quot; data-theme=&quot;e&quot; class=&quot;notifications_total hidden&quot;&gt;&lt;span class=&quot;notifications_total_count&quot;&gt;&lt;/span&gt;&lt;/a&gt;
			&lt;/vb:if&gt;
		&lt;vb:else /&gt;</pre>
<p>Add the following below:</p>
<pre class="brush: php; title: ; notranslate">&lt;a href=&quot;search.php?{vb:raw session.sessionurl}do=getnew&quot; rel=&quot;external&quot; class=&quot;headericon&quot;&gt;&lt;img src=&quot;{vb:stylevar imgdir_mobile}/whats_new.png&quot; /&gt;&lt;/a&gt;</pre>
<p>Save and you have now added the What&#8217;s New image to your mobile style header.</p>
<p><strong>Notes: </strong><br />
Make sure you backup before doing any modifications as I am no responsible for any crashes or errors. </p>
<p>Remember this is for the vBulletin Mobile Style, not the Mobile App.</p>
<p>I have named the image to whats_new.png so as not to override the current What’s New image on the grid menu which is a larger image.  </p>
<p>Also if you to rename the image make sure you also change the code to reflect your renamed image.</p>
<p>Hope this helped! As always, please let me know if you have any questions in the comments or you can <a href="http://successfulforum.com/contact-me/">contact me</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/vbulletin/how-to-add-whats-new-to-vbulletin-mobile-style-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ForumCon is Back for 2012</title>
		<link>http://successfulforum.com/forums/forumcon-is-back-for-2012/</link>
		<comments>http://successfulforum.com/forums/forumcon-is-back-for-2012/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 18:01:34 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Forum Talk]]></category>
		<category><![CDATA[Forums]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=974</guid>
		<description><![CDATA[This year it will be once again in San Francisco, this time at the Hotel Kabuki on June 12th. I was wanting to go to Chicago last year, but my schedule just wouldn&#8217;t allow for it. This year I&#8217;m really thinking about going. Since it&#8217;s on the West Coast and it&#8217;s just a short flight [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://successfulforum.com/wp-content/uploads/2012/02/forumcon.png" alt="" title="forumcon" width="270" height="91" class="alignleft size-full wp-image-975" />This year it will be once again in San Francisco, this time at the Hotel Kabuki on June 12th. </p>
<p>I was wanting to go to Chicago last year, but my schedule just wouldn&#8217;t allow for it. This year I&#8217;m really thinking about going. Since it&#8217;s on the West Coast and it&#8217;s just a short flight for me. </p>
<p>Early bird tickets are only $69.00 until February 29th, you can&#8217;t beat that. </p>
<p>You can get all the details at their website <a href="http://www.forumcon.com/" title="ForumCon" target="_blank">ForumCon</a></p>
<p>So are you going? If so I hope to see you there! </p>
]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/forums/forumcon-is-back-for-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add ads on ForumDisplay vBulletin Mobile Style</title>
		<link>http://successfulforum.com/generate-revenue/how-to-add-ads-on-forumdisplay-vbulletin-mobile-style/</link>
		<comments>http://successfulforum.com/generate-revenue/how-to-add-ads-on-forumdisplay-vbulletin-mobile-style/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 15:39:22 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Generate Revenue]]></category>
		<category><![CDATA[Monetizing A Forum Tips]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=967</guid>
		<description><![CDATA[In the past couple of days I’ve been playing around with vBulletin’s Premium Mobile Style and adding ads here and there. Currently I am testing it out Adsense for Mobile Content. Adding the ads is pretty easy, In your admincp got to your mobile style and find FORUMDISPLAY, Open the FORUMDISPLAY template and find add [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In the past couple of days I’ve been playing around with vBulletin’s Premium Mobile Style and adding ads here and there. Currently I am testing it out Adsense for Mobile Content. </p>
<p><img src="http://successfulforum.com/wp-content/uploads/2012/01/dfmobilead-300x170.jpg" alt="" title="dfmobilead" width="300" height="170" class="aligncenter size-medium wp-image-968" /></p>
<p>Adding the ads is pretty easy, In your admincp got to your <strong>mobile style</strong> and find FORUMDISPLAY, Open the FORUMDISPLAY template and find </p>
<pre class="brush: php; title: ; notranslate">&lt;vb:if condition=&quot;$show['threadslist']&quot;&gt;
			&lt;div id=&quot;threadlist&quot;&gt;

			{vb:raw pagenav}</pre>
<p>add your ad code below. You will also want to align it to the center.</p>
<p>Like I said I am using Adsense for Mobile Content and using a 320X50 size ad. Starting in March I will start selling private ads on the mobile style. I just launched the mobile style this week and want to get a overview of it being used on a daily and monthly basis.</p>
<div id="ifyoulikedthat"><h3>If you liked this post, then try these...</h3><p><a href="http://successfulforum.com/generate-revenue/money-forum/">How To Make Money From Your Forum.</a> by James</p><p><a href="http://successfulforum.com/generate-revenue/how-to-ad-advertisments-in-header/">How to Ad Advertisments in Header </a> by James</p><p><a href="http://successfulforum.com/generate-revenue/how-i-used-a-premium-section-to-make-money-on-my-forum/">How I used a Premium Section To Make Money On My Forum</a> by James</p></div>]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/generate-revenue/how-to-add-ads-on-forumdisplay-vbulletin-mobile-style/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Disable vBadvanced when using vBulletin mobile style</title>
		<link>http://successfulforum.com/vbulletin/how-to-disable-vbadvanced-when-using-vbulletin-mobile-style/</link>
		<comments>http://successfulforum.com/vbulletin/how-to-disable-vbadvanced-when-using-vbulletin-mobile-style/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 17:17:28 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Forums]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=951</guid>
		<description><![CDATA[*This is not for the mobile suite app, this is for the premium mobile style I love vBadvanced and use it on a couple of my forums. But there is one thing that bothers me, it doesn&#8217;t look good on a mobile phone when using the vBulletin premium mobile style. On one of my forums [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>*This is not for the mobile suite app, this is for the premium mobile style</p>
<p>I love vBadvanced and use it on a couple of my forums. But there is one thing that bothers me, it doesn&#8217;t look good on a mobile phone when using the vBulletin premium mobile style. </p>
<p>On one of my forums I wanted to skip the vBadvanced homepage and go directly to the forum itself. Here is how I did it:</p>
<p>Go into your AdminCP and click on the Styles &#038; Templates section and click on your Mobile Style (don&#8217;t do this on your main site), click on edit templates and find the adv_portal, this should be located under the vBadvanced CMPS Templates.</p>
<p>Remove all the code and replace with:</p>
<pre class="brush: php; title: ; notranslate">{vb:stylevar htmldoctype}
&lt;html dir=&quot;{vb:stylevar textdirection}&quot; lang=&quot;{vb:stylevar languagecode}&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;/head&gt;

&lt;meta http-equiv=&quot;refresh&quot; content=&quot;0;url=forum.php&quot;&gt;

&lt;/html&gt;
</pre>
<p>This will redirect all mobile users to your forum itself when using the vBulletin Mobile Style. </p>
<p>Let me know if you have any questions!</p>
<p><strong>Make sure you always back up your forum before doing any changes to your site.! </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/vbulletin/how-to-disable-vbadvanced-when-using-vbulletin-mobile-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Query to Remove “Receive Emails from Administrators” in vBulletin</title>
		<link>http://successfulforum.com/forum-admin-tips/sql-query-to-remove-receive-emails-from-aministrators-in-vbulletin/</link>
		<comments>http://successfulforum.com/forum-admin-tips/sql-query-to-remove-receive-emails-from-aministrators-in-vbulletin/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 14:55:42 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Forum Admin Tips]]></category>
		<category><![CDATA[Forum Talk]]></category>
		<category><![CDATA[Forums]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=946</guid>
		<description><![CDATA[Sorry Guys I scheduled this post for the wrong day, DOH! As you saw in my post the other day about vBulletin and AOL emails fiasco. How do I uncheck all the “Receive Emails from Administrators” without searching the entire AOL and removing them one by one? First I did a search in my AdminCp, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><em>Sorry Guys I scheduled this post for the wrong day, DOH!</em></p>
<p>As you saw in my post the other day about vBulletin and AOL emails fiasco. How do I uncheck all the “Receive Emails from Administrators” without searching the entire AOL and removing them one by one? </p>
<p>First I did a search in my AdminCp, just to see how many would be affected and this forum it was 225 users with AOL email addresses. </p>
<p>So how do you “bulk” uncheck the “Receive Emails from Administrators”, you can run a SQL query in the vBulletin AdminCp.</p>
<p>****FIRST Back-up your data, always do this! (Also I’m not responsible for data loss)</p>
<p><code>UPDATE user SET options=options - 16 WHERE options &#038; 16 AND email LIKE "%@aol.%";</code></p>
<p>And this will uncheck all AOL emails. In less than 15 seconds I was done and hopefully no more issues.</p>
<p>On this week’s Forum Advice Friday, I’m going to post a question to you about the “Receive Emails from Administrators” and looking forward to hearing from you and your thoughts</p>
<div id="ifyoulikedthat"><h3>If you liked this post, then try these...</h3><p><a href="http://successfulforum.com/forum-admin-tips/5-activity-tips-forum/">5 Activity Tips For Your Forum</a> by James</p><p><a href="http://successfulforum.com/forum-admin-tips/forum-moderators-are-they-worth-it/">Forum Moderators - Are They Worth It?</a> by James</p><p><a href="http://successfulforum.com/forum-admin-tips/vbulletin-aol-emails-and-my-troubles/">vBulletin, AOL emails and My Troubles</a> by James</p></div>]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/forum-admin-tips/sql-query-to-remove-receive-emails-from-aministrators-in-vbulletin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vBulletin, AOL emails and My Troubles</title>
		<link>http://successfulforum.com/forum-admin-tips/vbulletin-aol-emails-and-my-troubles/</link>
		<comments>http://successfulforum.com/forum-admin-tips/vbulletin-aol-emails-and-my-troubles/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 14:19:53 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Forum Admin Tips]]></category>
		<category><![CDATA[Forum Talk]]></category>
		<category><![CDATA[Forums]]></category>
		<category><![CDATA[Running A Forum Tips]]></category>

		<guid isPermaLink="false">http://successfulforum.com/?p=944</guid>
		<description><![CDATA[For years I know that vBulletin and most other forum software programs have had issues with sending emails to AOL, whether it is registration emails, PM emails, newsletters, etc. So let me tell you about my issues that happen to me on Friday morning right before the long Labor Day Weekend, which I already planned [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>For years I know that vBulletin and most other forum software programs have had issues with sending emails to AOL, whether it is registration emails, PM emails, newsletters, etc.</p>
<p>So let me tell you about my issues that happen to me on Friday morning right before the long Labor Day Weekend, which I already planned to head out of town. </p>
<p>I had just woken up and was doing my daily routine before getting the kids ready for school checking emails answering a few when I got the an email that no one ever wants to see:</p>
<p>Your web hosting account for XXXXXXXX has been deactivated, as of 09/02/2011. (reason: terms of service violation &#8211; spam)</p>
<p>WTF? Spam?</p>
<p>I called immediately to find out what was going on. Besides waiting on hold forever, I was finally able to get someone on the line.  </p>
<p>One of the reasons was that they said it was because I was using a cron job to send out my emails, which is true and I explained to them I use a cron job because they limit how many emails I can send out per hour. Okay, done and they were satisfied.</p>
<p><strong>But there was more…</strong><em></p>
<p>Next he said that they were going get blacklisted from AOL because I was sending emails to AOL emails addresses and have been for months, which again is true. He was told by AOL that the email contents were related to my domain name and topic, which as soon as he pulled up the email he chuckle because the title and the first few lines were directly related to my site’s topic.  </p>
<p>He asked if all the emails were “opt-in” emails. I told him that I have a check box at registration just like all the other vBulletin forums stating “Accept emails from administrators” Well he and I went round and round about this check box, but that’s another post.  </p>
<p>So what they suggested is that I no longer accept AOL emails registrations or send any more emails to any forum members using AOL email addresses. Which I have now done and I’ve also posted an announcement on my forum about the AOL issues. </p>
<p>When it was all said and done I was down for about 50 minutes. Which being a business owner can be devastating and embarrassing to say the least. </p>
<p>Tomorrow I’ll post on how to do the SQL query on how to uncheck/check the accept admin emails in vBulletin. </p>
<div id="ifyoulikedthat"><h3>If you liked this post, then try these...</h3><p><a href="http://successfulforum.com/forum-admin-tips/how-to-add-jquery-to-mybb-tutorial-for-newbies/">How To Add jQuery to MyBB Tutorial For Newbies</a> by James</p><p><a href="http://successfulforum.com/forum-admin-tips/sql-query-to-remove-receive-emails-from-aministrators-in-vbulletin/">SQL Query to Remove "Receive Emails from Administrators" in vBulletin</a> by James</p><p><a href="http://successfulforum.com/forum-admin-tips/5-activity-tips-forum/">5 Activity Tips For Your Forum</a> by James</p></div>]]></content:encoded>
			<wfw:commentRss>http://successfulforum.com/forum-admin-tips/vbulletin-aol-emails-and-my-troubles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

