<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>WHMCS Forums - Useful Resources</title>
		<link>http://forum.whmcs.com/</link>
		<description>This is a place to post useful items and links for other web hosts</description>
		<language>en</language>
		<lastBuildDate>Wed, 19 Jun 2013 00:52:43 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>1440</ttl>
		<image>
			<url>http://forum.whmcs.com/images/misc/rss.png</url>
			<title>WHMCS Forums - Useful Resources</title>
			<link>http://forum.whmcs.com/</link>
		</image>
		<item>
			<title><![CDATA[[WIP] Responsive CSS for Default Template]]></title>
			<link>http://forum.whmcs.com/showthread.php?73934-WIP-Responsive-CSS-for-Default-Template&amp;goto=newpost</link>
			<pubDate>Fri, 31 May 2013 19:52:30 GMT</pubDate>
			<description>Hello this is my CSS to make WHMCS default template as a responsive template. You can save below script to css file or append in header.tpl file. 
...</description>
			<content:encoded><![CDATA[<div>Hello this is my CSS to make WHMCS default template as a responsive template. You can save below script to css file or append in header.tpl file.<br />
<br />
And add this tag in your header.tpl file.<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot; /&gt;</code><hr />
</div>Please keep in mind this script is still in development, I write in my spare time. <br />
<br />
If you have suggestions or would like to help to develop it, please reply in this thread.<br />
<br />
For copyrights, you can use it freely, just attach a link to this thread.<br />
<br />
Current bugs:<br />
<ul><li style="">Table style is messy</li><li style="">Nav bar is messy</li></ul><br />
<br />
Useful reference:<br />
<ul><li style=""><a href="http://elvery.net/demo/responsive-tables/" target="_blank" rel="nofollow">http://elvery.net/demo/responsive-tables/</a></li></ul><br />
<br />
<b>CSS</b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">@media screen and (max-width: 999px) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; .navbar .navbar-inner, .footerdivider {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding: 0px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -moz-border-radius: 0px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -webkit-border-radius: 0px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -o-border-radius: 0px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-radius: 0px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
@media screen and (max-width: 959px) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; .navbar .navbar-inner .nav-collapse {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; /* display: none; */<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .navbar .navbar-inner .container {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
@media screen and (max-width: 799px) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; .navbar .navbar-inner {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: auto;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .form-horizontal .col2half {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clear: both;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .whmcscontainer fieldset.onecol label.control-label {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 140px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .whmcscontainer fieldset.onecol div.controls {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin-left: 160px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .well .textcenter .bigfield {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 80%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
@media screen and (max-width: 639px) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; .well .textcenter .bigfield, .well.textcenter .bigfield {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .well .textcenter .captchainput, .well.textcenter .captchainput {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 90%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .well .textcenter .internalpadding, .well.textcenter .internalpadding {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text-align: center;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .well .textcenter .internalpadding .btn:last-child, .well.textcenter .internalpadding .btn:last-child {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin-top: 10px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .row .col2half, .row .col60, .row .col40 , .row .col70, .row .col30 {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clear: both;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .form-inline .btn-primary {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin-top: 10px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .whmcscontainer .col2half label.control-label, .whmcscontainer fieldset.onecol label.control-label {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  width: 100px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .whmcscontainer .col2half div.controls, .whmcscontainer fieldset.onecol div.controls {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin-left: 110px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .contentpadded .halfwidthcontainer, .whmcscontainer .logincontainer {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .logincontainer label.control-label, .logincontainer div.controls {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin-left: 0px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .logincontainer div.controls input.input-xlarge {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 98%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; /** Flip scroll table style **/<br />
&nbsp; &nbsp; &nbsp; &nbsp; /*<br />
&nbsp; &nbsp; &nbsp; &nbsp; table:after {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; visibility: hidden;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; font-size: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; content: &quot; &quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clear: both;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; * html table, *:first-child+html table {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; zoom: 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; table {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-collapse:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; collapse;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-spacing: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; th, td {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vertical-align: top;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; th {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text-align: left;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; table {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; position: relative;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; thead {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; float: left;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; tbody {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: auto;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; position: relative;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; overflow-x: auto;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; white-space: nowrap;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; thead tr {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; th {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text-align: right;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; tbody tr {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: inline-block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vertical-align: top;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; td {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; min-height: 1.25em;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text-align: left;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; th {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-bottom: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-left: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; td {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-left: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-right: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-bottom: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; tbody tr {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-left: 1px solid #babcbf;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; th:last-child, td:last-child {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-bottom: 1px solid #babcbf;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; */<br />
&nbsp; &nbsp; &nbsp; &nbsp; /** End of Flip scroll table style **/<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; /** No more table style **/<br />
&nbsp; &nbsp; &nbsp; &nbsp; table, thead, tbody, th, td, tr {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; table thead tr {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; position: absolute;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; top: -9999px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; left: -9999px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; table tr {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border: 1px solid #ccc;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; table td {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border: none;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-bottom: 1px solid #eee;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; position: relative;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding-left: 50%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; white-space: normal;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text-align:left;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; table td:before {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; position: absolute;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; top: 6px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; left: 6px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 45%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding-right: 10px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; white-space: nowrap;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text-align:left;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; font-weight: bold;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; table td:before {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; content: attr(data-title);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; /** End of No more table style **/<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .footer {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text-align: center;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; .footer #languagechooser, .footer #copyright {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clear: both;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://forum.whmcs.com/forumdisplay.php?24-Useful-Resources">Useful Resources</category>
			<dc:creator>Ezra prakasa</dc:creator>
			<guid isPermaLink="true">http://forum.whmcs.com/showthread.php?73934-WIP-Responsive-CSS-for-Default-Template</guid>
		</item>
		<item>
			<title>Free WHMCS Templates - v.5.2 ready</title>
			<link>http://forum.whmcs.com/showthread.php?69810-Free-WHMCS-Templates-v-5-2-ready&amp;goto=newpost</link>
			<pubDate>Fri, 15 Mar 2013 17:11:18 GMT</pubDate>
			<description>Hello, 
 
We have two free WHMCS templates available for you to download and use on your WHMCS website. 
 
They are both compatible with version 5.2:...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
We have two free WHMCS templates available for you to download and use on your WHMCS website.<br />
<br />
They are both compatible with version 5.2:<br />
<br />
- <a href="http://www.demo.whmcsthemes.com/demo.php?systpl=FreeTheme1" target="_blank" rel="nofollow">My Host</a><br />
<br />
- <a href="http://www.demo.whmcsthemes.com/demo.php?systpl=FreeTheme2" target="_blank" rel="nofollow">Your Host</a><br />
<br />
As these are free products, we are unable to provide user support.<br />
<br />
Enjoy :)<br />
<br />
Alistair</div>

]]></content:encoded>
			<category domain="http://forum.whmcs.com/forumdisplay.php?24-Useful-Resources">Useful Resources</category>
			<dc:creator>Alistair</dc:creator>
			<guid isPermaLink="true">http://forum.whmcs.com/showthread.php?69810-Free-WHMCS-Templates-v-5-2-ready</guid>
		</item>
		<item>
			<title>Do you use WHMCS for non hosting business?</title>
			<link>http://forum.whmcs.com/showthread.php?68102-Do-you-use-WHMCS-for-non-hosting-business&amp;goto=newpost</link>
			<pubDate>Thu, 07 Feb 2013 11:49:40 GMT</pubDate>
			<description><![CDATA[Recently I have used WHMCS as the billing platform for a property portal and then used the whmcs api's to integrate the billing so that whmcs is used...]]></description>
			<content:encoded><![CDATA[<div>Recently I have used WHMCS as the billing platform for a property portal and then used the whmcs api's to integrate the billing so that whmcs is used as the billing and accounting platform invisible to the property portal.<br />
<br />
I was wondering if anyone else had used WHMCS in a non hosting situation also.</div>

]]></content:encoded>
			<category domain="http://forum.whmcs.com/forumdisplay.php?24-Useful-Resources">Useful Resources</category>
			<dc:creator>craigedmonds</dc:creator>
			<guid isPermaLink="true">http://forum.whmcs.com/showthread.php?68102-Do-you-use-WHMCS-for-non-hosting-business</guid>
		</item>
		<item>
			<title>FINALLY! Protection from FTP and RDP Brute force on IIS 7/7.5</title>
			<link>http://forum.whmcs.com/showthread.php?68042-FINALLY!-Protection-from-FTP-and-RDP-Brute-force-on-IIS-7-7-5&amp;goto=newpost</link>
			<pubDate>Tue, 05 Feb 2013 16:53:12 GMT</pubDate>
			<description>After searching high and low.. I finally found the best product to take care of brute force attacks in Windows 2008 (IIS 7/7.5) without waiting for...</description>
			<content:encoded><![CDATA[<div>After searching high and low.. I finally found the best product to take care of brute force attacks in Windows 2008 (IIS 7/7.5) without waiting for Windows 2012 on my Plesk Windows hosting servers.  It&#8217;s called CyberArms which can be found at /http://ww.cyberarms.net<br />
<br />
They charge $199.99 per server, but you own the software.   It works with your firewall and automatically blocks for invalid login attempts that you can configure.  It protects the following:<br />
<br />
Outlook Web<br />
Microsoft FTP<br />
SQL Server Login attempts<br />
Remote Desktop attempts.<br />
<br />
What I can tell you in evaluating the software is that the company is a Microsoft Partner, so it has been well tested.  They are also going to be releasing additional modules for SMTP in the future.  It uses hardly any CPU at all.  On my first hosting server, I already have over 200 IP&#8217;s blocked in a week from attempts to FTP brute force in.  I also like that fact that it doesn&#8217;t have tons of overhead with fancy maps, and un-needed &#8220;junk&#8221;, since in my mind &#8211; I don&#8217;t need all that on the server, I just needed something that just works&#8230;. Nothing fancy.  Check them out!</div>

]]></content:encoded>
			<category domain="http://forum.whmcs.com/forumdisplay.php?24-Useful-Resources">Useful Resources</category>
			<dc:creator>CavalloComm</dc:creator>
			<guid isPermaLink="true">http://forum.whmcs.com/showthread.php?68042-FINALLY!-Protection-from-FTP-and-RDP-Brute-force-on-IIS-7-7-5</guid>
		</item>
		<item>
			<title>Server Security Scripts</title>
			<link>http://forum.whmcs.com/showthread.php?61186-Server-Security-Scripts&amp;goto=newpost</link>
			<pubDate>Fri, 12 Oct 2012 18:00:58 GMT</pubDate>
			<description>Found these today on a web hosting forum. Figured would share here: 
 
/http://solidshellsecurity.com/tools/chkrootkit-automatic-script-installer.php...</description>
			<content:encoded><![CDATA[<div>Found these today on a web hosting forum. Figured would share here:<br />
<br />
/http://solidshellsecurity.com/tools/chkrootkit-automatic-script-installer.php Chkrootkit Automatic Script Installer<br />
/http://solidshellsecurity.com/tools/rkhunter-automatic-script-installer.php RKHunter Automatic Script Installer</div>

]]></content:encoded>
			<category domain="http://forum.whmcs.com/forumdisplay.php?24-Useful-Resources">Useful Resources</category>
			<dc:creator>AmanWills</dc:creator>
			<guid isPermaLink="true">http://forum.whmcs.com/showthread.php?61186-Server-Security-Scripts</guid>
		</item>
		<item>
			<title>Free WHMCS Templates</title>
			<link>http://forum.whmcs.com/showthread.php?61118-Free-WHMCS-Templates&amp;goto=newpost</link>
			<pubDate>Thu, 11 Oct 2012 19:17:34 GMT</pubDate>
			<description>There are 2 new and free WHMCS templates available - each design comes complete with a homepage, plans page, as well as the WHMCS pages. 
 
For a...</description>
			<content:encoded><![CDATA[<div>There are 2 new and free WHMCS templates available - each design comes complete with a homepage, plans page, as well as the WHMCS pages.<br />
<br />
For a live demo and download link for each template, visit:<br />
<br />
<a href="http://www.whmcsthemes.com/link.php?id=10" target="_blank" rel="nofollow">http://www.whmcsthemes.com/link.php?id=10</a><br />
<br />
Enjoy :)</div>

]]></content:encoded>
			<category domain="http://forum.whmcs.com/forumdisplay.php?24-Useful-Resources">Useful Resources</category>
			<dc:creator>Alistair</dc:creator>
			<guid isPermaLink="true">http://forum.whmcs.com/showthread.php?61118-Free-WHMCS-Templates</guid>
		</item>
	</channel>
</rss>
