<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>vBulletin Skins</title>
	<atom:link href="http://www.vbmode.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vbmode.com</link>
	<description>vBulletin Forum Software - tips and advice for webmasters</description>
	<lastBuildDate>Sat, 23 Mar 2013 18:16:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Introduction to vBulletin 5 Connect&#8217;s Template Hook system.</title>
		<link>http://www.vbmode.com/2013/01/introduction-to-vbulletin-5-connects-template-hook-system/</link>
		<comments>http://www.vbmode.com/2013/01/introduction-to-vbulletin-5-connects-template-hook-system/#comments</comments>
		<pubDate>Sat, 05 Jan 2013 00:52:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Connect's]]></category>
		<category><![CDATA[Hook]]></category>
		<category><![CDATA[Introduction]]></category>
		<category><![CDATA[system.]]></category>
		<category><![CDATA[Template]]></category>
		<category><![CDATA[vBulletin.]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2013/01/introduction-to-vbulletin-5-connects-template-hook-system/</guid>
		<description><![CDATA[While previous versions of vBulletin have had template hooks which allowed administrators to insert data within existing templates, these have been revamped and improved in vBulletin 5 Connect. In older versions, you needed PHP code to pull, process and render &#8230; <a href="http://www.vbmode.com/2013/01/introduction-to-vbulletin-5-connects-template-hook-system/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p>While previous versions of vBulletin have had template hooks which allowed administrators to insert data within existing templates, these have been revamped and improved in vBulletin 5 Connect. In older versions, you needed PHP code to pull, process and render your code or a sub-template and then pass it to the original template. In vBulletin 5 Connect, the system can do all that for you. All you have to do is create your sub-template and vBulletin&#8217;s engine will handle all the back-end work for you. To demonstrate this, I have create a little tutorial that will add a &quot;Back to Top&quot; link to the bottom of your footer navigation. Works on every page and doesn&#8217;t require any PHP code to pull URLS.</p>
<ol class="decimal">
<li style="">On the drop down in the Style Manager add a new template.</li>
<li style="">Give it the title of: footer_goto_top.</li>
<li style="">Add this code to the template and save it:
<div class="bbcode_container">
<div class="bbcode_description">Code:</div>
<pre class="bbcode_code"style="height:288px;">&lt;style&gt;
#toTop {
  float:right;
}
div#toTop:hover { cursor: hand; cursor: pointer; }
&lt;/style&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$  (function() {
    $  (window).scroll(function() {
        if($  (this).scrollTop() != 0) {
            $  ('#toTop').fadeIn();    
        } else {
            $  ('#toTop').fadeOut();
        }
    });
 
    $  ('#toTop').click(function() {
        $  ('body,html').animate({scrollTop:0},800);
    });    
});
&lt;/script&gt;
^ Back to Top</pre>
</div>
</li>
<li style=""> In the Admin CP goto: Products &amp; Hooks -&gt; Hook Manager.</li>
<li style="">Select Add New Hook.</li>
<li style="">Set the Hook Location to &quot;footer_end&quot;</li>
<li style="">Give it a title&#8230; Such as &quot;Go To Top Link&quot;</li>
<li style="">In the Template Name field enter footer_goto_top to reference the template that you made above.</li>
<li style="">Save your new template hook.</li>
</ol>
<p>While this is a simple tutorial, you can do anything in your template that vBulletin 5 is capable of accomp&quot;shing in templates. This includes API calls using the vb:data tag.</p></blockquote>
<p><a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2544-Introduction-to-vBulletin-5-Connect-s-Template-Hook-system">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2013/01/introduction-to-vbulletin-5-connects-template-hook-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change your old domain to a new domain name</title>
		<link>http://www.vbmode.com/2012/12/change-your-old-domain-to-a-new-domain-name/</link>
		<comments>http://www.vbmode.com/2012/12/change-your-old-domain-to-a-new-domain-name/#comments</comments>
		<pubDate>Sat, 29 Dec 2012 07:12:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[name]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2012/12/change-your-old-domain-to-a-new-domain-name/</guid>
		<description><![CDATA[Changing your old domain name to a new domain with redirect old to new: - Open forum Admincp Settings -> Options -> Site Name / URL / Contact Details and change settings with your new domain settings - Move your &#8230; <a href="http://www.vbmode.com/2012/12/change-your-old-domain-to-a-new-domain-name/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p><font size="3"><font color="#008000"><b>Changing your old domain name to a new domain with redirect old to new:</b></font></font>
<div style="margin-left:40px"><font size="3"><br />
</font>- Open forum Admincp </div>
<div style="margin-left:80px"><b>Settings -> Options -> Site Name / URL / Contact Details</b></div>
<div style="margin-left:120px">and change settings with your new domain settings</div>
<div style="margin-left:40px">- Move your files with the new domain account or if its a add-on domain (recommended) move file to the new directory<br />
-  Create a .htaccess file into your old domain forum root folder [ its   for redirection and keep the old link available ] ( a simple file   attached and you can edit file with your settings.<br />
- To save internal old links follow that steps to <u><i>creating a new replacement variable</i></u></div>
<div style="margin-left:80px">Open <b>Admincp -></b> <b>Settings -> Styles &amp; Templates -> Replacement Variable Manager </b></div>
<div style="margin-left:120px">Click [Add New Replacement Variable] with your current style .<br />
Search for Text : type your old forum full URL like  <i>http://www.vbulletin.com/forum</i>  (<font color="#ff0000"><b>do not add a trailing slash /</b></font> ).<br />
Replace with Text : type your new forum full URL like <i>http://www.3ly.info/forum</i> (<font color="#ff0000"><b>do not add a trailing slash /</b></font> ).</div>
<div style="margin-left:40px">- Change your license with your new domain name ( <a href="https://members.vbulletin.com" target="_blank">https://members.vbulletin.com</a> )<font size="3">.</font><font size="3"><br />
</font></div>
</blockquote>
<p><!-- attachments --></p>
<div class="blogattachments">
<fieldset class="blogcontent">
<legend>Attached Files</legend>
<ul>
</ul>
</fieldset></div>
<p><!-- / attachments --><br />
<a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2543-Change-your-old-domain-to-a-new-domain-name">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2012/12/change-your-old-domain-to-a-new-domain-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My First Live vBulletin 5 Connect Site</title>
		<link>http://www.vbmode.com/2012/12/my-first-live-vbulletin-5-connect-site/</link>
		<comments>http://www.vbmode.com/2012/12/my-first-live-vbulletin-5-connect-site/#comments</comments>
		<pubDate>Tue, 25 Dec 2012 22:22:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Connect.]]></category>
		<category><![CDATA[First]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[vBulletin.]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2012/12/my-first-live-vbulletin-5-connect-site/</guid>
		<description><![CDATA[This blog post is derived from a thread HERE. Well it&#8217;s just about time I hit the ground running with another of my famous &#8220;journal&#8221; posts. In the past they&#8217;ve been about upgrades and changes I&#8217;ve made on my main &#8230; <a href="http://www.vbmode.com/2012/12/my-first-live-vbulletin-5-connect-site/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p>This blog post is derived from a thread <a href="https://www.vbulletin.com/forum/showthread.php/410600-Working-on-a-live-vB5-site" target="_blank">HERE</a>.</p>
<p>Well it&#8217;s just about time I hit the ground running with another of my famous &#8220;journal&#8221; posts.</p>
<p>In the past they&#8217;ve been about upgrades and changes I&#8217;ve made on my main site, on vB4. But now it&#8217;s time to turn to vB5 and see what we can come up with.</p>
<p>My brief here, is that I can&#8217;t currently upgrade my main site, because it&#8217;s just far too heavily modified.</p>
<p>So I thought it&#8217;d be nice to set up a brand new site, and run it on the vb5 betas. </p>
<p>I&#8217;m not expecting any real traffic, it&#8217;s more to do with showcasing the software and playing around with it.</p>
<p>I have bought a new domain and a vB5 licence, so we can sit entirely independently of my main site.</p>
<p>So&#8230;here we go.<br />
The url of the site is <a href="http://www.talknewsuk.com/forum/" target="_blank">http://www.talknewsuk.com/forum/</a>.<br />
The theory is to run a news and current affairs discussion site that&#8217;s perhaps slightly more serious than the type of debate we&#8217;d get on my main site. </p>
<p>The initial intention is not to modify too much, because we&#8217;ve got regular beta releases, often with quite major changes, and so that would make things tricky. I had originally said NO changes at all beyond the colour scheme, but of course that didn&#8217;t last very long. However I&#8217;m not really going to modify any more templates until we are closer to Gold.</p>
<p>GREEN is the colour scheme used, and I have decided we&#8217;re just having the one. I have used the same shades that I use on a secondary style on my main site.</p>
<p>Let&#8217;s just do the one screenshot initially, to simply show the front forums page.</p>
<p>Click the below to enlarge.</p>
<p><a href="http://www.talknewsuk.com/screenshots/talknews1.JPG" target="_blank"><img src="http://www.talknewsuk.com/screenshots/talknews1_thumb.JPG" border="0" alt="" /></a></p></blockquote>
<p><a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2537-My-First-Live-vBulletin-5-Connect-Site">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2012/12/my-first-live-vbulletin-5-connect-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to : Make your own vBulletin powered page without upload files or plugins. With SEO Friend URLs</title>
		<link>http://www.vbmode.com/2012/12/how-to-make-your-own-vbulletin-powered-page-without-upload-files-or-plugins-with-seo-friend-urls/</link>
		<comments>http://www.vbmode.com/2012/12/how-to-make-your-own-vbulletin-powered-page-without-upload-files-or-plugins-with-seo-friend-urls/#comments</comments>
		<pubDate>Mon, 24 Dec 2012 05:59:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[Friend]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[plugins.]]></category>
		<category><![CDATA[powered]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[URLs]]></category>
		<category><![CDATA[vBulletin.]]></category>
		<category><![CDATA[without]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2012/12/how-to-make-your-own-vbulletin-powered-page-without-upload-files-or-plugins-with-seo-friend-urls/</guid>
		<description><![CDATA[Hello, how to: Make your own vBulletin powered page without upload files or plugins. With SEO Friend URLs Instructions : 1. create a template file with prefix custom_ 2. put your page content the template that you have created. 3. &#8230; <a href="http://www.vbmode.com/2012/12/how-to-make-your-own-vbulletin-powered-page-without-upload-files-or-plugins-with-seo-friend-urls/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p>Hello,</p>
<p><b>how to:</b><br />
<b><font color="#0000ff"> Make your own vBulletin powered page without upload files or plugins. With SEO Friend URLs</font></p>
<p>Instructions :</b></p>
<p>1. create a template file with prefix custom_<br />
2. put your page content the template that you have created.<br />
3. now you can access the page from URL <a href="http://yourdomain.com/forum/misc.php?do=page&amp;template=yourpage" target="_blank">http://yourdomain.com/forum/misc.php&#8230;plate=yourpage</a> name<br />
    i.e : if you have created a template named custom_Privacy you can access page with that URL.<br />
        <a href="http://yourdomain.com/forum/misc.php?do=page&amp;template=Privacy" target="_blank">http://yourdomain.com/forum/misc.php&#8230;mplate=Privacy</a> (note: template name case sensitivity)<br />
4. to make the page URL firend with search engine add that line to your .htaccess file after line (RewriteEngine On)</p>
<div class="bbcode_container">
<div class="bbcode_description">Code:</div>
<pre class="bbcode_code"style="height:36px;">RewriteRule ^pages/([^/]*)\.html$   misc.php?do=page&amp;template=$  1 [QSA,L]</pre>
</div>
<p>5. now you can access page URL like <a href="http://yourdomain.com/forum/pages/yourpage.html" target="_blank">http://yourdomain.com/forum/pages/yourpage.html</a> instead of <a href="http://yourdomain.com/forum/misc.php?do=page&amp;template=yourpage" target="_blank">http://yourdomain.com/forum/misc.php&#8230;plate=yourpage</a></p>
<p>Done.:)<br />
simple template structure attached below.</p>
<div class="contentnote" style="border: 1px solid #0B1986;color:#000;background-color:#F5FFFF;padding:5px;"> This process only works on vBulletin 3.x and 4.x. It will not work in vBulletin 5 Connect.</div>
<p>Ali.</p></blockquote>
<p><!-- attachments --></p>
<div class="blogattachments">
<fieldset class="blogcontent">
<legend>Attached Files</legend>
<ul>
</ul>
</fieldset></div>
<p><!-- / attachments --><br />
<a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2542-How-to-Make-your-own-vBulletin-powered-page-without-upload-files-or-plugins-With-SEO-Friend-URLs">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2012/12/how-to-make-your-own-vbulletin-powered-page-without-upload-files-or-plugins-with-seo-friend-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a custom home page in vBulletin 5 Connect</title>
		<link>http://www.vbmode.com/2012/12/how-to-create-a-custom-home-page-in-vbulletin-5-connect/</link>
		<comments>http://www.vbmode.com/2012/12/how-to-create-a-custom-home-page-in-vbulletin-5-connect/#comments</comments>
		<pubDate>Sat, 22 Dec 2012 13:38:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Connect.]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[Custom]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[vBulletin.]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2012/12/how-to-create-a-custom-home-page-in-vbulletin-5-connect/</guid>
		<description><![CDATA[Many vBulletin sites have historically used some sort of portal, or even the vB4 CMS, as their default &#8220;landing&#8221; page if you visit the root URL&#8230;.www.mysite.com, with no /forum etc. Currently in vB5 there is no CMS, and there is &#8230; <a href="http://www.vbmode.com/2012/12/how-to-create-a-custom-home-page-in-vbulletin-5-connect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p>Many vBulletin sites have historically used some sort of portal, or even the vB4 CMS, as their default &#8220;landing&#8221; page if you visit the root URL&#8230;.www.mysite.com, with no /forum etc.</p>
<p>Currently in vB5 there is no CMS, and there is no portal addon such as vBAdvanced.</p>
<p>So what do you do?</p>
<p>Well, you could simply rewrite the root URL so it points to /forum, or wherever your forum actually is.</p>
<p>That&#8217;s fine, but why not utilise the great new <a href="https://www.vbulletin.com/forum/entry.php/2530-What-is-Site-Builder" target="_blank">Site Builder</a> feature in vBulletin 5 Connect, to create a custom home page and have people landing there?</p>
<p>Here&#8217;s how to do this.</p>
<p>Firstly, make sure you are logged in as an Admin &#8211; so you can access Site Builder.</p>
<p>Then, switch Site Builder ON using the switch at the very top right of the screen.</p>
<div style="text-align: center;">
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63097&amp;d=1353962903" id="attachment63097" rel="Lightbox_2538" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63097&amp;d=1353962903" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture1.JPG&nbsp;<br />
Views:	214&nbsp;<br />
Size:	14.5 KB&nbsp;<br />
ID:	63097" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>
</div>
<p>
Now click &#8220;New Page&#8221; in the Site Builder Menu at the top.</p>
<div style="text-align: center;">
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63098&amp;d=1353963073" id="attachment63098" rel="Lightbox_2538" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63098&amp;d=1353963073" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture2.JPG&nbsp;<br />
Views:	210&nbsp;<br />
Size:	32.1 KB&nbsp;<br />
ID:	63098" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
</div>
<p>
You may need to enter your Admin Password to go any further:</p>
<div style="text-align: center;">
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63099&amp;d=1353963174" id="attachment63099" rel="Lightbox_2538" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63099&amp;d=1353963174" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture3.JPG&nbsp;<br />
Views:	207&nbsp;<br />
Size:	16.8 KB&nbsp;<br />
ID:	63099" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
</div>
<p>
Now, we should see the screen below.<br />
We need to start off by making sure that any Announcements we add to the forum, will display on our new page.<br />
So let&#8217;s drag the Announcement module into the top block on the new page (you can see the blocks outlined in dotted lines).</p>
<div style="text-align: center;">
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63100&amp;d=1353963496" id="attachment63100" rel="Lightbox_2538" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63100&amp;d=1353963496" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture4.jpg&nbsp;<br />
Views:	209&nbsp;<br />
Size:	50.9 KB&nbsp;<br />
ID:	63100" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
</div>
<p>
Having done this, we can now add something into the main block on the page.<br />
Let&#8217;s keep things stgraightforward for now and put an Activity Stream in there.<br />
Drag the Activity Stream module into the main block, as below.</p>
<div style="text-align: center;">
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63102&amp;d=1353963774" id="attachment63102" rel="Lightbox_2538" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63102&amp;d=1353963774" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture5.jpg&nbsp;<br />
Views:	209&nbsp;<br />
Size:	53.3 KB&nbsp;<br />
ID:	63102" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
</div>
<p>
You can now configure your Activity Stream in the normal way by clicking on the Pencil icon.</p>
<div style="text-align: center;">
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63103&amp;d=1353963910" id="attachment63103" rel="Lightbox_2538" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63103&amp;d=1353963910" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture6.jpg&nbsp;<br />
Views:	207&nbsp;<br />
Size:	68.1 KB&nbsp;<br />
ID:	63103" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
</div>
<p>
Now to complete our page, let&#8217;s insert a Who&#8217;s Online block over on the right hand side.</p>
<div style="text-align: center;">
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63104&amp;d=1353964072" id="attachment63104" rel="Lightbox_2538" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63104&amp;d=1353964072" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture7.jpg&nbsp;<br />
Views:	205&nbsp;<br />
Size:	65.9 KB&nbsp;<br />
ID:	63104" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
</div>
<p>
We&#8217;re almost done!<br />
Now, let&#8217;s save our page.<br />
Click &#8220;Save New Page&#8221; at the top.</p>
<div style="text-align: center;">
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63105&amp;d=1353964129" id="attachment63105" rel="Lightbox_2538" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63105&amp;d=1353964129" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture8.JPG&nbsp;<br />
Views:	209&nbsp;<br />
Size:	11.5 KB&nbsp;<br />
ID:	63105" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
</div>
<p>
In the &#8220;Save Page&#8221; box that appears, fill in the following fields:<br />
<b>Save the page name:</b> Home Page<br />
(This will be the name of the page that will display as its title)</p>
<p><b>Save the page URL based on the page name:</b> home<br />
(This will be the URL that you will use to access the page)</p>
<p><b>Template Option:</b> home<br />
(This will be the name of the template used to render the page)</p>
<p>Then click the green &#8220;OK&#8221; button.</p>
<div style="text-align: center;">
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63106&amp;d=1353964204" id="attachment63106" rel="Lightbox_2538" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63106&amp;d=1353964204" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture9.JPG&nbsp;<br />
Views:	209&nbsp;<br />
Size:	39.5 KB&nbsp;<br />
ID:	63106" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
</div>
<p>
You should now be able to test your new page by going to www.yoursite.com/forum/home</p>
<p>Now that we&#8217;ve created the page, we need to make the root domain redirect to this page, and to do this we needto edit the.htaccess file in the root folder for your site.</p>
<p><b><font color="#FF0000">It is important to make sure you EDIT the existing .htaccess file, rather than creating a new one, otherwise you will break some of vB5&#8242;s core functionality and your site will not work!</font></b></p>
<p>The following code is based on your forum being in the folder structure  www.yoursite.com/forum and your new homepage is at www.yoursite.com/forum/home. If you have different settings, please amend this code <b><font color="#FF0000">accordingly. If you&#8217;re not sure how, post in the vB5 support forum for assistance.<br />
NOTE: Take a copy of your existing .htaccess file FIRST so you can restore it if anything goes wrong!</font></b></p>
<p>Add this code underneath whatever is already in your .htaccess file.<br />
You will also need to replace <font color="#FF0000">www.yoursite.com</font> and <font color="#FF0000">yoursite</font> with your site&#8217;s root url.</p>
<div class="bbcode_container">
<div class="bbcode_description">Code:</div>
<pre class="bbcode_code"style="height:72px;">RewriteEngine on
RewriteCond %{HTTP_HOST} ^<font color="#FF0000">yoursite</font>\.com$  
RewriteRule (.*) http://<font color="#FF0000">www.yoursite.com</font>/$  1 [R=301,L]
RewriteRule ^$   forum/home [L]</pre>
</div>
<p>Once you have saved and uploaded your edited .htaccess file, try visiting your root URL (www.yoursite.com) and you should be redirected to your new home page!</p>
<p><b>If you are happy with your page, you might want to add a ta for it into your navbar.<br />
Click <a href="https://www.vbulletin.com/forum/entry.php/2539-How-to-add-a-custom-page-to-the-vBulletin-5-navbar" target="_blank">HERE</a> for a tutorial on this.</b></p></blockquote>
<p><a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2538-How-to-create-a-custom-home-page-in-vBulletin-5-Connect">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2012/12/how-to-create-a-custom-home-page-in-vbulletin-5-connect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a Latest Updated Topics module in vBulletin 5 Connect</title>
		<link>http://www.vbmode.com/2012/12/how-to-create-a-latest-updated-topics-module-in-vbulletin-5-connect/</link>
		<comments>http://www.vbmode.com/2012/12/how-to-create-a-latest-updated-topics-module-in-vbulletin-5-connect/#comments</comments>
		<pubDate>Thu, 20 Dec 2012 21:12:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Connect.]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[Latest]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[Topics]]></category>
		<category><![CDATA[Updated]]></category>
		<category><![CDATA[vBulletin.]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2012/12/how-to-create-a-latest-updated-topics-module-in-vbulletin-5-connect/</guid>
		<description><![CDATA[In this blog, I will show you how to create a &#8220;Latest Updated Topics&#8221; module, similar to the one you can see below on the official demo site: First, make sure you are logged in as an admin, and ensure &#8230; <a href="http://www.vbmode.com/2012/12/how-to-create-a-latest-updated-topics-module-in-vbulletin-5-connect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p>In this blog, I will show you how to create a &#8220;Latest Updated Topics&#8221; module, similar to the one you can see below on the official demo site:</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63398&amp;d=1355952073" id="attachment63398" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63398&amp;d=1355952073" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt1.JPG&nbsp;<br />
Views:	101&nbsp;<br />
Size:	73.6 KB&nbsp;<br />
ID:	63398" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
First, make sure you are logged in as an admin, and ensure &#8220;Edit Site&#8221; is on in the top right corner of the page.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63399&amp;d=1355952199" id="attachment63399" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63399&amp;d=1354135422" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt2.JPG&nbsp;<br />
Views:	102&nbsp;<br />
Size:	16.0 KB&nbsp;<br />
ID:	63399" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
Make sure you are on the page you would like to add your module. I will add it on the main forum index, above the forum list.</p>
<p>Click &#8220;Edit Page&#8221; in the admin bar at the top.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63400&amp;d=1355952582" id="attachment63400" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63400&amp;d=1355952582" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt3.JPG&nbsp;<br />
Views:	62&nbsp;<br />
Size:	28.0 KB&nbsp;<br />
ID:	63400" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
Enter your admin password if requested.</p>
<p>Drag the &#8220;Search Module&#8221; box to to wherever you want to place the module&#8230;in this case, we will place it just above the &#8220;Latest Activity Module&#8221;, which is what displays the forum list.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63410&amp;d=1355954877" id="attachment63410" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63410&amp;d=1355954877" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt4.JPG&nbsp;<br />
Views:	64&nbsp;<br />
Size:	73.6 KB&nbsp;<br />
ID:	63410" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
It can be tricky to position it correctly&#8230;watch the red line that appears as this indicates the position.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63402&amp;d=1355953518" id="attachment63402" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63402&amp;d=1355953518" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt5.JPG&nbsp;<br />
Views:	62&nbsp;<br />
Size:	31.1 KB&nbsp;<br />
ID:	63402" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
Once positioned, click on the pencil icon to configure the module.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63403&amp;d=1355953664" id="attachment63403" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63403&amp;d=1355953664" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt6.jpg&nbsp;<br />
Views:	67&nbsp;<br />
Size:	43.8 KB&nbsp;<br />
ID:	63403" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
In the window that pops up, click &#8220;Switch to Advanced Editor&#8221;.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63404&amp;d=1355953782" id="attachment63404" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63404&amp;d=1355953782" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt7.jpg&nbsp;<br />
Views:	68&nbsp;<br />
Size:	64.4 KB&nbsp;<br />
ID:	63404" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
In the Advanced Editor that appears, enter the following:</p>
<p>Widget Title: Latest Updated Topics<br />
Number of results: 5  (or however many you would like)<br />
Search JSON:<br />
Copy and paste the following code exactly and carefully:</p>
<div class="bbcode_container">
<div class="bbcode_description">Code:</div>
<pre class="bbcode_code"style="height:36px;">{"date":{"from":"lastVisit"},"view":"topic","sort":{"lastcontent":"desc"},"exclude_type":["vBForum_PrivateMessage"]}</pre>
</div>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63405&amp;d=1355954038" id="attachment63405" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63405&amp;d=1355954038" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt8.JPG&nbsp;<br />
Views:	63&nbsp;<br />
Size:	36.3 KB&nbsp;<br />
ID:	63405" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
Click &#8220;Save Changes&#8221;.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63414&amp;d=1355959720" id="attachment63414" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63414&amp;d=1355959520" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt9.jpg&nbsp;<br />
Views:	51&nbsp;<br />
Size:	62.5 KB&nbsp;<br />
ID:	63414" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
Click &#8220;Save Page&#8221;.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63407&amp;d=1355954207" id="attachment63407" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63407&amp;d=1355954207" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt10.jpg&nbsp;<br />
Views:	68&nbsp;<br />
Size:	28.9 KB&nbsp;<br />
ID:	63407" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
Click &#8220;OK&#8221;.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63408&amp;d=1355954307" id="attachment63408" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63408&amp;d=1355954307" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt12.jpg&nbsp;<br />
Views:	68&nbsp;<br />
Size:	43.5 KB&nbsp;<br />
ID:	63408" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
Finally, click &#8220;Save Page&#8221;.</p>
<div class="cms_table">
<table class="cms_table_outer_border" width="300" align="center">
<tr valign="top" class="cms_table_outer_border_tr"><TD class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63409&amp;d=1355954398" id="attachment63409" rel="Lightbox_2541" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63409&amp;d=1355954398" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	lt13.jpg&nbsp;<br />
Views:	63&nbsp;<br />
Size:	31.1 KB&nbsp;<br />
ID:	63409" class="align_center size_large" /></a></div>
<p></TD><br />
</tr>
</table>
</div>
<p>
And that&#8217;s it! You should now have your &#8220;Latest Updated Topics&#8221; module.</p>
<p>If you require any assistance, please post in the <a href="https://www.vbulletin.com/forum/forumdisplay.php/198-vBulletin-5-Site-Builder" target="_blank">vBulletin 5 Site Builder</a> forum.</p>
<p>Thanks to Wayne Luke for providing the JSON code.</p></blockquote>
<p><a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2541-How-to-create-a-Latest-Updated-Topics-module-in-vBulletin-5-Connect">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2012/12/how-to-create-a-latest-updated-topics-module-in-vbulletin-5-connect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a custom page to the vBulletin 5 Connect navbar</title>
		<link>http://www.vbmode.com/2012/12/how-to-add-a-custom-page-to-the-vbulletin-5-connect-navbar/</link>
		<comments>http://www.vbmode.com/2012/12/how-to-add-a-custom-page-to-the-vbulletin-5-connect-navbar/#comments</comments>
		<pubDate>Wed, 19 Dec 2012 04:42:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Connect.]]></category>
		<category><![CDATA[Custom]]></category>
		<category><![CDATA[navbar]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[vBulletin.]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2012/12/how-to-add-a-custom-page-to-the-vbulletin-5-connect-navbar/</guid>
		<description><![CDATA[This tutorial will help you to add a custom page that you have created using THESE instructions. Firstly, make sure you are logged in as an Admin &#8211; so you can access Site Builder. Then, switch Site Builder ON using &#8230; <a href="http://www.vbmode.com/2012/12/how-to-add-a-custom-page-to-the-vbulletin-5-connect-navbar/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p>This tutorial will help you to add a custom page that you have created using <a href="https://www.vbulletin.com/forum/entry.php/2538-How-to-create-a-custom-home-page-in-vBulletin-5-Connect" target="_blank">THESE</a> instructions.</p>
<p>Firstly, make sure you are logged in as an Admin &#8211; so you can access Site Builder.</p>
<p>Then, switch Site Builder ON using the switch at the very top right of the screen.</p>
<div class="cms_table">
<table width="300" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63128&amp;d=1354135422" id="attachment63128" rel="Lightbox_2539" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63128&amp;d=1354135422" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture1.JPG&nbsp;<br />
Views:	350&nbsp;<br />
Size:	16.0 KB&nbsp;<br />
ID:	63128" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>Then, click &#8220;Navigation Bar&#8221; from the site builder menu.</p>
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63129&amp;d=1354135565" id="attachment63129" rel="Lightbox_2539" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63129&amp;d=1354135565" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture2.JPG&nbsp;<br />
Views:	348&nbsp;<br />
Size:	38.0 KB&nbsp;<br />
ID:	63129" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>Authenticate your admin session if required:</p>
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63130&amp;d=1354135685" id="attachment63130" rel="Lightbox_2539" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63130&amp;d=1354135685" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture3.JPG&nbsp;<br />
Views:	137&nbsp;<br />
Size:	19.7 KB&nbsp;<br />
ID:	63130" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>
You will now be presented with the Navigation Bar menu.<br />
Click &#8220;New Navigation Item&#8221;.</p>
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63131&amp;d=1354135791" id="attachment63131" rel="Lightbox_2539" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63131&amp;d=1354135791" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture4.JPG&nbsp;<br />
Views:	135&nbsp;<br />
Size:	30.9 KB&nbsp;<br />
ID:	63131" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>You will now be presented with the below menu:</p>
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63132&amp;d=1354135852" id="attachment63132" rel="Lightbox_2539" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63132&amp;d=1354135852" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture5.JPG&nbsp;<br />
Views:	134&nbsp;<br />
Size:	16.9 KB&nbsp;<br />
ID:	63132" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>In our earlier tutorial, where we created the custom page, we gave it a URL.<br />
We now need to enter the following information:<br />
<b>Navigation Item Name: </b>The text you want to actually appear on this navbar tab.<br />
<b>Target URL: </b>The URL you gave this page. In our case, this was /home.</p>
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63133&amp;d=1354136053" id="attachment63133" rel="Lightbox_2539" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63133&amp;d=1354136053" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture6.JPG&nbsp;<br />
Views:	134&nbsp;<br />
Size:	17.2 KB&nbsp;<br />
ID:	63133" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>If you require this tab to open in a new window, tick &#8220;Open in New Window&#8221;.<br />
To restrict visibility of this tab to specific usergroups, click &#8220;User Groups: Edit&#8221; and select the required usergroups from the below screen:</p>
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63134&amp;d=1354136160" id="attachment63134" rel="Lightbox_2539" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63134&amp;d=1354136160" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture7.JPG&nbsp;<br />
Views:	133&nbsp;<br />
Size:	28.7 KB&nbsp;<br />
ID:	63134" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>Back on the main screen, when you are happy click &#8220;Save&#8221;.<br />
You can now see your new tab in the list of available tabs. You can drag these tabs up and down to reorder them to suit.</p>
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63135&amp;d=1354136280" id="attachment63135" rel="Lightbox_2539" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63135&amp;d=1354136280" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture8.JPG&nbsp;<br />
Views:	132&nbsp;<br />
Size:	16.4 KB&nbsp;<br />
ID:	63135" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>When you are happy, click &#8220;Save Changes&#8221; at the top.</p>
<div class="cms_table">
<table width="500" class="cms_table_outer_border" align="center">
<tr valign="top" class="cms_table_outer_border_tr">
<td class="cms_table_outer_border_td">
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=63136&amp;d=1354136387" id="attachment63136" rel="Lightbox_2539" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=63136&amp;d=1354136387" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	Capture9.JPG&nbsp;<br />
Views:	134&nbsp;<br />
Size:	11.4 KB&nbsp;<br />
ID:	63136" class="align_center size_large" /></a></div>
</td>
</tr>
</table>
</div>
<p>Refresh your page, and test your new tab. If you have created both the page and the tab correctly, you should find your new tab highlights when the relevant page is being viewed.</p></blockquote>
<p><a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2539-How-to-add-a-custom-page-to-the-vBulletin-5-Connect-navbar">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2012/12/how-to-add-a-custom-page-to-the-vbulletin-5-connect-navbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Repair MySQL Database Corruption [2012]</title>
		<link>http://www.vbmode.com/2012/11/how-to-repair-mysql-database-corruption-2012/</link>
		<comments>http://www.vbmode.com/2012/11/how-to-repair-mysql-database-corruption-2012/#comments</comments>
		<pubDate>Sat, 10 Nov 2012 11:10:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[Corruption]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Repair]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2012/11/how-to-repair-mysql-database-corruption-2012/</guid>
		<description><![CDATA[Your web host or vBulletin tech support staff have told you that your MySQL database for your forums is possibly corrupted. This thread outlines several methods for repairing the corruption. Important Notes: If you are unsure of or do not &#8230; <a href="http://www.vbmode.com/2012/11/how-to-repair-mysql-database-corruption-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p>Your web host or vBulletin tech support staff have told you that your MySQL database for your forums is possibly corrupted. This thread outlines several methods for repairing the corruption.</p>
<p><font size="4"><b>Important Notes:</b></font></p>
<ul>
<li style="">If you are unsure of or do not entirely understand the below outlined steps, please contact your web host and ask they perform these steps for you. You can provide your web host with a link to this article.</li>
<li style="">Repairing corruption in some instances means deleting corrupted data from MySQL database. So <b><u>ideally you should always regularly backup your MySQL databases on your server or hosting account</u></b>. And also make backups of your database <b>BEFORE</b> attempting repair in case repair deletes data which you may have other avenues or getting back if you still have access to a backup of the corrupted database state.</li>
<li style="">Only real defence against data corruption is to <b><u>always do regular backups your MySQL databases on your server or hosting account</u></b> !</li>
<li style="">MySQL database repair methods and process differ greatly between MySQL MyISAM and InnoDB storage engine tables. Most of the below outlined processes are for repairing MyISAM database tables. The most common method of repairing InnoDB storage engine is restoring the entire database and all tables from a recent backup (<b>NOT just single or select few InnoDB tables</b> &#8211; that won&#8217;t work and will mess up your database even more if you attempt to restore single or partial set of InnoDB database tables). Again, very important you have regular MySQL database full backups of your entire databases&#8217; tables preferably via mysqldump within SSH telnet <a href="http://www.vbulletin.com/docs/html/main/maintenance_ssh_backup" target="_blank">http://www.vbulletin.com/docs/html/m&#8230;nce_ssh_backup</a> which is only available for VPS/Dedicated server owners. For shared hosting, ask your web host about MySQL database backups and what options are available to you.</li>
<li style="">Ensure you have adequate disk free space on /tmp (for linux or windows equivalent) and mysql data directory partitions i.e. /var/lib/mysql (linux). You&#8217;d need at least 2x to 5x times the amount of disk space as the largest sized MySQL database table. So if you have 2GB sized post table, you&#8217;d need at least 4-10GB of free disk space on /tmp and/or /var/lib/mysql to perform optimize or repair operations. Otherwise you&#8217;d end up failing to repair or optimize your database and end up corrupting it even more.</li>
<li style="">Any MySQL Database tables which use Memory storage engine such as cpsession or session <b>DO NOT</b> support repair/optimize so ignore any errors related to those tables not supporting repair/optimize</li>
<li style="">You should run repair or optimize commands only against MyISAM storage engine tables and not InnoDB and InnoDB technically doesn&#8217;t support repair or optimize command and is mapped to ALTER table command to rebuild the InnoDB table (<a href="http://dev.mysql.com/doc/refman/5.1/en/optimize-table.html" target="_blank">http://dev.mysql.com/doc/refman/5.1/en/optimize-table.html)</a>. Frequently running optimize command against InnoDB storage engine tables will end up also bloating and increasing your disk usage if you are using the default InnoDB shared tablespace &#8211; where all your InnoDB table data is stored usually <b>ibdata1</b> file in /var/lib/mysql. Very important <b>DO NOT</b> delete <b>ibdata1</b> file !
<div class="bbcode_container">
<div class="bbcode_quote">
<div class="quote_container">
<div class="bbcode_quote_container"></div>
<p>				For InnoDB tables, OPTIMIZE TABLE is mapped to ALTER TABLE, which rebuilds the table to update index statistics and free unused space in the clustered index.</p></div>
</p></div>
</div>
</li>
<li style="">While database repair or optimize is being run, your server cpu and resource usage loads will increase</li>
<li style="">While database repair or optimize is being run, your forums performance will slow down, lag or hang when navigating the forums.</li>
</ul>
<p><b><font size="4">Repair Methods:</font></b></p>
<p>There are several ways to repair vBulletin forum MySQL database corruption:</p>
<ul>
<li style=""><b>Method 1:</b> Use mysqlcheck command line via SSH Telnet. Only VPS or dedicated server owners would have SSH Telnet access but it&#8217;s the best way to repair corruption if you have access.</li>
<li style=""><b>Method 2:</b> Via vB AdminCP Control panel &#8211; may not repair all forms of corruption.</li>
</ul>
<p><b>==========================================================================</b><br />
<font size="3"><b>Method 1: Use mysqlcheck via SSH Telnet for VPS/Dedicated server owners</b></font><br />
<b>==========================================================================</b></p>
<div style="margin-left:40px">
<b>step 1.</b> <b>Immediately</b>, upon noticing MySQL database corruption, <b><font size="3">CLOSE</font></b> or your forums via AdminCP to prevent further writes to MySQL databases.</p>
<p><b>step 2.</b> <b><font size="3">BACKUP your forum MySQL database</font></b> <b><font size="3"><font color="#FF0000">BEFORE</font></font></b> running repair/optimize using mysqldump to sql file using ssh2 telnet and mysqldump as outlined here <a href="http://www.vbulletin.com/docs/html/main/maintenance_ssh_backup" target="_blank">http://www.vbulletin.com/docs/html/m&#8230;nce_ssh_backup</a>. Or get your web host to backup your database for you if you don&#8217;t have SSH Telnet access. <b>DO NOT</b> solely rely on backups via phpmyadmin which may timeout or result in incomplete backups!</p>
<p><b>step 3.</b> To repair such corruption log into server using ssh telnet as root user preferably try using mysqlcheck <a href="http://dev.mysql.com/doc/refman/5.1/en/mysqlcheck.html" target="_blank">http://dev.mysql.com/doc/refman/5.1/en/mysqlcheck.html</a></p>
<p>1. check database tables</p>
<p><b>mysqlcheck -s -u mysqlusername -p vbforumdbname</b></p>
<p>ignore session and cp session table messages and on mysql 5.1.x, ignore errors related to mysql.general_log and mysql.slow_log they don&#8217;t support mysqlcheck.</p>
<p>2. repair table</p>
<p><b>mysqlcheck -r -q -u mysqlusername -p vbforumdbname</b></p>
<p>
3. recheck database tables</p>
<p><b>mysqlcheck -s -u mysqlusername -p vbforumdbname</b></p>
<p>if still get corruption errors that aren&#8217;t related to vB session tables, then run</p>
<p><b>mysqlcheck -r -u mysqlusername -p vbforumdbname</b></p>
<p>if you want to do one table at a time then add tablename(s) to end of commandline</p>
<p>i.e.</p>
<p><b>mysqlcheck -s -u mysqlusername -p vbforumdbname tablename1 tablename2 tablename3</b></p>
<p>Personally, I suggest the mysqlcheck method as REPAIR doesn&#8217;t fix all forms of corruption.</p>
<p>4. To optimise database</p>
<p><b>mysqlcheck -o -u mysqlusername -p vbforumdbname</b></p>
<p>I would take copy and paste the resulting output from mysqlcheck command to your own text files for your own records so as to know what tables you repaired.</p></div>
<p>
<b>==========================================================================</b><br />
<font size="3"><b>Method 2: Via vB AdminCP Control panel &#8211; may not repair all forms of corruption</b></font><br />
<b>==========================================================================</b></p>
<p>Basically, web gui interface to access <a href="http://dev.mysql.com/doc/refman/5.1/en/check-table.html" target="_blank">MySQL CHECK</a>, <a href="http://dev.mysql.com/doc/refman/5.1/en/repair-table.html" target="_blank">MySQL REPAIR</a> and <a href="http://dev.mysql.com/doc/refman/5.1/en/optimize-table.html" target="_blank">MySQL OPTIMIZE</a> commands.</p>
<div style="margin-left:40px">
<b>AdminCP -> Maintenance -> Repair / Optimize Tables</b></p>
<p><b>step 1.</b> <b>Immediately</b>, upon noticing MySQL database corruption, <b><font size="3">CLOSE</font></b> or your forums via AdminCP to prevent further writes to MySQL databases.</p>
<p><b>step 2.</b> <b><font size="3">BACKUP your forum MySQL database</font></b> <b><font size="3"><font color="#FF0000">BEFORE</font></font></b> running repair/optimize using mysqldump to sql file using ssh2 telnet and mysqldump as outlined here <a href="http://www.vbulletin.com/docs/html/main/maintenance_ssh_backup" target="_blank">http://www.vbulletin.com/docs/html/m&#8230;nce_ssh_backup</a>. Or get your web host to backup your database for you if you don&#8217;t have SSH Telnet access. <b>DO NOT</b> solely rely on backups via phpmyadmin which may timeout or result in incomplete backups!</p>
<p><b>step 3.</b> Log into your forum&#8217;s AdminCP control panel and navigate the left frame column to Maintenance menu and expand that option to reveal, Repair / Optimize Tables option link.</p>
<p><b>step 4.</b> Check the checkbox next to all or specific vB database tables you want to run repair and optimize command against. </p>
<p>You can see which MySQL Tables are MyISAM, InnoDB or Memory storage engine based via <b>AdminCP -> Maintenance -> Diganostics -> System Information -> Select Table Status</b> drop down and run it</p>
<p><img src="http://vbtechsupport.com/vbulletin/420pl3/screenshots/vb420pl3_admincp_diagnostics_table_status_01.png" border="0" alt="" /></p>
<p>Second column reports what each vB MySQL database table&#8217;s storage engine is MyISAM, InnoDB or Memory </p>
<p><img src="http://vbtechsupport.com/vbulletin/420pl3/screenshots/vb420pl3_admincp_diagnostics_table_status_02.png" border="0" alt="" /></p>
<p>Once you figure out which are MyISAM storage engine tables, you can check them under <b>AdminCP -> Maintenance -> Repair / Optimize Tables</b></p>
<p><img src="http://vbtechsupport.com/vbulletin/420pl3/screenshots/vb420pl3_admincp_database_repair_optimize_01.png" border="0" alt="" /></p>
<p><b>step 5.</b> Then, check the boxes to choose if you want to run repair and/or optimize against. Then wait for the process to complete. It can take seconds to hours depending on size of MySQL database tables and your server hardware and configuration settings.</p>
<p><img src="http://vbtechsupport.com/vbulletin/420pl3/screenshots/vb420pl3_admincp_database_repair_optimize_02.png" border="0" alt="" /></p>
<p><b>step 6.</b> When repair or optimize process is complete you should see something like below image. I ran optimize and repair against attachment and stylevar table. As you can see attachment table was InnoDB storage engine based and didn&#8217;t support optimize command while stylevar was MyISAM storage engine based and ran optimize fine. I would take a screenshot or save the right html frame for your own records so as to know what tables you repaired.</p>
<p><img src="http://vbtechsupport.com/vbulletin/420pl3/screenshots/vb420pl3_admincp_database_repair_optimize_03.png" border="0" alt="" /></div>
</blockquote>
<p><a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2536-How-to-Repair-MySQL-Database-Corruption-2012">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2012/11/how-to-repair-mysql-database-corruption-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Custom Landing Pages in vBulletin 5 Connect</title>
		<link>http://www.vbmode.com/2012/10/creating-custom-landing-pages-in-vbulletin-5-connect/</link>
		<comments>http://www.vbmode.com/2012/10/creating-custom-landing-pages-in-vbulletin-5-connect/#comments</comments>
		<pubDate>Sat, 27 Oct 2012 23:51:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Connect.]]></category>
		<category><![CDATA[Creating]]></category>
		<category><![CDATA[Custom]]></category>
		<category><![CDATA[Landing]]></category>
		<category><![CDATA[Pages]]></category>
		<category><![CDATA[vBulletin.]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2012/10/creating-custom-landing-pages-in-vbulletin-5-connect/</guid>
		<description><![CDATA[One of the largest new features in vBulletin 5 Connect is the Site Builder. It allows you to customize your site like never before. The Site Builder is a refinement of the Layout and Widget system used for the CMS &#8230; <a href="http://www.vbmode.com/2012/10/creating-custom-landing-pages-in-vbulletin-5-connect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p>One of the largest new features in vBulletin 5 Connect is the Site Builder. It allows you to customize your site like never before. The Site Builder is a refinement of the Layout and Widget system used for the CMS in the vBulletin 4 Publishing Suite. With it you can customize most pages and create custom pages. One of the purposes of a custom page is to create landing pages for your website. These can be used to track advertising campaigns, provide various entry points or test new layouts easily.</p>
<p>
To do this, we need to open Site Builder and create a New Page. You can do this from any location on your vBulletin 5 Connect Site. Let&#8217;s get started.</p>
<p>
<font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">1.</span></font></b></font> First make sure Site Builder is turned on by clicking the toggle to the left of your Username in the header of the page.</p>
<div class="size_fullsize"><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=62732&amp;d=1351276086" border="0" alt="Name:  Site Builder Off.png<br />
Views: 279<br />
Size:  3.1 KB" class="align_center" /></div>
<p>
<font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">2.</span></font></b></font> Now your header should look like this:</p>
<div class="size_fullsize"><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=62733&amp;d=1351276115" border="0" alt="Name:  Site Builder On.png<br />
Views: 271<br />
Size:  8.2 KB" class="align_center" /></div>
<p>
<font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">3.</span></font></b></font> Click on New Page.</p>
<p>
<font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">4.</span></font></b></font> The system will give you a new one column page with three sections on it and show the Add Modules portion of the Page Builder. We&#8217;re not going to add any modules just yet. First click on the &#8220;Choose Layout&#8221; tab and select the 30/70 Two Column layout. Your page should look like this now:</p>
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=62734&amp;d=1351276271" id="attachment62734" rel="Lightbox_2535" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=62734&amp;d=1351276271" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	chooseme.png&nbsp;<br />
Views:	267&nbsp;<br />
Size:	7.3 KB&nbsp;<br />
ID:	62734" class="align_center size_large" /></a></div>
<p>
<font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">5.</span></font></b></font> Now let&#8217;s go back to the Add Module tab and add some modules.  The top of your screen should look similar to this:</p>
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=62735&amp;d=1351276401" id="attachment62735" rel="Lightbox_2535" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=62735&amp;d=1351276401" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	modules.png&nbsp;<br />
Views:	270&nbsp;<br />
Size:	5.3 KB&nbsp;<br />
ID:	62735" class="align_center size_large" /></a></div>
<p><font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">6.</span></font></b></font> In the top section let&#8217;s put the Announcement Module. Announcements are a good way to provide information to your users. </p>
<p><font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">7.</span></font></b></font> In the left column, lets add an tag cloud, ad module, online users and the today&#8217;s birthdays module. </p>
<p><font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">8.</span></font></b></font> In the main column add the Static HTML Module and the Activity Stream Module. </p>
<div class="contentnote" style="border: 1px solid #0B1986;color:#000;background-color:#F5FFFF;padding:5px;"> To add modules, click on them and drag them into the location you want them. Once positioned in the order you like them, drop them.</div>
<p><font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">9.</span></font></b></font> Once you have your modules positioned we&#8217;re going to save our work. So let&#8217;s click &#8220;Save Page&#8221; at the top. Give the page a name like &#8220;My Custom Landing Page&#8221;. Notice the URL will automatically fill in. If you wish you can change it but let&#8217;s keep it for now. You&#8217;ll also have to specify a template name. So name your template Custom Landing Page, in case you want to use it again.</p>
<p><font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">10.</span></font></b></font> Click the Save Button.</p>
<p><font color="#808080"><b><font size="4"><span style="font-family: Arial Narrow">11.</span></font></b></font> Now you can edit the page again to configure your modules as desired. As you save each one it saves it configuration. While you don&#8217;t need to resave the page again when done, I always do just to make sure the changes take effect immediately.</p>
<p>Repeat the steps above for each page you want to create. Use the URL created when the page is saved to add the page to your navigation and share the landing page in campaigns.</p></blockquote>
<p><a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2535-Creating-Custom-Landing-Pages-in-vBulletin-5-Connect">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2012/10/creating-custom-landing-pages-in-vbulletin-5-connect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overview of Pages in vBulletin 5 Connect.</title>
		<link>http://www.vbmode.com/2012/10/overview-of-pages-in-vbulletin-5-connect/</link>
		<comments>http://www.vbmode.com/2012/10/overview-of-pages-in-vbulletin-5-connect/#comments</comments>
		<pubDate>Wed, 17 Oct 2012 21:21:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Connect.]]></category>
		<category><![CDATA[Overview]]></category>
		<category><![CDATA[Pages]]></category>
		<category><![CDATA[vBulletin.]]></category>

		<guid isPermaLink="false">http://www.vbmode.com/2012/10/overview-of-pages-in-vbulletin-5-connect/</guid>
		<description><![CDATA[vBulletin 5 Connect brings a modular design to building an online community. In past versions of vBulletin, the design of the site was rather static and there wasn&#8217;t an easy way to control where things are located. Editing the templates &#8230; <a href="http://www.vbmode.com/2012/10/overview-of-pages-in-vbulletin-5-connect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<blockquote class="blogcontent restore"><p>vBulletin 5 Connect brings a modular design to building an online community. In past versions of vBulletin, the design of the site was rather static and there wasn&#8217;t an easy way to control where things are located. Editing the templates was time consuming and difficult if you didn&#8217;t know PHP. New pages usually had to be created with PHP code and addons. While these are still possible methods of customizing your vBulletin site, vBulletin 5 Connect introduces the Site Builder. This new tool allows you to build and customize pages without knowledge of HTML or PHP Code. You can easily create custom pages using only the mouse. However to understand how things are put together and to build new pages, a little background is needed. In vBulletin 5, there are four basic components to a generated page and the content it shows. These are Pages, Channels, Modules, and the actual content.</p>
<p><font size="3"><b>Channels</b></font><br />
Channels are content containers in vBulletin 5 Connect. They are specialized nodes that allow you to build structure on the site. Channels can be several different types. These are Forums, Blogs, Social Groups and Special. If you have used vBulletin in the past, you can view Channels as an extension of the forums used in those versions. When you install vBulletin 5 Connect, there are a number of channels created. The Special channel holds things like private messages, albums, and other user content. You can control access to the different channels via permissions.</p>
<p><font size="3"><b>Pages</b></font><br />
When using Site Builder, a page is where you build the display of your content. There are two types of pages in vBulletin 5 Connect. The first type are System Pages. These are the pages that are created during installation and provide the basic anatomy of a new website. Also each channel that you create will generate one or more pages to show its content. Some system pages can be heavily modified. Some like the registration page are faily static. The second type of page is the Custom Page. Custom Pages are any page that the Site Admins create to enhance functionality of the system.</p>
<p><b>Content</b><br />
This is the actual content of your site whether it is Forum Topics, Blog Entries, or Group Discussions. This content is display in the various modules based on the options you set. You can display topics in a variety of Modules but the primary ones that will be used are the Activity Stream Module and the Search Module.</p>
<p><font size="3"><b>Anatomy of a Page</b></font><br />
Each Page is made of of various elements to present the user with an interface to the site. Some elements are global to all pages. These include the Header, Navigation Bar, Breadcrumb, Notices and Footer. The rest of the Page is determine by the options you choose and the modules you configure.</p>
<p>Here is the basic layout of a vBulletin 5 Connect Page:</p>
<div class="img_align_center "><a href="https://www.vbulletin.com/forum/attachment.php?attachmentid=62613&amp;d=1350492270" id="attachment62613" rel="Lightbox_2533" ><img src="https://www.vbulletin.com/forum/attachment.php?attachmentid=62613&amp;d=1350492270" border="0" alt="Click image for larger version.&nbsp;</p>
<p>Name:	pagemockup.png&nbsp;<br />
Views:	54&nbsp;<br />
Size:	51.8 KB&nbsp;<br />
ID:	62613" class="align_center size_medium" title="Click for larger view." /></a></div>
<p>
When you build pages, you will be primarily focusing on the Content area image above. Content is divided into up to three sections and we provide layouts with one or two columns at this time. Each section can contain multiple Modules and you control their positioning via drag and drop.</p>
<p><b>Page Layouts<br />
</b>The basic building block of a page is a Page Layout. Currently we provide three. These are:</p>
<ul>
<li style="">One Column (100%)</li>
<li style="">Two Column with Left Sidebar (30/70%)</li>
<li style="">Two Column with Right Sidebar (70/30%)</li>
</ul>
<p><b>Modules</b><br />
Modules are similar to Widgets in the vBulletin 4 Publishing Suite and Forum Blocks in the vBulletin 4 Forums. The main difference here is you can use the available modules on any page and in almost any section of the page. While the default system only ships with 12 modules currently, more will be added over time. The 12 modules it ships with are enough to build custom pages though.</p>
<p><b>Custom Modules<br />
</b>Several types of Modules (Search, Ad, Static HTML and Video) can be stored as Custom Modules. This allows you to customize them once and then use them on multiple pages.<br />
<b><br />
Page Templates</b><br />
The content area of each page is controlled by a Page Template. You can reuse page template or create a custom one for each page on the site. The Page Template is the stored value of your Screen Layout (1 or 2 columns) and the Modules that you have placed.</p>
<p>
The Page is going to be the primary focus of Admins using Site Builder. Over the next few weeks, I&#8217;ll cover the different aspects of creating pages, building navigation and using other tools in the Site Builder in order to create a custom community.</p></blockquote>
<p><a rel="nofollow" href="https://www.vbulletin.com/forum/entry.php/2533-Overview-of-Pages-in-vBulletin-5-Connect">vBulletin Community Forum &#8211; Blogs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vbmode.com/2012/10/overview-of-pages-in-vbulletin-5-connect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
