<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.4" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Web Hosting News and Articles</title>
	<link>http://www.hostingcomments.com/hosting-reviews</link>
	<description>Web Hosting News and Articles from HostingComments.com</description>
	<pubDate>Tue, 02 Oct 2007 11:57:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>
	<language>en</language>
			<item>
		<title>Apache Installation on  Linux</title>
		<link>http://www.hostingcomments.com/hosting-reviews/apache-installation-on-linux/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/apache-installation-on-linux/#comments</comments>
		<pubDate>Tue, 02 Oct 2007 11:54:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Web Hosting Tutorials</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/apache-installation-on-linux/</guid>
		<description><![CDATA[Apacahe is a very unique and the most popular web server which is used by different types of websites which is also called as Apache httpd .
Below are the installation steps for Apache. The user who is familiar with changing directories, using tar and gunzip, compiling and has root account of the server can easily [...]]]></description>
			<content:encoded><![CDATA[<p>Apacahe is a very unique and the most popular web server which is used by different types of websites which is also called as Apache httpd .</p>
<p>Below are the installation steps for Apache. The user who is familiar with changing directories, using tar and gunzip, compiling and has root account of the server can easily install Apache</p>
<p><strong>Installing Apache version 1.3.37</strong></p>
<p>1) SSH to your server as root &#038; download Apache 1.3.37 source from Apache httpd server website, http://httpd.apache.org/</p>
<p># cd /usr/local/src<br />
# wget http://httpd.apache.org/download.cgi</p>
<p>2) Extract the tar file.</p>
<p># tar -zxvf apache1.3.tar.gz<br />
# cd apache1.3</p>
<p>3) Now configure the source tree. We are installing apache at /usr/local/apache. Following will create a make file.</p>
<p># ./configure –prefix=/usr/local/apache \<br />
–enable-so \<br />
–enable-cgi \<br />
–enable-info \<br />
–enable-rewrite \<br />
–enable-speling \<br />
–enable-usertrack \<br />
–enable-deflate \<br />
–enable-ssl \<br />
–enable-mime-magic</p>
<p>You may only enable ‘-so‘. More information regarding the other options, you can try ./configure –help</p>
<p><strong>Setting up Apache server.</strong></p>
<p>1) With the above installation of apache the apache conf file is created at /usr/local/apache/conf/httpd.conf</p>
<p>1) If you want to run Apache on a different port to the default (80) then then change the number on line 280. Ports less than 1023 will require Apache to be started as root. Port 80 is probably the easiest to use since all other ports have to be specified explicitly in the web browser, eg: http://localhost:81.</p>
<p><strong>Port 80</strong></p>
<p>2) You may want to change the server admin email address on line 313:</p>
<p>ServerAdmin admin@example.com</p>
<p>3) Specify your machine name on line 331, you may just have to remove the # comment marker. If you configure virtual hosts as outlined below then Apache will use the virtual server you name here as the default documents for the site.</p>
<p>ServerName www.example.com</p>
<p>4) You should set the document root on line 338:</p>
<p>DocumentRoot /usr/local/apache/htdocs</p>
<p>5) And on line 363:</p>
<p>This should be changed to whatever you set DocumentRoot to.</p>
<p>6) The default file to serve in directories is index.html. You can change this or add new file names (in order or importance) on line 414.</p>
<p>DirectoryIndex index.html index.htm index.php</p>
<p>7) If you don’t get a large number of hits and you want to know where your visitors are from then turn host name look ups on at line 511. Turning this on does place extra load on your server as it has to look up the host name corresponding to the IP address of all your visitors.</p>
<p>HostnameLookups On</p>
<p>8) Apache Errorlog on line 520:</p>
<p>ErrorLog /usr/local/apache/logs/error_log</p>
<p>Setting Up Virtual Hosts:</p>
<p>1) Virtual Hosts in Apache enables the single Apache server to serve different web pages for different domains. Through Virtual Hosts we can configure how Apache should handle requests to each domain.</p>
<p>When any site or domain is browsed in a web browser, the browser sends the hostname of the server that it is connecting to, to the web server. All the HTTP request that come to the server (on the ports it was told to listen to) are caught by Apache. It checks the host name included in the request and uses that to determine the virtual host configuration it should utilize.</p>
<p>2) Whena request is received by Apache, it get following details:</p>
<p>Hostname: The domain name (eg. hostingcomments.com)<br />
IP address: (eg. 10.10.10.1)<br />
Port: (eg. 80)</p>
<p>During Apache configuration, we should mention each IP address and port combination for which we will be specifying virtual host domains, in the configuration file. So we should add the NameVirtualHost entry in the httpd.conf file:</p>
<p>NameVirtualHost 10.10.10.1:80</p>
<p>Please make sure the ipaddress that you use is configured on your machine.</p>
<p>3) Each virtual host will have its own directory for the web pages to be stored. This can be anywhere that the Apache web server has permission to read. For example, on a cPanel server the web pages are located at /home/username/public_html.<br />
Now If we set a domain hostingcomments.com on the, its VirtualHost entry will be:</p>
<p>NameVirtualHost 10.10.10.1:80</p>
<p>ServerAlias www.hostingcomments.com<br />
ServerAdmin webmaster@hostingcomments.com<br />
DocumentRoot /home/hosting/public_html/<br />
ServerName tmcnetwork.bayker.com<br />
BytesLog domlogs/hostingcomments.com-bytes_log<br />
CustomLog /usr/local/apache/domlogs/tmcnetwork.bayker.com combined</p>
<p><strong>Running Apache:</strong></p>
<p>1) apachectl is the easiest way to start and stop your server manually.</p>
<p># cd /usr/local/apache/bin<br />
# ./apachectl start</p>
<p>2) You can also copy the file /usr/local/apache/bin/httpd to /etc/init.d/ from where your can stop &#038; start apache.</p>
<p># /etc/init.d/httpd stop<br />
# /etc/init.d/httpd start</p>
<p>4) Now make Apache from the above make file.</p>
<p># make</p>
<p>5) If make is successful &#038; goes without any error , install Apache</p>
<p># make install
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/apache-installation-on-linux/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>How to install roundcube on cPanel Server?</title>
		<link>http://www.hostingcomments.com/hosting-reviews/how-to-install-roundcube-on-cpanel-server/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/how-to-install-roundcube-on-cpanel-server/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 09:18:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Web Hosting Tutorials</category>
	<category>Web Hosting</category>
	<category>Cpanel Hosting</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/how-to-install-roundcube-on-cpanel-server/</guid>
		<description><![CDATA[To install roundcube on a cPanel or Linux Server, you should know your MySQL root password. Replace your MySQL root password with Database Password.
If you have already used RoundCube installation before then make sure you have removed traces of it.
Follow the steps given below and remove any traces of it with,
cd /usr/local/cpanel/base
rm -rf roundcube*
mysql -p [...]]]></description>
			<content:encoded><![CDATA[<p>To install roundcube on a cPanel or Linux Server, you should know your MySQL root password. Replace your MySQL root password with Database Password.</p>
<p>If you have already used RoundCube installation before then make sure you have removed traces of it.</p>
<p>Follow the steps given below and remove any traces of it with,</p>
<p>cd /usr/local/cpanel/base<br />
rm -rf roundcube*<br />
mysql -p -e ‘drop database roundcube’;<br />
chattr -i /usr/local/cpanel/base/frontend/x/webmaillogin.html<br />
chattr -i /usr/local/cpanel/base/webmaillogin.cgi<br />
/scripts/upcp</p>
<p>You will have to specify your root password when prompted.</p>
<p>Let us begin with installation</p>
<p>A) Download roundcube first from the given sourse and apply the proper permission to directories</p>
<p>cd /usr/local/cpanel/base<br />
wget -O roundcube.tar.gz http://heanet.dl.sourceforge.net/sourceforge/roundcubemail/roundcubemail-0.1-rc1.tar.gz<br />
tar -zxvf roundcube.tar.gz<br />
rm -rf roundcube.tar.gz<br />
mv -f roundcubemail-0.1-rc1 roundcube<br />
cd roundcube<br />
chmod -R 777 temp<br />
chmod -R 777 logs</p>
<p>B) Create the database and install the intial sql file. The following commands will do this for you.<br />
replace the mysql password in place of DATABASEPASSWORD</p>
<p>mysql -e “CREATE DATABASE roundcube;” -pDATABASEPASSWORD<br />
mysql -e “use roundcube; source SQL/mysql.initial.sql;” -pDATABASEPASSWORD</p>
<p>C)Set the configuration as given below</p>
<p>cd config<br />
mv db.inc.php.dist db.inc.php<br />
mv main.inc.php.dist main.inc.php</p>
<p>Now open db.inc.php</p>
<p>nano db.inc.php</p>
<p>Find</p>
<p>$rcmail_config[’db_dsnw’] = ‘mysql://roundcube:pass@localhost/roundcubemail’;</p>
<p>Replace with</p>
<p>$rcmail_config[’db_dsnw’] = ‘mysql://root:DATABASEPASSWORD@localhost/roundcube’;</p>
<p>Now Open main.inc.php</p>
<p>nano main.inc.php</p>
<p>Find</p>
<p>$rcmail_config[’default_host’] = ‘’;</p>
<p>Replace with</p>
<p>$rcmail_config[’default_host’] = ‘localhost’;</p>
<p>D) Configure cPanel to show roundcube in the theme. Please note this is for the X theme(default) only!! If you use another theme please skip the next part and see below.</p>
<p>cd /usr/local/cpanel/base/roundcube/skins/default/images/<br />
cp –reply=yes roundcube_logo.png /usr/local/cpanel/base/frontend/x/images/roundcube_logo.png<br />
cp –reply=yes roundcube_logo.png /usr/local/cpanel/base/webmail/x/images/roundcube_logo.png<br />
cd /usr/local/cpanel/base<br />
wget http://www.hostgeekz.com/files/hostgeekz/HGpatch-roundcube-0.1-rc1<br />
patch -p0</p>
<p><img border="0" /><br />
RoundCube——</p>
<p>***UPDATE***<br />
Remember to chattr +i the files or add the patch to your /scripts/upcp.</p>
<p>chattr +i /usr/local/cpanel/base/frontend/x/webmaillogin.html<br />
chattr +i /usr/local/cpanel/base/webmaillogin.cgi</p>
<p>That’s it! You may now access roundcube via http://domainname/webmail</p>
<p><strong>By hostingcomments.com</strong>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/how-to-install-roundcube-on-cpanel-server/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>MySQL Admin Commands and MySQl Administration</title>
		<link>http://www.hostingcomments.com/hosting-reviews/mysql-admin-commands-and-mysql-administration/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/mysql-admin-commands-and-mysql-administration/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 09:04:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Web Hosting Tutorials</category>
	<category>Web Hosting</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/mysql-admin-commands-and-mysql-administration/</guid>
		<description><![CDATA[MySQL Admin Commands:* Statistics: [prompt]$ mysqladmin version
* List database environment: [prompt]$ mysqladmin variables
* Show if database is running: [prompt]$ mysqladmin ping
* Show databases available:[prompt]$ mysqlshow
OR
mysql> SHOW DATABASES;
* Delete database: mysql> drop database databasename;
* Show list of active threads in server:
[prompt]$ mysqladmin -h localhost -u root -p processlist
* Delete a database: [prompt]$ mysqladmin drop database-name
* Execute [...]]]></description>
			<content:encoded><![CDATA[<div class="postentry">MySQL Admin Commands:* Statistics: [prompt]$ mysqladmin version<br />
* List database environment: [prompt]$ mysqladmin variables<br />
* Show if database is running: [prompt]$ mysqladmin ping<br />
* Show databases available:[prompt]$ mysqlshow</p>
<p>OR</p>
<p>mysql> SHOW DATABASES;</p>
<p>* Delete database: mysql> drop database databasename;<br />
* Show list of active threads in server:</p>
<p>[prompt]$ mysqladmin -h localhost -u root -p processlist</p>
<p>* Delete a database: [prompt]$ mysqladmin drop database-name<br />
* Execute SQL from Linux command line interface:<br />
[prompt]$ mysql -h localhost -u root -p -e “select host,db,user from db” mysql<br />
* Execute SQL command file from Linux command line interface:</p>
<p>[prompt]$ mysql -h localhost -u root -p database-name</p>
<p><strong>By hostingcomments.com </strong></div>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/mysql-admin-commands-and-mysql-administration/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Setting UP  Hostname For The Web Server&#8230;.</title>
		<link>http://www.hostingcomments.com/hosting-reviews/setting-up-hostname-for-the-web-server/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/setting-up-hostname-for-the-web-server/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 10:08:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Web Hosting Tutorials</category>
	<category>Web Hosting</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/setting-up-hostname-for-the-web-server/</guid>
		<description><![CDATA[This is for those who want to set up a hostname on their VPS or Dedicated Server. The Hostname should be FQDN- Fully Qualified Domain Name. The hostname is your server&#8217;s name that you want to set. Always set the hostname with the domain name that you own. Follow these steps:-
a.http://IP/whm edit dns zone .. [...]]]></description>
			<content:encoded><![CDATA[<p>This is for those who want to set up a hostname on their VPS or Dedicated Server. The Hostname should be FQDN- Fully Qualified Domain Name. The hostname is your server&#8217;s name that you want to set. Always set the hostname with the domain name that you own. Follow these steps:-</p>
<p>a.http://IP/whm edit dns zone .. select your domain</p>
<p>server IN A YourSeverIPHere<br />
www.server IN A YourSeverIPHere<br />
OR<br />
if you are using shell then you can simply append following lines there in<br />
# vi /var/named/domain.com.db</p>
<p>server IN A YourSeverIPHere<br />
www.server IN A YourSeverIPHere</p>
<p>Save the file<br />
#service named reload<br />
#rndc reload domain.com</p>
<p>b.WHM >> Basic cPanel/WHM Setup >> Hostname</p>
<p>or<br />
Login to shell /server as a root and fire this command the second parameter will the hostname that you want to set.<br />
hostname server.domain.com</p>
<p>c.Check /etc/hosts file that it is set properly.</p>
<p>You need to add there</p>
<p>87.117.200.71(ex.IP)           server.mydomain.com  server</p>
<p>server.mydomain.com is the hostname for this VPS then must add above live there,  modify there as per your requirement.</p>
<p>Just confirm  that you have set that properly because changing the hostname will affect few services on your server if you have not done that properly or have done any spelling mistake while setting hostname of your server.</p>
<p>d.Fire hostname on your server if it shows the hostname then you have set it properly.  Its done now.</p>
<p>by hostingcomments.com
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/setting-up-hostname-for-the-web-server/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>How to Disable Telnet on Web Server?</title>
		<link>http://www.hostingcomments.com/hosting-reviews/how-to-disable-telnet-on-web-server/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/how-to-disable-telnet-on-web-server/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 09:39:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Web Hosting Tutorials</category>
	<category>Web Hosting</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/how-to-disable-telnet-on-web-server/</guid>
		<description><![CDATA[Enabling telnet is of great security risk to web server. It should be turned off to avoid further problems. Telnet sends clear text passwords and user names trough logins and therefore it should be disabled on servers and replaced with SSH. TELNET server listens for incoming messages on port 23, and sends outgoing messages to [...]]]></description>
			<content:encoded><![CDATA[<p>Enabling telnet is of great security risk to web server. It should be turned off to avoid further problems. Telnet sends clear text passwords and user names trough logins and therefore it should be disabled on servers and replaced with SSH. TELNET server listens for incoming messages on port 23, and sends outgoing messages to port 23</p>
<p>Follow the steps given below to disable the telnet on server.</p>
<p>a. Login to your server through SSH and su to root.</p>
<p>b. Type pico /etc/xinetd.d/telnet</p>
<p>c. Look for the line: disable = no and replace with disable = yes</p>
<p>d. Now restart the inetd service: /etc/rc.d/init.d/xinetd restart</p>
<p>e. Turn off it through chkconfig as well because it can still start through that.<br />
/sbin/chkconfig telnet off</p>
<p>f. Scan your server to ensure port 23 is closed.<br />
nmap -sT -O localhost<br />
Also run ps -aux | grep telnet and if you find anything other than “grep telnet” as result kill the process.</p>
<p>by hostingcomments.com
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/how-to-disable-telnet-on-web-server/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Ways to list the content of a tar file</title>
		<link>http://www.hostingcomments.com/hosting-reviews/ways-to-list-the-content-of-a-tar-file/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/ways-to-list-the-content-of-a-tar-file/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 09:24:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Web Hosting Tutorials</category>
	<category>Web Hosting</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/ways-to-list-the-content-of-a-tar-file/</guid>
		<description><![CDATA[You need to list the contents of a tar or tar.gz file on screen before extracting the all files.
Task: List the contents of a tar file
Use the following command:
$ tar -tvf file.tar
Task: List the contents of a tar.gz file
Use the following command:
$ tar -ztvf file.tar.gz
Task: List the contents of a tar.bz2 file
Use the following command:
$ [...]]]></description>
			<content:encoded><![CDATA[<p>You need to list the contents of a tar or tar.gz file on screen before extracting the all files.</p>
<p>Task: List the contents of a tar file</p>
<p>Use the following command:<br />
$ tar -tvf file.tar<br />
Task: List the contents of a tar.gz file</p>
<p>Use the following command:<br />
$ tar -ztvf file.tar.gz<br />
Task: List the contents of a tar.bz2 file</p>
<p>Use the following command:<br />
$ tar -jtvf file.tar.bz2</p>
<p>by hostingcomments.com
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/ways-to-list-the-content-of-a-tar-file/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Importace of RAID..</title>
		<link>http://www.hostingcomments.com/hosting-reviews/importace-of-raid/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/importace-of-raid/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 10:44:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Web Hosting Tutorials</category>
	<category>Web Hosting</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/importace-of-raid/</guid>
		<description><![CDATA[What is RAID?
RAID stands for Redundant Array of Inexpensive Disks. It was developed to link a large number of low cost hard drives to form a single large capacity  storage device which can overcome old storage solutions in case of reliablity , storage capacity and performance. This is most widely used service for storage [...]]]></description>
			<content:encoded><![CDATA[<p>What is RAID?</p>
<p>RAID stands for Redundant Array of Inexpensive Disks. It was developed to link a large number of low cost hard drives to form a single large capacity  storage device which can overcome old storage solutions in case of reliablity , storage capacity and performance. This is most widely used service for storage in enterprise and server markets.</p>
<p>Three main advantages of RAID</p>
<p>*  Redundancy<br />
* Increased Performance<br />
* Lower Costs</p>
<p>The most vital  factor in the development of RAID for server environment is Redundancy. This offers backup of data in storage array in the event of failure. If their is a failure in one of the hard drives,it can be swapped for a new hard drive without turning the systems off or even the redundant drive could be used. Redundancy mainly  depends on the version of RAID used.</p>
<p>The performance can be noticed mainly when the specific versions of the RAID are used. Performance will also depend upon the number of hard drive used in the array and the controller.</p>
<p>Low cost is the main concern in all major IT departments. Cost was also the key issue when the RAID standards were developed. As compared to individual capacity hard drives ,RAID array is used to provide greater storage capacity for a system. Price differences between the highest capacity hard drives and lower capacity drivesare are  the good examples of it.<br />
Three drives of smaller capacity costs less than an individual high-capacity drive but provide more capacity.</p>
<p>Three typical forms of RAID use for desktop computer systems are RAID 0, RAID1 and RAID5. RAID 0, RAID 1 versions are available and one of the two technically is not a form of RAID.</p>
<p>RAID provides variety of benefits for systems which depends upon the version implemented. Most users like to use RAID0  to increase the performance and to avoid loss of storage space. This is mainly because redundancy is not an issue for the average user. Most computer systems will only offer either RAID 0 or 1. The costs of implementing a RAID 0+1 or RAID 5 system generally are too expensive for the average user and are only found in high-end workstation or server level systems.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/importace-of-raid/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Business Hosting plan :: 100% Uptime Guarantee !</title>
		<link>http://www.hostingcomments.com/hosting-reviews/business-hosting-plan-100-uptime-guarantee/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/business-hosting-plan-100-uptime-guarantee/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 12:25:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>eUkhost</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/business-hosting-plan-100-uptime-guarantee/</guid>
		<description><![CDATA[eUKhost has implemented Mirroring Solution to offer a hosting plan with 100% uptime Guarantee. This new Shared Hosting plan for Corporate customers has started from 1st July 2007.
Specifications of this plan :-
Space = 3GB
Bandwidth = 100 GB
Addon Domains = 5
Parked domains = 10
MySQL Databases = Unlimited
Allowed Mailboxes = 100
Allowed Subdomains = 100
Uptime Guarantee = 100%
Monthly [...]]]></description>
			<content:encoded><![CDATA[<p>eUKhost has implemented Mirroring Solution to offer a hosting plan with 100% uptime Guarantee. This new Shared Hosting plan for Corporate customers has started from 1st July 2007.</p>
<p>Specifications of this plan :-<br />
Space = 3GB<br />
Bandwidth = 100 GB<br />
Addon Domains = 5<br />
Parked domains = 10<br />
MySQL Databases = Unlimited<br />
Allowed Mailboxes = 100<br />
Allowed Subdomains = 100<br />
Uptime Guarantee = 100%<br />
Monthly Cost = £19.99<br />
Visit here for more info-</p>
<p>http://www.eukhost.com/business-web-hosting.php
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/business-hosting-plan-100-uptime-guarantee/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Run Command Shortcuts for Windows..</title>
		<link>http://www.hostingcomments.com/hosting-reviews/run-command-shortcuts-for-windows/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/run-command-shortcuts-for-windows/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 08:40:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Web Hosting Tutorials</category>
	<category>Web Hosting</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/run-command-shortcuts-for-windows/</guid>
		<description><![CDATA[These are some quick and easy steps that you can use while you use the run prompt or command prompt. This you can use as a shortcut rather than using mmc control.
Accessibility Controls: access.cpl
Add Hardware Wizard: hdwwiz.cpl
Add/Remove Programs: appwiz.cpl
Administrative Tools: control admintools
Automatic Updates: wuaucpl.cpl
Bluetooth Transfer Wizard: fsquirt
Calculator: calc
Certificate Manager: certmgr.msc
Character Map: charmap
Check Disk Utility: chkdsk
Clipboard [...]]]></description>
			<content:encoded><![CDATA[<p>These are some quick and easy steps that you can use while you use the run prompt or command prompt. This you can use as a shortcut rather than using mmc control.</p>
<p>Accessibility Controls: access.cpl</p>
<p>Add Hardware Wizard: hdwwiz.cpl</p>
<p>Add/Remove Programs: appwiz.cpl</p>
<p>Administrative Tools: control admintools</p>
<p>Automatic Updates: wuaucpl.cpl</p>
<p>Bluetooth Transfer Wizard: fsquirt</p>
<p>Calculator: calc</p>
<p>Certificate Manager: certmgr.msc</p>
<p>Character Map: charmap</p>
<p>Check Disk Utility: chkdsk</p>
<p>Clipboard Viewer: clipbrd</p>
<p>Command Prompt: cmd</p>
<p>Component Services: dcomcnfg</p>
<p>Computer Management: compmgmt.msc</p>
<p>Date and Time Properties: timedate.cpl</p>
<p>DDE Shares: ddeshare</p>
<p>Device Manager: devmgmt.msc</p>
<p>Direct X Control Panel (If Installed)*: directx.cpl</p>
<p>Direct X Troubleshooter: dxdiag</p>
<p>Disk Cleanup Utility: cleanmgr</p>
<p>Disk Defragment: dfrg.msc</p>
<p>Disk Management: diskmgmt.msc</p>
<p>Disk Partition Manager: diskpart</p>
<p>Display Properties: control desktop</p>
<p>Display Properties: desk.cpl</p>
<p>Display Properties (w/Appearance Tab Preselected): control color</p>
<p>Dr. Watson System Troubleshooting Utility: drwtsn32</p>
<p>Driver Verifier Utility: verifier</p>
<p>Event Viewer: eventvwr.msc</p>
<p>File Signature Verification Tool: sigverif</p>
<p>Findfast: findfast.cpl</p>
<p>Folders Properties: control folders</p>
<p>Fonts: control fonts</p>
<p>Fonts Folder: fonts</p>
<p>Free Cell Card Game: freecell</p>
<p>Game Controllers: joy.cpl</p>
<p>Group Policy Editor (XP Prof): gpedit.msc</p>
<p>Hearts Card Game: mshearts</p>
<p>Iexpress Wizard: iexpress</p>
<p>Indexing Service: ciadv.msc</p>
<p>Internet Properties: inetcpl.cpl</p>
<p>IP Configuration (Display Connection Configuration): ipconfig /all</p>
<p>IP Configuration (Display DNS Cache Contents): ipconfig /displaydns</p>
<p>IP Configuration (Delete DNS Cache Contents): ipconfig /flushdns</p>
<p>IP Configuration (Release All Connections): ipconfig /release</p>
<p>IP Configuration (Renew All Connections): ipconfig /renew</p>
<p>IP Configuration (Refreshes DHCP &#038; Re-Registers DNS): ipconfig /registerdns</p>
<p>IP Configuration (Display DHCP Class ID): ipconfig /showclassid</p>
<p>IP Configuration (Modifies DHCP Class ID): ipconfig /setclassid</p>
<p>Java Control Panel (If Installed): jpicpl32.cpl</p>
<p>Java Control Panel (If Installed): javaws</p>
<p>Keyboard Properties: control keyboard</p>
<p>Local Security Settings: secpol.msc</p>
<p>Local Users and Groups: lusrmgr.msc</p>
<p>Logs You Out Of Windows: logoff</p>
<p>Microsoft Chat: winchat</p>
<p>Minesweeper Game: winmine</p>
<p>Mouse Properties: control mouse</p>
<p>Mouse Properties: main.cpl</p>
<p>Network Connections: control netconnections</p>
<p>Network Connections: ncpa.cpl</p>
<p>Network Setup Wizard: netsetup.cpl</p>
<p>Notepad: notepad</p>
<p>Nview Desktop Manager (If Installed): nvtuicpl.cpl</p>
<p>Object Packager: packager</p>
<p>ODBC Data Source Administrator: odbccp32.cpl</p>
<p>On Screen Keyboard: osk</p>
<p>Opens AC3 Filter (If Installed): ac3filter.cpl</p>
<p>Password Properties: password.cpl</p>
<p>Performance Monitor: perfmon.msc</p>
<p>Performance Monitor: perfmon</p>
<p>Phone and Modem Options: telephon.cpl</p>
<p>Power Configuration: powercfg.cpl</p>
<p>Printers and Faxes: control printers</p>
<p>Printers Folder: printers</p>
<p>Private Character Editor: eudcedit</p>
<p>Quicktime (If Installed): QuickTime.cpl</p>
<p>Regional Settings: intl.cpl</p>
<p>Registry Editor: regedit</p>
<p>Registry Editor: regedit32</p>
<p>Remote Desktop: mstsc</p>
<p>Removable Storage: ntmsmgr.msc</p>
<p>Removable Storage Operator Requests: ntmsoprq.msc</p>
<p>Resultant Set of Policy (XP Prof): rsop.msc</p>
<p>Scanners and Cameras: sticpl.cpl</p>
<p>Scheduled Tasks: control schedtasks</p>
<p>Security Center: wscui.cpl</p>
<p>Services: services.msc</p>
<p>Shared Folders: fsmgmt.msc</p>
<p>Shuts Down Windows: shutdown</p>
<p>Sounds and Audio: mmsys.cpl</p>
<p>Spider Solitare Card Game: spider</p>
<p>SQL Client Configuration: cliconfg</p>
<p>System Configuration Editor: sysedit</p>
<p>System Configuration Utility: msconfig</p>
<p>System File Checker Utility (Scan Immediately): sfc /scannow</p>
<p>System File Checker Utility (Scan Once At Next Boot): sfc /scanonce</p>
<p>System File Checker Utility (Scan On Every Boot): sfc /scanboot</p>
<p>System File Checker Utility (Return to Default Setting): sfc /revert</p>
<p>System File Checker Utility (Purge File Cache): sfc /purgecache</p>
<p>System File Checker Utility (Set Cache Size to size x): sfc /cachesize=x</p>
<p>System Properties: sysdm.cpl</p>
<p>Task Manager: taskmgr</p>
<p>Telnet Client: telnet</p>
<p>User Account Management: nusrmgr.cpl</p>
<p>Utility Manager: utilman</p>
<p>Windows Firewall: firewall.cpl</p>
<p>Windows Magnifier: magnify</p>
<p>Windows Management Infrastructure: wmimgmt.msc</p>
<p>Windows System Security Tool: syskey</p>
<p>Windows Update Launches: wupdmgr</p>
<p>Windows XP Tour Wizard: tourstart
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/run-command-shortcuts-for-windows/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Ways to repair a corrupt MySQL Table..</title>
		<link>http://www.hostingcomments.com/hosting-reviews/ways-to-repair-a-corrupt-mysql-table/</link>
		<comments>http://www.hostingcomments.com/hosting-reviews/ways-to-repair-a-corrupt-mysql-table/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 08:20:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Web Hosting Tutorials</category>
	<category>Cpanel Hosting</category>
		<guid isPermaLink="false">http://www.hostingcomments.com/hosting-reviews/ways-to-repair-a-corrupt-mysql-table/</guid>
		<description><![CDATA[Different ways to repair a corrupt MySQL table :=>
1] Check the permission and ownership of database i.e. it should be same below
drwx—— 2 mysql mysql cpanelusername_dbname.
2] If the permissions are correct but some error occurs then it seems that your database table may be corrupts then there are following way to repair the DB
a) Go [...]]]></description>
			<content:encoded><![CDATA[<p>Different ways to repair a corrupt MySQL table :=></p>
<p>1] Check the permission and ownership of database i.e. it should be same below</p>
<p>drwx—— 2 mysql mysql cpanelusername_dbname.</p>
<p>2] If the permissions are correct but some error occurs then it seems that your database table may be corrupts then there are following way to repair the DB</p>
<p>a) Go to whm >>SQL Services >> Repair a Database >> select database name and click Repair Database.</p>
<p>b) Go to cpanel >> mysql section MySQL Account Maintenance >> search database then click on Repair.</p>
<p>3] You can get it repaired it through shell when mysqld server is running</p>
<p>i) login in mysql to that particular user by using following command</p>
<p>mysql>mysql –u databaseusername –p databasename</p>
<p>ii) select particular database</p>
<p>mysql> use databasename;</p>
<p>iii) Check whether database table is corrupted or not. If following command output shows null value then it should be corrupt otherwise it is fine</p>
<p>mysql>show table status like ‘table name’\G; Or<br />
mysql>check table tablename ;</p>
<p>iv)If it is corrupts then use the following command to repair that particular database table.</p>
<p>mysql>repair table tablename;</p>
<p>4] Get it repaired through shell when mysqld server is not running</p>
<p>Repairing MyISAM mySQL Tables/Databases:</p>
<p># cd /var/lib/mysql/DBNAME</p>
<p># myisamchk tablename.MYI</p>
<p>Repairing ISAM mySQL Tables/Databases:</p>
<p># cd /var/lib/mysql/DBNAME<br />
isamchk tablename.MYI<br />
where</p>
<p>-c –> check database is corrupted or not<br />
-r –> recorver<br />
-o –> optimise the database
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.hostingcomments.com/hosting-reviews/ways-to-repair-a-corrupt-mysql-table/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
