<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Review Bluehost: My true hosting experience with Bluehost</title>
	<atom:link href="http://www.reviewbluehost.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reviewbluehost.com</link>
	<description></description>
	<pubDate>Mon, 15 Dec 2008 05:23:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>SSH common commands</title>
		<link>http://www.reviewbluehost.com/bluehost-features/ssh-common-commands/</link>
		<comments>http://www.reviewbluehost.com/bluehost-features/ssh-common-commands/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 05:23:21 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Bluehost Features]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[features]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[SSH]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=126</guid>
		<description><![CDATA[Following up on my previous post about Bluehost&#8217;s SSH services, listed below are some of the common commands in for SSH. 
ls : list files/directories in a directory, comparable to dir in windows/dos.
ls -al : shows all files (including ones that start with a period), directories, and details attributes for each file.
cd : change directory [...]]]></description>
			<content:encoded><![CDATA[<p>Following up on my previous post about <a href="http://www.reviewbluehost.com/bluehost-features/does-bluehost-offer-ssh-services/">Bluehost&#8217;s SSH services</a>, listed below are some of the common commands in for SSH. </p>
<blockquote><p>ls : list files/directories in a directory, comparable to dir in windows/dos.<br />
ls -al : shows all files (including ones that start with a period), directories, and details attributes for each file.</p>
<p>cd : change directory · · cd /usr/local/apache : go to /usr/local/apache/ directory<br />
cd ~ : go to your home directory<br />
cd - : go to the last directory you were in<br />
cd .. : go up a directory</p>
<p>cat : print file contents to the screen<br />
cat filename.txt : cat the contents of filename.txt to your screen</p>
<p>tail : like cat, but only reads the end of the file<br />
tail /var/log/messages : see the last 20 (by default) lines of /var/log/messages<br />
tail -f /var/log/messages : watch the file continuously, while it&#8217;s being updated<br />
tail -200 /var/log/messages : print the last 200 lines of the file to the screen</p>
<p>more : like cat, but opens the file one screen at a time rather than all at once<br />
more /etc/userdomains : browse through the userdomains file.<br />
hit Space to go to the next page, q to quit</p>
<p>pico : friendly, easy to use file editor<br />
pico /home/burst/public_html/index.html : edit the index page for the user&#8217;s website.</p>
<p>vi : another editor, tons of features, harder to use at first than pico<br />
vi /home/burst/public_html/index.html : edit the index page for the user&#8217;s website.</p>
<p>grep : looks for patterns in files<br />
grep root /etc/passwd : shows all matches of root in /etc/passwd<br />
grep -v root /etc/passwd : shows all lines that do not match root</p>
<p>touch : create an empty file<br />
touch /home/burst/public_html/404.html : create an empty file called 404.html in the directory /home/burst/public_html/</p>
<p>ln : create&#8217;s &#8220;links&#8221; between files and directories<br />
ln -s /home/username/tmp/webalizer webstats: Now you can display http://www.yourdomain.com/webstats to show your webalizer stats online. You can delete the symlink (webstats) and it will not delete the original stats on the server.</p>
<p>rm : delete a file<br />
rm filename.txt : deletes filename.txt, will more than likely ask if you really want to delete it<br />
rm -f filename.txt : deletes filename.txt, will not ask for confirmation before deleting.<br />
rm -rf tmp/ : recursively deletes the directory tmp, and all files in it, including subdirectories. BE VERY CAREFULL WITH THIS COMMAND!!!</p>
<p>last : shows who logged in and when<br />
last -20 : shows only the last 20 logins<br />
last -20 -a : shows last 20 logins, with the hostname in the last field</p>
<p>w : shows who is currently logged in and where they are logged in from.</p>
<p>netstat : shows all current network connections.<br />
netstat -an : shows all connections to the server, the source and destination ips and ports.<br />
netstat -rn : shows routing table for all ips bound to the server.</p>
<p>top : shows live system processes in a nice table, memory information, uptime and other useful info. This is excellent for managing your system processes, resources and ensure everything is working fine and your server isn&#8217;t bogged down.<br />
top then type Shift + M to sort by memory usage or Shift + P to sort by CPU usage</p>
<p>ps: ps is short for process status, which is similar to the top command. It&#8217;s used to show currently running processes and their PID.<br />
A process ID is a unique number that identifies a process, with that you can kill or terminate a running program on your server (see kill command).<br />
ps U username : shows processes for a certain user<br />
ps aux : shows all system processes<br />
ps aux &#8211;forest : shows all system processes like the above but organizes in a hierarchy that&#8217;s very useful!</p>
<p>file : attempts to guess what type of file a file is by looking at it&#8217;s content.<br />
file * : prints out a list of all files/directories in a directory</p>
<p>du : shows disk usage.<br />
du -sh : shows a summary, in human-readble form, of total disk space used in the current directory, including subdirectories.<br />
du -sh * : same thing, but for each file and directory. helpful when finding large files taking up space.</p>
<p>wc : word count<br />
wc -l filename.txt : tells how many lines are in filename.txt</p>
<p>cp : copy a file<br />
cp filename filename.backup : copies filename to filename.backup<br />
cp -a /home/burst/new_design/* /home/burst/public_html/ : copies all files, retaining permissions form one directory to another.<br />
find * -type d|xargs -i cp &#8211;verbose php.ini {} : copies your php.ini file into all directories recursively.</p>
<p>kill: terminate a system process<br />
kill -9 PID EG: kill -9 431<br />
kill PID EG: kill 10550<br />
Use top or ps ux to get system PIDs (Process IDs)</p>
<p>EG:</p>
<p>PID TTY TIME COMMAND<br />
10550 pts/3 0:01 /bin/csh<br />
10574 pts/4 0:02 /bin/csh<br />
10590 pts/4 0:09 APP</p>
<p>Each line represents one process, with a process being loosely defined as a running instance of a program. The column headed PID (process ID) shows the assigned process numbers of the processes. The heading COMMAND shows the location of the executed process.</p>
<p>Putting commands together<br />
Often you will find you need to use different commands on the same line. Here are some examples. Note that the | character is called a pipe, it takes date from one program and pipes it to another.<br />
> means create a new file, overwriting any content already there.<br />
>> means tp append data to a file, creating a newone if it doesn not already exist.<br />
< send input from a file back into a command.</p>
<p>grep User /usr/local/apache/conf/httpd.conf |more<br />
This will dump all lines that match User from the httpd.conf, then print the results to your screen one page at a time.</p>
<p>last -a > /root/lastlogins.tmp<br />
This will print all the current login history to a file called lastlogins.tmp in /root/</p>
<p>tail -10000 /var/log/exim_mainlog |grep domain.com |more<br />
This will grab the last 10,000 lines from /var/log/exim_mainlog, find all occurances of domain.com (the period represents &#8216;anything&#8217;,<br />
&#8211; comment it out with a so it will be interpretted literally), then send it to your screen page by page.</p>
<p>netstat -an |grep :80 |wc -l<br />
Show how many active connections there are to apache (httpd runs on port 80)</p>
<p>mysqladmin processlist |wc -l<br />
Show how many current open connections there are to mysql</p>
<p>mysqldump -u username -p dbname > file.sql<br />
MySQL Dump</p>
<p>tar -zxvf file.tar.gz<br />
UnTAR file</p>
<p>mysql -u username -p database_name <file.sql<br />
Importing MySQL database</p>
<p>which [perl]<br />
Finding path to [perl] </p></blockquote>
<p>These codes are quoted from Bluehost&#8217;s Helpdesk - thus in case you have questions about them, it&#8217;s best to refer back to Bluehost technical supports.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-features/ssh-common-commands/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bluehost vs Lunarpages (Review &#038; Guestpost)</title>
		<link>http://www.reviewbluehost.com/bluehost-reviews/bluehost-vs-lunarpages-review-guestpost/</link>
		<comments>http://www.reviewbluehost.com/bluehost-reviews/bluehost-vs-lunarpages-review-guestpost/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 00:00:15 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Bluehost Reviews]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[choose]]></category>

		<category><![CDATA[compare]]></category>

		<category><![CDATA[guide]]></category>

		<category><![CDATA[host]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[lunarpages]]></category>

		<category><![CDATA[review]]></category>

		<category><![CDATA[shopping]]></category>

		<category><![CDATA[versus]]></category>

		<category><![CDATA[vs]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=128</guid>
		<description><![CDATA[Lunarpages and Bluehost are both in my favorite hosting list for long. Both hosting companies are in business for long and both are offering topnotch hosting services. 
Bluehost vs Lunarpages in a glance
To save your time, I had highlighted several key hosting features of Bluehost and Lunarpages below. 



Web Hosting 
Storage &#38; 
   [...]]]></description>
			<content:encoded><![CDATA[<p>Lunarpages and Bluehost are both in my favorite hosting list for long. Both hosting companies are in business for long and both are offering topnotch hosting services. </p>
<h2>Bluehost vs Lunarpages in a glance</h2>
<p>To save your time, I had highlighted several key hosting features of Bluehost and Lunarpages below. </p>
<table class="border" border="0" cellspacing="3" cellpadding="3" width="100%">
<tbody>
<tr>
<td bgcolor="#CCCCCC" class="table"><strong>Web Hosting </strong></td>
<td width="80" align="center" bgcolor="#CCCCCC" class="table"><strong>Storage &amp; <br />
      Bandwidth</strong></td>
<td width="80" align="center" bgcolor="#CCCCCC" class="table"><strong>Addon domain </strong></td>
<td width="80" align="center" bgcolor="#CCCCCC" class="table"><strong>Automation</strong></td>
<td width="80" align="center" bgcolor="#CCCCCC" class="table"><strong>Webstats</strong></td>
<td width="80" align="center" bgcolor="#CCCCCC" class="table"><strong>Price </strong></td>
<td width="120" align="center" bgcolor="#CCCCCC" class="table"><strong>Specials</strong></td>
</tr>
<tr>
<td><a href="http://www.reviewbluehost.com/bluehost.php">BlueHost</a></td>
<td width="80" align="center">Unlimited</td>
<td width="80" align="center">Unlimited</td>
<td width="80" align="center">Fantastico &amp; Simple Scripts </td>
<td width="80" align="center">Awstats &amp; Webalizer </td>
<td width="80" align="center">$6.95/mo</td>
<td width="120" align="center">Marketing credit with Yahoo! and Google </td>
</tr>
<tr>
<td><a href="http://www.reviewbluehost.com/lunarpages.php">LunarPages</a></td>
<td width="80" align="center">Unlimited</td>
<td width="80" align="center">Unlimited</td>
<td width="80" align="center">Fantastico</td>
<td width="80" align="center">Webalizer</td>
<td width="80" align="center">$4.95/mo</td>
<td width="120" align="center"> Free software &amp; web application</td>
</tr>
</tbody>
</table>
<p>From the table, you&#8217;ll see that there are indeed not much differences between the two. In fact, pricing is the only differences between Lunarpages and Bluehost (with LP slightly cheaper than BH). </p>
<p>In term of popularity, Bluehost is much welcomed among webmasters. Google Trend (refer to the diagram) shows that Bluehost is growing much faster when compare with Lunarpages. </p>
<p><img src="http://www.reviewbluehost.com/images/2008/1212-5.jpg" alt="Bluehost vs Lunarpages" /></p>
<p>To my wild guess I think this is due to Bluehost&#8217;s quality customer support as well as aggressive web marketing plans.</p>
<h3>Guest Article: Comparison between Bluehost and Lunarpages</h3>
<p>On top of my personal review, I&#8217;m glad to have experienced web writer - <a href="http://ezinearticles.com/?expert=Justin_Knights">Justin Knights</a> to share his view on the topic. Check out his view about Bluehost and Lunarpages in this guest post below.</p>
<blockquote><p>
<strong>Comparison Between BlueHost and Lunarpages</strong></p>
<p>There are many hosting providers out there in the market today and 2 companies that are worth mentioning is <a href="http://www.reviewbluehost.com/bluehost.php">BlueHost</a> and <a href="http://www.reviewbluehost.com/lunarpages.php">Lunarpages</a>. Both these companies have been around for quite some time and have a good reputation in the industry. However, which company is the better of the two? Lets us make a comparison to see which company excels in the different categories.</p>
<p>By comparing the packages provided, Lunarpages provides specific packages for blogs, small business or enterprises but BlueHost is not clear in their packages. So, to find out which package suits you if you want to choose BlueHost, you will need to spend s little time to do a research. Lunarpages also provides Window hosting while BlueHost do not. Even though this might not be big matter, it still proves that Lunarpages provide something that BlueHost do not provide.</p>
<p>Next, we take a look at the price for both companies. Lunarpages is the more cost effective choice but Bluehost are much welcomed among webmasters. Bluehost is hosting a lot more domain than Lunarpages at the moment and a check on both companies search popularity will show that Bluehost is way ahead of Lunarpages. From the customer&#8217;s point of view, both companies are satisfactory. In fact, many customers have websites hosted by both of these companies. Last but not least, both companies provide user friendly hosting panels. Different users prefer different panels like cpanel, Fantastico. Both companies provide the same stuff.</p>
<p>For a conclusion, the company that you will choose must be an effective business investment. Lunarpages provide more choices and is cheaper; while BlueHost, despite being more popular, offer less hosting choices and are slightly more expensive.</p></blockquote>
<h3>Bluehost vs Lunarpages: Who&#8217;s the best?</h3>
<p>So who&#8217;s the best between <a href="http://www.reviewbluehost.com/lunarpages.php">Lunarpages</a> and <a href="http://www.reviewbluehost.com/bluehost.php">Bluehost</a>? Well it seems that it&#8217;s pretty tough to choose between these two  hosting companies. In case you&#8217;re looking for budget hosting, then Lunarpages is recommended; for those who don&#8217;t mind paying a little extra for the pop star, then Bluehost is very much your choice. All in all, both hosting companies are doing very good in their industry. In case you are still unsure with them, I suggest you to try both services yourself as they both offer 30 days free trial period.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-reviews/bluehost-vs-lunarpages-review-guestpost/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Does Bluehost offer SSH services?</title>
		<link>http://www.reviewbluehost.com/bluehost-features/does-bluehost-offer-ssh-services/</link>
		<comments>http://www.reviewbluehost.com/bluehost-features/does-bluehost-offer-ssh-services/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 04:44:04 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Bluehost Features]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[FTP]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[protocol]]></category>

		<category><![CDATA[secure]]></category>

		<category><![CDATA[secured file transfer]]></category>

		<category><![CDATA[shell]]></category>

		<category><![CDATA[SSH]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=122</guid>
		<description><![CDATA[Yes, you can always use SSH services for secure connection at Bluehost. However, SSH services are not enabled by default at Bluehost. In order to begin using SSH functions, you&#8217;ll need to submit a copy of your photo identification card via email or uploads via cPanel. On top of Bluehost&#8217;s admin approval, you&#8217;ll also need [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, you can always use SSH services for secure connection at Bluehost. However, SSH services are not enabled by default at Bluehost. In order to begin using SSH functions, you&#8217;ll need to submit a copy of your photo identification card via email or uploads via cPanel. On top of Bluehost&#8217;s admin approval, you&#8217;ll also need to manage SSH keys for automated SSH login.</p>
<p><img src="http://www.reviewbluehost.com/images/2008/1212-2.jpg" alt="Bluehost SSH functions" /></p>
<h2>Connection to SSH Shell at Bluehost</h2>
<p>To start using SSH services, here&#8217;s what you do:</p>
<p>1. Click on the connect button. It is the first one from the left.</p>
<p><img class="border" src="http://www.reviewbluehost.com/images/2008/1212-3.jpg" alt="Bluehost SSH functions" /></p>
<p>2. Enter in Hostname. (your domain name with out the www.) and your username. Highlight password when you&#8217;re done.</p>
<p><img class="border" src="http://www.reviewbluehost.com/images/2008/1212-4.jpg" alt="Bluehost SSH functions" /></p>
<p>3. Click Connect and enter your password when you&#8217;re prompted to do so.</p>
<h3>What&#8217;s SSH and why should I care?</h3>
<p>Personally I don&#8217;t use much SSH services but it&#8217;s indeed a very useful function. A SSH or sometimes known as secure shell is a kind of network that enables data exchange done in a safe channel.</p>
<p>The reason for SSH to exist is simple: Security. Internet is an open space that&#8217;s so vulnerable to malicious attacks - eavesdropping for passwords or sensitive information; hijacking messages to inspect and modify transmitted data; and faking network addresses to fool access control mechanisms or redirect connections to a fake server - these are all the common disaster we heard (or experienced!) about all the time. Using SSH protects you against all of these attacks.</p>
<h3>Common SSH application: SFTP</h3>
<p>In web hosting, SSH services are mostly used as secured file transfer protocol (SFTP). To transfer your data files between Bluehost server and your local machines, all you need to is as below:</p>
<ol>
<li>Download an FTP program that support Secure FTP.</li>
<li>Enable SSH/Shell access on your account by submitting your identification card.</li>
<li>Log into your SFTP program using port 22.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-features/does-bluehost-offer-ssh-services/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I can&#8217;t see any stats for awstats or webalizer</title>
		<link>http://www.reviewbluehost.com/bluehost-features/bluehost-stats/</link>
		<comments>http://www.reviewbluehost.com/bluehost-features/bluehost-stats/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 04:17:05 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Bluehost Features]]></category>

		<category><![CDATA[awstats]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[stats]]></category>

		<category><![CDATA[webalizer]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=119</guid>
		<description><![CDATA[Don&#8217;t be surprise if you can&#8217;t see a thing when you click on Awstats or Webalizer in Bluehost cPanel. Stats reporting is not done automatically like last time. Now, Web stats must be enabled and saved before getting your site tracked.

To do this, go to &#8216;Choose Log Program&#8217; in your Bluehost cpanel. Check the boxes [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t be surprise if you can&#8217;t see a thing when you click on Awstats or Webalizer in Bluehost cPanel. Stats reporting is not done automatically like last time. Now, Web stats must be enabled and saved before getting your site tracked.</p>
<p><img src="http://www.reviewbluehost.com/images/2008/1212-1.jpg" alt="Bluehost web stats reporting" /></p>
<p>To do this, go to &#8216;Choose Log Program&#8217; in your Bluehost cpanel. Check the boxes for the stats you wish to track on each domain, click save changes when you&#8217;re done. Stats reporting will be visible after 24 hours, you can then view the statistics by logging back into cPanel.</p>
<h3>Web stats function in Bluehost</h3>
<p>In brief, here are what can you get at Bluehost&#8217;s web statistic report (mainly via Awstats and Webalizer):</p>
<ul>
<li>Updated website statistical reports in every 24 hours.</li>
<li>Updated website bandwidth usage information in every 6 hours.</li>
</ul>
<p>For current Bluehost users, a point worth noting is that Analog stats in Bluehost have been deprecated. The system will still function if you currently have Analog Stats enabled, however you cannot enable them for additional domains.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-features/bluehost-stats/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How long will it take to get my new site online at Bluehost?</title>
		<link>http://www.reviewbluehost.com/bluehost-features/how-long-will-it-take-to-get-my-new-site-online-at-bluehost/</link>
		<comments>http://www.reviewbluehost.com/bluehost-features/how-long-will-it-take-to-get-my-new-site-online-at-bluehost/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 14:37:20 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Bluehost Features]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[new]]></category>

		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=112</guid>
		<description><![CDATA[
Imagine this: You&#8217;re so keen to start your website and finally makeup your mind with Bluehost, you search for the right domain name, fill up all the hosting/billing issues, and make your payment. 
Obviously, the next thing comes into mind is how soon you can get your hosting account running after the payment is done. [...]]]></description>
			<content:encoded><![CDATA[<div id='left'><img src="http://www.reviewbluehost.com/images/2008/1004-3.jpg" alt="" /></div>
<p>Imagine this: You&#8217;re so keen to start your website and finally makeup your mind with Bluehost, you search for the right domain name, fill up all the hosting/billing issues, and make your payment. </p>
<p>Obviously, the next thing comes into mind is how soon you can get your hosting account running after the payment is done. Who wants to wait more for a product that you&#8217;d already purchased?</p>
<p><strong>Starting a new website at Bluehost</strong></p>
<p>Question is, how long does it take to get a new website to go live at Bluehost?</p>
<p>Basically Bluehost will have your website online the same day you purchase your hosting. </p>
<p>The hosting account will be installed within the first hour of your order and you will receive the hosting account information via email. At this point, you&#8217;re ready to get started - start uploading web files, installing web apps, and so on to get your website running.</p>
<p>Nevertheless, the website DNS might take a little longer to process. Depending on whether it is a new registration or a domain transfer, DNS might takes 24 - 48 hours to be fully sorted out. </p>
<p>Thus it would be wise to expect a day or two for the website to be visible in front of your users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-features/how-long-will-it-take-to-get-my-new-site-online-at-bluehost/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I&#8217;m downloading the Internet with Bluehost!</title>
		<link>http://www.reviewbluehost.com/foo/reviewbluehost-jokes/</link>
		<comments>http://www.reviewbluehost.com/foo/reviewbluehost-jokes/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 14:31:51 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Foo]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[jokes]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=105</guid>
		<description><![CDATA[
Here&#8217;s something you might not know: I&#8217;m cranking out some funny jokes on Bluehost&#8217;s hosting plan where I show how downloading the Internet might be possible. 
The joke is picking up in Stumble and that particular web page is receiving a few hundreds visits per day, not bad huh?  
Find out about the joke [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://wrongcrowd.com/albums/misc/no_jokes_please.jpg" height="385" width="530" class='border' /></p>
<p>Here&#8217;s something you might not know: I&#8217;m cranking out some funny jokes on Bluehost&#8217;s hosting plan where I show how downloading the Internet might be possible. </p>
<p>The joke is picking up in Stumble and that particular web page is receiving a few hundreds visits per day, not bad huh? <img src='http://www.reviewbluehost.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Find out about the joke at <a href="http://www.reviewbluehost.com/jokes.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/foo/reviewbluehost-jokes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Upgrading your Bluehost account</title>
		<link>http://www.reviewbluehost.com/bluehost-supports/upgrading-your-bluehost-account/</link>
		<comments>http://www.reviewbluehost.com/bluehost-supports/upgrading-your-bluehost-account/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 11:14:20 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Bluehost Supports]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[support]]></category>

		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=102</guid>
		<description><![CDATA[
&#8220;How can I upgrade my Bluehost features in my old account?&#8221; This is a frequent asked question by new Bluehost customers whenever Bluehost offer a new hosting features or hosting plan. 
In case you signed up for a BlueHost account days, weeks, or even months ago and realized that Bluehost is offering additional features to [...]]]></description>
			<content:encoded><![CDATA[<div id='right'><img src="http://www.reviewbluehost.com/images/2008/1006-14.jpg" alt="Bluehost customer supports" /></div>
<p>&#8220;How can I upgrade my Bluehost features in my old account?&#8221; This is a frequent asked question by new Bluehost customers whenever Bluehost offer a new hosting features or hosting plan. </p>
<p>In case you signed up for a BlueHost account days, weeks, or even months ago and realized that Bluehost is offering additional features to new clients, you can always contact <a href="http://helpdesk.bluehost.com">Bluehost Helpdesk</a> and have them to upgrade your account with the updated features. </p>
<p>For example, I used to have only 5 addon domains in my quota. My request for upgrades to unlimited addon domain is granted as soon as I shoot an email to Bluehost Helpdesk. This works the same to any other hosting features - disk sapce, bandwidth, web promotion voucher, and so on. Be assure that Bluehost treat their new and old customers the same thus don&#8217;t be hesitate to ask for what you deserve with them. </p>
<p>It should be noted, however, that this will require some downtime as they move your files from server to server. Also, if you do not have a real need for these features, it probably isn&#8217;t worth the effort. BH does monitor account usage and if they believe that you have a need for the additional features, they will automatically move you (to the server with upgraded features).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-supports/upgrading-your-bluehost-account/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Does Bluehost limit CGI script usage?</title>
		<link>http://www.reviewbluehost.com/bluehost-features/does-bluehost-limits-cgi-script-usage/</link>
		<comments>http://www.reviewbluehost.com/bluehost-features/does-bluehost-limits-cgi-script-usage/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 04:20:19 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Bluehost Features]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[cgi]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=71</guid>
		<description><![CDATA[
The Common Gateway Interface (CGI) is a standard protocol for interfacing external application software with an information server - for example, a web server. 
In contrast with a plain HTML document that the Web daemon retrieves is static, CGI program is executed in real-time for dynamic information output.
Generally, web servers (including Bluehost) often have a [...]]]></description>
			<content:encoded><![CDATA[<div id='floatright'><img src="http://www.reviewbluehost.com/images/2008/1006-5.jpg" alt="" /></div>
<p>The Common Gateway Interface (CGI) is a standard protocol for interfacing external application software with an information server - for example, a web server. </p>
<p>In contrast with a plain HTML document that the Web daemon retrieves is static, CGI program is executed in real-time for dynamic information output.</p>
<p>Generally, web servers (including Bluehost) often have a cgi-bin directory at the base of the directory tree to hold executable files called with CGI. </p>
<h3>Implementation of CGI </h3>
<p>An instant example on the usage of CGI quoted from <a href="http://hoohoo.ncsa.uiuc.edu/cgi/intro.html">NCSA</a>.</p>
<blockquote><p>For example, let&#8217;s say that you wanted to &#8220;hook up&#8221; your Unix database to the World Wide Web, to allow people from all over the world to query it. Basically, you need to create a CGI program that the Web daemon will execute to transmit information to the database engine, and receive the results back again and display them to the client. This is an example of a gateway, and this is where CGI, currently version 1.1, got its origins. </p></blockquote>
<h3>Does Bluehost limit CGI script usage?</h3>
<p>No, as long as the CGI scripts are not harmful to the web servers, there&#8217;s no limitation on your CGI scripts usage at Bluehost.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-features/does-bluehost-limits-cgi-script-usage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bluehost Advantages: Fantastico &#038; Simple Scripts</title>
		<link>http://www.reviewbluehost.com/bluehost-features/simplescripts-fantastico-bluehost/</link>
		<comments>http://www.reviewbluehost.com/bluehost-features/simplescripts-fantastico-bluehost/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 19:53:18 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Bluehost Features]]></category>

		<category><![CDATA[autoinstall]]></category>

		<category><![CDATA[blue]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[fantastico]]></category>

		<category><![CDATA[host]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[simple scripts]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=83</guid>
		<description><![CDATA[One big advantage of Bluehost is that they offer two auto-install scripts services instead of one. By hosting with Bluehost, you&#8217;ll get free auto installation services by both Fantastico and Simple Scripts.
 
What&#8217;s Fantastico?

Fantastico is a well known script library that automates the installation of web applications to a website. Generally, Fantastico services are executed [...]]]></description>
			<content:encoded><![CDATA[<p>One big advantage of Bluehost is that they offer two auto-install scripts services instead of one. By hosting with Bluehost, you&#8217;ll get free auto installation services by both Fantastico and Simple Scripts.</p>
<p><img src="http://www.reviewbluehost.com/images/2008/1006-8.jpg" alt="Simple Scripts and Fantastico" /> </p>
<p><strong>What&#8217;s Fantastico?</strong></p>
<div id='floatleft'><img src="http://www.reviewbluehost.com/images/2008/1006-10.jpg" alt="Fantastico" /></div>
<p>Fantastico is a well known script library that automates the installation of web applications to a website. Generally, Fantastico services are executed from the cPanel at Bluehost. At the time of writing, Fantastico&#8217;s officials claims that the auto-install scripts services are installed on ten thousand servers, with a million users worldwide, which would make it the leading product of its type.</p>
<p><strong>Fantastico Library</strong></p>
<table width="100%" border="0" cellspacing="2" cellpadding="3">
<tr>
<td valign="top">
<p><strong>Blogs</strong></p>
<ul>
<li> Wordpress</li>
<li> b2evolution</li>
<li>Nucleus</li>
</ul>
<p><strong>CMS</strong></p>
<ul>
<li>Joomla</li>
<li>GeekLog</li>
<li>Mambo</li>
<li>phpNuke</li>
<li>phpWCMS</li>
<li>phpWebsite</li>
<li>Drupal</li>
<li>Post-Nuke</li>
<li>SiteFrame</li>
<li>Xoops</li>
</ul>
<p><strong>eCommerce</strong></p>
<ul>
<li>CubeCart</li>
<li>ZenCart</li>
<li>OSCommerce</li>
</ul>
</td>
<td valign="top">
<p><strong>Forums</strong></p>
<ul>
<li>phpBB</li>
<li>SMF</li>
</ul>
<p><strong>Image Gallery</strong></p>
<ul>
<li>4Images Gallery </li>
<li>Gallery</li>
<li>Coppermine</li>
</ul>
<p><strong>FAQ</strong></p>
<ul>
<li>FAQ MasterFlex </li>
</ul>
<p><strong>Customer Relationship </strong></p>
<ul>
<li>Crafty Syntax Live </li>
<li>Help Center Live</li>
<li>osTicket</li>
<li>PHP Support Tickets</li>
<li>Support Services Manager </li>
</ul>
</td>
<td valign="top">
<p><strong>Project Management </strong></p>
<ul>
<li>PHProjekt</li>
</ul>
<p><strong>Polls and Surveys </strong></p>
<ul>
<li>Advance Poll </li>
<li>phpESP</li>
</ul>
<p><strong>Site Builder </strong></p>
<ul>
<li>Template Express </li>
</ul>
<p><strong>Wiki</strong></p>
<ul>
<li>PhpWiki</li>
<li>TikiWikiCMS</li>
</ul>
<p><strong>Other Extras</strong></p>
<ul>
<li>Moodle</li>
<li>Open Realty</li>
<li>phpAdsNew</li>
<li>phpForumGenerator</li>
<li>WebCalendar</li>
<li>Template Express </li>
</ul>
</td>
</tr>
</table>
<p><strong>What&#8217;s Simple Script?</strong></p>
<div id='floatleft'><img src="http://www.reviewbluehost.com/images/2008/1006-9.jpg" alt="Simple Scripts" /></div>
<p>SimpleScripts is the new name in town that offer the same services as Fantastico. SimpleScripts officials claim that their service works faster and covers more web scripts in their library. </p>
<p>A huge plus point on SimpleScripts is that the service works perfectly well on cPanel and Plesk; whereas Fantastico works only with cPanel.</p>
<p><strong>Simple Scripts Library</strong></p>
<table width="100%" border="0" cellspacing="2" cellpadding="3">
<tr>
<td valign="top">
<p><strong>Blogs</strong></p>
<ul>
<li> Wordpress</li>
<li> b2evolution</li>
<li> Textpattern</li>
</ul>
<p><strong>Client Management</strong></p>
<ul>
<li>vtigerCRM</li>
</ul>
<p><strong>CMS</strong></p>
<ul>
<li>Joomla</li>
<li>Drupal</li>
<li>MODx</li>
<li>e107</li>
</ul>
<p><strong>eCommerce</strong></p>
<ul>
<li>Magento</li>
<li>OpenCart</li>
<li>ZenCart</li>
<li>OSCommerce</li>
</ul>
</td>
<td valign="top">
<p><strong>Forms</strong></p>
<ul>
<li>LimeSurvey</li>
</ul>
<p><strong>Forums</strong></p>
<ul>
<li>phpBB</li>
<li>PunBB</li>
<li>bbPress</li>
</ul>
<p><strong>Mailing List</strong></p>
<ul>
<li>DadaMail</li>
<li>phpList</li>
<li>poMMo</li>
</ul>
<p><strong>Photo Gallery</strong></p>
<ul>
<li>Zenphoto</li>
<li>Pixelpost</li>
<li>Coppermine</li>
</ul>
</td>
<td valign="top">
<p><strong>Project Management</strong></p>
<ul>
<li>Mantis</li>
</ul>
<p><strong>RSS</strong></p>
<ul>
<li>Gregarius</li>
<li>SImplePie</li>
</ul>
<p><strong>Utilities</strong></p>
<ul>
<li>phpMyFAQ</li>
<li>ExtCalendar</li>
<li>phpFreeChat</li>
</ul>
<p><strong>Webmail</strong></p>
<ul>
<li>Roundcube</li>
</ul>
<p><strong>Wiki</strong></p>
<ul>
<li>PmWiki</li>
<li>WikkaWiki</li>
<li>TikiWikiCMS</li>
</ul>
</td>
</tr>
</table>
<div id='right'><img src="http://www.reviewbluehost.com/images/2008/1006-11.jpg" alt="Scripts library" /></div>
<h3>Advantages of Fantastico and SimpleScripts</h3>
<p>Installation/updating of blog/CMS software like WordPress and Joomla used to be complicated but not with SimpleScripts anymore. </p>
<p>With the smart installer function, SimpleSripts will automatically checks to make sure your web host is compatible upon installation; also, web software updates are done within seconds as SimpleScripts will take care of all the dirty work back scene.</p>
<h3>What&#8217;s good about having both Fantastico and Simple Scripts?</h3>
<p>Both Fantastico and Simple Scripts cover a wide range of open source web application. </p>
<p>By having both services in your web hosting simply means you have more choices. Take CMS for example, Simple Scripts include Joomla, Drupal, MODx, and e107; while for Fantastico: Joomla, GeekLog, Mambo, phpNuke,  phpWCMS, phpWebsite, Drupal, Post-Nuke, SiteFrame, and Xoops - that&#8217;s 12 CMS application for Bluehost customers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-features/simplescripts-fantastico-bluehost/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bluehost Multimedia Features</title>
		<link>http://www.reviewbluehost.com/bluehost-features/bluehost-multimedia-features/</link>
		<comments>http://www.reviewbluehost.com/bluehost-features/bluehost-multimedia-features/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 23:55:38 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
		
		<category><![CDATA[Bluehost Features]]></category>

		<category><![CDATA[bluehost]]></category>

		<category><![CDATA[features]]></category>

		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=94</guid>
		<description><![CDATA[Bluehost hosting support a wide range of multimedia features that other web hosting companies can&#8217;t compare. In fact, Bluehost is my top recommendation to all webmasters who&#8217;re planning to publish multimedia content intensively.

Multimedia Features support by Bluehost
In a quick glance, here&#8217;re the multimedia features supported by Bluehost hosting:

Supports Streaming Video
Supports Streaming Audio
Real Audio &#38; Video [...]]]></description>
			<content:encoded><![CDATA[<p>Bluehost hosting support a wide range of multimedia features that other web hosting companies can&#8217;t compare. In fact, Bluehost is my top recommendation to all webmasters who&#8217;re planning to publish multimedia content intensively.</p>
<p><img class="border" src="http://www.reviewbluehost.com/images/2008/1006-12.jpg" alt="Multimedia entertainment with Bluehost" /></p>
<p><strong>Multimedia Features support by Bluehost</strong></p>
<p>In a quick glance, here&#8217;re the multimedia features supported by Bluehost hosting:</p>
<ul>
<li>Supports Streaming Video</li>
<li>Supports Streaming Audio</li>
<li>Real Audio &amp; Video Support</li>
<li>Flash Support</li>
<li>Macromedia Shockwave</li>
<li>MIDI File Support</li>
</ul>
<p>I would say it&#8217;s pretty comprehensive and I have all the features I need with Bluehost.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-features/bluehost-multimedia-features/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
