<?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>Web Hosting News &#187; phpBB</title>
	<atom:link href="http://hosting-news.net/category/phpbb/feed/" rel="self" type="application/rss+xml" />
	<link>http://hosting-news.net</link>
	<description>Web Hosting News</description>
	<lastBuildDate>Fri, 19 Mar 2010 17:11:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding navigational links to your MOD (breadcrumbs)</title>
		<link>http://hosting-news.net/phpbb/adding-navigational-links-to-your-mod-breadcrumbs/</link>
		<comments>http://hosting-news.net/phpbb/adding-navigational-links-to-your-mod-breadcrumbs/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 04:17:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[breadcrumb]]></category>
		<category><![CDATA[example language]]></category>
		<category><![CDATA[forum name]]></category>
		<category><![CDATA[mod index]]></category>
		<category><![CDATA[page header]]></category>
		<category><![CDATA[php file]]></category>
		<category><![CDATA[view forum]]></category>

		<guid isPermaLink="false">http://hosting-news.net/phpbb/adding-navigational-links-to-your-mod-breadcrumbs/</guid>
		<description><![CDATA[An easy way to add navigational links to your MOD is to use an inbuilt feature of phpBB3 called &#8220;breadcrumbs&#8221; (named because it leaves a trail back to the forum index).
It only requires a few extra lines of PHP code to add a breadcrumb to your own MOD (or to your website if you are [...]]]></description>
			<content:encoded><![CDATA[<p>An easy way to add navigational links to your MOD is to use an inbuilt feature of phpBB3 called &#8220;breadcrumbs&#8221; (named because it leaves a trail back to the forum index).</p>
<p>It only requires a few extra lines of PHP code to add a breadcrumb to your own MOD (or to your website if you are doing personal customisations). This article explains how to do so.</p>
<p>To understand how this works, open styles/prosilver/template/overall_header.html and find this code:</p>
<dl>
<dt>Code: <a href="http://blog.phpbb.com">Select all</a></dt>
<dd><code>&lt;!-- BEGIN navlinks --&gt; &lt;strong&gt;&amp;&#35;8249;&lt;/strong&gt; &lt;a href="{navlinks.U_VIEW_FORUM}"&gt;{navlinks.FORUM_NAME}&lt;/a&gt;&lt;!-- END navlinks --&gt;</code></dd>
</dl>
<p>This section of templating code is responsible for the creation of the breadcrumbs your see at the top of your forum.</p>
<p><img src="http://www.cmxmods.net/images/mod_team/blog/breadcrumbs.PNG" alt="Breadcrumbs" /></p>
<p>As you can see from the code, &#8220;{navlinks.U_VIEW_FORUM}&#8221; is the actual web address of the page and &#8220;{navlinks.FORUM_NAME}&#8221; is the name of the page you are linking to.</p>
<p>To add a breadcrumb of your own in your MOD, open the main .php file for your MOD. Then find the page_header function call in your script (you may have several of these, so you can do this to some or all of them if you wish).</p>
<p>Before the page_header call, add this code:</p>
<dl>
<dt>Code: <a href="http://blog.phpbb.com">Select all</a></dt>
<dd><code>	$template-&gt;assign_block_vars('navlinks', array(<br />
		'FORUM_NAME'	=&gt; $user-&gt;lang['MOD_INDEX'],<br />
		'U_VIEW_FORUM'	=&gt; append_sid('my_mod.'.$phpEx),<br />
	));</code></dd>
</dl>
<p>As you can see, this templating code corresponds to the &#8220;navlinks&#8221; loop shown above in overall_header.html</p>
<p>It would give an output like this:</p>
<p><img src="http://www.cmxmods.net/images/mod_team/blog/breadcrumbs_single.PNG" alt="Breadcrumbs" /></p>
<p>$user-&gt;lang['MOD_INDEX'] is only an example language variable, you can set this to any language variable you like (or if it is for personal use and not a MOD, a hard coded string). In the append_sid call, you also need to replace &#8220;my_mod&#8221; with whatever the name of your .php page is called. If for whatever reason you wanted to link off-site, you could do this also by hard-coding a string. (ie. <strong>&#8216;U_VIEW_FORUM&#8217;	=&gt; &#8216;http://www.example.com&#8217;,</strong>)</p>
<p>Another feature of the breadcrumbs is that as it is using a template loop, you can include the code repeatedly to get more links. You could also include the code inside a loop to good effect (a foreach loop would be very useful).</p>
<p>For instance, you could use this code:</p>
<dl>
<dt>Code: <a href="http://blog.phpbb.com">Select all</a></dt>
<dd><code>$navlinks_array = array(<br />
	array(<br />
		'FORUM_NAME'	=&gt;	$user-&gt;lang['MOD_INDEX'],<br />
		'U_VIEW_FORUM'	=&gt;	append_sid('my_mod.'.$phpEx),<br />
	),</p>
<p>	array(<br />
	 	'FORUM_NAME'	=&gt;	$user-&gt;lang['MOD_SUBPAGE'],<br />
		'U_VIEW_FORUM'	=&gt;	append_sid('my_mod.'.$phpEx, 's=1'),<br />
	),</p>
<p>	array(<br />
	 	'FORUM_NAME'	=&gt;	$user-&gt;lang['MOD_SUBPAGE_2'],<br />
		'U_VIEW_FORUM'	=&gt;	append_sid('my_mod.'.$phpEx, 's=2'),<br />
	),<br />
);</p>
<p>foreach( $navlinks_array as $name )<br />
{<br />
	$template-&gt;assign_block_vars('navlinks', array(<br />
		'FORUM_NAME'	=&gt; $name['FORUM_NAME'],<br />
		'U_VIEW_FORUM'	=&gt; $name['U_VIEW_FORUM'],<br />
	));<br />
}</code></dd>
</dl>
<p>To generate an output like this:</p>
<p><img src="http://www.cmxmods.net/images/mod_team/blog/breadcrumbs_loop.PNG" alt="Breadcrumbs" /></p>
<p>As these examples only require PHP changes and no template changes, there is no need to purge the cache once the changes have been applied.</p>
<p>I hope this article has been useful.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/how-to-display-posts-and-topics-on-external-pages/" rel="bookmark" class="crp_title">How to display posts and topics on external pages</a></li><li><a href="http://hosting-news.net/phpbb/3-0-x-styles-support-discussion-%e2%80%a2-re-overallheaderoverallfooter-help-needed/" rel="bookmark" class="crp_title">[3.0.x] Styles Support &amp; Discussion • Re: overallheader/overallfooter help needed</a></li><li><a href="http://hosting-news.net/phpbb/3-0-x-support-forum-%e2%80%a2-re-forum-homepage-is-blank-after-bbcode/" rel="bookmark" class="crp_title">3.0.x Support Forum • Re: Forum Homepage is Blank after bbcode</a></li><li><a href="http://hosting-news.net/phpbb/3-0-x-mod-database-releases-%e2%80%a2-re-special-and-normal-rank-images/" rel="bookmark" class="crp_title">[3.0.x] MOD Database Releases • Re: Special and Normal Rank Images</a></li><li><a href="http://hosting-news.net/phpbb/3-0-x-support-forum-%e2%80%a2-re-edit-forum-title/" rel="bookmark" class="crp_title">3.0.x Support Forum • Re: Edit forum title</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2374&amp;ts=1337434506" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/adding-navigational-links-to-your-mod-breadcrumbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Validators</title>
		<link>http://hosting-news.net/phpbb/junior-validators-23/</link>
		<comments>http://hosting-news.net/phpbb/junior-validators-23/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 04:31:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[automod]]></category>
		<category><![CDATA[Junior]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[mod team]]></category>
		<category><![CDATA[MODs]]></category>
		<category><![CDATA[private forums]]></category>
		<category><![CDATA[Team]]></category>
		<category><![CDATA[team processes]]></category>
		<category><![CDATA[Validation]]></category>
		<category><![CDATA[validation tool]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[validators]]></category>
		<category><![CDATA[will also have access]]></category>

		<guid isPermaLink="false">http://www.hosting-news.net/phpbb/junior-validators-23/</guid>
		<description><![CDATA[What is a Junior Validator?
Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.
Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the MOD Pre-Validation tool (MPV) and setting a status on the MOD accordingly.
Testing is the major role of a Junior [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Junior Validator?</strong></p>
<p>Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.</p>
<p>Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the <a href="http://www.phpbb.com/mods/mpv/">MOD Pre-Validation tool</a> (MPV) and setting a status on the MOD accordingly.</p>
<p>Testing is the major role of a Junior Validator, and requires installing the MOD on a vanilla phpBB3 board through AutoMOD. After installing the MOD, all functions of the MOD and board should then be tested &#8211; all to make sure that the MOD and the board run error-free. The Junior Validator then makes any notes or suggestions to the MOD Team concerning the MOD and, again, the MOD status is set accordingly (&#8220;approve&#8221;, &#8220;deny&#8221;, &#8220;repack&#8221;, etc). In a nutshell, this is the role of a Junior Validator.</p>
<p><strong>Why should I become a Junior Validator?</strong></p>
<p>As a Junior Validator you will be gaining valuable first-hand experience with MOD Team processes which could lead to consideration for a position on the MOD Team. You will also have access to private forums including a Junior MOD Validators forum where you can discuss MOD validation with fellow Junior Validators and MOD Team members.</p>
<p>Most importantly, it will be fun! If you have a passion for writing MODs you will find working with the MOD Team to help validate MODs, and also the opportunity to give something back to the community, very rewarding. The phpBB Team is a very friendly group of people so the chance to work closely with the MOD Team will be very enjoyable.</p>
<p><strong>What are the requirements?</strong></p>
<p>To be considered for a position as a Junior Validator, it is important that you:</p>
<p>- have authored a MOD and submitted it to the MOD Database.<br />
- can communicate in English.<br />
- understand the phpBB3 codebase.<br />
- have an understanding of <a href="http://www.phpbb.com/mods/modx/faq/">MODX</a> and <a href="http://www.phpbb.com/mods/policies/">MOD policies</a><br />
- are familiar with the <a href="http://www.phpbb.com/mods/validator/checklist.php">MOD Validation checklist</a></p>
<p><strong>Where can I apply?</strong></p>
<p>To apply, please fill out the form at the bottom of the <a href="http://www.phpbb.com/mods/junior-validators/">Junior Validators</a> page and your application will be reviewed by the MOD Team shortly thereafter. Successful applicants will be notified by private message on phpBB.com.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/junior-validators/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-2/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-3/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-4/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-5/" rel="bookmark" class="crp_title">Junior Validators</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2246&amp;ts=1337434506" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/junior-validators-23/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Validators</title>
		<link>http://hosting-news.net/phpbb/junior-validators-22/</link>
		<comments>http://hosting-news.net/phpbb/junior-validators-22/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 04:00:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[automod]]></category>
		<category><![CDATA[Junior]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[mod team]]></category>
		<category><![CDATA[MODs]]></category>
		<category><![CDATA[private forums]]></category>
		<category><![CDATA[Team]]></category>
		<category><![CDATA[team processes]]></category>
		<category><![CDATA[Validation]]></category>
		<category><![CDATA[validation tool]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[validators]]></category>
		<category><![CDATA[will also have access]]></category>

		<guid isPermaLink="false">http://www.hosting-news.net/phpbb/junior-validators-22/</guid>
		<description><![CDATA[What is a Junior Validator?
Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.
Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the MOD Pre-Validation tool (MPV) and setting a status on the MOD accordingly.
Testing is the major role of a Junior [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Junior Validator?</strong></p>
<p>Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.</p>
<p>Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the <a href="http://www.phpbb.com/mods/mpv/">MOD Pre-Validation tool</a> (MPV) and setting a status on the MOD accordingly.</p>
<p>Testing is the major role of a Junior Validator, and requires installing the MOD on a vanilla phpBB3 board through AutoMOD. After installing the MOD, all functions of the MOD and board should then be tested &#8211; all to make sure that the MOD and the board run error-free. The Junior Validator then makes any notes or suggestions to the MOD Team concerning the MOD and, again, the MOD status is set accordingly (&#8220;approve&#8221;, &#8220;deny&#8221;, &#8220;repack&#8221;, etc). In a nutshell, this is the role of a Junior Validator.</p>
<p><strong>Why should I become a Junior Validator?</strong></p>
<p>As a Junior Validator you will be gaining valuable first-hand experience with MOD Team processes which could lead to consideration for a position on the MOD Team. You will also have access to private forums including a Junior MOD Validators forum where you can discuss MOD validation with fellow Junior Validators and MOD Team members.</p>
<p>Most importantly, it will be fun! If you have a passion for writing MODs you will find working with the MOD Team to help validate MODs, and also the opportunity to give something back to the community, very rewarding. The phpBB Team is a very friendly group of people so the chance to work closely with the MOD Team will be very enjoyable.</p>
<p><strong>What are the requirements?</strong></p>
<p>To be considered for a position as a Junior Validator, it is important that you:</p>
<p>- have authored a MOD and submitted it to the MOD Database.<br />
- can communicate in English.<br />
- understand the phpBB3 codebase.<br />
- have an understanding of <a href="http://www.phpbb.com/mods/modx/faq/">MODX</a> and <a href="http://www.phpbb.com/mods/policies/">MOD policies</a><br />
- are familiar with the <a href="http://www.phpbb.com/mods/validator/checklist.php">MOD Validation checklist</a></p>
<p><strong>Where can I apply?</strong></p>
<p>To apply, please fill out the form at the bottom of the <a href="http://www.phpbb.com/mods/junior-validators/">Junior Validators</a> page and your application will be reviewed by the MOD Team shortly thereafter. Successful applicants will be notified by private message on phpBB.com.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/junior-validators/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-2/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-3/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-4/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-5/" rel="bookmark" class="crp_title">Junior Validators</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2245&amp;ts=1337434506" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/junior-validators-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Validators</title>
		<link>http://hosting-news.net/phpbb/junior-validators-21/</link>
		<comments>http://hosting-news.net/phpbb/junior-validators-21/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 03:30:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[automod]]></category>
		<category><![CDATA[mod team]]></category>
		<category><![CDATA[private forums]]></category>
		<category><![CDATA[team processes]]></category>
		<category><![CDATA[validation tool]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[will also have access]]></category>

		<guid isPermaLink="false">http://www.hosting-news.net/phpbb/junior-validators-21/</guid>
		<description><![CDATA[What is a Junior Validator?
Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.
Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the MOD Pre-Validation tool (MPV) and setting a status on the MOD accordingly.
Testing is the major role of a Junior [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Junior Validator?</strong></p>
<p>Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.</p>
<p>Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the <a href="http://www.phpbb.com/mods/mpv/">MOD Pre-Validation tool</a> (MPV) and setting a status on the MOD accordingly.</p>
<p>Testing is the major role of a Junior Validator, and requires installing the MOD on a vanilla phpBB3 board through AutoMOD. After installing the MOD, all functions of the MOD and board should then be tested &#8211; all to make sure that the MOD and the board run error-free. The Junior Validator then makes any notes or suggestions to the MOD Team concerning the MOD and, again, the MOD status is set accordingly (&#8220;approve&#8221;, &#8220;deny&#8221;, &#8220;repack&#8221;, etc). In a nutshell, this is the role of a Junior Validator.</p>
<p><strong>Why should I become a Junior Validator?</strong></p>
<p>As a Junior Validator you will be gaining valuable first-hand experience with MOD Team processes which could lead to consideration for a position on the MOD Team. You will also have access to private forums including a Junior MOD Validators forum where you can discuss MOD validation with fellow Junior Validators and MOD Team members.</p>
<p>Most importantly, it will be fun! If you have a passion for writing MODs you will find working with the MOD Team to help validate MODs, and also the opportunity to give something back to the community, very rewarding. The phpBB Team is a very friendly group of people so the chance to work closely with the MOD Team will be very enjoyable.</p>
<p><strong>What are the requirements?</strong></p>
<p>To be considered for a position as a Junior Validator, it is important that you:</p>
<p>- have authored a MOD and submitted it to the MOD Database.<br />
- can communicate in English.<br />
- understand the phpBB3 codebase.<br />
- have an understanding of <a href="http://www.phpbb.com/mods/modx/faq/">MODX</a> and <a href="http://www.phpbb.com/mods/policies/">MOD policies</a><br />
- are familiar with the <a href="http://www.phpbb.com/mods/validator/checklist.php">MOD Validation checklist</a></p>
<p><strong>Where can I apply?</strong></p>
<p>To apply, please fill out the form at the bottom of the <a href="http://www.phpbb.com/mods/junior-validators/">Junior Validators</a> page and your application will be reviewed by the MOD Team shortly thereafter. Successful applicants will be notified by private message on phpBB.com.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/junior-validators/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-2/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-3/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-4/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-5/" rel="bookmark" class="crp_title">Junior Validators</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2244&amp;ts=1337434506" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/junior-validators-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Validators</title>
		<link>http://hosting-news.net/phpbb/junior-validators-20/</link>
		<comments>http://hosting-news.net/phpbb/junior-validators-20/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 03:00:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[automod]]></category>
		<category><![CDATA[Junior]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[mod team]]></category>
		<category><![CDATA[MODs]]></category>
		<category><![CDATA[private forums]]></category>
		<category><![CDATA[Team]]></category>
		<category><![CDATA[team processes]]></category>
		<category><![CDATA[Validation]]></category>
		<category><![CDATA[validation tool]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[validators]]></category>
		<category><![CDATA[will also have access]]></category>

		<guid isPermaLink="false">http://www.hosting-news.net/phpbb/junior-validators-20/</guid>
		<description><![CDATA[What is a Junior Validator?
Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.
Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the MOD Pre-Validation tool (MPV) and setting a status on the MOD accordingly.
Testing is the major role of a Junior [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Junior Validator?</strong></p>
<p>Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.</p>
<p>Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the <a href="http://www.phpbb.com/mods/mpv/">MOD Pre-Validation tool</a> (MPV) and setting a status on the MOD accordingly.</p>
<p>Testing is the major role of a Junior Validator, and requires installing the MOD on a vanilla phpBB3 board through AutoMOD. After installing the MOD, all functions of the MOD and board should then be tested &#8211; all to make sure that the MOD and the board run error-free. The Junior Validator then makes any notes or suggestions to the MOD Team concerning the MOD and, again, the MOD status is set accordingly (&#8220;approve&#8221;, &#8220;deny&#8221;, &#8220;repack&#8221;, etc). In a nutshell, this is the role of a Junior Validator.</p>
<p><strong>Why should I become a Junior Validator?</strong></p>
<p>As a Junior Validator you will be gaining valuable first-hand experience with MOD Team processes which could lead to consideration for a position on the MOD Team. You will also have access to private forums including a Junior MOD Validators forum where you can discuss MOD validation with fellow Junior Validators and MOD Team members.</p>
<p>Most importantly, it will be fun! If you have a passion for writing MODs you will find working with the MOD Team to help validate MODs, and also the opportunity to give something back to the community, very rewarding. The phpBB Team is a very friendly group of people so the chance to work closely with the MOD Team will be very enjoyable.</p>
<p><strong>What are the requirements?</strong></p>
<p>To be considered for a position as a Junior Validator, it is important that you:</p>
<p>- have authored a MOD and submitted it to the MOD Database.<br />
- can communicate in English.<br />
- understand the phpBB3 codebase.<br />
- have an understanding of <a href="http://www.phpbb.com/mods/modx/faq/">MODX</a> and <a href="http://www.phpbb.com/mods/policies/">MOD policies</a><br />
- are familiar with the <a href="http://www.phpbb.com/mods/validator/checklist.php">MOD Validation checklist</a></p>
<p><strong>Where can I apply?</strong></p>
<p>To apply, please fill out the form at the bottom of the <a href="http://www.phpbb.com/mods/junior-validators/">Junior Validators</a> page and your application will be reviewed by the MOD Team shortly thereafter. Successful applicants will be notified by private message on phpBB.com.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/junior-validators/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-2/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-3/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-4/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-5/" rel="bookmark" class="crp_title">Junior Validators</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2243&amp;ts=1337434507" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/junior-validators-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Validators</title>
		<link>http://hosting-news.net/phpbb/junior-validators-19/</link>
		<comments>http://hosting-news.net/phpbb/junior-validators-19/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 02:30:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[automod]]></category>
		<category><![CDATA[mod team]]></category>
		<category><![CDATA[private forums]]></category>
		<category><![CDATA[team processes]]></category>
		<category><![CDATA[validation tool]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[will also have access]]></category>

		<guid isPermaLink="false">http://www.hosting-news.net/phpbb/junior-validators-19/</guid>
		<description><![CDATA[What is a Junior Validator?
Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.
Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the MOD Pre-Validation tool (MPV) and setting a status on the MOD accordingly.
Testing is the major role of a Junior [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Junior Validator?</strong></p>
<p>Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.</p>
<p>Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the <a href="http://www.phpbb.com/mods/mpv/">MOD Pre-Validation tool</a> (MPV) and setting a status on the MOD accordingly.</p>
<p>Testing is the major role of a Junior Validator, and requires installing the MOD on a vanilla phpBB3 board through AutoMOD. After installing the MOD, all functions of the MOD and board should then be tested &#8211; all to make sure that the MOD and the board run error-free. The Junior Validator then makes any notes or suggestions to the MOD Team concerning the MOD and, again, the MOD status is set accordingly (&#8220;approve&#8221;, &#8220;deny&#8221;, &#8220;repack&#8221;, etc). In a nutshell, this is the role of a Junior Validator.</p>
<p><strong>Why should I become a Junior Validator?</strong></p>
<p>As a Junior Validator you will be gaining valuable first-hand experience with MOD Team processes which could lead to consideration for a position on the MOD Team. You will also have access to private forums including a Junior MOD Validators forum where you can discuss MOD validation with fellow Junior Validators and MOD Team members.</p>
<p>Most importantly, it will be fun! If you have a passion for writing MODs you will find working with the MOD Team to help validate MODs, and also the opportunity to give something back to the community, very rewarding. The phpBB Team is a very friendly group of people so the chance to work closely with the MOD Team will be very enjoyable.</p>
<p><strong>What are the requirements?</strong></p>
<p>To be considered for a position as a Junior Validator, it is important that you:</p>
<p>- have authored a MOD and submitted it to the MOD Database.<br />
- can communicate in English.<br />
- understand the phpBB3 codebase.<br />
- have an understanding of <a href="http://www.phpbb.com/mods/modx/faq/">MODX</a> and <a href="http://www.phpbb.com/mods/policies/">MOD policies</a><br />
- are familiar with the <a href="http://www.phpbb.com/mods/validator/checklist.php">MOD Validation checklist</a></p>
<p><strong>Where can I apply?</strong></p>
<p>To apply, please fill out the form at the bottom of the <a href="http://www.phpbb.com/mods/junior-validators/">Junior Validators</a> page and your application will be reviewed by the MOD Team shortly thereafter. Successful applicants will be notified by private message on phpBB.com.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/junior-validators/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-2/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-3/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-4/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-5/" rel="bookmark" class="crp_title">Junior Validators</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2242&amp;ts=1337434507" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/junior-validators-19/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Validators</title>
		<link>http://hosting-news.net/phpbb/junior-validators-18/</link>
		<comments>http://hosting-news.net/phpbb/junior-validators-18/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 02:00:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[automod]]></category>
		<category><![CDATA[Junior]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[mod team]]></category>
		<category><![CDATA[MODs]]></category>
		<category><![CDATA[private forums]]></category>
		<category><![CDATA[Team]]></category>
		<category><![CDATA[team processes]]></category>
		<category><![CDATA[Validation]]></category>
		<category><![CDATA[validation tool]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[validators]]></category>
		<category><![CDATA[will also have access]]></category>

		<guid isPermaLink="false">http://www.hosting-news.net/phpbb/junior-validators-18/</guid>
		<description><![CDATA[What is a Junior Validator?
Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.
Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the MOD Pre-Validation tool (MPV) and setting a status on the MOD accordingly.
Testing is the major role of a Junior [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Junior Validator?</strong></p>
<p>Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.</p>
<p>Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the <a href="http://www.phpbb.com/mods/mpv/">MOD Pre-Validation tool</a> (MPV) and setting a status on the MOD accordingly.</p>
<p>Testing is the major role of a Junior Validator, and requires installing the MOD on a vanilla phpBB3 board through AutoMOD. After installing the MOD, all functions of the MOD and board should then be tested &#8211; all to make sure that the MOD and the board run error-free. The Junior Validator then makes any notes or suggestions to the MOD Team concerning the MOD and, again, the MOD status is set accordingly (&#8220;approve&#8221;, &#8220;deny&#8221;, &#8220;repack&#8221;, etc). In a nutshell, this is the role of a Junior Validator.</p>
<p><strong>Why should I become a Junior Validator?</strong></p>
<p>As a Junior Validator you will be gaining valuable first-hand experience with MOD Team processes which could lead to consideration for a position on the MOD Team. You will also have access to private forums including a Junior MOD Validators forum where you can discuss MOD validation with fellow Junior Validators and MOD Team members.</p>
<p>Most importantly, it will be fun! If you have a passion for writing MODs you will find working with the MOD Team to help validate MODs, and also the opportunity to give something back to the community, very rewarding. The phpBB Team is a very friendly group of people so the chance to work closely with the MOD Team will be very enjoyable.</p>
<p><strong>What are the requirements?</strong></p>
<p>To be considered for a position as a Junior Validator, it is important that you:</p>
<p>- have authored a MOD and submitted it to the MOD Database.<br />
- can communicate in English.<br />
- understand the phpBB3 codebase.<br />
- have an understanding of <a href="http://www.phpbb.com/mods/modx/faq/">MODX</a> and <a href="http://www.phpbb.com/mods/policies/">MOD policies</a><br />
- are familiar with the <a href="http://www.phpbb.com/mods/validator/checklist.php">MOD Validation checklist</a></p>
<p><strong>Where can I apply?</strong></p>
<p>To apply, please fill out the form at the bottom of the <a href="http://www.phpbb.com/mods/junior-validators/">Junior Validators</a> page and your application will be reviewed by the MOD Team shortly thereafter. Successful applicants will be notified by private message on phpBB.com.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/junior-validators/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-2/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-3/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-4/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-5/" rel="bookmark" class="crp_title">Junior Validators</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2241&amp;ts=1337434507" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/junior-validators-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Validators</title>
		<link>http://hosting-news.net/phpbb/junior-validators-17/</link>
		<comments>http://hosting-news.net/phpbb/junior-validators-17/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 01:30:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[automod]]></category>
		<category><![CDATA[mod team]]></category>
		<category><![CDATA[private forums]]></category>
		<category><![CDATA[team processes]]></category>
		<category><![CDATA[validation tool]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[will also have access]]></category>

		<guid isPermaLink="false">http://www.hosting-news.net/phpbb/junior-validators-17/</guid>
		<description><![CDATA[What is a Junior Validator?
Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.
Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the MOD Pre-Validation tool (MPV) and setting a status on the MOD accordingly.
Testing is the major role of a Junior [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Junior Validator?</strong></p>
<p>Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.</p>
<p>Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the <a href="http://www.phpbb.com/mods/mpv/">MOD Pre-Validation tool</a> (MPV) and setting a status on the MOD accordingly.</p>
<p>Testing is the major role of a Junior Validator, and requires installing the MOD on a vanilla phpBB3 board through AutoMOD. After installing the MOD, all functions of the MOD and board should then be tested &#8211; all to make sure that the MOD and the board run error-free. The Junior Validator then makes any notes or suggestions to the MOD Team concerning the MOD and, again, the MOD status is set accordingly (&#8220;approve&#8221;, &#8220;deny&#8221;, &#8220;repack&#8221;, etc). In a nutshell, this is the role of a Junior Validator.</p>
<p><strong>Why should I become a Junior Validator?</strong></p>
<p>As a Junior Validator you will be gaining valuable first-hand experience with MOD Team processes which could lead to consideration for a position on the MOD Team. You will also have access to private forums including a Junior MOD Validators forum where you can discuss MOD validation with fellow Junior Validators and MOD Team members.</p>
<p>Most importantly, it will be fun! If you have a passion for writing MODs you will find working with the MOD Team to help validate MODs, and also the opportunity to give something back to the community, very rewarding. The phpBB Team is a very friendly group of people so the chance to work closely with the MOD Team will be very enjoyable.</p>
<p><strong>What are the requirements?</strong></p>
<p>To be considered for a position as a Junior Validator, it is important that you:</p>
<p>- have authored a MOD and submitted it to the MOD Database.<br />
- can communicate in English.<br />
- understand the phpBB3 codebase.<br />
- have an understanding of <a href="http://www.phpbb.com/mods/modx/faq/">MODX</a> and <a href="http://www.phpbb.com/mods/policies/">MOD policies</a><br />
- are familiar with the <a href="http://www.phpbb.com/mods/validator/checklist.php">MOD Validation checklist</a></p>
<p><strong>Where can I apply?</strong></p>
<p>To apply, please fill out the form at the bottom of the <a href="http://www.phpbb.com/mods/junior-validators/">Junior Validators</a> page and your application will be reviewed by the MOD Team shortly thereafter. Successful applicants will be notified by private message on phpBB.com.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/junior-validators/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-2/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-3/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-4/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-5/" rel="bookmark" class="crp_title">Junior Validators</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2240&amp;ts=1337434507" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/junior-validators-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Validators</title>
		<link>http://hosting-news.net/phpbb/junior-validators-16/</link>
		<comments>http://hosting-news.net/phpbb/junior-validators-16/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 01:00:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[automod]]></category>
		<category><![CDATA[Junior]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[mod team]]></category>
		<category><![CDATA[MODs]]></category>
		<category><![CDATA[private forums]]></category>
		<category><![CDATA[Team]]></category>
		<category><![CDATA[team processes]]></category>
		<category><![CDATA[Validation]]></category>
		<category><![CDATA[validation tool]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[validators]]></category>
		<category><![CDATA[will also have access]]></category>

		<guid isPermaLink="false">http://www.hosting-news.net/phpbb/junior-validators-16/</guid>
		<description><![CDATA[What is a Junior Validator?
Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.
Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the MOD Pre-Validation tool (MPV) and setting a status on the MOD accordingly.
Testing is the major role of a Junior [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Junior Validator?</strong></p>
<p>Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.</p>
<p>Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the <a href="http://www.phpbb.com/mods/mpv/">MOD Pre-Validation tool</a> (MPV) and setting a status on the MOD accordingly.</p>
<p>Testing is the major role of a Junior Validator, and requires installing the MOD on a vanilla phpBB3 board through AutoMOD. After installing the MOD, all functions of the MOD and board should then be tested &#8211; all to make sure that the MOD and the board run error-free. The Junior Validator then makes any notes or suggestions to the MOD Team concerning the MOD and, again, the MOD status is set accordingly (&#8220;approve&#8221;, &#8220;deny&#8221;, &#8220;repack&#8221;, etc). In a nutshell, this is the role of a Junior Validator.</p>
<p><strong>Why should I become a Junior Validator?</strong></p>
<p>As a Junior Validator you will be gaining valuable first-hand experience with MOD Team processes which could lead to consideration for a position on the MOD Team. You will also have access to private forums including a Junior MOD Validators forum where you can discuss MOD validation with fellow Junior Validators and MOD Team members.</p>
<p>Most importantly, it will be fun! If you have a passion for writing MODs you will find working with the MOD Team to help validate MODs, and also the opportunity to give something back to the community, very rewarding. The phpBB Team is a very friendly group of people so the chance to work closely with the MOD Team will be very enjoyable.</p>
<p><strong>What are the requirements?</strong></p>
<p>To be considered for a position as a Junior Validator, it is important that you:</p>
<p>- have authored a MOD and submitted it to the MOD Database.<br />
- can communicate in English.<br />
- understand the phpBB3 codebase.<br />
- have an understanding of <a href="http://www.phpbb.com/mods/modx/faq/">MODX</a> and <a href="http://www.phpbb.com/mods/policies/">MOD policies</a><br />
- are familiar with the <a href="http://www.phpbb.com/mods/validator/checklist.php">MOD Validation checklist</a></p>
<p><strong>Where can I apply?</strong></p>
<p>To apply, please fill out the form at the bottom of the <a href="http://www.phpbb.com/mods/junior-validators/">Junior Validators</a> page and your application will be reviewed by the MOD Team shortly thereafter. Successful applicants will be notified by private message on phpBB.com.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/junior-validators/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-2/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-3/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-4/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-5/" rel="bookmark" class="crp_title">Junior Validators</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2239&amp;ts=1337434507" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/junior-validators-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Validators</title>
		<link>http://hosting-news.net/phpbb/junior-validators-15/</link>
		<comments>http://hosting-news.net/phpbb/junior-validators-15/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 00:30:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[automod]]></category>
		<category><![CDATA[mod team]]></category>
		<category><![CDATA[private forums]]></category>
		<category><![CDATA[team processes]]></category>
		<category><![CDATA[validation tool]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[will also have access]]></category>

		<guid isPermaLink="false">http://www.hosting-news.net/phpbb/junior-validators-15/</guid>
		<description><![CDATA[What is a Junior Validator?
Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.
Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the MOD Pre-Validation tool (MPV) and setting a status on the MOD accordingly.
Testing is the major role of a Junior [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Junior Validator?</strong></p>
<p>Junior Validators assist the MOD Team with the validation of MODs. They help the MOD Team validators with pre-validation and testing.</p>
<p>Pre-validation involves running a check on MODs newly submitted to the MOD Database queue using the <a href="http://www.phpbb.com/mods/mpv/">MOD Pre-Validation tool</a> (MPV) and setting a status on the MOD accordingly.</p>
<p>Testing is the major role of a Junior Validator, and requires installing the MOD on a vanilla phpBB3 board through AutoMOD. After installing the MOD, all functions of the MOD and board should then be tested &#8211; all to make sure that the MOD and the board run error-free. The Junior Validator then makes any notes or suggestions to the MOD Team concerning the MOD and, again, the MOD status is set accordingly (&#8220;approve&#8221;, &#8220;deny&#8221;, &#8220;repack&#8221;, etc). In a nutshell, this is the role of a Junior Validator.</p>
<p><strong>Why should I become a Junior Validator?</strong></p>
<p>As a Junior Validator you will be gaining valuable first-hand experience with MOD Team processes which could lead to consideration for a position on the MOD Team. You will also have access to private forums including a Junior MOD Validators forum where you can discuss MOD validation with fellow Junior Validators and MOD Team members.</p>
<p>Most importantly, it will be fun! If you have a passion for writing MODs you will find working with the MOD Team to help validate MODs, and also the opportunity to give something back to the community, very rewarding. The phpBB Team is a very friendly group of people so the chance to work closely with the MOD Team will be very enjoyable.</p>
<p><strong>What are the requirements?</strong></p>
<p>To be considered for a position as a Junior Validator, it is important that you:</p>
<p>- have authored a MOD and submitted it to the MOD Database.<br />
- can communicate in English.<br />
- understand the phpBB3 codebase.<br />
- have an understanding of <a href="http://www.phpbb.com/mods/modx/faq/">MODX</a> and <a href="http://www.phpbb.com/mods/policies/">MOD policies</a><br />
- are familiar with the <a href="http://www.phpbb.com/mods/validator/checklist.php">MOD Validation checklist</a></p>
<p><strong>Where can I apply?</strong></p>
<p>To apply, please fill out the form at the bottom of the <a href="http://www.phpbb.com/mods/junior-validators/">Junior Validators</a> page and your application will be reviewed by the MOD Team shortly thereafter. Successful applicants will be notified by private message on phpBB.com.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://hosting-news.net/phpbb/junior-validators/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-2/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-3/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-4/" rel="bookmark" class="crp_title">Junior Validators</a></li><li><a href="http://hosting-news.net/phpbb/junior-validators-5/" rel="bookmark" class="crp_title">Junior Validators</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div><img src="http://hosting-news.net/wp-content/plugins/pixelstats/trackingpixel.php?post_id=2238&amp;ts=1337434507" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hosting-news.net/phpbb/junior-validators-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

