<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[MyBB Codes - Tutorials]]></title>
		<link>http://www.mybbcodes.com/</link>
		<description><![CDATA[MyBB Codes - http://www.mybbcodes.com]]></description>
		<pubDate>Mon, 18 May 2026 10:55:51 -0400</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[[Tutorial&#93; Adding Thread Type (Sticky)]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1150</link>
			<pubDate>Thu, 10 Dec 2009 18:21:02 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1150</guid>
			<description><![CDATA[Hello guys.<br />
I made this tutorial to show you how to add the thread type before the post like "Poll:" (already in MyBB).<br />
<br />
The Poll is already in MyBB. When you create a poll the forum display will input the "Poll: THREAD NAME".<br />
<br />
After this tutorial you will make a sticky thread and before the name it will display "Sticky: THREAD NAME".<br />
<br />
So...lets start? =D<br />
<br />
<span style="font-style: italic;">First of all make a backup of the <span style="font-weight: bold;">./MYBB_ROOT/forumdisplay.php</span> and <span style="font-weight: bold;">inc/languages/english/global.lang.php</span> in case you need to back to the old files.</span><br />
<br />
1- Go to ./MYBB_ROOT/forumdisplay.php and search for:<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(&#36;thread['sticky'&#93; == "1" &amp;&amp; !&#36;donestickysep)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;eval("&#92;&#36;threads .= &#92;"".&#36;templates-&gt;get("forumdisplay_sticky_sep")."&#92;";");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;shownormalsep = true;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;donestickysep = true;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if(&#36;thread['sticky'&#93; == 0 &amp;&amp; &#36;shownormalsep)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;eval("&#92;&#36;threads .= &#92;"".&#36;templates-&gt;get("forumdisplay_threads_sep")."&#92;";");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;shownormalsep = false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div>
<br />
Below add:<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(&#36;thread['sticky'&#93;)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;prefix = &#36;lang-&gt;sticky_prefix;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div>
<br />
<br />
2- Now go to the inc/languages/english/global.lang.php and search for:<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&#36;l['poll_prefix'&#93; = "Poll:";</code></div></div>
<br />
Below add:<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&#36;l['sticky_prefix'&#93; = "&lt;strong&gt;Sticky:&lt;/strong&gt;";</code></div></div>
<br />
<span style="font-style: italic;"><span style="font-weight: bold;">Note:</span></span> You can change the "Sticky" for whatever you want to call the sticky thread (Pinned/Stickied...).<br />
<br />
Save all files and upload.]]></description>
			<content:encoded><![CDATA[Hello guys.<br />
I made this tutorial to show you how to add the thread type before the post like "Poll:" (already in MyBB).<br />
<br />
The Poll is already in MyBB. When you create a poll the forum display will input the "Poll: THREAD NAME".<br />
<br />
After this tutorial you will make a sticky thread and before the name it will display "Sticky: THREAD NAME".<br />
<br />
So...lets start? =D<br />
<br />
<span style="font-style: italic;">First of all make a backup of the <span style="font-weight: bold;">./MYBB_ROOT/forumdisplay.php</span> and <span style="font-weight: bold;">inc/languages/english/global.lang.php</span> in case you need to back to the old files.</span><br />
<br />
1- Go to ./MYBB_ROOT/forumdisplay.php and search for:<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(&#36;thread['sticky'] == "1" &amp;&amp; !&#36;donestickysep)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;eval("&#92;&#36;threads .= &#92;"".&#36;templates-&gt;get("forumdisplay_sticky_sep")."&#92;";");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;shownormalsep = true;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;donestickysep = true;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if(&#36;thread['sticky'] == 0 &amp;&amp; &#36;shownormalsep)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;eval("&#92;&#36;threads .= &#92;"".&#36;templates-&gt;get("forumdisplay_threads_sep")."&#92;";");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;shownormalsep = false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div>
<br />
Below add:<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(&#36;thread['sticky'])<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;prefix = &#36;lang-&gt;sticky_prefix;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div>
<br />
<br />
2- Now go to the inc/languages/english/global.lang.php and search for:<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&#36;l['poll_prefix'] = "Poll:";</code></div></div>
<br />
Below add:<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&#36;l['sticky_prefix'] = "&lt;strong&gt;Sticky:&lt;/strong&gt;";</code></div></div>
<br />
<span style="font-style: italic;"><span style="font-weight: bold;">Note:</span></span> You can change the "Sticky" for whatever you want to call the sticky thread (Pinned/Stickied...).<br />
<br />
Save all files and upload.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tutorial&#93; ''How to backup&#x26;restore your forum in several different ways'']]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1133</link>
			<pubDate>Mon, 07 Dec 2009 16:18:30 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1133</guid>
			<description><![CDATA[Backing up your forum<br />
<br />
A lot of web service providers say they do backup of all the files, but my opinion is not to take their word for granted. We have put in a lot of efforts and time in creating our forums,so if we lost them, then all our hard work would have been in vain. Backing up our forums at least once a week, makes sure that we never loose too much of our work in case of a server crash, and it will make us sleep better at night. It is easy and fast, so there is no reason for not doing it.<br />
<br />
The way I see it we can make a backup in several different ways.<br />
<br />
1.Through Tools &amp; Maintenance-Database Backups-New Backup in the Admin Panel. I won''t go in details here as we all know what to do there <img src="http://www.mybbcodes.com/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /><br />
<br />
2.Through phpmyadmin at the Control Panel of your host<br />
<br />
Open phpMyAdmin.<br />
1. Click Export in the Menu to get to where you can backup you MySql database.<br />
2. Make sure that you have selected to export your entire database, and not just one table. There should be as many tables in the export list as showing under the database name.<br />
3. Select"SQL"-&gt; for output format, Check "Structure" and "Add AUTO_INCREMENT" value. Check "Enclose table and field name with backquotes". Check "DATA", check use "hexadecimal for binary field". Export type set to "INSERT".<br />
4. Check "Save as file", do not change the file name, use compression if you want. Then click "GO" to download the backup file.<br />
<br />
Note If you have large databases it may be not possible to backup using phpMyAdmin, as phpMyAdmin has some file size limits. So, in this case you will  to use the command line tools that comes with Mysql. I came across this method recently and I am currently testing it. So, use it at your own risk<br />
<br />
1. Change your directory to the directory you want to dump things to:<br />
<br />
user@linux:~&gt; cd files/blog<br />
<br />
2. Use mysqldump (man mysqldump is available):<br />
<br />
user@linux:~/files/blog&gt; mysqldump --add-drop-table -h mysqlhostserver<br />
 -u mysqlusername -p databasename (tablename tablename tablename) | bzip2<br />
 -c &gt; blog.bak.sql.bz2<br />
<br />
Enter password: (enter your mysql password)<br />
user@linux~/files/blog&gt;<br />
<br />
Example:<br />
mysqldump --add-drop-table -h db01.example.net -u dbocodex -p dbwp | bzip2 -c &gt; blog.bak.sql.bz2<br />
<br />
Enter password: my-password<br />
user@linux~/files/blog&gt;<br />
<br />
The bzip2 -c after the pipe | means the backup is compressed on the fly.<br />
<br />
Note: Compressing db's on the fly is only appropriate for small forums. -For large forums its best to compress after the dump due to it loading everything in memory when done on the fly.<br />
<br />
<br />
<br />
<br />
3. Through SSH/Telnet<br />
<br />
This will only work if you have SSH or Telnet access to your site. You will have to ask your hosting company about that. If you do, the next thing you will need is a SSH/Telnet Client. I would recommend PuTTy.<br />
<br />
Open your SSH/Telnet client and log into your website. This will bring you to the FTP root folder. To create a backup in the current directory, type in the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>mysqldump --opt -Q -u dbusername -p databasename &gt; backupname.sql</code></div></div>
<br />
If you want to create the backup in a separate directory, then instead type in:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>mysqldump --opt -Q -u dbusername -p databasename &gt; /path/to/backupname.sql</code></div></div>
<br />
The program will ask you for your database password. Enter it and the backup process of your database will start.<br />
<br />
Some hosting companies, stores the db in a remote server, in that case you will need to add the server name to the command line. You can see that at the file that holds the db info. It varies for forums.<br />
The command line for the current directory will be:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>mysqldump --opt -Q -h servername -u dbusername -p databasename &gt; backupname.sql</code></div></div>
<br />
Whereas for the separate directory it will be:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>mysqldump --opt -Q -h servername -u dbusername -p databasename &gt; /path/to/backupname.sql</code></div></div>
<br />
<br />
<br />
4.Through mysqldumper<br />
<br />
You can download it and read how to use it at its official website:<br />
<br />
<a href="http://www.mysqldumper.de/en/" target="_blank">http://www.mysqldumper.de/en/</a><br />
<br />
Mysqldumper can be used to restore the database as well<br />
<br />
<br />
Restoring the database<br />
<br />
1. Through phpmyadmin at the Control Panel of your host<br />
<br />
Open phpMyAdmin.<br />
1. Click Import in the Menu.<br />
2. Choose Location of the text file.<br />
3.Browse to your backup of the database that you have stored in your computer<br />
4. Choose Character and Format of imported file<br />
5. Click Go<br />
<br />
<br />
Restore without phpMyAdmin<br />
<br />
The restore process consists of unarchiving your archived database dump, and importing it into your Mysql database.<br />
<br />
Assuming your backup is a .bz2 file, creating using instructions similar to those given for Backing up your database using Mysql commands, the following steps will guide you through restoring your database :<br />
<br />
1. Unzip your .bz2 file:<br />
<br />
user@linux:~/files/blog&gt; bzip2 -d blog.bak.sql.bz2<br />
<br />
Note: If your database backup was a .tar.gz called blog.bak.sql.tar.gz file, then,<br />
<br />
tar zxvf blog.bak.sql.tar.gz<br />
<br />
is the command that should be used instead of the above.<br />
<br />
2. Put the backed-up sql back into mysql:<br />
<br />
user@linux:~/files/blog&gt; mysql -h mysqlhostserver -u mysqlusername<br />
 -p databasename &lt; blog.bak.sql<br />
<br />
Enter password: (enter your mysql password)<br />
user@linux~/files/blog:&gt;<br />
<br />
Now, as we mentioned above, phpMyAdmin has some file size limits so if you have large databases it may not be possible to backup using phpMyAdmin. In that case we can restore the backup in 2 other different ways, which are as follow:<br />
<br />
2. Through SSH/Telnet<br />
<br />
If you have access to SSh, then you can use putty or some other SSH/Telnet Client that takes your fancy.<br />
<br />
First upload your backup copy to your server and then open your telnet client and log in to your site type in directly the path to where your backup is located in your server. So the command line will be something like this:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>mysql -u dbusername -p databasename &lt; /path/to/backupname.sql</code></div></div>
<br />
and enter the db password.<br />
<br />
Don''t forget that if you are on a remote MySQL server, then don''t forget to add the server name to the command line. Like this:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>mysql -h servername -u dbusername -p databasename &lt; /path/to/backupname.sql</code></div></div>
<br />
3. The other way is through BigDump: Staggered MySQL Dump Importer<br />
 <br />
<br />
<br />
4. Through mysqldumper<br />
<br />
You can download it and read how to use it at its official website:<br />
<br />
<a href="http://www.mysqldumper.de/en/" target="_blank">http://www.mysqldumper.de/en/</a><br />
<br />
Mysqldumper can be used to backup the database as well<br />
<br />
<br />
<br />
<br />
I hope that this tutorial may come in handy to someone.<br />
<br />
Best regards<br />
Babjusi]]></description>
			<content:encoded><![CDATA[Backing up your forum<br />
<br />
A lot of web service providers say they do backup of all the files, but my opinion is not to take their word for granted. We have put in a lot of efforts and time in creating our forums,so if we lost them, then all our hard work would have been in vain. Backing up our forums at least once a week, makes sure that we never loose too much of our work in case of a server crash, and it will make us sleep better at night. It is easy and fast, so there is no reason for not doing it.<br />
<br />
The way I see it we can make a backup in several different ways.<br />
<br />
1.Through Tools &amp; Maintenance-Database Backups-New Backup in the Admin Panel. I won''t go in details here as we all know what to do there <img src="http://www.mybbcodes.com/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /><br />
<br />
2.Through phpmyadmin at the Control Panel of your host<br />
<br />
Open phpMyAdmin.<br />
1. Click Export in the Menu to get to where you can backup you MySql database.<br />
2. Make sure that you have selected to export your entire database, and not just one table. There should be as many tables in the export list as showing under the database name.<br />
3. Select"SQL"-&gt; for output format, Check "Structure" and "Add AUTO_INCREMENT" value. Check "Enclose table and field name with backquotes". Check "DATA", check use "hexadecimal for binary field". Export type set to "INSERT".<br />
4. Check "Save as file", do not change the file name, use compression if you want. Then click "GO" to download the backup file.<br />
<br />
Note If you have large databases it may be not possible to backup using phpMyAdmin, as phpMyAdmin has some file size limits. So, in this case you will  to use the command line tools that comes with Mysql. I came across this method recently and I am currently testing it. So, use it at your own risk<br />
<br />
1. Change your directory to the directory you want to dump things to:<br />
<br />
user@linux:~&gt; cd files/blog<br />
<br />
2. Use mysqldump (man mysqldump is available):<br />
<br />
user@linux:~/files/blog&gt; mysqldump --add-drop-table -h mysqlhostserver<br />
 -u mysqlusername -p databasename (tablename tablename tablename) | bzip2<br />
 -c &gt; blog.bak.sql.bz2<br />
<br />
Enter password: (enter your mysql password)<br />
user@linux~/files/blog&gt;<br />
<br />
Example:<br />
mysqldump --add-drop-table -h db01.example.net -u dbocodex -p dbwp | bzip2 -c &gt; blog.bak.sql.bz2<br />
<br />
Enter password: my-password<br />
user@linux~/files/blog&gt;<br />
<br />
The bzip2 -c after the pipe | means the backup is compressed on the fly.<br />
<br />
Note: Compressing db's on the fly is only appropriate for small forums. -For large forums its best to compress after the dump due to it loading everything in memory when done on the fly.<br />
<br />
<br />
<br />
<br />
3. Through SSH/Telnet<br />
<br />
This will only work if you have SSH or Telnet access to your site. You will have to ask your hosting company about that. If you do, the next thing you will need is a SSH/Telnet Client. I would recommend PuTTy.<br />
<br />
Open your SSH/Telnet client and log into your website. This will bring you to the FTP root folder. To create a backup in the current directory, type in the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>mysqldump --opt -Q -u dbusername -p databasename &gt; backupname.sql</code></div></div>
<br />
If you want to create the backup in a separate directory, then instead type in:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>mysqldump --opt -Q -u dbusername -p databasename &gt; /path/to/backupname.sql</code></div></div>
<br />
The program will ask you for your database password. Enter it and the backup process of your database will start.<br />
<br />
Some hosting companies, stores the db in a remote server, in that case you will need to add the server name to the command line. You can see that at the file that holds the db info. It varies for forums.<br />
The command line for the current directory will be:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>mysqldump --opt -Q -h servername -u dbusername -p databasename &gt; backupname.sql</code></div></div>
<br />
Whereas for the separate directory it will be:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>mysqldump --opt -Q -h servername -u dbusername -p databasename &gt; /path/to/backupname.sql</code></div></div>
<br />
<br />
<br />
4.Through mysqldumper<br />
<br />
You can download it and read how to use it at its official website:<br />
<br />
<a href="http://www.mysqldumper.de/en/" target="_blank">http://www.mysqldumper.de/en/</a><br />
<br />
Mysqldumper can be used to restore the database as well<br />
<br />
<br />
Restoring the database<br />
<br />
1. Through phpmyadmin at the Control Panel of your host<br />
<br />
Open phpMyAdmin.<br />
1. Click Import in the Menu.<br />
2. Choose Location of the text file.<br />
3.Browse to your backup of the database that you have stored in your computer<br />
4. Choose Character and Format of imported file<br />
5. Click Go<br />
<br />
<br />
Restore without phpMyAdmin<br />
<br />
The restore process consists of unarchiving your archived database dump, and importing it into your Mysql database.<br />
<br />
Assuming your backup is a .bz2 file, creating using instructions similar to those given for Backing up your database using Mysql commands, the following steps will guide you through restoring your database :<br />
<br />
1. Unzip your .bz2 file:<br />
<br />
user@linux:~/files/blog&gt; bzip2 -d blog.bak.sql.bz2<br />
<br />
Note: If your database backup was a .tar.gz called blog.bak.sql.tar.gz file, then,<br />
<br />
tar zxvf blog.bak.sql.tar.gz<br />
<br />
is the command that should be used instead of the above.<br />
<br />
2. Put the backed-up sql back into mysql:<br />
<br />
user@linux:~/files/blog&gt; mysql -h mysqlhostserver -u mysqlusername<br />
 -p databasename &lt; blog.bak.sql<br />
<br />
Enter password: (enter your mysql password)<br />
user@linux~/files/blog:&gt;<br />
<br />
Now, as we mentioned above, phpMyAdmin has some file size limits so if you have large databases it may not be possible to backup using phpMyAdmin. In that case we can restore the backup in 2 other different ways, which are as follow:<br />
<br />
2. Through SSH/Telnet<br />
<br />
If you have access to SSh, then you can use putty or some other SSH/Telnet Client that takes your fancy.<br />
<br />
First upload your backup copy to your server and then open your telnet client and log in to your site type in directly the path to where your backup is located in your server. So the command line will be something like this:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>mysql -u dbusername -p databasename &lt; /path/to/backupname.sql</code></div></div>
<br />
and enter the db password.<br />
<br />
Don''t forget that if you are on a remote MySQL server, then don''t forget to add the server name to the command line. Like this:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>mysql -h servername -u dbusername -p databasename &lt; /path/to/backupname.sql</code></div></div>
<br />
3. The other way is through BigDump: Staggered MySQL Dump Importer<br />
 <br />
<br />
<br />
4. Through mysqldumper<br />
<br />
You can download it and read how to use it at its official website:<br />
<br />
<a href="http://www.mysqldumper.de/en/" target="_blank">http://www.mysqldumper.de/en/</a><br />
<br />
Mysqldumper can be used to backup the database as well<br />
<br />
<br />
<br />
<br />
I hope that this tutorial may come in handy to someone.<br />
<br />
Best regards<br />
Babjusi]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tip&#x26;Trick&#93; Default Groups Avatar]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1132</link>
			<pubDate>Mon, 07 Dec 2009 16:16:59 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1132</guid>
			<description><![CDATA[I came up with this solution on a request made at this thread:<br />
<br />
<a href="http://www.forumsecurity.eu/showthread.php?tid=82" target="_blank">http://www.forumsecurity.eu/showthread.php?tid=82</a><br />
<br />
Go to the phpmyadmin at the cp of your host and then at the db where your forum resides on. Make a backup copy of your mybb_users table and then run the following query at the SQL tab.<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">UPDATE&nbsp;mybb_users&nbsp;SET&nbsp;avatar&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'images/avatars/image.gif'</span><span style="color: #007700">,&nbsp;&nbsp;</span><span style="color: #0000BB">avatartype&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'gallery'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">avatardimensions&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'100|100'&nbsp;</span><span style="color: #0000BB">WHERE&nbsp;usergroup&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'4'</span><span style="color: #007700">;&nbsp;<br /></span></code></div></div></div>
<br />
This will set a default avatar for all the members in the admin group. To do it for other groups, you can add more of Set avatar..... Where usergroups.... statements separated by commas, or run the query individualy by replacing the usergroup = '4' with the other group id''s that you want to hook them with up a default avatar.]]></description>
			<content:encoded><![CDATA[I came up with this solution on a request made at this thread:<br />
<br />
<a href="http://www.forumsecurity.eu/showthread.php?tid=82" target="_blank">http://www.forumsecurity.eu/showthread.php?tid=82</a><br />
<br />
Go to the phpmyadmin at the cp of your host and then at the db where your forum resides on. Make a backup copy of your mybb_users table and then run the following query at the SQL tab.<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">UPDATE&nbsp;mybb_users&nbsp;SET&nbsp;avatar&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'images/avatars/image.gif'</span><span style="color: #007700">,&nbsp;&nbsp;</span><span style="color: #0000BB">avatartype&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'gallery'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">avatardimensions&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'100|100'&nbsp;</span><span style="color: #0000BB">WHERE&nbsp;usergroup&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'4'</span><span style="color: #007700">;&nbsp;<br /></span></code></div></div></div>
<br />
This will set a default avatar for all the members in the admin group. To do it for other groups, you can add more of Set avatar..... Where usergroups.... statements separated by commas, or run the query individualy by replacing the usergroup = '4' with the other group id''s that you want to hook them with up a default avatar.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tip&#x26;Trick&#93; Receive a pop up notification when receiving new pm''s]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1104</link>
			<pubDate>Sun, 29 Nov 2009 16:51:33 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1104</guid>
			<description><![CDATA[I took the idea from the below thread. <br />
<a href="http://community.mybboard.net/thread-46747-page-1.html" target="_blank">http://community.mybboard.net/thread-46747-page-1.html</a><br />
<br />
I will post it as a tip/trick kind of thing rather then a plugin as it is easier this way.<br />
<br />
This will make it so any time you get a new pm, you will get a pop up alert.<br />
<br />
here we go:<br />
<br />
Go to your Acp-Templates &amp; Style-Your theme''s Templates-Global Templates-global_pm_alert. Replace all the code in there with the following code:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;div class="pm_alert" id="pm_notice"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_right"&gt;&lt;script type="text/javascript"&gt;&lt;!--<br />
window.alert("You have recieved a new message!")<br />
// --&gt;<br />
&lt;/script&gt;&lt;a href="private.php?action=dismiss_notice&amp;amp;my_post_key={&#36;mybb-&gt;post_code}" title="{&#36;lang-&gt;dismis_notice}"&nbsp;&nbsp;MyBB.dismissPMNotice()"&gt;&lt;img src="{&#36;theme['imgdir'&#93;}/dismiss_notice.gif" alt="{&#36;lang-&gt;dismis_notice}" title="[x&#93;" /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;{&#36;privatemessage_text}&lt;/div&gt;<br />
&lt;/div&gt;&lt;br /&gt;</code></div></div>
<br />
You can replace the text that will alert you for a new message by replacing:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>You have recieved a new message!</code></div></div>
<br />
with your own text. <br />
<br />
Enjoy it.]]></description>
			<content:encoded><![CDATA[I took the idea from the below thread. <br />
<a href="http://community.mybboard.net/thread-46747-page-1.html" target="_blank">http://community.mybboard.net/thread-46747-page-1.html</a><br />
<br />
I will post it as a tip/trick kind of thing rather then a plugin as it is easier this way.<br />
<br />
This will make it so any time you get a new pm, you will get a pop up alert.<br />
<br />
here we go:<br />
<br />
Go to your Acp-Templates &amp; Style-Your theme''s Templates-Global Templates-global_pm_alert. Replace all the code in there with the following code:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;div class="pm_alert" id="pm_notice"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_right"&gt;&lt;script type="text/javascript"&gt;&lt;!--<br />
window.alert("You have recieved a new message!")<br />
// --&gt;<br />
&lt;/script&gt;&lt;a href="private.php?action=dismiss_notice&amp;amp;my_post_key={&#36;mybb-&gt;post_code}" title="{&#36;lang-&gt;dismis_notice}"&nbsp;&nbsp;MyBB.dismissPMNotice()"&gt;&lt;img src="{&#36;theme['imgdir']}/dismiss_notice.gif" alt="{&#36;lang-&gt;dismis_notice}" title="[x]" /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;{&#36;privatemessage_text}&lt;/div&gt;<br />
&lt;/div&gt;&lt;br /&gt;</code></div></div>
<br />
You can replace the text that will alert you for a new message by replacing:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>You have recieved a new message!</code></div></div>
<br />
with your own text. <br />
<br />
Enjoy it.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tutorial&#93; Centering the logo.]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1103</link>
			<pubDate>Sun, 29 Nov 2009 16:45:15 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1103</guid>
			<description><![CDATA[I have come across many posts here where users have asked how to center the logo. I have answered some of them and thought it would be best to make a sort of tutorial about it so it can save a lot of time in the future to those that want to accomplish such a thing.<br />
<br />
Anyway, here we go:<br />
<br />
To center the default logo, find at the Header templates-header the following code:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;div class="logo" &gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/index.php"&gt;&lt;img src="{&#36;theme['logo'&#93;}" alt="{&#36;mybb-&gt;settings['bbname'&#93;}" title="{&#36;mybb-&gt;settings['bbname'&#93;}" /&gt;&lt;/a&gt;&lt;/div&gt;</code></div></div>
<br />
and replace it with:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;div class="logo" style="margin:0 auto;text-align:center"&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/index.php"&gt;&lt;img src="{&#36;theme['logo'&#93;}" alt="{&#36;mybb-&gt;settings['bbname'&#93;}" title="{&#36;mybb-&gt;settings['bbname'&#93;}" /&gt;&lt;/a&gt;&lt;/div&gt;</code></div></div>
]]></description>
			<content:encoded><![CDATA[I have come across many posts here where users have asked how to center the logo. I have answered some of them and thought it would be best to make a sort of tutorial about it so it can save a lot of time in the future to those that want to accomplish such a thing.<br />
<br />
Anyway, here we go:<br />
<br />
To center the default logo, find at the Header templates-header the following code:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;div class="logo" &gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/index.php"&gt;&lt;img src="{&#36;theme['logo']}" alt="{&#36;mybb-&gt;settings['bbname']}" title="{&#36;mybb-&gt;settings['bbname']}" /&gt;&lt;/a&gt;&lt;/div&gt;</code></div></div>
<br />
and replace it with:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;div class="logo" style="margin:0 auto;text-align:center"&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/index.php"&gt;&lt;img src="{&#36;theme['logo']}" alt="{&#36;mybb-&gt;settings['bbname']}" title="{&#36;mybb-&gt;settings['bbname']}" /&gt;&lt;/a&gt;&lt;/div&gt;</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tip&#x26;Trick&#93; Show the Topic Lists on no permissions forums.]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1102</link>
			<pubDate>Sun, 29 Nov 2009 16:44:25 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1102</guid>
			<description><![CDATA[This small edit will allwow you to show the topic lists inside all your forums that you have denied access to different usergroups to enter them. <br />
<br />
i.e. say, you have a forum/forums that you want to deny access to guests for ex, but you want them to see it/them, you would simply disallow them access at the permissions and then at the Configuration-Forum Home Options, you would set the Hide Private Forums? to No. So anytime a guest that clicks at that forum will get the no permission error. <br />
<br />
But personally I would like to take it a step further. I want them to be able to see all the topics inside that forum, so they know what they are missing on. To do that find the following code at forumdisplay.php file:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>if(&#36;fpermissions['canview'&#93; != 1)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;error_no_permission();<br />
}</code></div></div>
<br />
And change it to:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>if(&#36;fpermissions['canview'&#93; != 1 &amp;&amp; &#36;thread['tid'&#93;)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;error_no_permission();<br />
}</code></div></div>
<br />
Now all the usergroups that don''t have permissions at certain forums, will be able to see all the topics inside that particular forum, but not the posts themselves.]]></description>
			<content:encoded><![CDATA[This small edit will allwow you to show the topic lists inside all your forums that you have denied access to different usergroups to enter them. <br />
<br />
i.e. say, you have a forum/forums that you want to deny access to guests for ex, but you want them to see it/them, you would simply disallow them access at the permissions and then at the Configuration-Forum Home Options, you would set the Hide Private Forums? to No. So anytime a guest that clicks at that forum will get the no permission error. <br />
<br />
But personally I would like to take it a step further. I want them to be able to see all the topics inside that forum, so they know what they are missing on. To do that find the following code at forumdisplay.php file:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>if(&#36;fpermissions['canview'] != 1)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;error_no_permission();<br />
}</code></div></div>
<br />
And change it to:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>if(&#36;fpermissions['canview'] != 1 &amp;&amp; &#36;thread['tid'])<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;error_no_permission();<br />
}</code></div></div>
<br />
Now all the usergroups that don''t have permissions at certain forums, will be able to see all the topics inside that particular forum, but not the posts themselves.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tip&#x26;Trick&#93;Spice up your Admin on postbits and the online list]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1101</link>
			<pubDate>Sun, 29 Nov 2009 16:43:35 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1101</guid>
			<description><![CDATA[This is a small edit which will make your Admin account stand out more on topic view and at the online list.<br />
<br />
Go to Users &amp; Groups-Groups-Administrators. Then at Username Style replace all the contents in there with the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;span style="border: 1px dotted #FFFFFF; background-color:#C50000; color: #FFFFFF; text-decoration: none; padding: 1px;"&gt;&lt;strong&gt;&lt;em&gt;{username}&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;</code></div></div>
<br />
Note that the above example will display the admin in red, cos that is how i have it at a forum that I admin. You can change the color to match your own admin colors. Alternatively you can do this for other usergroups as well.<br />
<br />
The result can be seen at the attached screenshot below.]]></description>
			<content:encoded><![CDATA[This is a small edit which will make your Admin account stand out more on topic view and at the online list.<br />
<br />
Go to Users &amp; Groups-Groups-Administrators. Then at Username Style replace all the contents in there with the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;span style="border: 1px dotted #FFFFFF; background-color:#C50000; color: #FFFFFF; text-decoration: none; padding: 1px;"&gt;&lt;strong&gt;&lt;em&gt;{username}&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;</code></div></div>
<br />
Note that the above example will display the admin in red, cos that is how i have it at a forum that I admin. You can change the color to match your own admin colors. Alternatively you can do this for other usergroups as well.<br />
<br />
The result can be seen at the attached screenshot below.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tip&#93;Enhance the redirect area with an image]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1100</link>
			<pubDate>Sun, 29 Nov 2009 16:41:41 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1100</guid>
			<description><![CDATA[This is a very simple edit that adds an image right under the message:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>You have successfully been logged in.<br />
You will now be taken back to where you came from.</code></div></div>
<br />
when you login/logout or making a post at the redirect screen. Which, in my opinion, will enhance it.<br />
<br />
<br />
Go to Acp of your forum-Templates &amp; Style-Templates-Default Templates-Redirect Templates-redirect.<br />
<br />
And replace the following code:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;td class="trow1" align="center"&gt;&lt;p&gt;{&#36;message}&lt;/p&gt;&lt;/td&gt;</code></div></div>
<br />
with:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;td class="trow1" align="center"&gt;&lt;p&gt;{&#36;message}&lt;br /&gt;&lt;br /&gt;&lt;img src='full url to your image'&nbsp;&nbsp;alt = "" /&gt;&lt;/p&gt;&lt;/td&gt;</code></div></div>
]]></description>
			<content:encoded><![CDATA[This is a very simple edit that adds an image right under the message:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>You have successfully been logged in.<br />
You will now be taken back to where you came from.</code></div></div>
<br />
when you login/logout or making a post at the redirect screen. Which, in my opinion, will enhance it.<br />
<br />
<br />
Go to Acp of your forum-Templates &amp; Style-Templates-Default Templates-Redirect Templates-redirect.<br />
<br />
And replace the following code:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;td class="trow1" align="center"&gt;&lt;p&gt;{&#36;message}&lt;/p&gt;&lt;/td&gt;</code></div></div>
<br />
with:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;td class="trow1" align="center"&gt;&lt;p&gt;{&#36;message}&lt;br /&gt;&lt;br /&gt;&lt;img src='full url to your image'&nbsp;&nbsp;alt = "" /&gt;&lt;/p&gt;&lt;/td&gt;</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tip&#x26;Trick&#93;Hide Board Statisctic from guests!]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1099</link>
			<pubDate>Sun, 29 Nov 2009 16:39:58 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1099</guid>
			<description><![CDATA[This will allow you to hide the Board Statistic from guests. To have an idea how the mod looks like in action, please check the screenshots attached at the end of this topic <img src="http://www.mybbcodes.com/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
First of all you must have the PHP in Templates and Template Conditionals plug in installed: <br />
<br />
<a href="http://community.mybboard.net/thread-31860.html" target="_blank">http://community.mybboard.net/thread-31860.html</a><br />
<br />
After you install that plug in, go to the Acp of your forum-Templates &amp; Style-Templates-Default Templates-Index Page Templates-index_boardstats.<br />
<br />
Replace the whole code in there with the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;if &#36;GLOBALS['mybb'&#93;-&gt;user['usergroup'&#93; == 1 then&gt; <br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth'&#93;}" cellpadding="{&#36;theme['tablespace'&#93;}" class="tborder"&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;<br />
&lt;div class="expcolimage"&gt;&lt;img src="{&#36;theme['imgdir'&#93;}/collapse{&#36;collapsedimg['boardstats'&#93;}.gif" id="boardstats_img" class="expander" alt="[-&#93;" title="[-&#93;" /&gt;&lt;/div&gt;<br />
&lt;div style="margin:0 auto;text-align:center"&gt;&lt;strong&gt;Board Statistics disabled&lt;/strong&gt;&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tbody style="{&#36;collapsed['boardstats_e'&#93;}" id="boardstats_e"&gt;<br />
&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"align="center"&gt;<br />
&lt;strong&gt;Welcome Guest!&lt;br /&gt; The Board Statistics can be seen by registered members only!You are welcomed to join our community. &lt;a href="member.php?action=register"&gt;Register&lt;/a&gt;&lt;br /&gt;<br />
Already a member? &lt;a href="member.php?action=login"&gt;Login&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;<br />
&lt;else&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth'&#93;}" cellpadding="{&#36;theme['tablespace'&#93;}" class="tborder"&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;<br />
&lt;div class="expcolimage"&gt;&lt;img src="{&#36;theme['imgdir'&#93;}/collapse{&#36;collapsedimg['boardstats'&#93;}.gif" id="boardstats_img" class="expander" alt="[-&#93;" title="[-&#93;" /&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;strong&gt;{&#36;lang-&gt;boardstats}&lt;/strong&gt;&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tbody style="{&#36;collapsed['boardstats_e'&#93;}" id="boardstats_e"&gt;<br />
{&#36;whosonline}<br />
{&#36;birthdays}<br />
{&#36;forumstats}<br />
&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="tfoot" style="text-align: right"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;logoutlink}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="misc.php?action=markread"&gt;{&#36;lang-&gt;markread}&lt;/a&gt; |<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="showteam.php"&gt;{&#36;lang-&gt;forumteam}&lt;/a&gt; |<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="stats.php"&gt;{&#36;lang-&gt;forumstats}&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;<br />
&lt;/if&gt;</code></div></div>
]]></description>
			<content:encoded><![CDATA[This will allow you to hide the Board Statistic from guests. To have an idea how the mod looks like in action, please check the screenshots attached at the end of this topic <img src="http://www.mybbcodes.com/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
First of all you must have the PHP in Templates and Template Conditionals plug in installed: <br />
<br />
<a href="http://community.mybboard.net/thread-31860.html" target="_blank">http://community.mybboard.net/thread-31860.html</a><br />
<br />
After you install that plug in, go to the Acp of your forum-Templates &amp; Style-Templates-Default Templates-Index Page Templates-index_boardstats.<br />
<br />
Replace the whole code in there with the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;if &#36;GLOBALS['mybb']-&gt;user['usergroup'] == 1 then&gt; <br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;<br />
&lt;div class="expcolimage"&gt;&lt;img src="{&#36;theme['imgdir']}/collapse{&#36;collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" title="[-]" /&gt;&lt;/div&gt;<br />
&lt;div style="margin:0 auto;text-align:center"&gt;&lt;strong&gt;Board Statistics disabled&lt;/strong&gt;&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tbody style="{&#36;collapsed['boardstats_e']}" id="boardstats_e"&gt;<br />
&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"align="center"&gt;<br />
&lt;strong&gt;Welcome Guest!&lt;br /&gt; The Board Statistics can be seen by registered members only!You are welcomed to join our community. &lt;a href="member.php?action=register"&gt;Register&lt;/a&gt;&lt;br /&gt;<br />
Already a member? &lt;a href="member.php?action=login"&gt;Login&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;<br />
&lt;else&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;<br />
&lt;div class="expcolimage"&gt;&lt;img src="{&#36;theme['imgdir']}/collapse{&#36;collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" title="[-]" /&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;strong&gt;{&#36;lang-&gt;boardstats}&lt;/strong&gt;&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tbody style="{&#36;collapsed['boardstats_e']}" id="boardstats_e"&gt;<br />
{&#36;whosonline}<br />
{&#36;birthdays}<br />
{&#36;forumstats}<br />
&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="tfoot" style="text-align: right"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;logoutlink}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="misc.php?action=markread"&gt;{&#36;lang-&gt;markread}&lt;/a&gt; |<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="showteam.php"&gt;{&#36;lang-&gt;forumteam}&lt;/a&gt; |<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="stats.php"&gt;{&#36;lang-&gt;forumstats}&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;<br />
&lt;/if&gt;</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tip&#x26;trick&#93;Hide the members in the online list  from guests]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1098</link>
			<pubDate>Sun, 29 Nov 2009 16:38:38 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1098</guid>
			<description><![CDATA[I had make such a mod for another forum software and recently adjusted it for a friend of mine who converted from that forum to mybb.<br />
<br />
First of all you must have the PHP in Templates and Template Conditionals   plug in installed: (Nice plug in btw, very usefeul too)<br />
<br />
<a href="http://community.mybboard.net/thread-31860.html" target="_blank">http://community.mybboard.net/thread-31860.html</a><br />
<br />
After you install that plug in, go to the Acp of your forum-Templates &amp; Style-Templates-Default Templates-Index Page Templates-index_whosonline.<br />
<br />
Replace the whole code in there with the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;if &#36;GLOBALS['mybb'&#93;-&gt;user['usergroup'&#93; == 1 then&gt; <br />
&lt;tr&gt;<br />
&lt;td class="tcat"&gt;&lt;span class="smalltext"&gt;&lt;strong&gt;Users on line disabled&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1"&gt;&lt;span class="smalltext"&gt;Sorry guest but you are not authorised to view the online list.&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;else&gt;<br />
&lt;tr&gt;<br />
&lt;td class="tcat"&gt;&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;lang-&gt;whos_online}&lt;/strong&gt; [&lt;a href="online.php"&gt;{&#36;lang-&gt;complete_list}&lt;/a&gt;&#93;&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1"&gt;&lt;span class="smalltext"&gt;{&#36;lang-&gt;online_note}&lt;br /&gt;{&#36;onlinemembers}&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/if&gt;</code></div></div>
<br />
You can see the result in the screenshot attached below. Instead of the line list, it will show the guests the following message:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>Users on line disabled<br />
Sorry guest but you are not authorised to view the online list.</code></div></div>
<br />
It is very handy for the privacy.<br />
<br />
The message is hard coded, but you can add the language strings in the language files if you want.<br />
<br />
If this is in the wrong place, then I apologize in advance to the mods/admins and feel free to delete it.]]></description>
			<content:encoded><![CDATA[I had make such a mod for another forum software and recently adjusted it for a friend of mine who converted from that forum to mybb.<br />
<br />
First of all you must have the PHP in Templates and Template Conditionals   plug in installed: (Nice plug in btw, very usefeul too)<br />
<br />
<a href="http://community.mybboard.net/thread-31860.html" target="_blank">http://community.mybboard.net/thread-31860.html</a><br />
<br />
After you install that plug in, go to the Acp of your forum-Templates &amp; Style-Templates-Default Templates-Index Page Templates-index_whosonline.<br />
<br />
Replace the whole code in there with the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;if &#36;GLOBALS['mybb']-&gt;user['usergroup'] == 1 then&gt; <br />
&lt;tr&gt;<br />
&lt;td class="tcat"&gt;&lt;span class="smalltext"&gt;&lt;strong&gt;Users on line disabled&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1"&gt;&lt;span class="smalltext"&gt;Sorry guest but you are not authorised to view the online list.&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;else&gt;<br />
&lt;tr&gt;<br />
&lt;td class="tcat"&gt;&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;lang-&gt;whos_online}&lt;/strong&gt; [&lt;a href="online.php"&gt;{&#36;lang-&gt;complete_list}&lt;/a&gt;]&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1"&gt;&lt;span class="smalltext"&gt;{&#36;lang-&gt;online_note}&lt;br /&gt;{&#36;onlinemembers}&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/if&gt;</code></div></div>
<br />
You can see the result in the screenshot attached below. Instead of the line list, it will show the guests the following message:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>Users on line disabled<br />
Sorry guest but you are not authorised to view the online list.</code></div></div>
<br />
It is very handy for the privacy.<br />
<br />
The message is hard coded, but you can add the language strings in the language files if you want.<br />
<br />
If this is in the wrong place, then I apologize in advance to the mods/admins and feel free to delete it.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Tip&#x26;Trick&#93;Message for your guests]]></title>
			<link>http://www.mybbcodes.com/showthread.php?tid=1097</link>
			<pubDate>Sun, 29 Nov 2009 16:37:00 -0500</pubDate>
			<guid isPermaLink="false">http://www.mybbcodes.com/showthread.php?tid=1097</guid>
			<description><![CDATA[This modification will allow you to show a message to your guests, which will be displayed at the top of the forum. Hopefully this will encourage them to register. <br />
<br />
To have an idea how the mod looks like in action, please check the screenshots attached at the end of this topic <img src="http://www.mybbcodes.com/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
First of all you must have the PHP in Templates and Template Conditionals plug in installed:<br />
<br />
<a href="http://community.mybboard.net/thread-31860.html" target="_blank">http://community.mybboard.net/thread-31860.html</a><br />
<br />
After you install that plug in, go to the Acp of your forum-Templates &amp; Style-Templates-Default Templates-Header Templates-header.<br />
<br />
Replace the whole code in there with the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;if &#36;GLOBALS['mybb'&#93;-&gt;user['usergroup'&#93; == 1 then&gt; <br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth'&#93;}" cellpadding="{&#36;theme['tablespace'&#93;}" class="tborder"&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;<br />
&lt;div style="margin:0 auto;text-align:center"&gt;&lt;strong&gt;Welcome to our community Guest!&lt;/strong&gt;&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"align="center"&gt;<br />
&lt;strong&gt;Please consider &lt;a href="member.php?action=register"&gt;Registering&lt;/a&gt; to gain full access!Registration is free and it only takes a few moments to complete&lt;br /&gt;<br />
Already a member? &lt;a href="member.php?action=login"&gt;Login then&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/if&gt;&nbsp;&nbsp;&nbsp;&nbsp;<br />
<br />
&lt;div id="container"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a name="top" id="top"&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="header"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="logo"&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/index.php"&gt;&lt;img src="{&#36;theme['logo'&#93;}" alt="{&#36;mybb-&gt;settings['bbname'&#93;}" title="{&#36;mybb-&gt;settings['bbname'&#93;}" /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="menu"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/search.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl'&#93;}/{&#36;theme['imgdir'&#93;}/toplinks/search.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_search}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/memberlist.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl'&#93;}/{&#36;theme['imgdir'&#93;}/toplinks/memberlist.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_memberlist}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/calendar.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl'&#93;}/{&#36;theme['imgdir'&#93;}/toplinks/calendar.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_calendar}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/misc.php?action=help"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl'&#93;}/{&#36;theme['imgdir'&#93;}/toplinks/help.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_help}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;hr class="hidden" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="panel"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;welcomeblock}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;hr class="hidden" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br class="clear" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="content"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;pm_notice}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;bannedwarning}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;bbclosedwarning}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;unreadreports}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;navigation&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;</code></div></div>
<br />
Or you can display it under the menu bar:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight&#93;</a><br />
</div><div class="body" dir="ltr"><code>&lt;div id="container"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a name="top" id="top"&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="header"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="logo"&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/index.php"&gt;&lt;img src="{&#36;theme['logo'&#93;}" alt="{&#36;mybb-&gt;settings['bbname'&#93;}" title="{&#36;mybb-&gt;settings['bbname'&#93;}" /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="menu"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/search.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl'&#93;}/{&#36;theme['imgdir'&#93;}/toplinks/search.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_search}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/memberlist.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl'&#93;}/{&#36;theme['imgdir'&#93;}/toplinks/memberlist.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_memberlist}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/calendar.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl'&#93;}/{&#36;theme['imgdir'&#93;}/toplinks/calendar.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_calendar}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl'&#93;}/misc.php?action=help"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl'&#93;}/{&#36;theme['imgdir'&#93;}/toplinks/help.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_help}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;hr class="hidden" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="panel"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;welcomeblock}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&lt;br /&gt;&lt;br /&gt;&lt;if &#36;GLOBALS['mybb'&#93;-&gt;user['usergroup'&#93; == 1 then&gt; <br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth'&#93;}" cellpadding="{&#36;theme['tablespace'&#93;}" class="tborder"&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;<br />
&lt;div style="margin:0 auto;text-align:center"&gt;&lt;strong&gt;Welcome to our community Guest!&lt;/strong&gt;&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"align="center"&gt;<br />
&lt;strong&gt;Please consider &lt;a href="member.php?action=register"&gt;Registering&lt;/a&gt; to gain full access!Registration is free and it only takes a few moments to complete&lt;br /&gt;<br />
Already a member? &lt;a href="member.php?action=login"&gt;Login then&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/if&gt;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;hr class="hidden" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br class="clear" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="content"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;pm_notice}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;bannedwarning}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;bbclosedwarning}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;unreadreports}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;navigation&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;</code></div></div>
]]></description>
			<content:encoded><![CDATA[This modification will allow you to show a message to your guests, which will be displayed at the top of the forum. Hopefully this will encourage them to register. <br />
<br />
To have an idea how the mod looks like in action, please check the screenshots attached at the end of this topic <img src="http://www.mybbcodes.com/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
First of all you must have the PHP in Templates and Template Conditionals plug in installed:<br />
<br />
<a href="http://community.mybboard.net/thread-31860.html" target="_blank">http://community.mybboard.net/thread-31860.html</a><br />
<br />
After you install that plug in, go to the Acp of your forum-Templates &amp; Style-Templates-Default Templates-Header Templates-header.<br />
<br />
Replace the whole code in there with the following:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;if &#36;GLOBALS['mybb']-&gt;user['usergroup'] == 1 then&gt; <br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;<br />
&lt;div style="margin:0 auto;text-align:center"&gt;&lt;strong&gt;Welcome to our community Guest!&lt;/strong&gt;&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"align="center"&gt;<br />
&lt;strong&gt;Please consider &lt;a href="member.php?action=register"&gt;Registering&lt;/a&gt; to gain full access!Registration is free and it only takes a few moments to complete&lt;br /&gt;<br />
Already a member? &lt;a href="member.php?action=login"&gt;Login then&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/if&gt;&nbsp;&nbsp;&nbsp;&nbsp;<br />
<br />
&lt;div id="container"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a name="top" id="top"&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="header"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="logo"&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/index.php"&gt;&lt;img src="{&#36;theme['logo']}" alt="{&#36;mybb-&gt;settings['bbname']}" title="{&#36;mybb-&gt;settings['bbname']}" /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="menu"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/search.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl']}/{&#36;theme['imgdir']}/toplinks/search.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_search}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/memberlist.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl']}/{&#36;theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_memberlist}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/calendar.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl']}/{&#36;theme['imgdir']}/toplinks/calendar.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_calendar}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/misc.php?action=help"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl']}/{&#36;theme['imgdir']}/toplinks/help.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_help}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;hr class="hidden" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="panel"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;welcomeblock}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;hr class="hidden" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br class="clear" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="content"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;pm_notice}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;bannedwarning}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;bbclosedwarning}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;unreadreports}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;navigation&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;</code></div></div>
<br />
Or you can display it under the menu bar:<br />
<br />
<div class="codeblock">
<div class="title">Code:<a href="#" onclick="selectCode(this); return false;">[Highlight]</a><br />
</div><div class="body" dir="ltr"><code>&lt;div id="container"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a name="top" id="top"&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="header"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="logo"&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/index.php"&gt;&lt;img src="{&#36;theme['logo']}" alt="{&#36;mybb-&gt;settings['bbname']}" title="{&#36;mybb-&gt;settings['bbname']}" /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="menu"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/search.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl']}/{&#36;theme['imgdir']}/toplinks/search.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_search}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/memberlist.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl']}/{&#36;theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_memberlist}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/calendar.php"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl']}/{&#36;theme['imgdir']}/toplinks/calendar.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_calendar}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="{&#36;mybb-&gt;settings['bburl']}/misc.php?action=help"&gt;&lt;img src="{&#36;mybb-&gt;settings['bburl']}/{&#36;theme['imgdir']}/toplinks/help.gif" alt="" title="" /&gt;{&#36;lang-&gt;toplinks_help}&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;hr class="hidden" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="panel"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;welcomeblock}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&lt;br /&gt;&lt;br /&gt;&lt;if &#36;GLOBALS['mybb']-&gt;user['usergroup'] == 1 then&gt; <br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;<br />
&lt;div style="margin:0 auto;text-align:center"&gt;&lt;strong&gt;Welcome to our community Guest!&lt;/strong&gt;&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"align="center"&gt;<br />
&lt;strong&gt;Please consider &lt;a href="member.php?action=register"&gt;Registering&lt;/a&gt; to gain full access!Registration is free and it only takes a few moments to complete&lt;br /&gt;<br />
Already a member? &lt;a href="member.php?action=login"&gt;Login then&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/if&gt;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;hr class="hidden" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br class="clear" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="content"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;pm_notice}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;bannedwarning}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;bbclosedwarning}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;unreadreports}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;navigation&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;</code></div></div>
]]></content:encoded>
		</item>
	</channel>
</rss>