<?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[RapidCP Support Forum - All Forums]]></title>
		<link>http://www.rapidcp.org/forums/</link>
		<description><![CDATA[RapidCP Support Forum - http://www.rapidcp.org/forums]]></description>
		<pubDate>Mon, 06 Sep 2010 20:31:33 -0400</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Introduction]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=44</link>
			<pubDate>Sat, 24 Jul 2010 01:52:53 -0400</pubDate>
			<dc:creator>Ytres</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=44</guid>
			<description><![CDATA[Hi my name is Nasir Ghaffar Student of MBA age 25. My hobby is Ride Beautiful  sports Bikes.  I am doing a part time job in a web developing  office. I have a cat pet.Thanks]]></description>
			<content:encoded><![CDATA[Hi my name is Nasir Ghaffar Student of MBA age 25. My hobby is Ride Beautiful  sports Bikes.  I am doing a part time job in a web developing  office. I have a cat pet.Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Lane card]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=43</link>
			<pubDate>Sat, 24 Jul 2010 01:51:46 -0400</pubDate>
			<dc:creator>Ytres</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=43</guid>
			<description><![CDATA[When ever i install windows vista then my lane card does not work properly so how can i solve this problem?]]></description>
			<content:encoded><![CDATA[When ever i install windows vista then my lane card does not work properly so how can i solve this problem?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[4-digit Chmod Calculator]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=42</link>
			<pubDate>Mon, 22 Feb 2010 11:58:58 -0500</pubDate>
			<dc:creator>antoinelbanks</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=42</guid>
			<description><![CDATA[Hi.<br />
<br />
Here is a code to a free to use GPL 4-digit chmod calculator that should be implemented into the RapidCP file manager, that I stumbled upon while searching the net:<br />
<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
<br />
&lt;!-- Script by hscripts.com --&gt;<br />
&lt;!-- Copyright of HIOXINDIA --&gt;<br />
&lt;!-- More scripts @www.hscripts.com --&gt;<br />
<br />
&lt;script type="text/javascript"&gt;<br />
function calculator(usert, number)<br />
{<br />
        if (usert == "special" &amp;&amp; number == "4") var getval = eval("document.chmodcalc.special4");<br />
        if (usert == "special" &amp;&amp; number == "2") var getval = eval("document.chmodcalc.special2");<br />
        if (usert == "special" &amp;&amp; number == "1") var getval = eval("document.chmodcalc.special1");<br />
        if (usert == "user" &amp;&amp; number == "4") var getval = eval("document.chmodcalc.user4");<br />
        if (usert == "user" &amp;&amp; number == "2") var getval = eval("document.chmodcalc.user2");<br />
        if (usert == "user" &amp;&amp; number == "1") var getval = eval("document.chmodcalc.user1");<br />
        if (usert == "group" &amp;&amp; number == "4") var getval = eval("document.chmodcalc.group4");<br />
        if (usert == "group" &amp;&amp; number == "2") var getval = eval("document.chmodcalc.group2");<br />
        if (usert == "group" &amp;&amp; number == "1") var getval = eval("document.chmodcalc.group1");<br />
        if (usert == "other" &amp;&amp; number == "4") var getval = eval("document.chmodcalc.other4");<br />
        if (usert == "other" &amp;&amp; number == "2") var getval = eval("document.chmodcalc.other2");<br />
        if (usert == "other" &amp;&amp; number == "1") var getval = eval("document.chmodcalc.other1");<br />
<br />
                        if (usert == "special")<br />
                        {<br />
                           if(getval.checked)<br />
                            {<br />
                                document.chmodcalc.hspecial.value += ("+number");<br />
                                var a= (document.chmodcalc.hspecial.value);<br />
                                var b= eval(a);<br />
                                document.chmodcalc.hspecial.value=b;<br />
                                document.chmodcalc.tspecial.value=b;<br />
                             } else {<br />
                                        if (document.chmodcalc.hspecial.value == "")<br />
                                        { document.chmodcalc.tspecial.value=""; } <br />
                                        else {<br />
                                        var a=(document.chmodcalc.hspecial.value);<br />
                                        b=a-(number);<br />
                                        c=eval(b);<br />
                                        document.chmodcalc.hspecial.value=c;<br />
                                        document.chmodcalc.tspecial.value=c;}<br />
                                }<br />
                        }<br />
                        if(usert == "user")<br />
                        {<br />
                            if(getval.checked)<br />
                            {<br />
                                document.chmodcalc.huser.value += ("+number");<br />
                                var a= (document.chmodcalc.huser.value);<br />
                                var b= eval(a);<br />
                                document.chmodcalc.huser.value=b;<br />
                                document.chmodcalc.tuser.value=b;<br />
                            } else {<br />
                                        if (document.chmodcalc.huser.value == "")<br />
                                        { document.chmodcalc.tuser.value=""; } <br />
                                        else {<br />
                                        var a=(document.chmodcalc.huser.value);<br />
                                                    b=a-(number);<br />
                                        c=eval(b);<br />
                                        document.chmodcalc.huser.value=c;<br />
                                        document.chmodcalc.tuser.value=c;       }<br />
                                    }<br />
                        }<br />
                        if (usert == "group")<br />
                        {<br />
                          if(getval.checked)<br />
                          {<br />
                                document.chmodcalc.hgroup.value += ("+number");<br />
                                var a= (document.chmodcalc.hgroup.value);<br />
                                var b= eval(a);<br />
                                document.chmodcalc.hgroup.value=b;<br />
                                document.chmodcalc.tgroup.value=b;<br />
                          } else {<br />
<br />
                                if (document.chmodcalc.hgroup.value == "")<br />
                                { document.chmodcalc.tgroup.value=""; } <br />
                                else {<br />
                                        var a=(document.chmodcalc.hgroup.value);<br />
                                        b=a-(number);<br />
                                        c=eval(b);<br />
                                        document.chmodcalc.hgroup.value=c;<br />
                                        document.chmodcalc.tgroup.value=c; }<br />
                                }<br />
                        }<br />
                        if (usert == "other")<br />
                        {<br />
                           if(getval.checked)<br />
                            {<br />
                                document.chmodcalc.hother.value += ("+number");<br />
                                var a= (document.chmodcalc.hother.value);<br />
                                var b= eval(a);<br />
                                document.chmodcalc.hother.value=b;<br />
                                document.chmodcalc.tother.value=b;<br />
                            } else {<br />
                                        if (document.chmodcalc.hother.value == "")<br />
                                        {       document.chmodcalc.tother.value=""; } <br />
                                        else {<br />
                                        var a=(document.chmodcalc.hother.value);<br />
                                        b=a-(number);<br />
                                        c=eval(b);<br />
                                        document.chmodcalc.hother.value=c;<br />
                                        document.chmodcalc.tother.value=c; }<br />
                                  }<br />
                        }<br />
        if(eval('document.chmodcalc.tspecial.value')==0) document.chmodcalc.tspecial.value='';<br />
        if(eval('document.chmodcalc.tuser.value')==0) document.chmodcalc.tuser.value='';<br />
        if(eval('document.chmodcalc.tgroup.value')==0) document.chmodcalc.tgroup.value='';<br />
        if(eval('document.chmodcalc.tother.value')==0) document.chmodcalc.tother.value='';<br />
}<br />
 function ctck()<br />
{<br />
    var sds = document.getElementById("dum");<br />
    if(sds == null){<br />
        alert("You are using a free package.\n You are not allowed to remove the tag.\n");<br />
    }<br />
    var sdss = document.getElementById("dumdiv");<br />
    if(sdss == null){<br />
        alert("You are using a free package.\n You are not allowed to remove the tag.\n");<br />
    }<br />
}<br />
document.o<strong></strong>nload="ctck()";            <br />
<br />
&lt;/script&gt;<br />
<br />
&lt;!-- Script by hscripts.com --&gt;<br />
<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
<br />
&lt;form name="chmodcalc"&gt;<br />
&lt;input name="hspecial" type="hidden"&gt;<br />
<br />
&lt;input name="huser" type="hidden"&gt;<br />
&lt;input name="hgroup" type="hidden"&gt;<br />
&lt;input name="hother" type="hidden"&gt;<br />
&lt;table bgcolor="#c3d9ff" cellpadding="5" cellspacing="2" align=center&gt;<br />
&lt;tr&gt;&lt;td colspan="6"&gt;<br />
&lt;center&gt;&lt;font face="Verdana" size="3"&gt;&lt;b&gt;4-digit Chmod Calculator&lt;/b&gt;&lt;/font&gt;&lt;/center&gt;<br />
&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr align="center"&gt;&lt;td colspan="2"&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Special&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Permission&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;User&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Group&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Other&lt;/bgt;&lt;font&gt;&lt;/td&gt;<br />
<br />
&lt;/tr&gt;&lt;tr align="center"&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;SUID&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="special4" value="4" o<strong></strong>nclick="calculator('special', 4)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Read&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="user4" value="4" o<strong></strong>nclick="calculator('user', 4)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="group4" value="4" o<strong></strong>nclick="calculator('group', 4)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="other4" value="4" o<strong></strong>nclick="calculator('other', 4)"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;&lt;tr align="center"&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;SGID&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="special2" value="2" o<strong></strong>nclick="calculator('special', 2)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Write&lt;/b&gt;&lt;font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="user2" value="2" o<strong></strong>nclick="calculator('user', 2)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="group2" value="2" o<strong></strong>nclick="calculator('group', 2)"&gt;&lt;/td&gt;<br />
<br />
&lt;td&gt;&lt;input type="checkbox" name="other2" value="2" o<strong></strong>nclick="calculator('other', 2)"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;&lt;tr align="center"&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Sticky&lt;b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="special1" value="1" o<strong></strong>nclick="calculator('special', 1)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Execute&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="user1" value="1" o<strong></strong>nclick="calculator('user', 1)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="group1" value="1" o<strong></strong>nclick="calculator('group', 1)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="other1" value="1" o<strong></strong>nclick="calculator('other', 1)"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;&lt;tr align="center"&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Value&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="text" name="tspecial" size="1"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="text" name="tuser" size="1"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="text" name="tgroup" size="1"&gt;&lt;/td&gt;<br />
<br />
&lt;td&gt;&lt;input type="text" name="tother" size="1"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td colspan=6 align=center&gt;&lt;div style="font-size: 10px;color: #dadada;" id="dumdiv"&gt;<br />
&lt;a href="http://www.hscripts.com" id="dum" style="text-decoration:none;color: dadada;"&gt;©h&lt;/a&gt;&lt;/div&gt;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;<br />
<br />
&lt;/body&gt;<br />
&lt;/html&gt;]]></description>
			<content:encoded><![CDATA[Hi.<br />
<br />
Here is a code to a free to use GPL 4-digit chmod calculator that should be implemented into the RapidCP file manager, that I stumbled upon while searching the net:<br />
<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
<br />
&lt;!-- Script by hscripts.com --&gt;<br />
&lt;!-- Copyright of HIOXINDIA --&gt;<br />
&lt;!-- More scripts @www.hscripts.com --&gt;<br />
<br />
&lt;script type="text/javascript"&gt;<br />
function calculator(usert, number)<br />
{<br />
        if (usert == "special" &amp;&amp; number == "4") var getval = eval("document.chmodcalc.special4");<br />
        if (usert == "special" &amp;&amp; number == "2") var getval = eval("document.chmodcalc.special2");<br />
        if (usert == "special" &amp;&amp; number == "1") var getval = eval("document.chmodcalc.special1");<br />
        if (usert == "user" &amp;&amp; number == "4") var getval = eval("document.chmodcalc.user4");<br />
        if (usert == "user" &amp;&amp; number == "2") var getval = eval("document.chmodcalc.user2");<br />
        if (usert == "user" &amp;&amp; number == "1") var getval = eval("document.chmodcalc.user1");<br />
        if (usert == "group" &amp;&amp; number == "4") var getval = eval("document.chmodcalc.group4");<br />
        if (usert == "group" &amp;&amp; number == "2") var getval = eval("document.chmodcalc.group2");<br />
        if (usert == "group" &amp;&amp; number == "1") var getval = eval("document.chmodcalc.group1");<br />
        if (usert == "other" &amp;&amp; number == "4") var getval = eval("document.chmodcalc.other4");<br />
        if (usert == "other" &amp;&amp; number == "2") var getval = eval("document.chmodcalc.other2");<br />
        if (usert == "other" &amp;&amp; number == "1") var getval = eval("document.chmodcalc.other1");<br />
<br />
                        if (usert == "special")<br />
                        {<br />
                           if(getval.checked)<br />
                            {<br />
                                document.chmodcalc.hspecial.value += ("+number");<br />
                                var a= (document.chmodcalc.hspecial.value);<br />
                                var b= eval(a);<br />
                                document.chmodcalc.hspecial.value=b;<br />
                                document.chmodcalc.tspecial.value=b;<br />
                             } else {<br />
                                        if (document.chmodcalc.hspecial.value == "")<br />
                                        { document.chmodcalc.tspecial.value=""; } <br />
                                        else {<br />
                                        var a=(document.chmodcalc.hspecial.value);<br />
                                        b=a-(number);<br />
                                        c=eval(b);<br />
                                        document.chmodcalc.hspecial.value=c;<br />
                                        document.chmodcalc.tspecial.value=c;}<br />
                                }<br />
                        }<br />
                        if(usert == "user")<br />
                        {<br />
                            if(getval.checked)<br />
                            {<br />
                                document.chmodcalc.huser.value += ("+number");<br />
                                var a= (document.chmodcalc.huser.value);<br />
                                var b= eval(a);<br />
                                document.chmodcalc.huser.value=b;<br />
                                document.chmodcalc.tuser.value=b;<br />
                            } else {<br />
                                        if (document.chmodcalc.huser.value == "")<br />
                                        { document.chmodcalc.tuser.value=""; } <br />
                                        else {<br />
                                        var a=(document.chmodcalc.huser.value);<br />
                                                    b=a-(number);<br />
                                        c=eval(b);<br />
                                        document.chmodcalc.huser.value=c;<br />
                                        document.chmodcalc.tuser.value=c;       }<br />
                                    }<br />
                        }<br />
                        if (usert == "group")<br />
                        {<br />
                          if(getval.checked)<br />
                          {<br />
                                document.chmodcalc.hgroup.value += ("+number");<br />
                                var a= (document.chmodcalc.hgroup.value);<br />
                                var b= eval(a);<br />
                                document.chmodcalc.hgroup.value=b;<br />
                                document.chmodcalc.tgroup.value=b;<br />
                          } else {<br />
<br />
                                if (document.chmodcalc.hgroup.value == "")<br />
                                { document.chmodcalc.tgroup.value=""; } <br />
                                else {<br />
                                        var a=(document.chmodcalc.hgroup.value);<br />
                                        b=a-(number);<br />
                                        c=eval(b);<br />
                                        document.chmodcalc.hgroup.value=c;<br />
                                        document.chmodcalc.tgroup.value=c; }<br />
                                }<br />
                        }<br />
                        if (usert == "other")<br />
                        {<br />
                           if(getval.checked)<br />
                            {<br />
                                document.chmodcalc.hother.value += ("+number");<br />
                                var a= (document.chmodcalc.hother.value);<br />
                                var b= eval(a);<br />
                                document.chmodcalc.hother.value=b;<br />
                                document.chmodcalc.tother.value=b;<br />
                            } else {<br />
                                        if (document.chmodcalc.hother.value == "")<br />
                                        {       document.chmodcalc.tother.value=""; } <br />
                                        else {<br />
                                        var a=(document.chmodcalc.hother.value);<br />
                                        b=a-(number);<br />
                                        c=eval(b);<br />
                                        document.chmodcalc.hother.value=c;<br />
                                        document.chmodcalc.tother.value=c; }<br />
                                  }<br />
                        }<br />
        if(eval('document.chmodcalc.tspecial.value')==0) document.chmodcalc.tspecial.value='';<br />
        if(eval('document.chmodcalc.tuser.value')==0) document.chmodcalc.tuser.value='';<br />
        if(eval('document.chmodcalc.tgroup.value')==0) document.chmodcalc.tgroup.value='';<br />
        if(eval('document.chmodcalc.tother.value')==0) document.chmodcalc.tother.value='';<br />
}<br />
 function ctck()<br />
{<br />
    var sds = document.getElementById("dum");<br />
    if(sds == null){<br />
        alert("You are using a free package.\n You are not allowed to remove the tag.\n");<br />
    }<br />
    var sdss = document.getElementById("dumdiv");<br />
    if(sdss == null){<br />
        alert("You are using a free package.\n You are not allowed to remove the tag.\n");<br />
    }<br />
}<br />
document.o<strong></strong>nload="ctck()";            <br />
<br />
&lt;/script&gt;<br />
<br />
&lt;!-- Script by hscripts.com --&gt;<br />
<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
<br />
&lt;form name="chmodcalc"&gt;<br />
&lt;input name="hspecial" type="hidden"&gt;<br />
<br />
&lt;input name="huser" type="hidden"&gt;<br />
&lt;input name="hgroup" type="hidden"&gt;<br />
&lt;input name="hother" type="hidden"&gt;<br />
&lt;table bgcolor="#c3d9ff" cellpadding="5" cellspacing="2" align=center&gt;<br />
&lt;tr&gt;&lt;td colspan="6"&gt;<br />
&lt;center&gt;&lt;font face="Verdana" size="3"&gt;&lt;b&gt;4-digit Chmod Calculator&lt;/b&gt;&lt;/font&gt;&lt;/center&gt;<br />
&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr align="center"&gt;&lt;td colspan="2"&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Special&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Permission&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;User&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Group&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Other&lt;/bgt;&lt;font&gt;&lt;/td&gt;<br />
<br />
&lt;/tr&gt;&lt;tr align="center"&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;SUID&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="special4" value="4" o<strong></strong>nclick="calculator('special', 4)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Read&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="user4" value="4" o<strong></strong>nclick="calculator('user', 4)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="group4" value="4" o<strong></strong>nclick="calculator('group', 4)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="other4" value="4" o<strong></strong>nclick="calculator('other', 4)"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;&lt;tr align="center"&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;SGID&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="special2" value="2" o<strong></strong>nclick="calculator('special', 2)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Write&lt;/b&gt;&lt;font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="user2" value="2" o<strong></strong>nclick="calculator('user', 2)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="group2" value="2" o<strong></strong>nclick="calculator('group', 2)"&gt;&lt;/td&gt;<br />
<br />
&lt;td&gt;&lt;input type="checkbox" name="other2" value="2" o<strong></strong>nclick="calculator('other', 2)"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;&lt;tr align="center"&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Sticky&lt;b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="special1" value="1" o<strong></strong>nclick="calculator('special', 1)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Execute&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="user1" value="1" o<strong></strong>nclick="calculator('user', 1)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="group1" value="1" o<strong></strong>nclick="calculator('group', 1)"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="checkbox" name="other1" value="1" o<strong></strong>nclick="calculator('other', 1)"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;&lt;tr align="center"&gt;<br />
&lt;td&gt;&lt;font face="Verdana" size="2"&gt;&lt;b&gt;Value&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="text" name="tspecial" size="1"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="text" name="tuser" size="1"&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type="text" name="tgroup" size="1"&gt;&lt;/td&gt;<br />
<br />
&lt;td&gt;&lt;input type="text" name="tother" size="1"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td colspan=6 align=center&gt;&lt;div style="font-size: 10px;color: #dadada;" id="dumdiv"&gt;<br />
&lt;a href="http://www.hscripts.com" id="dum" style="text-decoration:none;color: dadada;"&gt;©h&lt;/a&gt;&lt;/div&gt;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;<br />
<br />
&lt;/body&gt;<br />
&lt;/html&gt;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Missing files]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=40</link>
			<pubDate>Fri, 19 Feb 2010 21:01:35 -0500</pubDate>
			<dc:creator>antoinelbanks</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=40</guid>
			<description><![CDATA[<span style="font-size: large;"><span style="font-family: Times New Roman;">Hi.<br />
<br />
I was trying to install RapidCP to my server, but, unable to because, I need "CURL with SSL Support" and "MySQLi Support," which the script doesn't have.<br />
<br />
On the 1st page of the installation, it's telling me:<br />
<br />
PHP Version &gt;= 5.0.0 	<span style="color: #32CD32;">Yes</span><br />
    -MySQLi Support 	<span style="color: #FF0000;">No</span><br />
    -CURL Support 	<span style="color: #FF0000;">No</span><br />
<br />
<span style="color: #FF0000;">Please fix the following errors and then try the installation again:<br />
You must have PHP compiled with mysqli support.<br />
Your must have CURL with SSL support compiled &amp; enabled.</span><br />
<br />
Where can I download the curl, MySQLi, and SSL that goes along with RapidCP? Thanks in advanced.</span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: large;"><span style="font-family: Times New Roman;">Hi.<br />
<br />
I was trying to install RapidCP to my server, but, unable to because, I need "CURL with SSL Support" and "MySQLi Support," which the script doesn't have.<br />
<br />
On the 1st page of the installation, it's telling me:<br />
<br />
PHP Version &gt;= 5.0.0 	<span style="color: #32CD32;">Yes</span><br />
    -MySQLi Support 	<span style="color: #FF0000;">No</span><br />
    -CURL Support 	<span style="color: #FF0000;">No</span><br />
<br />
<span style="color: #FF0000;">Please fix the following errors and then try the installation again:<br />
You must have PHP compiled with mysqli support.<br />
Your must have CURL with SSL support compiled &amp; enabled.</span><br />
<br />
Where can I download the curl, MySQLi, and SSL that goes along with RapidCP? Thanks in advanced.</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Homepage Manager]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=39</link>
			<pubDate>Fri, 19 Feb 2010 20:51:44 -0500</pubDate>
			<dc:creator>antoinelbanks</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=39</guid>
			<description><![CDATA[<span style="font-size: large;"><span style="font-family: Times New Roman;">Hi.<br />
<br />
I would like to see a homepage folder in the RapidCP root, where WHM’s can drop hosting templates into, a template chooser and a homepage template editor.<br />
<br />
How this will work is that the WHM will be able to choose a homepage from the homepage directory to display, with the hosting plans, prices, links, etc that may be already on the hosting template(s).<br />
<br />
Secondly, with the homepage editor; however many homepage templates are in the homepage directory; the name of each homepage will be in a dropdown menu and when the WHM chooses a homepage name, the homepage will appear in the wysiwyg editor for the WHM to edit. Also, the dropdown menu need to be where it’ll allow sub-options for homepage templates that may have other pages that can be clicked on from the homepage (i.e. contact us.)<br />
<br />
Example:<br />
/homepage/hostingtemplatename/homepageindex.php<br />
				     ContactUs.php</span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: large;"><span style="font-family: Times New Roman;">Hi.<br />
<br />
I would like to see a homepage folder in the RapidCP root, where WHM’s can drop hosting templates into, a template chooser and a homepage template editor.<br />
<br />
How this will work is that the WHM will be able to choose a homepage from the homepage directory to display, with the hosting plans, prices, links, etc that may be already on the hosting template(s).<br />
<br />
Secondly, with the homepage editor; however many homepage templates are in the homepage directory; the name of each homepage will be in a dropdown menu and when the WHM chooses a homepage name, the homepage will appear in the wysiwyg editor for the WHM to edit. Also, the dropdown menu need to be where it’ll allow sub-options for homepage templates that may have other pages that can be clicked on from the homepage (i.e. contact us.)<br />
<br />
Example:<br />
/homepage/hostingtemplatename/homepageindex.php<br />
				     ContactUs.php</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Disk Specs]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=38</link>
			<pubDate>Tue, 16 Feb 2010 17:27:59 -0500</pubDate>
			<dc:creator>antoinelbanks</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=38</guid>
			<description><![CDATA[<span style="font-size: medium;"><span style="font-family: Times New Roman;">I would like to give my signups the ability to choose disk specs and give them choices in the amount they want and what they want when they signup that will coincide with the computer: <span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">CPU</span></span></span>, <span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">Memory</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Disk Space</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Disk Type</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">RAID Type</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Monthly Bandwidth</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Operating System</span></span></span><br />
<br />
Also, there's an editor to choose rather WHM want dropdown or radio buttons under the categories; this will make all categories the same. Each category will have a textbox field to type in the attributes. Textboxes can be added and deleted with an "Add Textbox" and a "Delete Textbox" link.<br />
<br />
Example for the CPU category:<br />
<span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">Choose:</span></span></span> radio or dropdown; &lt;-- will affect all categories.<br />
<span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">CPU category textbox:</span></span></span> I type in "<span style="font-weight: bold;">Dual-Core Intel</span>"<br />
<span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Under current textbox:</span></span></span> I click "<span style="font-weight: bold;">Add Textbox</span>" to add a textbox or "<span style="font-weight: bold;">Delete Textbox</span>" to delete a textbox<br />
I click "<span style="font-weight: bold;">Update</span>."<br />
<br />
<span style="font-weight: bold;">NOTE:</span> What will happen is that on the signup page, each category will have have a radio button or dropdown menu and client will be able to choose the disk specs listed for each category.</span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: medium;"><span style="font-family: Times New Roman;">I would like to give my signups the ability to choose disk specs and give them choices in the amount they want and what they want when they signup that will coincide with the computer: <span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">CPU</span></span></span>, <span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">Memory</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Disk Space</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Disk Type</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">RAID Type</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Monthly Bandwidth</span></span></span>, <span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Operating System</span></span></span><br />
<br />
Also, there's an editor to choose rather WHM want dropdown or radio buttons under the categories; this will make all categories the same. Each category will have a textbox field to type in the attributes. Textboxes can be added and deleted with an "Add Textbox" and a "Delete Textbox" link.<br />
<br />
Example for the CPU category:<br />
<span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">Choose:</span></span></span> radio or dropdown; &lt;-- will affect all categories.<br />
<span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">CPU category textbox:</span></span></span> I type in "<span style="font-weight: bold;">Dual-Core Intel</span>"<br />
<span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Under current textbox:</span></span></span> I click "<span style="font-weight: bold;">Add Textbox</span>" to add a textbox or "<span style="font-weight: bold;">Delete Textbox</span>" to delete a textbox<br />
I click "<span style="font-weight: bold;">Update</span>."<br />
<br />
<span style="font-weight: bold;">NOTE:</span> What will happen is that on the signup page, each category will have have a radio button or dropdown menu and client will be able to choose the disk specs listed for each category.</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MySQL Database Wizard and Backup Feature Upgrade]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=37</link>
			<pubDate>Sun, 14 Feb 2010 13:40:07 -0500</pubDate>
			<dc:creator>antoinelbanks</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=37</guid>
			<description><![CDATA[<span style="font-size: medium;"><span style="font-family: Times New Roman;">Hi.<br />
<br />
The database wizard needs to be where clients can "<span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">Add db username and password</span></span></span>," "<span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Add User To Database</span></span></span>," "<span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Check DB/Repair DB</span></span></span>," and "<span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Grant Permissions</span></span></span>"<br />
<br />
The backup feature should be where, not only can the WHM manually backup the server, but, can also setup the automatic backup where it'll backup the server corrispoding to the day, month, date, year and time in the specified computer location choosen.<br />
<br />
Also, when the WHM backs up the server, in the Save As textbox, it'll have the day, month, date, year and time by default, which, of course the WHM can change the name of the file.<br />
<br />
EXAMPLE:<br />
backups/Friday, February 12, 2010 - 10_55 pm.txt</span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: medium;"><span style="font-family: Times New Roman;">Hi.<br />
<br />
The database wizard needs to be where clients can "<span style="text-decoration: underline;"><span style="font-style: italic;"><span style="font-weight: bold;">Add db username and password</span></span></span>," "<span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Add User To Database</span></span></span>," "<span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Check DB/Repair DB</span></span></span>," and "<span style="font-weight: bold;"><span style="font-style: italic;"><span style="text-decoration: underline;">Grant Permissions</span></span></span>"<br />
<br />
The backup feature should be where, not only can the WHM manually backup the server, but, can also setup the automatic backup where it'll backup the server corrispoding to the day, month, date, year and time in the specified computer location choosen.<br />
<br />
Also, when the WHM backs up the server, in the Save As textbox, it'll have the day, month, date, year and time by default, which, of course the WHM can change the name of the file.<br />
<br />
EXAMPLE:<br />
backups/Friday, February 12, 2010 - 10_55 pm.txt</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Email Function Modules]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=36</link>
			<pubDate>Fri, 12 Feb 2010 22:05:20 -0500</pubDate>
			<dc:creator>antoinelbanks</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=36</guid>
			<description><![CDATA[<span style="font-size: medium;"><span style="font-family: Times New Roman;">I don't know if any of these items were discussed, but I think that Auto Responders, Mail Forward and IMAP should be added to the email function modules.</span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: medium;"><span style="font-family: Times New Roman;">I don't know if any of these items were discussed, but I think that Auto Responders, Mail Forward and IMAP should be added to the email function modules.</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[how can I write the disk without nero or any other software?]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=33</link>
			<pubDate>Thu, 07 Jan 2010 01:01:02 -0500</pubDate>
			<dc:creator>donny</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=33</guid>
			<description><![CDATA[Hello friends!<br />
I want to write a disk without help of nero or any other software for disk management.How can I do?please give me the suggestion.]]></description>
			<content:encoded><![CDATA[Hello friends!<br />
I want to write a disk without help of nero or any other software for disk management.How can I do?please give me the suggestion.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Can anyone help with an XP installation problem?]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=32</link>
			<pubDate>Wed, 06 Jan 2010 04:54:19 -0500</pubDate>
			<dc:creator>andrewan</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=32</guid>
			<description><![CDATA[I'm trying to reinstall Windows to iron out a soundcard glitch, but I'm having problems because the OS on my PC is newer than the one on my XP installation disc. I tried unistalling SP2 but that didn't help.]]></description>
			<content:encoded><![CDATA[I'm trying to reinstall Windows to iron out a soundcard glitch, but I'm having problems because the OS on my PC is newer than the one on my XP installation disc. I tried unistalling SP2 but that didn't help.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What is a good type of computer technology to research and write a short paper on?]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=31</link>
			<pubDate>Tue, 05 Jan 2010 04:48:16 -0500</pubDate>
			<dc:creator>andrewan</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=31</guid>
			<description><![CDATA[I need to "Research a type of COMPUTER technology" and "describe the technology you have found. Be sure to include a description of what the technology does, as well as other information that you found to be helpful (or not) regarding the technology."<br />
I am having a hard time deciding what to write it on. Any suggestions?]]></description>
			<content:encoded><![CDATA[I need to "Research a type of COMPUTER technology" and "describe the technology you have found. Be sure to include a description of what the technology does, as well as other information that you found to be helpful (or not) regarding the technology."<br />
I am having a hard time deciding what to write it on. Any suggestions?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What File system to use for Ubuntu installation?]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=30</link>
			<pubDate>Tue, 05 Jan 2010 00:00:15 -0500</pubDate>
			<dc:creator>andrewan</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=30</guid>
			<description><![CDATA[Hey<br />
just wanted to know what file system or something like that to use for an Ubuntu installation on a new partition. So by filesystem i think i mean like fat32 ntfs etc.<br />
Thanks in advance]]></description>
			<content:encoded><![CDATA[Hey<br />
just wanted to know what file system or something like that to use for an Ubuntu installation on a new partition. So by filesystem i think i mean like fat32 ntfs etc.<br />
Thanks in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[TrilexLabs Appoints Hebb, Jon to Lead Developer of RapidCP]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=29</link>
			<pubDate>Tue, 29 Dec 2009 16:19:09 -0500</pubDate>
			<dc:creator>Trilexcom</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=29</guid>
			<description><![CDATA[TrilexLabs Appoints Mr. Jon Hebb to Lead Developer of RapidCP.<br />
<br />
Trilex Labs to add more developers to RapidCP very soon!<br />
<br />
About RapidCP<br />
<br />
RapidCP is a web hosting control panel. It's designed to make running a host or a website easier by providing a simple GUI . On this section of the site, you can learn all about RapidCP. Everything from our long History, to our dedicated Development Team is covered. If you're interested in running our software, you should also check out the Requirements and Compatibility pages. The first contains info on the prerequisites required to run RapidCP, and the later about environments tested and approved by our team.<br />
<br />
thanks for tuning in <br />
<br />
RapidCP Group]]></description>
			<content:encoded><![CDATA[TrilexLabs Appoints Mr. Jon Hebb to Lead Developer of RapidCP.<br />
<br />
Trilex Labs to add more developers to RapidCP very soon!<br />
<br />
About RapidCP<br />
<br />
RapidCP is a web hosting control panel. It's designed to make running a host or a website easier by providing a simple GUI . On this section of the site, you can learn all about RapidCP. Everything from our long History, to our dedicated Development Team is covered. If you're interested in running our software, you should also check out the Requirements and Compatibility pages. The first contains info on the prerequisites required to run RapidCP, and the later about environments tested and approved by our team.<br />
<br />
thanks for tuning in <br />
<br />
RapidCP Group]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Is ACD/Labs software compatible with Windows Vista?]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=22</link>
			<pubDate>Tue, 15 Dec 2009 22:14:18 -0500</pubDate>
			<dc:creator>jeryruse</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=22</guid>
			<description><![CDATA[Hi Friends,<br />
Is ACD/Labs software compatible with Windows Vista?]]></description>
			<content:encoded><![CDATA[Hi Friends,<br />
Is ACD/Labs software compatible with Windows Vista?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I was trying to download software, and it failed with error: SDC00400. What is this?]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=21</link>
			<pubDate>Tue, 15 Dec 2009 03:32:02 -0500</pubDate>
			<dc:creator>jeryruse</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=21</guid>
			<description><![CDATA[Hi Friends,<br />
I was trying to download software, and it failed with error: SDC00400. What is this?]]></description>
			<content:encoded><![CDATA[Hi Friends,<br />
I was trying to download software, and it failed with error: SDC00400. What is this?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Can the CNCSharkPro use dxf files bought commercially?]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=20</link>
			<pubDate>Mon, 14 Dec 2009 03:42:48 -0500</pubDate>
			<dc:creator>jeryruse</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=20</guid>
			<description><![CDATA[Hi Friends,<br />
Can the CNCSharkPro use dxf files bought commercially?]]></description>
			<content:encoded><![CDATA[Hi Friends,<br />
Can the CNCSharkPro use dxf files bought commercially?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Any new technology from RapidCp commmunity ..]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=19</link>
			<pubDate>Thu, 26 Nov 2009 21:53:18 -0500</pubDate>
			<dc:creator>benjaminshr</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=19</guid>
			<description><![CDATA[Hi friends ,<br />
I'm looking for any new technology from this community .. Is there any new developed technology ?]]></description>
			<content:encoded><![CDATA[Hi friends ,<br />
I'm looking for any new technology from this community .. Is there any new developed technology ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Remote Desktop]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=18</link>
			<pubDate>Thu, 05 Nov 2009 14:27:50 -0500</pubDate>
			<dc:creator>jt3w</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=18</guid>
			<description><![CDATA[Hello, I would recommend a remote desktop app in the Control Panel. I have been looking for one for the longest time and if you added that it would be the best control Panel out there. If it is a feature for windows just yell at me and tell me were it is because i would love it. I am trying to host game servers that's is why i would need some thing like that or some kind of feature to be able to run exe files or even cooler add actual menu for server set up for like counterstrike source.]]></description>
			<content:encoded><![CDATA[Hello, I would recommend a remote desktop app in the Control Panel. I have been looking for one for the longest time and if you added that it would be the best control Panel out there. If it is a feature for windows just yell at me and tell me were it is because i would love it. I am trying to host game servers that's is why i would need some thing like that or some kind of feature to be able to run exe files or even cooler add actual menu for server set up for like counterstrike source.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[RapidCP is getting ready to launch the Demo of RapidCP 3.0 Alpha]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=17</link>
			<pubDate>Wed, 21 Oct 2009 12:53:37 -0400</pubDate>
			<dc:creator>Trilexcom</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=17</guid>
			<description><![CDATA[About RapidCP<br />
RapidCP is a web hosting control panel. It's designed to make running a host or a website easier by providing a simple GUI . On this section of the site, you can learn all about RapidCP. Everything from our long History, to our dedicated Development Team is covered. If you're interested in running our software, you should also check out the Requirements and Compatibility pages. The first contains info on the prerequisites required to run RapidCP, and the later about environments tested and approved by our team.<br />
<br />
Thanks<br />
<br />
Trilex Labs Group]]></description>
			<content:encoded><![CDATA[About RapidCP<br />
RapidCP is a web hosting control panel. It's designed to make running a host or a website easier by providing a simple GUI . On this section of the site, you can learn all about RapidCP. Everything from our long History, to our dedicated Development Team is covered. If you're interested in running our software, you should also check out the Requirements and Compatibility pages. The first contains info on the prerequisites required to run RapidCP, and the later about environments tested and approved by our team.<br />
<br />
Thanks<br />
<br />
Trilex Labs Group]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[RapidCP]]></title>
			<link>http://www.rapidcp.org/forums/showthread.php?tid=15</link>
			<pubDate>Thu, 04 Jun 2009 03:52:14 -0400</pubDate>
			<dc:creator>php-coder</dc:creator>
			<guid isPermaLink="false">http://www.rapidcp.org/forums/showthread.php?tid=15</guid>
			<description><![CDATA[Hello everyone,<br />
<br />
Firstly im new to the DEV team my name is Rick, Secondly RapidCP is not a dead project as with everything and everyone sometimes things take time due to real life situations arising. <br />
<br />
Now for the interesting part.. from now on the RapidCP project will be picking up things will start moving forward again we have started to work on the system again and we will hopefully have a Beta online soon and then finalised shortly after for a stable release.. if you have any questions please post them here, but please do NOT post and ask "Is this dead" because i have already said it isnt we are begining work on this again.<br />
<br />
Looking forward to seeing you're input guys!.<br />
<br />
<br />
~Rick]]></description>
			<content:encoded><![CDATA[Hello everyone,<br />
<br />
Firstly im new to the DEV team my name is Rick, Secondly RapidCP is not a dead project as with everything and everyone sometimes things take time due to real life situations arising. <br />
<br />
Now for the interesting part.. from now on the RapidCP project will be picking up things will start moving forward again we have started to work on the system again and we will hopefully have a Beta online soon and then finalised shortly after for a stable release.. if you have any questions please post them here, but please do NOT post and ask "Is this dead" because i have already said it isnt we are begining work on this again.<br />
<br />
Looking forward to seeing you're input guys!.<br />
<br />
<br />
~Rick]]></content:encoded>
		</item>
	</channel>
</rss>