<?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[Elevated Community - All Forums]]></title>
		<link>http://www.elevatedservers.net/forums/</link>
		<description><![CDATA[Elevated Community - http://www.elevatedservers.net/forums]]></description>
		<pubDate>Fri, 30 Jul 2010 10:51:25 -0700</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Softaculous]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=30</link>
			<pubDate>Tue, 27 Jul 2010 05:45:25 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=30</guid>
			<description><![CDATA[This is to announce that Installatron has been replaced by Softaculous for ALL shared hosting due to its massive coverage on scripts.<br />
<br />
regards,<br />
Aizal]]></description>
			<content:encoded><![CDATA[This is to announce that Installatron has been replaced by Softaculous for ALL shared hosting due to its massive coverage on scripts.<br />
<br />
regards,<br />
Aizal]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Server Maintenance 0600 UTC]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=29</link>
			<pubDate>Sun, 25 Jul 2010 16:32:08 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=29</guid>
			<description><![CDATA[This is to announce that we will run a server maintenance as part as our routine check starting at 0600 UTC. Minor downtime is expected.<br />
<br />
regards,<br />
Aizal]]></description>
			<content:encoded><![CDATA[This is to announce that we will run a server maintenance as part as our routine check starting at 0600 UTC. Minor downtime is expected.<br />
<br />
regards,<br />
Aizal]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HOW-TO: Harden A Fresh CentOS 5.x Server]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=28</link>
			<pubDate>Fri, 23 Apr 2010 08:13:00 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=28</guid>
			<description><![CDATA[#!/bin/sh<br />
<br />
set -ve<br />
<br />
# Script to harden a fresh CentOS 4 or 5 base server install, which installs<br />
<br />
# any updated packages plus a few useful extras, removes unnecessary<br />
<br />
# services and setuid bits, and does a little performance tuning. Running it more than once shouldn't hurt anything.<br />
<br />
#<br />
<br />
# Run with:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>wget -O- http://ftp.die.net/pub/harden-centos/harden-centos | sh<br />
PATH=/bin:/usr/bin:/sbin:/usr/sbin</code></div></div>
<br />
# Update rpm and yum if possible. (Limit dependencies.)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install rpm yum</code></div></div>
<br />
# Installing useful packages<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install joe tcpdump mtr postfix strace zsh gdb perl vixie-cron logrotate</code></div></div>
<br />
# Removing unnecessary daemons and setuid binaries<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y remove squid krb5-workstation cups at rsh sudo isdn4k-utils sendmail &#92;<br />
<br />
slocate apmd irda-utils mt-st gpm samba-common sendmail-cf talk &#92;<br />
<br />
up2date ypbind yp-tools wvdial lockdev procmail xorg-x11-font-utils &#92;<br />
<br />
pam_ccreds gdm bluez-utils yum-updatesd</code></div></div>
<br />
# Upgrading to latest packages<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y upgrade</code></div></div>
<br />
# Removing unnecessary setuid bits<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>find / /usr -xdev -type f -perm +04000 | &#92;<br />
<br />
grep -vP '^(/bin/(su|ping|traceroute)|/usr/bin/(passwd|chsh|crontab)|/usr/libexec/openssh/ssh-keysign)&#36;' | &#92;<br />
<br />
xargs -r chmod ug-s</code></div></div>
<br />
# Removing unnecessary setgid bits<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>find / /usr -xdev -type f -perm +02000 | &#92;<br />
<br />
grep -vP '^(/usr/sbin/(utempter|postdrop|postqueue)|/usr/bin/ssh-agent)&#36;' | &#92;<br />
<br />
xargs -r chmod g-s</code></div></div>
<br />
# Setting nosuid,nodev on user partitions, noatime on ext2 and ext3<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>perl -i~ -p -e 's/(&#92;sext[23&#93;&#92;s+)(defaults)(?=&#92;s)/&#36;1&#36;2,noatime/;next if m#&#92;s/(?:usr|bin)?&#92;s#;next unless m#&#92;s(ext[23&#93;|tmpfs|auto)&#92;s#;s/(?&lt;=&#92;s)(defaults(?:,noatime)?)(?=&#92;s<br />
)/&#36;1,nosuid,nodev/' /etc/fstab</code></div></div>
<br />
# Adding blackhole routes for bogons<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>[ -f /etc/sysconfig/network-scripts/route-lo &#93; || cat &lt;&lt;EOF &gt; /etc/sysconfig/network-scripts/route-lo<br />
<br />
blackhole 0.0.0.0/8<br />
<br />
blackhole 10.0.0.0/8<br />
<br />
blackhole 169.254.0.0/16<br />
<br />
blackhole 172.16.0.0/12<br />
<br />
blackhole 192.168.0.0/16<br />
<br />
blackhole 198.18.0.0/15<br />
<br />
EOF</code></div></div>
<br />
# Add useful settings to /etc/sysctl.conf<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>grep -q kernel.panic /etc/sysctl.conf || cat&lt;&lt;EOF &gt;&gt; /etc/sysctl.conf</code></div></div>
<br />
# Reboot a minute after an Oops<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>kernel.panic = 60</code></div></div>
<br />
# Syncookies make SYN flood attacks ineffective<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.tcp_syncookies = 1</code></div></div>
<br />
# Ignore bad ICMP<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.icmp_echo_ignore_broadcasts = 1<br />
<br />
net.ipv4.icmp_ignore_bogus_error_responses = 1</code></div></div>
<br />
# Reply to ARPs only from correct interface (required for DSR load-balancers)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.conf.all.arp_announce = 2<br />
<br />
net.ipv4.conf.all.arp_ignore = 1<br />
<br />
EOF<br />
<br />
sysctl -p</code></div></div>
<br />
# Allow any following commands to fail without stopping<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>set +e</code></div></div>
<br />
# Shutting down unwanted services<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>for d in acpid rpcidmapd rpcgssd nfslock netfs portmap avahi-daemon avahi-dnsconfd pcscd bluetooth; do<br />
<br />
chkconfig &#36;d off<br />
<br />
service &#36;d stop<br />
<br />
done</code></div></div>
<br />
# Turn on cron-based auto-updates<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install yum-cron<br />
<br />
for d in crond yum yum-cron; do<br />
<br />
chkconfig &#36;d on<br />
<br />
service &#36;d start<br />
<br />
done</code></div></div>
<br />
# COMPLETED!<br />
<br />
Thanks to webicero for creating this guides.<br />
For more informations and guides about harndening and securing your server, you may also read the guides in <a href="http://www.securecentos.com/" target="_blank">SecureCentOS.com</a>]]></description>
			<content:encoded><![CDATA[#!/bin/sh<br />
<br />
set -ve<br />
<br />
# Script to harden a fresh CentOS 4 or 5 base server install, which installs<br />
<br />
# any updated packages plus a few useful extras, removes unnecessary<br />
<br />
# services and setuid bits, and does a little performance tuning. Running it more than once shouldn't hurt anything.<br />
<br />
#<br />
<br />
# Run with:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>wget -O- http://ftp.die.net/pub/harden-centos/harden-centos | sh<br />
PATH=/bin:/usr/bin:/sbin:/usr/sbin</code></div></div>
<br />
# Update rpm and yum if possible. (Limit dependencies.)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install rpm yum</code></div></div>
<br />
# Installing useful packages<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install joe tcpdump mtr postfix strace zsh gdb perl vixie-cron logrotate</code></div></div>
<br />
# Removing unnecessary daemons and setuid binaries<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y remove squid krb5-workstation cups at rsh sudo isdn4k-utils sendmail &#92;<br />
<br />
slocate apmd irda-utils mt-st gpm samba-common sendmail-cf talk &#92;<br />
<br />
up2date ypbind yp-tools wvdial lockdev procmail xorg-x11-font-utils &#92;<br />
<br />
pam_ccreds gdm bluez-utils yum-updatesd</code></div></div>
<br />
# Upgrading to latest packages<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y upgrade</code></div></div>
<br />
# Removing unnecessary setuid bits<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>find / /usr -xdev -type f -perm +04000 | &#92;<br />
<br />
grep -vP '^(/bin/(su|ping|traceroute)|/usr/bin/(passwd|chsh|crontab)|/usr/libexec/openssh/ssh-keysign)&#36;' | &#92;<br />
<br />
xargs -r chmod ug-s</code></div></div>
<br />
# Removing unnecessary setgid bits<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>find / /usr -xdev -type f -perm +02000 | &#92;<br />
<br />
grep -vP '^(/usr/sbin/(utempter|postdrop|postqueue)|/usr/bin/ssh-agent)&#36;' | &#92;<br />
<br />
xargs -r chmod g-s</code></div></div>
<br />
# Setting nosuid,nodev on user partitions, noatime on ext2 and ext3<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>perl -i~ -p -e 's/(&#92;sext[23]&#92;s+)(defaults)(?=&#92;s)/&#36;1&#36;2,noatime/;next if m#&#92;s/(?:usr|bin)?&#92;s#;next unless m#&#92;s(ext[23]|tmpfs|auto)&#92;s#;s/(?&lt;=&#92;s)(defaults(?:,noatime)?)(?=&#92;s<br />
)/&#36;1,nosuid,nodev/' /etc/fstab</code></div></div>
<br />
# Adding blackhole routes for bogons<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>[ -f /etc/sysconfig/network-scripts/route-lo ] || cat &lt;&lt;EOF &gt; /etc/sysconfig/network-scripts/route-lo<br />
<br />
blackhole 0.0.0.0/8<br />
<br />
blackhole 10.0.0.0/8<br />
<br />
blackhole 169.254.0.0/16<br />
<br />
blackhole 172.16.0.0/12<br />
<br />
blackhole 192.168.0.0/16<br />
<br />
blackhole 198.18.0.0/15<br />
<br />
EOF</code></div></div>
<br />
# Add useful settings to /etc/sysctl.conf<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>grep -q kernel.panic /etc/sysctl.conf || cat&lt;&lt;EOF &gt;&gt; /etc/sysctl.conf</code></div></div>
<br />
# Reboot a minute after an Oops<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>kernel.panic = 60</code></div></div>
<br />
# Syncookies make SYN flood attacks ineffective<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.tcp_syncookies = 1</code></div></div>
<br />
# Ignore bad ICMP<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.icmp_echo_ignore_broadcasts = 1<br />
<br />
net.ipv4.icmp_ignore_bogus_error_responses = 1</code></div></div>
<br />
# Reply to ARPs only from correct interface (required for DSR load-balancers)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.conf.all.arp_announce = 2<br />
<br />
net.ipv4.conf.all.arp_ignore = 1<br />
<br />
EOF<br />
<br />
sysctl -p</code></div></div>
<br />
# Allow any following commands to fail without stopping<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>set +e</code></div></div>
<br />
# Shutting down unwanted services<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>for d in acpid rpcidmapd rpcgssd nfslock netfs portmap avahi-daemon avahi-dnsconfd pcscd bluetooth; do<br />
<br />
chkconfig &#36;d off<br />
<br />
service &#36;d stop<br />
<br />
done</code></div></div>
<br />
# Turn on cron-based auto-updates<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install yum-cron<br />
<br />
for d in crond yum yum-cron; do<br />
<br />
chkconfig &#36;d on<br />
<br />
service &#36;d start<br />
<br />
done</code></div></div>
<br />
# COMPLETED!<br />
<br />
Thanks to webicero for creating this guides.<br />
For more informations and guides about harndening and securing your server, you may also read the guides in <a href="http://www.securecentos.com/" target="_blank">SecureCentOS.com</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[OpenVZ OS Templates Update]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=27</link>
			<pubDate>Sun, 18 Apr 2010 09:37:34 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=27</guid>
			<description><![CDATA[We recently updated our OS templates on the main node. Here is the list of the available OS templates for you to choose from:<br />
<ul>
<li>centos-5-i386-afull.tar.gz	122.4M</li>
<li>centos-5-i386-hostinabox576.tar.gz 373.9M</li>
<li>centos-5.4-i386-default.tar.gz 94.8M</li>
<li>debian-5-i386-default.tar.gz 54.6M</li>
<li>debian-5-i386-minimal.tar.gz 54.5M</li>
<li>fedora-11-i386-default-20100412.tar.gz 162.9M</li>
<li>fedora-12-i386-default-20100412.tar.gz 174.4M</li>
<li>fedora-core-10-i386-default.tar.gz 87.7M</li>
<li>fedora-core-10-i386-minimal.tar.gz 87.7M</li>
<li>gentoo-20060317-i686-stage3.tar.gz 106.5M</li>
<li>opensuse-10-i386-default.tar.gz 90.3M</li>
<li>ubuntu-8.04-i386-default.tar.gz 47.4M</li>
<li>ubuntu-9.04-i386-default.tar.gz 59.5M<br />
</li></ul>
<br />
You can rebuild your server's OS within your HyperVM control panel.<br />
Please be aware that rebuilding your server will DELETE your files permanently. Please make sure you have your files backed up somewhere safe before proceeding.]]></description>
			<content:encoded><![CDATA[We recently updated our OS templates on the main node. Here is the list of the available OS templates for you to choose from:<br />
<ul>
<li>centos-5-i386-afull.tar.gz	122.4M</li>
<li>centos-5-i386-hostinabox576.tar.gz 373.9M</li>
<li>centos-5.4-i386-default.tar.gz 94.8M</li>
<li>debian-5-i386-default.tar.gz 54.6M</li>
<li>debian-5-i386-minimal.tar.gz 54.5M</li>
<li>fedora-11-i386-default-20100412.tar.gz 162.9M</li>
<li>fedora-12-i386-default-20100412.tar.gz 174.4M</li>
<li>fedora-core-10-i386-default.tar.gz 87.7M</li>
<li>fedora-core-10-i386-minimal.tar.gz 87.7M</li>
<li>gentoo-20060317-i686-stage3.tar.gz 106.5M</li>
<li>opensuse-10-i386-default.tar.gz 90.3M</li>
<li>ubuntu-8.04-i386-default.tar.gz 47.4M</li>
<li>ubuntu-9.04-i386-default.tar.gz 59.5M<br />
</li></ul>
<br />
You can rebuild your server's OS within your HyperVM control panel.<br />
Please be aware that rebuilding your server will DELETE your files permanently. Please make sure you have your files backed up somewhere safe before proceeding.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Server Routine Check Phase 3 (03042010)]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=26</link>
			<pubDate>Fri, 02 Apr 2010 09:26:24 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=26</guid>
			<description><![CDATA[Please note that a routine check will be commenced on April 03rd 2010 at 12 midnight (GMT+8). This will include updating kernel to the latest, upgrading OS, reassessed the server to hardened and patch vulnerabilities.<br />
<br />
regards,<br />
Aizal]]></description>
			<content:encoded><![CDATA[Please note that a routine check will be commenced on April 03rd 2010 at 12 midnight (GMT+8). This will include updating kernel to the latest, upgrading OS, reassessed the server to hardened and patch vulnerabilities.<br />
<br />
regards,<br />
Aizal]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[You can now pay via Moneybookers]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=25</link>
			<pubDate>Mon, 08 Mar 2010 10:27:39 -0800</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=25</guid>
			<description><![CDATA[Hello, ElevatedServers.net is now accepting payments from Moneybookers. More payment processors will be added soon too.<br />
<br />
regards,<br />
Aizal]]></description>
			<content:encoded><![CDATA[Hello, ElevatedServers.net is now accepting payments from Moneybookers. More payment processors will be added soon too.<br />
<br />
regards,<br />
Aizal]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Server Routine Check Phase 2 (15102009)]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=24</link>
			<pubDate>Mon, 12 Oct 2009 13:44:45 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=24</guid>
			<description><![CDATA[Please note that a routine check will be commenced on October 15th 2009 at 12 midnight (GMT+8). <br />
<br />
regards,<br />
Aizal]]></description>
			<content:encoded><![CDATA[Please note that a routine check will be commenced on October 15th 2009 at 12 midnight (GMT+8). <br />
<br />
regards,<br />
Aizal]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Elevated September Promotion - Not only 25% off, we add another 10% lifetime!]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=23</link>
			<pubDate>Thu, 10 Sep 2009 18:37:08 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=23</guid>
			<description><![CDATA[Hello all!<br />
<br />
Our promotion is coming back and this time in conjunction with upcoming Eid Festival, we decided to give more than you hoped for.<br />
Introducing <span style="font-weight: bold;"><span style="color: #FF0000;">eid09</span></span>. This coupon gives you exclusive savings when purchasing our services. <br />
<br />
<br />
<br />
<span style="font-weight: bold;"><span style="color: #0000CD;">Exclusive? What does this coupon gives you?</span></span><br />
<br />
<span style="font-weight: bold;"><span style="color: #FF0000;">eid09</span></span> gives you <span style="font-weight: bold;">25% off your first month</span> and <span style="font-weight: bold;">additional 10% lifetime discount</span> on all hosting services except out distinguished MiniVPS. <br />
<br />
<br />
<span style="color: #0000CD;"><span style="font-weight: bold;">I don't understand, any examples?</span></span><br />
<br />
Okay, let's say you bought our Value 1 Shared Hosting which cost &#36;14.95. Using the coupon, your first month would be &#36;11.96 and the months after you will only need to pay &#36;13.46 until you decided to terminate your subscription with us.<br />
<br />
<br />
<span style="font-weight: bold;"><span style="color: #0000CD;">Okay, sounds very nice. I'm in.</span></span><br />
<br />
Great! if you are interested in taking up this offer, you may straight away go to our site at <a href="http://www.elevatedservers.net" target="_blank">http://www.elevatedservers.net</a> and put an order. Don't forget to use <span style="font-weight: bold;"><span style="color: #FF0000;">eid09</span></span> at the checkout. We welcomed you with a great pleasure.<br />
<br />
<span style="font-size: x-small;"><br />
* This promotion only valid on monthly subscriptions only.<br />
* Valid for hosting services only (vps, shared hosting, reseller hosting)<br />
* Not valid on MiniVPS plan.</span>]]></description>
			<content:encoded><![CDATA[Hello all!<br />
<br />
Our promotion is coming back and this time in conjunction with upcoming Eid Festival, we decided to give more than you hoped for.<br />
Introducing <span style="font-weight: bold;"><span style="color: #FF0000;">eid09</span></span>. This coupon gives you exclusive savings when purchasing our services. <br />
<br />
<br />
<br />
<span style="font-weight: bold;"><span style="color: #0000CD;">Exclusive? What does this coupon gives you?</span></span><br />
<br />
<span style="font-weight: bold;"><span style="color: #FF0000;">eid09</span></span> gives you <span style="font-weight: bold;">25% off your first month</span> and <span style="font-weight: bold;">additional 10% lifetime discount</span> on all hosting services except out distinguished MiniVPS. <br />
<br />
<br />
<span style="color: #0000CD;"><span style="font-weight: bold;">I don't understand, any examples?</span></span><br />
<br />
Okay, let's say you bought our Value 1 Shared Hosting which cost &#36;14.95. Using the coupon, your first month would be &#36;11.96 and the months after you will only need to pay &#36;13.46 until you decided to terminate your subscription with us.<br />
<br />
<br />
<span style="font-weight: bold;"><span style="color: #0000CD;">Okay, sounds very nice. I'm in.</span></span><br />
<br />
Great! if you are interested in taking up this offer, you may straight away go to our site at <a href="http://www.elevatedservers.net" target="_blank">http://www.elevatedservers.net</a> and put an order. Don't forget to use <span style="font-weight: bold;"><span style="color: #FF0000;">eid09</span></span> at the checkout. We welcomed you with a great pleasure.<br />
<br />
<span style="font-size: x-small;"><br />
* This promotion only valid on monthly subscriptions only.<br />
* Valid for hosting services only (vps, shared hosting, reseller hosting)<br />
* Not valid on MiniVPS plan.</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Security Routine Check 11092009]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=22</link>
			<pubDate>Thu, 10 Sep 2009 16:55:18 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=22</guid>
			<description><![CDATA[On Friday, 11th September 2009 (GMT+8), we ran a small routine of server firewall and security check. Server was brought down a few minutes and was brought back up and now running smoothly.<br />
<br />
This is the first phase of our routine check. The next phase of checks will be announced a few days before commencing.<br />
<br />
regards,<br />
Aizal]]></description>
			<content:encoded><![CDATA[On Friday, 11th September 2009 (GMT+8), we ran a small routine of server firewall and security check. Server was brought down a few minutes and was brought back up and now running smoothly.<br />
<br />
This is the first phase of our routine check. The next phase of checks will be announced a few days before commencing.<br />
<br />
regards,<br />
Aizal]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Setting up Kloxo for Websites]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=21</link>
			<pubDate>Mon, 24 Aug 2009 02:04:08 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=21</guid>
			<description><![CDATA[Now before trying to use Kloxo, update to the latest version but clicking the Kloxo Management table along the top of your control panel and clicking the Update Home icon. This will forward you to the update function of Kloxo and display the version number installed and the current version available. Simply click update if these do not match. The update task is very quick and should complete within 5 minutes.<br />
<br />
Now you are ready to login to the Kloxo interface at https://your-vps-ipaddress:7777 or http://your-vps-ipaddress:7778<br />
<br />
Before anything else, the first thing you should do is to create a DNS Template. Look for DNS Templates icon in the resources section, once you clicked it, click on the Add DNS Template button. This will need you to specify your DNS Template name and specify what nameservers will be used for sites hosted within your VPS. The task should be similar at most registrars, you will need to create 2 nameservers, but you only have 1 IP and it is perfectly acceptable to create more than 1 registered nameserver using the same IP address. The IP you will use is the IP of your VPS. The name of the nameserver, or FQDN, will be something like ns1.yourdomain.com and ns2.yourdomain.com. After all these has been done, you can save your template and you are ready to add sites.]]></description>
			<content:encoded><![CDATA[Now before trying to use Kloxo, update to the latest version but clicking the Kloxo Management table along the top of your control panel and clicking the Update Home icon. This will forward you to the update function of Kloxo and display the version number installed and the current version available. Simply click update if these do not match. The update task is very quick and should complete within 5 minutes.<br />
<br />
Now you are ready to login to the Kloxo interface at https://your-vps-ipaddress:7777 or http://your-vps-ipaddress:7778<br />
<br />
Before anything else, the first thing you should do is to create a DNS Template. Look for DNS Templates icon in the resources section, once you clicked it, click on the Add DNS Template button. This will need you to specify your DNS Template name and specify what nameservers will be used for sites hosted within your VPS. The task should be similar at most registrars, you will need to create 2 nameservers, but you only have 1 IP and it is perfectly acceptable to create more than 1 registered nameserver using the same IP address. The IP you will use is the IP of your VPS. The name of the nameserver, or FQDN, will be something like ns1.yourdomain.com and ns2.yourdomain.com. After all these has been done, you can save your template and you are ready to add sites.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Elevated Debut Giveaway Contest]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=20</link>
			<pubDate>Tue, 19 May 2009 07:12:03 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=20</guid>
			<description><![CDATA[<span style="color: #4B0082;"><span style="font-size: large;"><div style="text-align: center;">Elevated Debut Giveaway Contest</div></span></span><br />
<br />
<br />
Ok it’s finally time to launch our idea which was planned a while back. We are now officially announcing the launch of our <span style="font-weight: bold;">Elevated Debut Giveaway Contest</span> where we will be giving away prizes worth &#36;2345.40. The first thing we would like to giveaway to our readers for free is an annual subscription of <span style="text-decoration: underline;">Budget-1 VPS worth &#36;309.72</span>. This followed by 2x annual subscription of our <span style="text-decoration: underline;">HP-2 Reseller Hosting worth &#36;1018.08</span> and 5x annual subscription of our <span style="text-decoration: underline;">Value Shared Hosting VL2 plan worth &#36;1017.60</span>. Please read the rules before you participate.<br />
<br />
<span style="font-weight: bold;">Contest Rules &amp; Regulations</span><br />
To participate in the competition and be eligible for winning one of the above prizes worth &#36;2345.40, you will have to use one of the following ways.<br />
<span style="color: #FF0000;"><span style="font-weight: bold;">[UPDATED&#93; As to comply with Twitter policy, we are now changing our contest method. Please see below:</span></span><br />
<ol type="1">
<li><span style="font-weight: bold;">Follow our Twitter @elevatedservers and tweet any message that contains related information to this contest with a link to our contest page <a href="http://www.elevatedservers.net/contest" target="_blank">http://www.elevatedservers.net/contest</a></span><br />
<br />
Use the exact tweet as given above, or click on <a href="http://twitter.com/home?status=ElevatedServers%20offers%20value%20for%20money%20plan%20with%20absol&#8203;ute%20no%20overselling.%20Win%20prizes%20worth%20&#36;2345.40.%20http://www.elevatedservers.net/contest" target="_blank">this tweet link</a> to tweet about this contest. Once you have tweeted about it, post inside this thread and leave your comment with a link to your status. (10 points)</li>
<li>Write a blog post linking to any of our hosting plan and other services we offered and about this contest in your blog post. Once you have written the blog post, post inside this thread with a link to the post. (20 points)<ul>
<li>Twitter account with at least 5 followers.</li>
<li>Twitter account with at least 10 days old.</li>
<li>Blog posts should be written on existing blogs and not new blogs created specifically for the competition.</li>
<li>Blog must be indexed by Google.</li>
<li>Blog with not less than 10 articles.</li>
<li>Your blog post must contain at least two hyperlink to ElevatedServers page "ElevatedServers.Net"<br />
</li></ul></li>
<li>You must have a blog and a twitter account to participate in this contest.</li>
<li>You must register on our forum to be eligible for this contest. We will email the winners using the email address registered on our forum.</li>
<li>This contest will end on <span style="font-weight: bold;">15th June at 12PM GMT+8</span>, no entries will be accepted after this point, we will announce the winners in this post shortly after the contest closes.</li>
<li>Winner chosen by <a href="http://Random.org" target="_blank">Random.org</a><br />
</li></ol>
<br />
<br />
So go ahead and start participating, we hope with these free accounts, we can at least saves some of your spending. <br />
<span style="font-size: small;"><br />
<br />
*Sponsorship is still open, if you are interested in sponsoring <span style="font-weight: bold;">ElevatedServers Debut Giveaway Contest</span>, drop us an email at aizal [at&#93; elevatedservers [dot&#93; net.</span>]]></description>
			<content:encoded><![CDATA[<span style="color: #4B0082;"><span style="font-size: large;"><div style="text-align: center;">Elevated Debut Giveaway Contest</div></span></span><br />
<br />
<br />
Ok it’s finally time to launch our idea which was planned a while back. We are now officially announcing the launch of our <span style="font-weight: bold;">Elevated Debut Giveaway Contest</span> where we will be giving away prizes worth &#36;2345.40. The first thing we would like to giveaway to our readers for free is an annual subscription of <span style="text-decoration: underline;">Budget-1 VPS worth &#36;309.72</span>. This followed by 2x annual subscription of our <span style="text-decoration: underline;">HP-2 Reseller Hosting worth &#36;1018.08</span> and 5x annual subscription of our <span style="text-decoration: underline;">Value Shared Hosting VL2 plan worth &#36;1017.60</span>. Please read the rules before you participate.<br />
<br />
<span style="font-weight: bold;">Contest Rules &amp; Regulations</span><br />
To participate in the competition and be eligible for winning one of the above prizes worth &#36;2345.40, you will have to use one of the following ways.<br />
<span style="color: #FF0000;"><span style="font-weight: bold;">[UPDATED] As to comply with Twitter policy, we are now changing our contest method. Please see below:</span></span><br />
<ol type="1">
<li><span style="font-weight: bold;">Follow our Twitter @elevatedservers and tweet any message that contains related information to this contest with a link to our contest page <a href="http://www.elevatedservers.net/contest" target="_blank">http://www.elevatedservers.net/contest</a></span><br />
<br />
Use the exact tweet as given above, or click on <a href="http://twitter.com/home?status=ElevatedServers%20offers%20value%20for%20money%20plan%20with%20absol&#8203;ute%20no%20overselling.%20Win%20prizes%20worth%20&#36;2345.40.%20http://www.elevatedservers.net/contest" target="_blank">this tweet link</a> to tweet about this contest. Once you have tweeted about it, post inside this thread and leave your comment with a link to your status. (10 points)</li>
<li>Write a blog post linking to any of our hosting plan and other services we offered and about this contest in your blog post. Once you have written the blog post, post inside this thread with a link to the post. (20 points)<ul>
<li>Twitter account with at least 5 followers.</li>
<li>Twitter account with at least 10 days old.</li>
<li>Blog posts should be written on existing blogs and not new blogs created specifically for the competition.</li>
<li>Blog must be indexed by Google.</li>
<li>Blog with not less than 10 articles.</li>
<li>Your blog post must contain at least two hyperlink to ElevatedServers page "ElevatedServers.Net"<br />
</li></ul></li>
<li>You must have a blog and a twitter account to participate in this contest.</li>
<li>You must register on our forum to be eligible for this contest. We will email the winners using the email address registered on our forum.</li>
<li>This contest will end on <span style="font-weight: bold;">15th June at 12PM GMT+8</span>, no entries will be accepted after this point, we will announce the winners in this post shortly after the contest closes.</li>
<li>Winner chosen by <a href="http://Random.org" target="_blank">Random.org</a><br />
</li></ol>
<br />
<br />
So go ahead and start participating, we hope with these free accounts, we can at least saves some of your spending. <br />
<span style="font-size: small;"><br />
<br />
*Sponsorship is still open, if you are interested in sponsoring <span style="font-weight: bold;">ElevatedServers Debut Giveaway Contest</span>, drop us an email at aizal [at] elevatedservers [dot] net.</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Remote Desktop]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=19</link>
			<pubDate>Tue, 19 May 2009 04:33:33 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=19</guid>
			<description><![CDATA[For this tutorial, you will need YUM installed on your vps. This is tutorial is a step by step guide on installing the KDE window manager. Original tutorial by Sean Koons of zone.net and Caleb who post a this enhanced version over webmaster forum. Make sure you have at least 128MB of unused ram to allocate for VNC. Using this on a highly used cpanel VPS can cause spikes in RAM usage and possibly kill needed processes. <br />
<br />
You might as well need to disable APF (if you use one). To stop APF, type "service apf stop" in SSH. To start it, type "service apf start". (without quotes)<br />
<br />
1. First login as root to your server and run the following:<br />
"yum -y groupinstall kde" (replace kde with gnome for gnome install)<br />
"yum -y install vnc vnc-server firefox x11-xorg"<br />
<br />
2. Start up the vnc server with the 'vncserver' command and it will prompt you to enter a desired password. Just type what you want to use in and then confirm it. <br />
<br />
3. Type in "pkill -9 vnc" followed by "rm -rf /tmp/.X1*"<br />
Note: rm -rf /tmp/.X1 = delete the temp sockets created by the vncserver startup<br />
<br />
4. Type in "cd /root/.vnc/" and then open the xstartup file in your text editor. Replace the last line with 'startkde &amp;' (without quotes of course).<br />
Note: Editing in xstartup file is to tell the vncserver to startup KDE when vncserver starts up.<br />
<br />
5. Type "vncserver" to start it up and connect to your hostname on port 1 via your VNC client. I recommend RealVNC for windows users and Mac users can use VNCViewer.<br />
<br />
You are now able to use your VPS via a remote desktop!<br />
<br />
When you are done simply type in SSH "pkill -9 vnc" and then "rm -rf /tmp/.X1*". <br />
<br />
If you get this error:<br />
unable to connect to host: Connection refused (10061)<br />
<br />
reboot your VPS and run this command:<br />
"rm -rf /tmp/.X1*" and then "vncserver"]]></description>
			<content:encoded><![CDATA[For this tutorial, you will need YUM installed on your vps. This is tutorial is a step by step guide on installing the KDE window manager. Original tutorial by Sean Koons of zone.net and Caleb who post a this enhanced version over webmaster forum. Make sure you have at least 128MB of unused ram to allocate for VNC. Using this on a highly used cpanel VPS can cause spikes in RAM usage and possibly kill needed processes. <br />
<br />
You might as well need to disable APF (if you use one). To stop APF, type "service apf stop" in SSH. To start it, type "service apf start". (without quotes)<br />
<br />
1. First login as root to your server and run the following:<br />
"yum -y groupinstall kde" (replace kde with gnome for gnome install)<br />
"yum -y install vnc vnc-server firefox x11-xorg"<br />
<br />
2. Start up the vnc server with the 'vncserver' command and it will prompt you to enter a desired password. Just type what you want to use in and then confirm it. <br />
<br />
3. Type in "pkill -9 vnc" followed by "rm -rf /tmp/.X1*"<br />
Note: rm -rf /tmp/.X1 = delete the temp sockets created by the vncserver startup<br />
<br />
4. Type in "cd /root/.vnc/" and then open the xstartup file in your text editor. Replace the last line with 'startkde &amp;' (without quotes of course).<br />
Note: Editing in xstartup file is to tell the vncserver to startup KDE when vncserver starts up.<br />
<br />
5. Type "vncserver" to start it up and connect to your hostname on port 1 via your VNC client. I recommend RealVNC for windows users and Mac users can use VNCViewer.<br />
<br />
You are now able to use your VPS via a remote desktop!<br />
<br />
When you are done simply type in SSH "pkill -9 vnc" and then "rm -rf /tmp/.X1*". <br />
<br />
If you get this error:<br />
unable to connect to host: Connection refused (10061)<br />
<br />
reboot your VPS and run this command:<br />
"rm -rf /tmp/.X1*" and then "vncserver"]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[lxadmin/Kloxo]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=18</link>
			<pubDate>Mon, 18 May 2009 09:55:55 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=18</guid>
			<description><![CDATA[Kloxo, (formerly known as lxadmin) comes with Lighttpd preinstalled. For you who does not know what is lighttpd, please refer to this link: <a href="http://en.wikipedia.org/wiki/Lighttpd" target="_blank">Wikipedia - Lighttpd</a><br />
<br />
Since lighttpd does not support .htaccess files, most will find that they will need to install apache web server on their server. Good news is with kloxo, you can switch to Apache from inside the control panel (remember, the switch works for all the domains hosted inside your vps, you can't have some domains with apache and some with lighttpd):<br />
<br />
<ol type="1">
<li>1. login as 'admin'</li>
<li>2. click on the 'server tab'</li>
<li>3. on the box 'server linux' click on 'switch program'</li>
<li>4. make your choice for the web server you prefer</li>
<li>5. lxadmin will convert conf files appropriately and install apache automatically</li>
<li>6. wait a few minutes to let lxadmin do this and to restart the new server</li>
<li>7. you can check which http server is running choosing 'component info' in the 2nd box 'services' of the 'server home' page.</li></ol>
<br />
<br />
You might want to backup any existing data on your server prior to switching web server as a standard precaution measures.]]></description>
			<content:encoded><![CDATA[Kloxo, (formerly known as lxadmin) comes with Lighttpd preinstalled. For you who does not know what is lighttpd, please refer to this link: <a href="http://en.wikipedia.org/wiki/Lighttpd" target="_blank">Wikipedia - Lighttpd</a><br />
<br />
Since lighttpd does not support .htaccess files, most will find that they will need to install apache web server on their server. Good news is with kloxo, you can switch to Apache from inside the control panel (remember, the switch works for all the domains hosted inside your vps, you can't have some domains with apache and some with lighttpd):<br />
<br />
<ol type="1">
<li>1. login as 'admin'</li>
<li>2. click on the 'server tab'</li>
<li>3. on the box 'server linux' click on 'switch program'</li>
<li>4. make your choice for the web server you prefer</li>
<li>5. lxadmin will convert conf files appropriately and install apache automatically</li>
<li>6. wait a few minutes to let lxadmin do this and to restart the new server</li>
<li>7. you can check which http server is running choosing 'component info' in the 2nd box 'services' of the 'server home' page.</li></ol>
<br />
<br />
You might want to backup any existing data on your server prior to switching web server as a standard precaution measures.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Mail Server]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=17</link>
			<pubDate>Sat, 16 May 2009 13:52:30 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=17</guid>
			<description><![CDATA[Always remember to use "mail.yourdomain.com" as the incoming Post Office Protocol (POP3) and outgoing Simple Mail Transfer Protocol (SMPT) server in your local email client, such as Outlook Express.  In the Cpanel mail control center, the forwarding function provides a forwarding function to other addresses and can be used to alias one account to another. Thus, if you want alice@homepage.com to forward to the POP3 account of chuck@aol.com, you can use the forwarding function to make this happen. <br />
<br />
All POP email boxes, EXCEPT the default account, use the full email address (user@domain.com) as the username when logging in. <br />
<br />
Your "default address" is the root catch-all mailbox. It receives messages heading to all addresses that are not setup as unique POP accounts within your domain. Keep in mind that the default address account does NOT use the full email address format, like other POP accounts. The login for your default address is the same as the main FTP login for your account. <br />
<br />
If it seems like you cannot lock a POP3 account to retrieve messages for any reason, the quickest way to solve this problem is to delete and recreate the account within your control panel. This saves time as it bypasses having to ask our support staff for assistance. Here, the changes you make to your email items, with your control panel, are done in real time. <br />
<br />
The mailing list feature is very simple, so please keep this in mind. If you require a more powerful listserv program, please discuss this with our support staff. Note, however, that we cannot utilize a robust listserv on our web-hosting machines without causing the server's overall performance to suffer.  Thus, it is likely we may not be able to assist your needs.<br />
<br />
When I post to the mail list the mail is held for administrative approval because of "implicit destination" <br />
In the web-based list administration interface, go to 'Privacy options' and 'Spam-specific posting filters' (mid-page). In the text box for "Alias names (regexps) which qualify as explicit to or cc destination names for this list", enter the email address of the list.]]></description>
			<content:encoded><![CDATA[Always remember to use "mail.yourdomain.com" as the incoming Post Office Protocol (POP3) and outgoing Simple Mail Transfer Protocol (SMPT) server in your local email client, such as Outlook Express.  In the Cpanel mail control center, the forwarding function provides a forwarding function to other addresses and can be used to alias one account to another. Thus, if you want alice@homepage.com to forward to the POP3 account of chuck@aol.com, you can use the forwarding function to make this happen. <br />
<br />
All POP email boxes, EXCEPT the default account, use the full email address (user@domain.com) as the username when logging in. <br />
<br />
Your "default address" is the root catch-all mailbox. It receives messages heading to all addresses that are not setup as unique POP accounts within your domain. Keep in mind that the default address account does NOT use the full email address format, like other POP accounts. The login for your default address is the same as the main FTP login for your account. <br />
<br />
If it seems like you cannot lock a POP3 account to retrieve messages for any reason, the quickest way to solve this problem is to delete and recreate the account within your control panel. This saves time as it bypasses having to ask our support staff for assistance. Here, the changes you make to your email items, with your control panel, are done in real time. <br />
<br />
The mailing list feature is very simple, so please keep this in mind. If you require a more powerful listserv program, please discuss this with our support staff. Note, however, that we cannot utilize a robust listserv on our web-hosting machines without causing the server's overall performance to suffer.  Thus, it is likely we may not be able to assist your needs.<br />
<br />
When I post to the mail list the mail is held for administrative approval because of "implicit destination" <br />
In the web-based list administration interface, go to 'Privacy options' and 'Spam-specific posting filters' (mid-page). In the text box for "Alias names (regexps) which qualify as explicit to or cc destination names for this list", enter the email address of the list.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FrontPage]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=16</link>
			<pubDate>Sat, 16 May 2009 13:43:56 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=16</guid>
			<description><![CDATA[<span style="font-weight: bold;">General Info </span><br />
FrontPage extensions are included free with all accounts. Keep in mind that you will need a copy of the FrontPage program from Microsoft before you can begin to follow the directions below.<br />
<br />
Please also note that your domain name will need to be activated on our name-server before FrontPage will be available to you on your account. <br />
<br />
<br />
<span style="font-weight: bold;">Login: </span><br />
Choose "Open FrontPage Web" from the File Menu in FrontPage Explorer. Once you have done this, it will ask you for a Web-Server of File Location. Enter <a href="http://yourdomain.com" target="_blank">http://yourdomain.com</a> and then "list webs". Next, you will need to select (double-click) the root web. The requested login and password are the same as those you use for your FTP account. <br />
<br />
<br />
<span style="font-weight: bold;">Usage</span>: <br />
FrontPage supplies you with two separate interfaces. FrontPage Explorer is used to manage files within your website. If you open a file in your website, another program, called FrontPage Editor, will open. When you are connected to your website, all changes made to any file you edit will be saved to your website. <br />
<br />
*Note: Although the software documentation states that you can create a site on your computer and then "publish" it to the web-server, we do not recommend this. On a number of occasions, publishing to the server from your computer loses the Interactive web-bots features that you may have set-up when designing your site on your local computer. <span style="font-style: italic;">Conversely, we recommend that you create your entire site while connected to your website and save directly to the server.</span> To move files already created on your website, use the Import command found under the File menu - within FrontPage Explorer - to select the files to import to the server. This is by far the best method to move files from your hard drive to the server. Using FTP to upload is not recommended, as this may overwrite important files. Also, only edit .htaccess if you know what you're doing.<br />
<br />
Additional support documents and complete usage instructions can be found at Microsoft's official FrontPage Home Page. <a href="http://www.microsoft.com/frontpage" target="_blank">http://www.microsoft.com/frontpage</a>]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">General Info </span><br />
FrontPage extensions are included free with all accounts. Keep in mind that you will need a copy of the FrontPage program from Microsoft before you can begin to follow the directions below.<br />
<br />
Please also note that your domain name will need to be activated on our name-server before FrontPage will be available to you on your account. <br />
<br />
<br />
<span style="font-weight: bold;">Login: </span><br />
Choose "Open FrontPage Web" from the File Menu in FrontPage Explorer. Once you have done this, it will ask you for a Web-Server of File Location. Enter <a href="http://yourdomain.com" target="_blank">http://yourdomain.com</a> and then "list webs". Next, you will need to select (double-click) the root web. The requested login and password are the same as those you use for your FTP account. <br />
<br />
<br />
<span style="font-weight: bold;">Usage</span>: <br />
FrontPage supplies you with two separate interfaces. FrontPage Explorer is used to manage files within your website. If you open a file in your website, another program, called FrontPage Editor, will open. When you are connected to your website, all changes made to any file you edit will be saved to your website. <br />
<br />
*Note: Although the software documentation states that you can create a site on your computer and then "publish" it to the web-server, we do not recommend this. On a number of occasions, publishing to the server from your computer loses the Interactive web-bots features that you may have set-up when designing your site on your local computer. <span style="font-style: italic;">Conversely, we recommend that you create your entire site while connected to your website and save directly to the server.</span> To move files already created on your website, use the Import command found under the File menu - within FrontPage Explorer - to select the files to import to the server. This is by far the best method to move files from your hard drive to the server. Using FTP to upload is not recommended, as this may overwrite important files. Also, only edit .htaccess if you know what you're doing.<br />
<br />
Additional support documents and complete usage instructions can be found at Microsoft's official FrontPage Home Page. <a href="http://www.microsoft.com/frontpage" target="_blank">http://www.microsoft.com/frontpage</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Email]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=15</link>
			<pubDate>Sat, 16 May 2009 13:41:32 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=15</guid>
			<description><![CDATA[<span style="font-weight: bold;">Can't send email: </span><br />
Our SMTP servers are configured as secure relays. This means that you cannot simply reference "mail.yourdomain.com" as an Outgoing mail-server unless you successfully login via one of your POP3 accounts at "mail.yourdomain.com” before you try to send. This is a mandatory setting to prevent spammers from using our mail-servers as havens for unsolicited email. If you are getting a "relaying prohibited" or "disconnected by administrator" error, normally this means that you didn’t login to the POP3 server at your domain before you tried to send through the SMTP server at your domain. To login, you need to check for mail first. <br />
<br />
In addition to this, you still may not be able to send mail, regardless of whether or not you have successfully checked your mail.  The reason why this may be the case is some ISPs have been set-up in such a way that their customers cannot use an outbound SMTP server to relay messages. If you are still experiencing problems sending mail through your domain, and are certain that you have logged in via POP3 to an account at your domain, you should contact your local ISP to see if they allow their customers to use outbound SMTP servers. <br />
<br />
<br />
<span style="font-weight: bold;">Your default root email account: </span><br />
Every account starts out with a default "catch-all" account for its domain. This email box will grab all mail heading to ANYNAME@yourdomain.com. The login for this box is the same main account login you receive once you have successfully signed-up. Thus, if your root account is "test@homepage.net" (login of "homepage" - first 8 letters of your domain), there is no need to request an alias to your root account, because all names under your domain are already being filtered into this account. <br />
<br />
<br />
<span style="font-weight: bold;">Problem resolving your mail-host </span>:<br />
If you find that you cannot get "mail.yourdomain.com" to resolve, as a valid SMTP or POP3 server, please make sure that your domain is registered in our name-servers. If your domain is registered in our name-servers and you continue to experience this problem, then try clearing-out your cache and cookies and then restarting your computer. Also, keep in mind that in some cases your registration may not yet have been completed by the registrar. <br />
<br />
<br />
<span style="font-weight: bold;">Any Username And Password Error: </span><br />
The main cause for this is trying to access your email account with the wrong username / password details. If this is NOT your primary email account, remember to use the full email address (user@domain.com) as your username when logging in. If all else fails, simply remove and recreate the account with your mail control panel. <br />
<br />
<br />
If none of the above helps, then most likely the POP3 box in question has received a corrupted message. In such an event, <a href="https://my.elevatedservers.net/clientarea.php" target="_blank">contact support</a> and tell them to clear that box out. Note, however, that this usually results in most (or all) of that particular mailbox's contents being erased.]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">Can't send email: </span><br />
Our SMTP servers are configured as secure relays. This means that you cannot simply reference "mail.yourdomain.com" as an Outgoing mail-server unless you successfully login via one of your POP3 accounts at "mail.yourdomain.com” before you try to send. This is a mandatory setting to prevent spammers from using our mail-servers as havens for unsolicited email. If you are getting a "relaying prohibited" or "disconnected by administrator" error, normally this means that you didn’t login to the POP3 server at your domain before you tried to send through the SMTP server at your domain. To login, you need to check for mail first. <br />
<br />
In addition to this, you still may not be able to send mail, regardless of whether or not you have successfully checked your mail.  The reason why this may be the case is some ISPs have been set-up in such a way that their customers cannot use an outbound SMTP server to relay messages. If you are still experiencing problems sending mail through your domain, and are certain that you have logged in via POP3 to an account at your domain, you should contact your local ISP to see if they allow their customers to use outbound SMTP servers. <br />
<br />
<br />
<span style="font-weight: bold;">Your default root email account: </span><br />
Every account starts out with a default "catch-all" account for its domain. This email box will grab all mail heading to ANYNAME@yourdomain.com. The login for this box is the same main account login you receive once you have successfully signed-up. Thus, if your root account is "test@homepage.net" (login of "homepage" - first 8 letters of your domain), there is no need to request an alias to your root account, because all names under your domain are already being filtered into this account. <br />
<br />
<br />
<span style="font-weight: bold;">Problem resolving your mail-host </span>:<br />
If you find that you cannot get "mail.yourdomain.com" to resolve, as a valid SMTP or POP3 server, please make sure that your domain is registered in our name-servers. If your domain is registered in our name-servers and you continue to experience this problem, then try clearing-out your cache and cookies and then restarting your computer. Also, keep in mind that in some cases your registration may not yet have been completed by the registrar. <br />
<br />
<br />
<span style="font-weight: bold;">Any Username And Password Error: </span><br />
The main cause for this is trying to access your email account with the wrong username / password details. If this is NOT your primary email account, remember to use the full email address (user@domain.com) as your username when logging in. If all else fails, simply remove and recreate the account with your mail control panel. <br />
<br />
<br />
If none of the above helps, then most likely the POP3 box in question has received a corrupted message. In such an event, <a href="https://my.elevatedservers.net/clientarea.php" target="_blank">contact support</a> and tell them to clear that box out. Note, however, that this usually results in most (or all) of that particular mailbox's contents being erased.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Cpanel]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=14</link>
			<pubDate>Sat, 16 May 2009 13:33:15 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=14</guid>
			<description><![CDATA[<span style="font-weight: bold;">General Information </span><br />
We provide Cpanel as our control panel.<br />
You can access your control panel at: <br />
<a href="http://www.yourdomain.com/cpanel/" target="_blank">http://www.yourdomain.com/cpanel/</a> or you may use, http://your ip address:2082<br />
<br />
If using <a href="http://www.yourdomain.com/cpanel/" target="_blank">http://www.yourdomain.com/cpanel/</a> <br />
<br />
(Note: this path will not be active until your domain has been transferred to our name-servers.) You will be asked to enter your username / password to gain access to your configuration. The control panel is pretty much self explanatory; however, a little information on the usage of each section is included below to help you, should you become confused along the way: <br />
<br />
<br />
<span style="font-weight: bold;">FTP Accounts </span><br />
Accounts used to manage access to accounts on your web-space. The creation of an FTP account will allow users to log-on to a sub-directory from your main account, without gaining access to your main account. Sessions show users that are currently logged on to your domain. <br />
<br />
Settings allow you to modify access to your anonymous FTP site.  <br />
<br />
<br />
<span style="font-weight: bold;"><a href="http://www.elevatedservers.net/forums/cgi-t-12.html" target="_blank">CGI </a></span><br />
We have numerous customizable CGI scripts that have been pre-installed on to the server for you to use with your own account. The only thing you need to do is to select the script you are interested in using, select the colors, style etc., and then click the <br />
"Make HTML" button. You can then paste the HTML output into any of your HTML files for use with that system’s CGI program. <br />
<br />
<br />
<span style="font-weight: bold;">Java </span><br />
System Java works in exactly the same way as the CGI system outlined above. <br />
<br />
<br />
<span style="font-weight: bold;">Web-Page Protection </span><br />
Web-page protection is used to limit access to any directory to users who enter a username/password combination. To protect a directory within your account: <br />
<ol type="1">
<li>Click on that directory</li>
<li>Enter a username / password to gain access</li>
<li>Click add<br />
</li></ol>
<br />
<br />
You can add as many users as you wish to this file. This protection is for resources accessed via the Internet only, and this will not create an FTP user. <br />
<br />
However, do not use this system if you are already using FrontPage, as the two are not compatible. Rather, please use the security controls within FrontPage itself. <br />
<br />
<br />
<span style="font-weight: bold;">EMAIL </span><br />
Email control panels allow instant creation of email POP3, forwards, and aliases. <br />
<br />
A POP3 account is a stand-alone incoming email account. So, if you create u: john p: doe it all mail sent to john@domain.com, it will be routed to the joe email account.  The user joe can then check this mail by logging into mail.domain.com using his username and password. Note: all usernames automatically have a determined amount of letters of the domain name appended to the beginning of the username. So if john was a another domain user, the user would use mail.somedomain.net as his incoming email server and use powerjohn as his login name to retrieve mail sent to john@homepage.net.<br />
 <br />
An alias forwards mail sent to one address to another POP3 account within your domain. For example if our recently created john account was going to <br />
receive all mail sent to sales@anyname.net, we would setup sales as an alias to john. Note: by default, all names are not configured to the root account. So if you sent a message to testl@domain.com it would be sent to your main root account, unless you had set it up as an alias, forward or POP3. <br />
<br />
A forward account forwards mail sent to user@domain.com to an address completely out of your domain. For example if john had an AOL account and wanted to check all his mail there, you could setup john to forward to john3435@aol.com. <br />
<br />
<br />
<span style="font-weight: bold;">Access Stats </span><br />
Provides access to many different programs that will analyze your access logs and show you more information about your web-site’s traffic. <br />
<br />
<br />
<span style="font-weight: bold;">Password </span><br />
Allows you to change your main account password. It is recommended good practice to change this password at least once a month. <br />
<br />
<br />
<span style="font-weight: bold;">File Manager </span><br />
Allows you to modify the files on your web-site in real-time via a web-based interface. You can perform many commands, such as CHMOD, as well as actually editing a file and saving it directly to the web-server. <br />
Java Chat <br />
Allows you to access your personal java chat server and supplies the code needed for you to use this product on your own site. <br />
<br />
<span style="font-weight: bold;">Handlers / Types </span><br />
You will probably never need to use this portion of your control panel. A MIME type basically tells the web-server that a .html document is a web-page, that a .gif doc is a gif image, etc. If you would like to configure a custom MIME type, such as making .pictures a gif image file, you would enter it here. <br />
<br />
<span style="font-weight: bold;">Error Editor </span><br />
This section lets you customize the errors that your users will see - instead of the generic server errors. You can setup a 404 page to redirect users to your main web-site, instead of defaulting to a dead document.]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">General Information </span><br />
We provide Cpanel as our control panel.<br />
You can access your control panel at: <br />
<a href="http://www.yourdomain.com/cpanel/" target="_blank">http://www.yourdomain.com/cpanel/</a> or you may use, http://your ip address:2082<br />
<br />
If using <a href="http://www.yourdomain.com/cpanel/" target="_blank">http://www.yourdomain.com/cpanel/</a> <br />
<br />
(Note: this path will not be active until your domain has been transferred to our name-servers.) You will be asked to enter your username / password to gain access to your configuration. The control panel is pretty much self explanatory; however, a little information on the usage of each section is included below to help you, should you become confused along the way: <br />
<br />
<br />
<span style="font-weight: bold;">FTP Accounts </span><br />
Accounts used to manage access to accounts on your web-space. The creation of an FTP account will allow users to log-on to a sub-directory from your main account, without gaining access to your main account. Sessions show users that are currently logged on to your domain. <br />
<br />
Settings allow you to modify access to your anonymous FTP site.  <br />
<br />
<br />
<span style="font-weight: bold;"><a href="http://www.elevatedservers.net/forums/cgi-t-12.html" target="_blank">CGI </a></span><br />
We have numerous customizable CGI scripts that have been pre-installed on to the server for you to use with your own account. The only thing you need to do is to select the script you are interested in using, select the colors, style etc., and then click the <br />
"Make HTML" button. You can then paste the HTML output into any of your HTML files for use with that system’s CGI program. <br />
<br />
<br />
<span style="font-weight: bold;">Java </span><br />
System Java works in exactly the same way as the CGI system outlined above. <br />
<br />
<br />
<span style="font-weight: bold;">Web-Page Protection </span><br />
Web-page protection is used to limit access to any directory to users who enter a username/password combination. To protect a directory within your account: <br />
<ol type="1">
<li>Click on that directory</li>
<li>Enter a username / password to gain access</li>
<li>Click add<br />
</li></ol>
<br />
<br />
You can add as many users as you wish to this file. This protection is for resources accessed via the Internet only, and this will not create an FTP user. <br />
<br />
However, do not use this system if you are already using FrontPage, as the two are not compatible. Rather, please use the security controls within FrontPage itself. <br />
<br />
<br />
<span style="font-weight: bold;">EMAIL </span><br />
Email control panels allow instant creation of email POP3, forwards, and aliases. <br />
<br />
A POP3 account is a stand-alone incoming email account. So, if you create u: john p: doe it all mail sent to john@domain.com, it will be routed to the joe email account.  The user joe can then check this mail by logging into mail.domain.com using his username and password. Note: all usernames automatically have a determined amount of letters of the domain name appended to the beginning of the username. So if john was a another domain user, the user would use mail.somedomain.net as his incoming email server and use powerjohn as his login name to retrieve mail sent to john@homepage.net.<br />
 <br />
An alias forwards mail sent to one address to another POP3 account within your domain. For example if our recently created john account was going to <br />
receive all mail sent to sales@anyname.net, we would setup sales as an alias to john. Note: by default, all names are not configured to the root account. So if you sent a message to testl@domain.com it would be sent to your main root account, unless you had set it up as an alias, forward or POP3. <br />
<br />
A forward account forwards mail sent to user@domain.com to an address completely out of your domain. For example if john had an AOL account and wanted to check all his mail there, you could setup john to forward to john3435@aol.com. <br />
<br />
<br />
<span style="font-weight: bold;">Access Stats </span><br />
Provides access to many different programs that will analyze your access logs and show you more information about your web-site’s traffic. <br />
<br />
<br />
<span style="font-weight: bold;">Password </span><br />
Allows you to change your main account password. It is recommended good practice to change this password at least once a month. <br />
<br />
<br />
<span style="font-weight: bold;">File Manager </span><br />
Allows you to modify the files on your web-site in real-time via a web-based interface. You can perform many commands, such as CHMOD, as well as actually editing a file and saving it directly to the web-server. <br />
Java Chat <br />
Allows you to access your personal java chat server and supplies the code needed for you to use this product on your own site. <br />
<br />
<span style="font-weight: bold;">Handlers / Types </span><br />
You will probably never need to use this portion of your control panel. A MIME type basically tells the web-server that a .html document is a web-page, that a .gif doc is a gif image, etc. If you would like to configure a custom MIME type, such as making .pictures a gif image file, you would enter it here. <br />
<br />
<span style="font-weight: bold;">Error Editor </span><br />
This section lets you customize the errors that your users will see - instead of the generic server errors. You can setup a 404 page to redirect users to your main web-site, instead of defaulting to a dead document.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[CHMOD]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=13</link>
			<pubDate>Sat, 16 May 2009 13:10:23 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=13</guid>
			<description><![CDATA[<span style="font-weight: bold;">General Information </span><br />
When using UNIX systems it is sometimes necessary to change file permissions, which is done using the CHMOD command. <br />
While we always recommend that you check your documentation, basically there are two different methods you can select from in order to CHMOD a file: <br />
<br />
<ol type="1">
<li>Certain FTP clients, such as Cute FTP and WS/FTP Pro, allow CHMODing to be done directly within the FTP. In order to achieve this you need to highlight the file that you want to use and then select "change file permissions” from the command menu.</li>
<li>The second option is "manual” CHMODing.  In order to achieve this you need to enter the designated CHMOD. <br />
</li></ol>
<br />
<br />
<br />
<span style="font-weight: bold;">Reasons for CHMODing </span><br />
CHMODing files is done for a variety of reasons. You CHMOD files to:  mark them executable, give them write permission, restrict access to them, etc. <br />
<br />
It is important to note that CHMODing files is going to be nearly impossible to avoid. If you are trying to run certain CGI script, then this may require you to execute permission on the script itself, write permission on a directory, and read on an informational page. Here, your CGI script should contain documentation that will inform you of the proper CHMOD procedure (if any). <br />
<br />
<br />
<span style="font-weight: bold;">List of CHMOD's and what they mean. </span><ul>
<li>CHMOD 777 file: available to owners, groups and the world at large in order to  Read, Write and Execute.</li>
<li>CHMOD 755 file: available to owners to Read, Write and Execute; and to groups and the world at large to Read and Execute only.</li>
<li>CHMOD 644 file: available to owners to Read and Write;  and to groups and the world at large to Read only.</li>
<li>CHMOD 666 file: available to owners, groups and the world at large in order to Read and Write. <br />
</li></ul>
]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">General Information </span><br />
When using UNIX systems it is sometimes necessary to change file permissions, which is done using the CHMOD command. <br />
While we always recommend that you check your documentation, basically there are two different methods you can select from in order to CHMOD a file: <br />
<br />
<ol type="1">
<li>Certain FTP clients, such as Cute FTP and WS/FTP Pro, allow CHMODing to be done directly within the FTP. In order to achieve this you need to highlight the file that you want to use and then select "change file permissions” from the command menu.</li>
<li>The second option is "manual” CHMODing.  In order to achieve this you need to enter the designated CHMOD. <br />
</li></ol>
<br />
<br />
<br />
<span style="font-weight: bold;">Reasons for CHMODing </span><br />
CHMODing files is done for a variety of reasons. You CHMOD files to:  mark them executable, give them write permission, restrict access to them, etc. <br />
<br />
It is important to note that CHMODing files is going to be nearly impossible to avoid. If you are trying to run certain CGI script, then this may require you to execute permission on the script itself, write permission on a directory, and read on an informational page. Here, your CGI script should contain documentation that will inform you of the proper CHMOD procedure (if any). <br />
<br />
<br />
<span style="font-weight: bold;">List of CHMOD's and what they mean. </span><ul>
<li>CHMOD 777 file: available to owners, groups and the world at large in order to  Read, Write and Execute.</li>
<li>CHMOD 755 file: available to owners to Read, Write and Execute; and to groups and the world at large to Read and Execute only.</li>
<li>CHMOD 644 file: available to owners to Read and Write;  and to groups and the world at large to Read only.</li>
<li>CHMOD 666 file: available to owners, groups and the world at large in order to Read and Write. <br />
</li></ul>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[CGI]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=12</link>
			<pubDate>Sat, 16 May 2009 13:09:27 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=12</guid>
			<description><![CDATA[<span style="font-weight: bold;">What is CGI? </span><br />
CGI (“Common Gateway Interface”) includes programs that run on servers so as to enhance the quality and functionality of a web-site. There are many resources on-line that allow the downloading of free CGI scripts. <br />
<br />
Example:<br />
<a href="http://www.hotscripts.com" target="_blank">http://www.hotscripts.com</a> <br />
<a href="http://cgi.resourceindex.com" target="_blank">http://cgi.resourceindex.com</a><br />
<br />
<br />
<span style="font-weight: bold;">Do you allow CGI to run on your servers? </span><br />
We do allow running of CGI scripts on our servers; however, they must conform to our acceptable server resource usage policy which is being fair to other users by keeping your usage to the minimal. If we deem that a script is using an excessive amount of server resources, it will be disabled. <br />
<br />
<br />
<span style="font-weight: bold;">What’s the correct path to perl? </span><br />
Before a CGI script will work, certain modifications must be made. Certain paths must be specified in some scripts. After the "#", in the first line of the perl script, the path to perl must be specified. Normally,  "/usr/bin/perl" should suffice for this path. Below is a printout of a "whereis perl" query from our system. <br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">perl</span><span style="color: #007700">:&nbsp;/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">perl&nbsp;<br /></span></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">What is the path to send mail? </span><br />
Another program that needs to be specified in many scripts is sendmail. This is located at <br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">sbin</span><span style="color: #007700">/</span><span style="color: #0000BB">sendmail&nbsp;<br /></span></code></div></div></div>
<br />
<br />
What is the exact physical path to your root directory on the web-server? <br />
The path to your root directory is: <br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">username</span><span style="color: #007700">/&nbsp;<br /></span></code></div></div></div>
<br />
Obviously, replace "username" with the login you were assigned when you first received your account details. Also, when you configure your CGI,  remember to include your /public_html in your path. For instance, if you have a guestbook.pl script in your /cgi-bin, the exact physical path to that file is: <br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">username</span><span style="color: #007700">/</span><span style="color: #0000BB">public_html</span><span style="color: #007700">/</span><span style="color: #0000BB">cgi</span><span style="color: #007700">-</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">guestbook</span><span style="color: #007700">.</span><span style="color: #0000BB">pl&nbsp;<br /></span></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">Why doesn't my CGI work? </span><br />
Make sure, when you upload the CGI file, that you DO NOT upload it in binary mode - rather, use ASCII mode. Uploading in binary mode will cause the server to not recognize the scripts as executables. Most FTP clients will upload .pl or .cgi files in binary mode by default, so you will need to manually change this. You will need to upload the scripts into your cgi-bin directory for security reasons, however they will execute from anywhere within your account. <br />
<br />
The last step is to set-up the file permissions. This is also known as "CHMODing" and can be done from most FTP clients. For specific queries on chmoding, please refer to our "<a href="http://www.elevatedservers.net/forums/chmod-t-13.html" target="_blank">CHMODing files</a>" help section.]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">What is CGI? </span><br />
CGI (“Common Gateway Interface”) includes programs that run on servers so as to enhance the quality and functionality of a web-site. There are many resources on-line that allow the downloading of free CGI scripts. <br />
<br />
Example:<br />
<a href="http://www.hotscripts.com" target="_blank">http://www.hotscripts.com</a> <br />
<a href="http://cgi.resourceindex.com" target="_blank">http://cgi.resourceindex.com</a><br />
<br />
<br />
<span style="font-weight: bold;">Do you allow CGI to run on your servers? </span><br />
We do allow running of CGI scripts on our servers; however, they must conform to our acceptable server resource usage policy which is being fair to other users by keeping your usage to the minimal. If we deem that a script is using an excessive amount of server resources, it will be disabled. <br />
<br />
<br />
<span style="font-weight: bold;">What’s the correct path to perl? </span><br />
Before a CGI script will work, certain modifications must be made. Certain paths must be specified in some scripts. After the "#", in the first line of the perl script, the path to perl must be specified. Normally,  "/usr/bin/perl" should suffice for this path. Below is a printout of a "whereis perl" query from our system. <br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">perl</span><span style="color: #007700">:&nbsp;/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">perl&nbsp;<br /></span></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">What is the path to send mail? </span><br />
Another program that needs to be specified in many scripts is sendmail. This is located at <br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">sbin</span><span style="color: #007700">/</span><span style="color: #0000BB">sendmail&nbsp;<br /></span></code></div></div></div>
<br />
<br />
What is the exact physical path to your root directory on the web-server? <br />
The path to your root directory is: <br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">username</span><span style="color: #007700">/&nbsp;<br /></span></code></div></div></div>
<br />
Obviously, replace "username" with the login you were assigned when you first received your account details. Also, when you configure your CGI,  remember to include your /public_html in your path. For instance, if you have a guestbook.pl script in your /cgi-bin, the exact physical path to that file is: <br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">username</span><span style="color: #007700">/</span><span style="color: #0000BB">public_html</span><span style="color: #007700">/</span><span style="color: #0000BB">cgi</span><span style="color: #007700">-</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">guestbook</span><span style="color: #007700">.</span><span style="color: #0000BB">pl&nbsp;<br /></span></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">Why doesn't my CGI work? </span><br />
Make sure, when you upload the CGI file, that you DO NOT upload it in binary mode - rather, use ASCII mode. Uploading in binary mode will cause the server to not recognize the scripts as executables. Most FTP clients will upload .pl or .cgi files in binary mode by default, so you will need to manually change this. You will need to upload the scripts into your cgi-bin directory for security reasons, however they will execute from anywhere within your account. <br />
<br />
The last step is to set-up the file permissions. This is also known as "CHMODing" and can be done from most FTP clients. For specific queries on chmoding, please refer to our "<a href="http://www.elevatedservers.net/forums/chmod-t-13.html" target="_blank">CHMODing files</a>" help section.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Good News and GOOD NEWS!]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=11</link>
			<pubDate>Thu, 14 May 2009 14:45:19 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=11</guid>
			<description><![CDATA[We just recently revised our marketing strategy by offering you 50% more on of the hosting resources. If you go to either our <a href="http://www.elevatedservers.net/shared.php" target="_blank">Shared Hosting</a> page, <a href="http://www.elevatedservers.net/reseller.php" target="_blank">Reseller Hosting</a> page or even our <a href="http://www.elevatedservers.net/proxies.php" target="_blank">Proxy &#x26; Adult Hosting</a> page, you will see that 1. We have new design on our product table and 2. The resource are doubled!<br />
<br />
And if you noticed our new header on top of the main page and on this forum as well, you will see that we have added another coupon which will gives you 10% off any plan for life as long as you are still with us.<br />
<br />
Since I bet most of you are concern about our Proxy &amp; Adult plan, we take this opportunity to clarify that our Proxy &amp; Adult hosting are on separated server located in Chicago while our normal hosting are on a server located in Denver.<br />
<br />
*Plan revised for a limited time. 50% resource promo valid until 15th June 2009.]]></description>
			<content:encoded><![CDATA[We just recently revised our marketing strategy by offering you 50% more on of the hosting resources. If you go to either our <a href="http://www.elevatedservers.net/shared.php" target="_blank">Shared Hosting</a> page, <a href="http://www.elevatedservers.net/reseller.php" target="_blank">Reseller Hosting</a> page or even our <a href="http://www.elevatedservers.net/proxies.php" target="_blank">Proxy & Adult Hosting</a> page, you will see that 1. We have new design on our product table and 2. The resource are doubled!<br />
<br />
And if you noticed our new header on top of the main page and on this forum as well, you will see that we have added another coupon which will gives you 10% off any plan for life as long as you are still with us.<br />
<br />
Since I bet most of you are concern about our Proxy &amp; Adult plan, we take this opportunity to clarify that our Proxy &amp; Adult hosting are on separated server located in Chicago while our normal hosting are on a server located in Denver.<br />
<br />
*Plan revised for a limited time. 50% resource promo valid until 15th June 2009.]]></content:encoded>
		</item>
	</channel>
</rss>