<?xml version="1.0"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
		<channel><title>[XLHost Support Center] Recently Changed Articles</title><link>http://support.xlhost.com/index.php/rss/kb/recent_changes</link><description></description><item><title>How do I install IonCube Loader in cPanel?</title><description>To install IonCube Loader in cPanel simply SSH into your server and type:&#xD;
&#xD;
/scripts/phpextensionmgr install IonCubeLoader&#xD;
&#xD;
IonCube Loader should now be installed on your server.</description><link>http://support.xlhost.com/index.php/kb/article/10</link><pubDate>Wed, 03 Mar 2010 13:02:01 GMT</pubDate><guid isPermaLink="false">7c1f1d336296e13542f55f9f3694abc6</guid></item><item><title>How do I check my bandwidth utilization for my dedicated server?</title><description>&lt;p&gt;Issue: User wishes to check bandwidth utilization for Dedicated Server service.&lt;/p&gt;&lt;p&gt;Solution: XLHost's Grande portal has up to the minute bandwidth statistics for Dedicated Servers hosted at XLHost&lt;/p&gt;&lt;p&gt;Instructions:&lt;/p&gt;&lt;p&gt;Open a web browser (Internet Explorer 7 or Firefox, for example) and browse to &lt;a href="http://grande.xlhost.com/"&gt;http://grande.xlhost.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Once there, login using the e-mail address and password used to sign-up for your Dedicated Server at xlhost.com&lt;/p&gt;&lt;p&gt;Navigate to the 'Services' option and then click 'Bandwidth' for the server you wish to view.&lt;/p&gt;</description><link>http://support.xlhost.com/index.php/kb/article/8</link><pubDate>Mon, 05 May 2008 14:46:53 GMT</pubDate><guid isPermaLink="false">4cf352279425d36420edbd0c8f216430</guid></item><item><title>Does XLHost host domain names?</title><description>&lt;p&gt;Issue: Customer wishes XLHost to host their domain name on XLHost's nameservers&lt;/p&gt;&lt;p&gt;Solution: Using Grande (XLHost's online portal) a customer can add as many domains as they like to XLHost's load balanced and fault tolerant name server cluster.&lt;/p&gt;&lt;p&gt;Instructions:&lt;/p&gt;&lt;p&gt;Open a web browser (such as Internet Explorer 7 or Firefox) and browse to &lt;a href="http://grande.xlhost.com/"&gt;http://grande.xlhost.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Login using the same e-mail address and password that was used when you signed up for your service at XLHost.com&lt;/p&gt;&lt;p&gt;Once logged in, navigate to the 'DNS' section&lt;/p&gt;&lt;p&gt;Follow the simple prompting provided to add your domains to XLHost's nameservers&lt;/p&gt;&lt;p&gt;Our nameservers are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;ns1.hosting.xlhost.com&lt;/li&gt;&lt;li&gt;ns2.hosting.xlhost.com&lt;/li&gt;&lt;/ul&gt;</description><link>http://support.xlhost.com/index.php/kb/article/9</link><pubDate>Mon, 05 May 2008 14:46:30 GMT</pubDate><guid isPermaLink="false">7d901228cbe64c31b3e2b60286d69c70</guid></item><item><title>Prevent phishing sites being uploaded to your server</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;&#xD;
Phishing sites are being uploaded to my server.&#xD;
&lt;br&gt;&#xD;
&lt;br&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;br&gt;&#xD;
&lt;h3&gt;Solution: &lt;/h3&gt;&#xD;
You should have mod_perl installed firstly (which can be achieved with the following ) &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
-------------------start installation of perl ----------------- &lt;br /&gt;&#xD;
cd /root &lt;br /&gt;&#xD;
wget http://perl.apache.org/dist/mod_perl-2.0-current.tar.gz &lt;br /&gt;&#xD;
tar -zxvf mod_perl-2.0-current.tar.gz &lt;br /&gt;&#xD;
cd mod_perl-2.0.2 &lt;br /&gt;&#xD;
perl Makefile.PL MP_APXS=/path/to/apache2/apxs &lt;br /&gt;&#xD;
make &lt;br /&gt;&#xD;
make install &lt;br /&gt;&#xD;
mkdir /usr/local/share/perl/5.8.4/Apache &lt;br /&gt;&#xD;
-------------------end installation of perl --------------------- &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Then make the filter by vi / pico'ing &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
/usr/local/share/perl/5.8.4/Apache/abuse.pm, and adding the code below... &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
-------------------------start of filter --------------------------------- &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
#file:Apache/abuse.pm &lt;br /&gt;&#xD;
##-------------------------------- &lt;br /&gt;&#xD;
#use Apache2::compat (); &lt;br /&gt;&#xD;
package Apache::abuse; &lt;br /&gt;&#xD;
use strict; &lt;br /&gt;&#xD;
use warnings; &lt;br /&gt;&#xD;
use Apache2::Filter (); &lt;br /&gt;&#xD;
use Apache2::RequestRec (); &lt;br /&gt;&#xD;
use APR::Table (); &lt;br /&gt;&#xD;
use Apache2::Const -compile =&gt; qw(OK); &lt;br /&gt;&#xD;
use constant BUFF_LEN =&gt; 2097152; &lt;br /&gt;&#xD;
sub handler { &lt;br /&gt;&#xD;
my $f = shift; &lt;br /&gt;&#xD;
unless ($f-&gt;ctx) { &lt;br /&gt;&#xD;
$f-&gt;r-&gt;headers_out-&gt;unset('Content-Length'); &lt;br /&gt;&#xD;
$f-&gt;ctx(1); &lt;br /&gt;&#xD;
} &lt;br /&gt;&#xD;
while ($f-&gt;read(my $buffer, BUFF_LEN)) { &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
if ($buffer =~ m/phrase in phishing site/){ &lt;br /&gt;&#xD;
if ($buffer =~ m/another phrase in phishing site/){ &lt;br /&gt;&#xD;
if ($buffer =~ m/and another phrase in phhising site/){ &lt;br /&gt;&#xD;
$f-&gt;print('error 500 , contact support@xxxxxx.xxx'); &lt;br /&gt;&#xD;
return Apache2::Const::OK; &lt;br /&gt;&#xD;
die; &lt;br /&gt;&#xD;
1; &lt;br /&gt;&#xD;
} &lt;br /&gt;&#xD;
} &lt;br /&gt;&#xD;
} &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
$f-&gt;print($buffer); &lt;br /&gt;&#xD;
return Apache2::Const::OK; &lt;br /&gt;&#xD;
} &lt;br /&gt;&#xD;
} &lt;br /&gt;&#xD;
1; &lt;br /&gt;&#xD;
-----------------------end of filter --------------------------- &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
In the above code, replace 'phrase in phishing site' with some signature that appears in the phishing site, the amount of conditionals can be easily changed to reduce any potential false positives/counter any situation . &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Then in the httpd.conf (for apache), add the following line : &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
PerlOutputFilterHandler Apache::abuse &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
This can be placed into the global server config, or into a &lt;virtual host&gt; area, its recommended to make it a global filter and add it to the global server config.</description><link>http://support.xlhost.com/index.php/kb/article/3</link><pubDate>Mon, 05 May 2008 14:46:08 GMT</pubDate><guid isPermaLink="false">9a6c43c45cb3dd3ddb1c6b8718e1f702</guid></item><item><title>Why doesn't my server respond on all of my IP addresses?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;&#xD;
Your Dedicated Server does not appear to respond on all assigned IP addresses.&#xD;
&lt;br&gt;&#xD;
&lt;br&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;br&gt;&#xD;
&lt;h3&gt;Solution: &lt;/h3&gt;&#xD;
Your system administrator needs to add IP aliases to your system in order to achieve this functionality.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Here are some simple steps on some of the more popular operating system varieties.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
---Windows 2003 Web/Standard:&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Navigate this path: &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Start Button &gt; Settings &gt; Control Panel &gt; Network Connections &gt; Local Area Connection &gt; Properties &gt; TCP/IP &gt; Advanced &gt; Add&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
At this point you will be presented with a dialog box that prompts you for an IP address and a subnet mask. The IP address you enter will be the next available IP address in your assigned range. The subnet mask depends on the size of your allocation.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Some popular subnet masks will be 255.255.255.248 (5 IP addresses) 255.255.255.240 (13 IP addresses) 255.255.255.224 (32 IP addresses) &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
---RedHat Enterprise Linux, CentOS, and Fedora Core &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Create a file in /etc/sysconfig/network-scripts using your favorite text editor (nano, vi, pico) called ifcfg-eth0-range0.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
The contents of ifcfg-eth0-range0 should be:&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
IPADDR_START="X"&lt;br /&gt;&#xD;
IPADDR_END="Y"&lt;br /&gt;&#xD;
CLONENUM_START="0"&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Where X is the second IP address in your range, and Y is the last IP address in your range.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
After saving this file, type "service network restart" to enable these changes.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Keep in mind that incorrectly modifying your network settings can render your dedicated server unreachable to the Internet.</description><link>http://support.xlhost.com/index.php/kb/article/1</link><pubDate>Mon, 05 May 2008 14:45:50 GMT</pubDate><guid isPermaLink="false">a7ea1a4f68b3c5b54749bd8fa00b30ee</guid></item><item><title>My Dedicated Server is missing [insert software name here]</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;&#xD;
My Dedicated Server is missing MySQL, Apache, PHP5, IIS, .NET, or other software I need. &#xD;
&lt;br&gt;&#xD;
&lt;br&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;br&gt;&#xD;
&lt;h3&gt;Solution: &lt;/h3&gt;&#xD;
XLHost only installs the base operating system when we deploy dedicated servers.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
     Each Windows 2003 system we deploy comes with all of the system files needed to install any of the components you would require. You can install any windows component that is missing via add/remove programs in the control panel. If installing a Microsoft Windows component prompts you for the CD-ROM simply point the installer at C:i386.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Each Unix/Linux operating system has its own unique method for automated installation of pre-compiled packages.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Here is a brief description of each of those systems.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
CentOS/Fedora - Yum&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Relevant commands&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
yum install %name% - Install the package %name%&lt;br /&gt;&#xD;
yum search %name% - Search for package that includes %name%&lt;br /&gt;&#xD;
yum remove %name% - Remove the package %name%&lt;br /&gt;&#xD;
yum update %name% - Updates all currently installed packages&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Example: yum install mysql-server&lt;br /&gt;&#xD;
Example: yum remove mysql-server&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
This would install mysql server, and then remove mysql server on a Fedora Core, or CentOS system.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
for a more detailed tutorial please see this external link: http://fedoranews.org/tchung/howto/2003-11-09-yum-intro.shtml&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Debian - apt&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Relevant commands&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
apt-get install %name% - Install the package %name%&lt;br /&gt;&#xD;
apt-get remove %name% - Remove the package %name%&lt;br /&gt;&#xD;
apt-get upgrade - Upgrade all installed packages&lt;br /&gt;&#xD;
apt-cache search %name% - Search for a package that includes %name%&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Example: apt-get install build-essential would install all nessicary components to compile C programs&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
for a more detailed explaination of the apt system please see this external link:&lt;br /&gt;&#xD;
 http://www.debian.org/doc/manuals/apt-howto/ch-apt-get.en.html#s-remove&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
FreeBSD has taken great effort to port most of the popular open source programs from Linux to FreeBSD in its ports collection; to install the ports collection follow these steps.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
As root, run sysinstall (/stand/sysinstall in FreeBSD versions older than 5.2) as shown below:&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
# sysinstall&lt;br /&gt;&#xD;
Scroll down and select Configure, press Enter.&lt;br /&gt;&#xD;
Scroll down and select Distributions, press Enter.&lt;br /&gt;&#xD;
Scroll down to ports, press Space.&lt;br /&gt;&#xD;
Scroll up to Exit, press Enter.&lt;br /&gt;&#xD;
Select FTP and select a FTP Mirror.&lt;br /&gt;&#xD;
Scroll up to Exit and press Enter.&lt;br /&gt;&#xD;
Press X to exit sysinstall.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
To begin, change to the directory for the port you want to install:&lt;br /&gt;&#xD;
/usr/ports contains the list of categories for ports&lt;br /&gt;&#xD;
Lets assume we want to install lsof&lt;br /&gt;&#xD;
# cd /usr/ports/sysutils/lsof&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
# make&lt;br /&gt;&#xD;
Build the port binary&lt;br /&gt;&#xD;
# make install&lt;br /&gt;&#xD;
Install the port binary&lt;br /&gt;&#xD;
# make clean&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
For a more detailed explaination of using the ports collection see this external link: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html</description><link>http://support.xlhost.com/index.php/kb/article/2</link><pubDate>Mon, 05 May 2008 14:45:44 GMT</pubDate><guid isPermaLink="false">9b0ab4f39bca2416acc5ea9735e6607e</guid></item><item><title>cPanel - Invalid License File</title><description>&lt;p&gt;Many times, the invalid license file error message in cPanel can be fixed by running this command from SSH:&lt;/p&gt;&lt;p&gt;/usr/local/cpanel/cpkeyclt&lt;/p&gt;&lt;p&gt;If this does not resolve the issue, please open a support ticket.&lt;/p&gt;</description><link>http://support.xlhost.com/index.php/kb/article/4</link><pubDate>Mon, 05 May 2008 14:45:36 GMT</pubDate><guid isPermaLink="false">b43f044e4dc7536e3281ee3fec7f5c69</guid></item><item><title>How to set various limits on Remote Desktop sessions on your Dedicated Server or Virtual Private Server</title><description></description><link>http://support.xlhost.com/index.php/kb/article/5</link><pubDate>Mon, 05 May 2008 14:45:27 GMT</pubDate><guid isPermaLink="false">4333a072c368859369fe471a4ff60e5b</guid></item><item><title>How do I check my bandwidth utilization for my dedicated server?</title><description>&lt;P&gt;Issue: User wishes to check bandwidth utilization for Dedicated Server service.&lt;/P&gt;&#xD;
&lt;P&gt;Solution: XLHost's Grande portal has up to the minute bandwidth statistics for Dedicated Servers hosted at XLHost&lt;/P&gt;&#xD;
&lt;P&gt;Instructions:&lt;/P&gt;&#xD;
&lt;P&gt;Open a web browser (Internet Explorer 7 or Firefox, for example) and browse to &lt;A href="http://grande.xlhost.com/" mce_href="http://grande.xlhost.com/"&gt;http://grande.xlhost.com&lt;/A&gt;&lt;/P&gt;&#xD;
&lt;P&gt;Once there, login using the e-mail address and password used to sign-up for your Dedicated Server at xlhost.com&lt;/P&gt;&#xD;
&lt;P&gt;Navigate to the 'Services' option and then click 'Bandwidth' for the server you wish to view.&lt;/P&gt;</description><link>http://support.xlhost.com/index.php/kb/article/7</link><pubDate>Mon, 05 May 2008 14:45:20 GMT</pubDate><guid isPermaLink="false">4cdddf9c8bc24c7ee30113bc246a0c07</guid></item><item><title>How to manage your Virtual Private Server using Virtuozzo Power Panels</title><description></description><link>http://support.xlhost.com/index.php/kb/article/6</link><pubDate>Mon, 05 May 2008 14:45:14 GMT</pubDate><guid isPermaLink="false">ca94f9af445694396ddff5954a38aa75</guid></item></channel></rss>

