<?xml version="1.0"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
		<channel><title>[Support Center] Recently Changed Articles</title><link>http://helpdesk.fastdomain.com/index.php/rss/kb/recent_changes</link><description></description><item><title>Server Side Includes (SSI)</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt; How do I use .html files to run SSI (Server Side Includes)? &lt;/blockquote&gt;
&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt; &lt;b&gt;Apache Handlers&lt;/b&gt;
&lt;p&gt;This is what you would use to specify how to treat file types.  By default, &lt;b&gt;.html&lt;/b&gt; files will not run &lt;b&gt;server side includes&lt;/b&gt;, but &lt;b&gt;.shtml&lt;/b&gt; files will.  To allow these you need to add a new handler for &lt;b&gt;HTML&lt;/b&gt;:&lt;/p&gt;
&lt;p&gt;To allow &lt;b&gt;SSI&lt;/b&gt;, set the handler as '&lt;b&gt;server-parsed&lt;/b&gt;' and the extension as '&lt;b&gt;.html&lt;/b&gt;' (without the quotes).&lt;/p&gt;
&lt;p&gt;This will tell the server to read the &lt;b&gt;.html&lt;/b&gt; files so that you may use these directives in them.&lt;/p&gt;
&lt;p&gt;Follow these rules:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Commands and arguments are in lowercase letters&lt;/li&gt;
	&lt;li&gt;The double quotes around the value are required&lt;/li&gt;
	&lt;li&gt;There is no space until after the command&lt;/li&gt;
	&lt;li&gt;That hash mark (#) is required&lt;/li&gt;
	&lt;li&gt;There is a space after the second double quote, before the second double hyphen (at the end)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here's the format of the &lt;b&gt;SSI&lt;/b&gt;:  &lt;b&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;!--#include file=&amp;quot;included.html&amp;quot; --&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The above format will create an SSI that will include the text found in the file &amp;quot;&lt;b&gt;included.html&lt;/b&gt;&amp;quot;.&lt;/p&gt;
&lt;p&gt;Why Use &amp;quot;&lt;b&gt;file=&amp;quot;&lt;/b&gt;?&lt;/p&gt;
&lt;p&gt;You use &amp;quot;&lt;b&gt;file=&amp;quot;&lt;/b&gt; when the file that will be included is held within the same directory as the file that is calling for it. You can also use the file argument when the file is within a subdirectory of the directory containing the file that is calling for it.&lt;/p&gt;
&lt;p&gt;You would use the &amp;quot;&lt;b&gt;virtual=&amp;quot;&lt;/b&gt; argument if the file you are calling for is located in a position requiring an address starting at the server root. This means the file isn't in the same directory as the page that's calling for it.&lt;/p&gt;
&lt;p&gt;Many times an &amp;quot;&lt;b&gt;includes&lt;/b&gt;&amp;quot; directory is setup that contains all of your include files. This is a popular method of doing things. If so, then you'll use the &lt;b&gt;virtual&lt;/b&gt; argument to attach the &lt;b&gt;SSI&lt;/b&gt; command to the files. Just make a point of giving the command the path from the server root (the domain name). Like so:&lt;/p&gt;
&lt;p&gt;&lt;b&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;!--#include virtual=&amp;quot;/directory/included.html&amp;quot; --&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;That forward slash before the first directory is representative of the domain name (server root for that domain).&lt;/p&gt;
&lt;p&gt;&lt;b&gt;/home#/username/public_html/&lt;/b&gt; is the server root to your Main Site of your hosting account (where username is your cPanel username).&lt;/p&gt;
&lt;p&gt;&lt;b&gt;/home#/username/public_html/addondomain/&lt;/b&gt; is the server root to an addon domain of your hosting account.&lt;/p&gt;
&lt;p&gt;If you have a file located at &lt;b&gt;/home#/username/public_html/addondomain/includes/includedfile.html&lt;/b&gt; that you want to include in &lt;b&gt;http://www.addondomain.com/index.html&lt;/b&gt;, then your &lt;b&gt;SSI&lt;/b&gt; format inside the index.html file would look like this:&lt;/p&gt;
&lt;p&gt;&lt;b&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;!--#include virtual=&amp;quot;/includes/includedfile.html&amp;quot; --&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;By using that leading slash, the server will add the domain name to the front of the address for you.&lt;/p&gt;
&lt;p&gt;Rule of Thumb  Use &amp;quot;&lt;b&gt;file=&amp;quot;&lt;/b&gt; when the included file is within the same directory as the page that wants it. Use &amp;quot;&lt;b&gt;virtual=&amp;quot;&lt;/b&gt; when it isn't.&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Note:&lt;/span&gt;  You need to adjust /home#/ to /home/, /home1/ or home2/ or a different number depending on the home directory your account resides on. To view the home directory for your account simply view the stats column on the main cPanel page of your account and look for the home directory.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Additional Notes:&lt;/b&gt; &lt;br&gt;
By Default, there is an &lt;b&gt;Apache Handler&lt;/b&gt; on the server to parse &lt;b&gt;.shtml&lt;/b&gt; files which already have &lt;b&gt;server side includes&lt;/b&gt; (&lt;b&gt;SSI&lt;/b&gt;) inside of them.&lt;/p&gt;

&lt;p&gt;Please add this line of code to the .htaccess file to run .shtml calls in a regular html file. &lt;/br&gt; AddHandler server-parsed .html &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;b&gt;SSI&lt;/b&gt;s will &lt;b&gt;&lt;em&gt;NOT work&lt;/em&gt;&lt;/b&gt; until the &lt;b&gt;DNS&lt;/b&gt; has propagated to the Fastdomain &lt;b&gt;name servers&lt;/b&gt;.  You will not be able to test them in advance by using something in the format of &lt;b&gt;http://204.130.255.7/~username/test.shtml&lt;/b&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;b&gt;Keywords:&lt;/b&gt; apache handlers ssi execute script include file&lt;/p&gt;</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/257</link><pubDate>Wed, 28 Jul 2010 20:39:10 GMT</pubDate><guid isPermaLink="false">c2b56a95716baeece3bec16604d059f3</guid></item><item><title>Email Setup with Entourage (Mac OSX)</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;How do I add my Fastdomain email account to Entourage (mac)?&lt;/blockquote&gt;
&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;Adding An Account to Entourage (mac):
&lt;p&gt;&lt;a href="http://tutorials.fastdomain.com/entourage/" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Click for a video tutorial about configuring Entourage to work with Fastdomain.&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;Open Entourage and click on Tools and Accounts.&lt;/li&gt;
	&lt;li&gt;Click on the &amp;quot;New&amp;quot; Button then click &amp;quot;mail&amp;quot;.&lt;/li&gt;
	&lt;li&gt;Enter an Account Name to identify this email account in Entourage.&lt;/li&gt;
	&lt;li&gt;Complete the requested personal information.&lt;/li&gt;
	&lt;li&gt;Enter the full email address as the Account ID.&lt;/li&gt;
	&lt;li&gt;Enter the POP or IMAP server as shown in the cPanel -&amp;gt; Email Accounts -&amp;gt; Configure Mail Client.&lt;/li&gt;
	&lt;li&gt;Enter the email account's password.&lt;/li&gt;
	&lt;li&gt;The SMTP server is the same as the incoming mail server&lt;/li&gt;
	&lt;li&gt;Click the button for &amp;quot;advanced sending options&amp;quot;&lt;/li&gt;
	&lt;li&gt;Ensure &amp;quot;SMTP server requires authentication&amp;quot; is checked and use same settings as receiving server is selected.&lt;/li&gt;
	&lt;li&gt;Click OK to return to the main entourage window.&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;b&gt;Keywords:&lt;/b&gt; email Entourage mac apple setup configuration config Microsoft&lt;/p&gt;</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/524</link><pubDate>Wed, 28 Jul 2010 20:31:37 GMT</pubDate><guid isPermaLink="false">72020274c9d5e7649fd8cd8b845494e7</guid></item><item><title>Sending Emails Generates Error: 503 valid RCPT command must precede DATA.</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
Why do I receive error "503 valid RCPT command must precede DATA" when attempting to send email?
&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;This usually is a result of the mail server requiring authentication.
&lt;p&gt;
If you are using &lt;B&gt;Outlook 2003&lt;/B&gt;, here are the steps to enable authentication:
&lt;p&gt;
&lt;p&gt;&lt;a href="http://tutorials.fastdomain.com/outlook2003/" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; ' target='_new'&gt;Watch the Outlook 2003 Tutorial!&lt;/a&gt;&lt;/p&gt;
&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open &lt;B&gt;Outlook&lt;/B&gt;&lt;/li&gt;

&lt;li&gt;Go to &lt;B&gt;Tools | Email Accounts&lt;/B&gt;
&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_email_accounts.jpg"&gt;&lt;/CENTER&gt;&lt;/li&gt;

&lt;li&gt;"&lt;B&gt;View or change existing e-mail accounts&lt;/B&gt;" should already be marked&lt;/p&gt;
&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_change_account.jpg"&gt;&lt;/CENTER&gt;&lt;/li&gt;

&lt;li&gt;Click &lt;B&gt;Next&lt;/B&gt;&lt;/li&gt;

&lt;li&gt;Select the Account with the trouble and click &lt;B&gt;Change&lt;/B&gt;
&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_select_account.jpg"&gt;&lt;/CENTER&gt;&lt;/li&gt;

&lt;li&gt;Click on &lt;B&gt;More Settings&lt;/B&gt;

&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_more_settings_change.jpg"&gt;&lt;/CENTER&gt;&lt;/li&gt;

&lt;li&gt;Click on the &lt;B&gt;Outgoing Server Tab&lt;/B&gt;&lt;/li&gt;

&lt;li&gt;Click "&lt;B&gt;My outgoing server (SMTP) requires authentication&lt;/B&gt;" and make sure "&lt;B&gt;Use same settings as my incoming mail server&lt;/B&gt;" is selected 

&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_outgoing_server.jpg"&gt;&lt;/CENTER&gt;&lt;/li&gt;

&lt;li&gt;Click on the &lt;B&gt;Advanced Tab&lt;/B&gt;&lt;/li&gt;

&lt;li&gt;Set "&lt;B&gt;Outgoing server (SMTP):&lt;/B&gt;" port to &lt;B&gt;26&lt;/B&gt;

&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_advanced.jpg"&gt;&lt;/CENTER&gt;&lt;/li&gt;

&lt;li&gt;&lt;/B&gt; Click &lt;B&gt;OK&lt;/B&gt; and then &lt;B&gt;Test Account Settings&lt;/B&gt;

&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_test_settings.jpg"&gt;&lt;/CENTER&gt;&lt;/li&gt;

&lt;li&gt;If everything is fine and reports no errors,

&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_test_settings_success.jpg"&gt;&lt;/CENTER&gt;

&lt;ul&gt;
&lt;li&gt;Click &lt;b&gt;Close&lt;/b&gt;.&lt;/li&gt;
&lt;li&gt;Click &lt;b&gt;Next&lt;/b&gt;.&lt;/li&gt;
&lt;li&gt;Click &lt;b&gt;Finish&lt;/b&gt;.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;

&lt;li&gt;If an error does occur, it will switch to the Errors tab and display the error&lt;/li&gt;

&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_test_settings_error.jpg"&gt;&lt;/CENTER&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;span style='color: rgb(255, 0, 0);'&gt;Note:&lt;/span&gt; If you are still having errors, make sure your login username is your full email address and that the password is correct.  

&lt;/blockquote&gt;

&lt;b&gt;Keywords:&lt;/b&gt; error valid RCPT unable to connect email send 503</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/218</link><pubDate>Wed, 28 Jul 2010 20:28:23 GMT</pubDate><guid isPermaLink="false">28e225f03d95668288984001f708d46f</guid></item><item><title>Email Setup with Outlook 2003</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
Configuring your email client: Outlook 2003
&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;

&lt;strong&gt;&lt;p&gt;&lt;a href="http://tutorials.fastdomain.com/outlook2003/" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Watch this Video tutorial!&lt;/a&gt;&lt;/strong&gt;

&lt;ol&gt;
&lt;li&gt;Open &lt;b&gt;Outlook 2003.&lt;/b&gt;&lt;/li&gt;
&lt;li&gt;Click the &lt;b&gt;'Tools'&lt;/b&gt; menu, and select &lt;b&gt;'Email Accounts.'&lt;/b&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_email_accounts.jpg"&gt;&lt;/CENTER&gt;&lt;br&gt;
&lt;li&gt;Select &lt;b&gt;'Add a new e-mail account,'&lt;/b&gt; then click &lt;b&gt;'Next.'&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;
&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_add_account.jpg"&gt;&lt;/CENTER&gt;&lt;br&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;Select &lt;b&gt;'IMAP,'&lt;/b&gt; then click &lt;b&gt;'Next.'&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;
&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_IMAP_account.png"&gt;&lt;/CENTER&gt;&lt;br&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;Setup the Account.
&lt;ul&gt;
&lt;li&gt;Enter &lt;b&gt;'Your Name'&lt;/b&gt; as you would like it to appear.&lt;/li&gt;
&lt;li&gt;Enter your &lt;b&gt;'E-mail Address'&lt;/b&gt; in the form of 'username@yourdomain.com' (replace with your e-mail addresss). If you need to create an email address on Fastdomain, &lt;a href="http://helpdesk.fastdomain.com/kb/index.php?x=&amp;mod_id=2&amp;id=151" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Click Here&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Enter 'mail.yourdomain.com' (replace yourdomain.com with your domain) in the &lt;b&gt;'Incoming Mail Server'&lt;/b&gt; (IMAP) field.&lt;/li&gt;
&lt;li&gt;Enter 'mail.yourdomain.com' (replace yourdomain.com with your domain) in the &lt;b&gt;'Outgoing Mail Server'&lt;/b&gt; (SMTP) field.&lt;/li&gt;
&lt;li&gt;Enter your full e-mail address (in the form of username@yourdomain.com) in the &lt;b&gt;'User Name'&lt;/b&gt; field.&lt;/li&gt;
&lt;li&gt;Enter your password (for the e-mail account, not the password you use to log into the Control Panel) in the &lt;b&gt;'Password'&lt;/b&gt; field.&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_more_settings.jpg"&gt;&lt;/CENTER&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;Click &lt;b&gt;'More Settings.'&lt;/b&gt;&lt;/li&gt;
&lt;li&gt;Click on the &lt;b&gt;'Outgoing Server'&lt;/b&gt; tab.&lt;/li&gt;
&lt;li&gt;Put a check next to &lt;b&gt;'My outgoing server (SMTP) requires authentication.'&lt;/b&gt; Make sure that &lt;b&gt;'Use same settings as my incoming mail server'&lt;/b&gt; is selected.&lt;br /&gt;&lt;br /&gt;
&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_outgoing_server.jpg"&gt;&lt;/CENTER&gt;&lt;br&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;Click the &lt;b&gt;'Advanced'&lt;/b&gt; tab.&lt;/li&gt;
&lt;li&gt;Change the &lt;b&gt;'SMTP'&lt;/b&gt; port to be &lt;b&gt;26&lt;/b&gt;.&lt;/li&gt;
&lt;br /&gt;
&lt;CENTER&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/Outlook03/Outlook03_advanced.jpg"&gt;&lt;/CENTER&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;Click &lt;b&gt;'OK.'&lt;/b&gt;&lt;/li&gt;
&lt;li&gt;Click &lt;b&gt;'Next.'&lt;/b&gt;&lt;/li&gt;
&lt;li&gt;Click &lt;b&gt;'Finish.'&lt;/b&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/p&gt;

&lt;strong&gt;That's it, you're done!&lt;/strong&gt;

&lt;p&gt;If you have trouble sending mail, please &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000140" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Click Here &lt;/a&gt; to view our article on how to change the email SMTP port from 25 to 26.&lt;/p&gt;

&lt;/blockquote&gt;

&lt;strong&gt;Keywords:&lt;/strong&gt; outlook 2003 setup email configure configuration e-mail pop imap</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/390</link><pubDate>Wed, 28 Jul 2010 20:27:10 GMT</pubDate><guid isPermaLink="false">8d956e5b3b28847821aba1cb14a4c8ca</guid></item><item><title>Wordpress not working with Temporary URL</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
My Domain name isn't resolving to my new account yet, so I have to visit my WordPress install with a url like http://70.103.189.86/~username/blog/. &lt;/p&gt;
&lt;p&gt;
I don't get any images or themes to show up, just the text. I also can't log into my Administrator Panel, because logging in wants to take me to a url with my domain name in it.&lt;/p&gt;
&lt;p&gt;
How can I change my settings to allow me to view my WordPress Blog before my domain name resolves?&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
	&lt;div id="main-content"&gt;
			&lt;div align="left"&gt;
&lt;table border="0" style="border-collapse: collapse" width="675" bordercolor="#000000" cellpadding="5"&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;h2&gt;WordPress - Changing the Website URL&lt;/h2&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;There are a few cases where you might need to go in and change a &lt;b&gt;URL&lt;/b&gt; in the &lt;b&gt;WordPress&lt;/b&gt; database.&lt;/p&gt;
			&lt;ul&gt;
			&lt;li&gt;My &lt;b&gt;domain name&lt;/b&gt; isn't resolving to my new account yet, so I have to visit my &lt;b&gt;WordPress&lt;/b&gt; install with a &lt;b&gt;URL&lt;/b&gt; like &lt;b&gt;http://70.103.189.86/~username/blog/&lt;/b&gt;. I don't get any images or themes to show up, just the text.&lt;/li&gt;
			&lt;li&gt;I also can't log into my &lt;b&gt;Administrator Panel&lt;/b&gt;, because logging in wants to take me to a &lt;b&gt;URL&lt;/b&gt; with my &lt;b&gt;domain name&lt;/b&gt; in it. How can I change my settings to allow me to view my &lt;b&gt;WordPress&lt;/b&gt; blog before my domain name resolves?&lt;/p&gt;&lt;/li&gt;
			&lt;li&gt;The &lt;b&gt;URL&lt;/b&gt; appears like &lt;b&gt;http://www.domain.com/addondomain/&lt;/b&gt; and there are no redirects in the &lt;b&gt;.htaccess&lt;/b&gt;&lt;/li&gt;
			&lt;li&gt;If WordPress was installed to an addon domain, then the database &lt;b&gt;URL&lt;/b&gt; will need to be changed to something like &lt;b&gt;http://www.addondomain.com&lt;/b&gt;&lt;/li&gt;
			&lt;/ul&gt;
			&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;This requires a little &lt;b&gt;MySQL&lt;/b&gt; trick. It's two simple edits in the database.&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;1.&lt;/b&gt; First, make sure that your &lt;b&gt;WordPress&lt;/b&gt; installation is complete, and you know what the &lt;b&gt;name&lt;/b&gt; of the database is. If &lt;b&gt;Fantastico&lt;/b&gt; installed &lt;b&gt;WordPress&lt;/b&gt; for you, it's likely the &lt;b&gt;name&lt;/b&gt; of the database is something like:&lt;/p&gt;
			&lt;ul&gt;
			&lt;li&gt;&lt;b&gt;username_wrdp1&lt;/b&gt;&lt;/li&gt;
			&lt;p&gt;or&lt;/p&gt;
			&lt;li&gt;&lt;b&gt;username_wrdp2&lt;/b&gt;&lt;/li&gt;
			&lt;p&gt;and so forth.&lt;/p&gt;
			&lt;/ul&gt;
			&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;If &lt;b&gt;Simple Scripts&lt;/b&gt; installed &lt;b&gt;WordPress&lt;/b&gt; for you, it's likely the name of the database is something like:&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;
			&lt;ul&gt;
			&lt;li&gt;&lt;b&gt;username_ss4868&lt;/b&gt;&lt;/li&gt;
			&lt;/ul&gt;
			&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;2.&lt;/b&gt; If you don't know the &lt;b&gt;database name&lt;/b&gt;, you can use the &lt;b&gt;File Manager&lt;/b&gt; to look inside the &lt;b&gt;wp-config.php&lt;/b&gt; file to find out its name.&lt;/p&gt;&lt;/td&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/wp-config.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;3.&lt;/b&gt; Right click &lt;b&gt;wp-config.php&lt;/b&gt; and select &lt;b&gt;Code Edit&lt;/b&gt;.  You can now see the &lt;b&gt;database name&lt;/b&gt;.&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/wp_db_name.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/wp_db_name_ss.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;4.&lt;/b&gt; Next, log into your &lt;b&gt;cPanel&lt;/b&gt;. Look for the &lt;b&gt;Databases&lt;/b&gt; section.&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/databases.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;5.&lt;/b&gt; Select the icon named &lt;b&gt;phpMyAdmin&lt;/b&gt; (looks like a sailboat.)&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/phpMyAdmin.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;6.&lt;/b&gt; Once here, you need to select the &lt;b&gt;database name&lt;/b&gt; on the left. (i.e. "&lt;b&gt;_wrdp1&lt;/b&gt;")&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;7.&lt;/b&gt; This will display the names of the Tables to the right. Click on the one called "&lt;b&gt;options&lt;/b&gt;".&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/wp_options.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;

			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;8.&lt;/b&gt; Now there are icons to the right of the tables. The First one is called "&lt;b&gt;Browse&lt;/b&gt;". Click "&lt;b&gt;Browse&lt;/b&gt;".&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;9.&lt;/b&gt; Next, the database entries are listed in columns and rows. You want to select the pencil icon (for &lt;b&gt;Edit&lt;/b&gt;) on the left for the VERY TOP row (option_name is "&lt;b&gt;site url&lt;/b&gt;")&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/siteurl.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;10.&lt;/b&gt; Once you've clicked the pencil icon, you will see your domain name listed something like this:&lt;/p&gt;
			&lt;ul&gt;
			&lt;li&gt;&lt;b&gt;http://domain.com/blog&lt;/b&gt;&lt;/li&gt;
			&lt;/ul&gt;
			&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/siteurl_edit.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;11.&lt;/b&gt; You want to change that to something like this:&lt;/p&gt;
			&lt;ul&gt;
			&lt;li&gt;&lt;b&gt;http://70.103.189.86/~username/blog/&lt;/b&gt;&lt;/li&gt;
			&lt;/ul&gt;
			&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/siteurl_temp_url.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;12.&lt;/b&gt; This step is &lt;b&gt;crucial&lt;/b&gt; you don't make a mistake. Please take a moment to &lt;b&gt;verify&lt;/&gt; the &lt;b&gt;URL&lt;/b&gt; you are typing in here is correct, or you won't see any change.&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;13.&lt;/b&gt; Once you've changed the &lt;b&gt;URL&lt;/b&gt;, down at the bottom there is a "&lt;b&gt;Go&lt;/b&gt;" button. Select the "&lt;b&gt;Go&lt;/b&gt;" button.&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;14.&lt;/b&gt; This will save your &lt;b&gt;URL&lt;/b&gt; change and should show a screen like this:&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/next_page.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;
			&lt;ol&gt;
			&lt;li&gt;Select the "&lt;b&gt;&gt;&lt;/b&gt;" button to go to the next page&lt;/li&gt;
			&lt;li&gt;Look for the option_name &lt;b&gt;home&lt;/b&gt;&lt;/li&gt;
			&lt;/ol&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;CENTER&gt;&lt;p class="wh2"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/bh/wp/homeurl.jpg" /&gt;&lt;/p&gt;&lt;/CENTER&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;15.&lt;/b&gt; Select the pencil icon for &lt;b&gt;Edit&lt;/b&gt;.&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;16.&lt;/b&gt; Make the same &lt;b&gt;URL&lt;/b&gt; change here as you did for &lt;b&gt;siteurl&lt;/b&gt; earlier.  And click the "&lt;b&gt;Go&lt;/b&gt;" button.&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;17.&lt;/b&gt; Visit your &lt;b&gt;Temporary URL&lt;/b&gt; (http://70.103.189.86/~username/blog/) for your blog, and all the images will show up just fine.&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;&lt;p&gt;&lt;b&gt;***Follow-up&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
			&lt;td&gt;
			&lt;ul&gt;
			&lt;li&gt;Once you've changed your &lt;b&gt;name servers&lt;/b&gt; so your domain name resolves to your account, you don't have to go back into &lt;b&gt;phpMyAdmin&lt;/b&gt; to make the change again.&lt;/li&gt;
			&lt;li&gt;Simply log into your &lt;b&gt;WordPress Admin Panel&lt;/b&gt;, there is a tab for "&lt;b&gt;Options&lt;/b&gt;".&lt;br /&gt;
			 In there you will see &lt;b&gt;WordPress address (URI)&lt;/b&gt;:&lt;br /&gt;
  It is set to your &lt;b&gt;Temporary URL&lt;/b&gt; (http://70.103.189.86/~username/blog/). Change this to your &lt;b&gt;domain name&lt;/b&gt; with any folders required, and you're back to normal. &lt;/li&gt;
  			&lt;/ul&gt;
  			&lt;/td&gt;
  			&lt;/tr&gt;
  			&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;




&lt;/blockquote&gt;&lt;b&gt;Keywords:&lt;/b&gt; word press wordpress temp temporary wrong url ip domain resolve resolving blog</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/279</link><pubDate>Tue, 27 Jul 2010 14:06:49 GMT</pubDate><guid isPermaLink="false">6b4588d892cf17b05476f8bb748af7cb</guid></item><item><title>Malware</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt; 
Malware.  What is this and how did it get there?
&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;

Malware on your account that you did not put there is indicative that an attacker has found and exploited a vulnerability in a script on your account. Here are a few sites to assist you with securing your code:
&lt;ul&gt;

  &lt;li&gt;&lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000511" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;'&gt;Fastdomain.com - Basic Site Security Checklist&lt;/a&gt;&lt;/li&gt;

  &lt;li&gt;&lt;a href="http://www.google.com/support/webmasters/bin/topic.py?hl=en&amp;topic=25531" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;" target="new"&gt;Google.com - Webmaster Tools Help&lt;/a&gt;&lt;/li&gt;

  &lt;li&gt;&lt;a href="http://www.tech-faq.com/source-code-security-vulnerabilities.shtml" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;TopBits.com - Finding Security Vulnerability&lt;/a&gt;&lt;/li&gt;

  &lt;li&gt;&lt;a href="http://www.fortify.com/landing/extra/ppc_source_code.html" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;Fority.com - Source Code Analysis&lt;/a&gt;&lt;/li&gt;

  &lt;li&gt;&lt;a href="http://sectools.org/" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;SecTools.com - Network Security Tools&lt;/a&gt;&lt;/li&gt;

  &lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Code_injection" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;Wikipedia.com - Code Injection&lt;/a&gt;&lt;/li&gt;

&lt;/ul&gt;

If you do not find these useful, you can run a &lt;a href="http://google.com" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;Google.com&lt;/a&gt; search for code security, PHP security or HTML security.

&lt;/blockquote&gt;

&lt;strong&gt;Keywords:&lt;/strong&gt; malware


</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/578</link><pubDate>Mon, 26 Jul 2010 14:23:53 GMT</pubDate><guid isPermaLink="false">022334e267379391fa1b7497d44e67c9</guid></item><item><title>CPU Throttling/Performance Issues</title><description>	&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
Why does my site get throttled, or why did my account get suspended for performance?
&lt;/blockquote&gt;
&lt;h2&gt;Solution:&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;Throttling means that our new proprietary CPU Throttling System has automatically tied your account to its own dedicated core temporarily to keep your account from dominating too much CPU time. Throttling for less than 500 seconds in any given hour will not usually negatively affect your site's performance. Some accounts are still using too much process time like Ftp, DDoS or Mysql even with our Throttling System - in these cases, the admins may suspend the account until the scripts are optimized.&lt;br&gt;
&lt;br&gt;
Throttling or Suspensions are usually caused by:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Queries that return inordinately large dataset results (eg: 100,000 records) in the Response object of a round trip to the server.&lt;/li&gt;
	&lt;li&gt;Queries that take too long to execute due to heavy aggregation commands like SUM, COUNT over very large datasets without proper indexing.&lt;/li&gt;
	&lt;li&gt;Queries that are doing complex unoptimized nested Joins.&lt;/li&gt;
	&lt;li&gt;Queries that execute large batch commands like INSERTS, UPDATES, OR DELETES - these types of sql calls are 10 times more expensive and resource intensive than the SELECT query command.&lt;/li&gt;
	&lt;li&gt;Poorly coded Php scripts such as multiple nested loops, or infinite loops.&lt;/li&gt;
	&lt;li&gt;Themes, Addons, or Plugins (if you just added a new component to your script, you may want to remove it to see if that new component caused your site to suddenly perform slowly)&lt;/li&gt;
	&lt;li&gt;DDoS Attacks&lt;/li&gt;
	&lt;li&gt;Any process that uses too much RAM, like a rogue cron job&lt;/li&gt;
	&lt;li&gt;Too many simultaneous connections like Downloads, FTP, IMAP, or PHP&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;
&lt;strong&gt;How can you troubleshoot this?&lt;/strong&gt; &lt;/p&gt;
&lt;p&gt;Within your Bluehost cPanel under the logs category you will find the "CPU THROTTLING" icon. This tool will show you exactly how many seconds your account has been throttled during the past 24 hours. This data is valuable when analyzed along with other logs such as MySQL Slow Queries.&lt;/p&gt;
&lt;p&gt;You can access your MySQL Slow Queries log to help you determine which of your queries or scripts are unoptimized. Inside your "mysql_slow_queries" folder, you will see a list of files that you can open which will show you which queries are executing slowly. Login into your cPanel. Look for the section called "Files" and click the icon called "File Manager". Start in the "Home Directory", choose Show Hidden Files, and then click Go. Once in the File Manager, look on the right side for a folder called "tmp" and navigate into that folder. Once inside the Tmp folder, you should see a folder called "mysql_slow_queries". Navigate inside that folder.&lt;br&gt;
&lt;br&gt;
You should now look for the files with recent dates and right-click on one of those files and choose "Code Edit". In the new window that comes up, you will see the log details. Look for the logs where the Query_time is over 2 seconds. Queries that take over 2 seconds to execute usually need to be refactored.&lt;br&gt;
&lt;br&gt;
These logs are generated to help you troubleshoot your database programming queries that are not optimized. Once you have found the query and database causing the problem, you can then optimize the query or queries by re-writing the query, creating an appropriate Database Index, repairing any damaged databases, etc. If you are not familiar with database programming, you may need to seek help from your web developer/programmer.&lt;br&gt;
&lt;br&gt;
***** WE STRONGLY RECOMMEND THAT YOU BACKUP YOUR DATABASES BEFORE WORKING ON THEM *****&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;What are some Simple Steps you can perform to try to fix your database issues?&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;You can run a repair on all your databases. In the cPanel, click on the MySQL Databases icon and in the Repair section, choose a database to repair. You can safely run a Check and Repair routine on all of your databases.&lt;/li&gt;
	&lt;li&gt;You can try to optimize all of your databases. In the cPanel, click the PHP MyAdmin icon. On the next screen, choose a database name from the left side column. When the tables appear on the main screen, scroll to the bottom and click the link "Select All". Next, use the drop-down menu, and on the bottom, choose the "Optimize" option. You can do this optimize routine to all of the tables in all of your databases.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;br&gt;
Performing these two simple steps will not harm your important data as these steps above are non-intrusive maintenance routines. As such, they may not fix the core issue as well. For instance, if you have severe data corruption, it can cause your queries to time out before they fully execute. Data corruption can be difficult to detect, and repair. Database corruption can occur if a database operation did not completely succeed. Partial data is a form of corruption which can break Referential Integrity, causing your web application to fail also. In short, the free Repair or Optimization routines that I just mentioned may not be sufficient to fix severe database corruption.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;What are some Advanced Steps that you can perform on your databases?&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;You can download your websites onto your own local machine and create a local web development environment to test your sites. You can then set Break Points in your scripts and watch your computer's cpu performance as you Step Through your Stack and Heap. You should try to stress test your queries as well to see how they respond under a load.&lt;/li&gt;
	&lt;li&gt;You can empty tables that are merely statistic tables. When viewing your tables, you can see how many entries each one has and how many KB or MB it is using. Sometimes tables get thousands or millions of entries that just log statistical type of data, like what searches people have done on your site or what people have logged in, etc. If you have very large statistic tables, it may help optimize your site if you remove the records or rows within those tables. Warning: you should always consult the vendor of your scripts, or your web developer, before you attempt this - deleting any data in your database can potentially break your web application.&lt;/li&gt;
	&lt;li&gt;You can refactor your scripts so that heavy duty aggregation or crunching is not all being done server-side. For example, you can rewrite your scripts so that they use Ajax calls, where your scripts are doing some of the cpu crunching in your javascript. This way, you are leveraging your client's cpu time instead of just your server's.&lt;/li&gt;
	&lt;li&gt;You can make a ticket to our Site/Script Compatibility Team for some guidance and tips to fix your scripting or database issues. (They will not program for you, but they can usually point you in the correct direction. See &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000433" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;'&gt;Scripting Policy&lt;/a&gt;).&lt;/li&gt;
	&lt;li&gt;You can ask us to restore a system backup if we have one on file for you. The system backup is a snapshot of exactly how your site performed on a certain date. Doing a restore will not guarantee that your sites will be fixed, as your core issue may have existed at the time our System Backup Tool created your backup. Rolling back to a system backup will restore all of your sites, and not just a portion. Feel free to contact us to see if we have a System Backup available.&lt;/li&gt;
	&lt;li&gt;You can also ask us to do a full Reset of your account. This will delete everything on your account like it was on day one when you first signed up with us. Your account would be empty, containing no files, databases, email accounts etc. This would ensure a fresh start so that you can re-install all of your scripts with clean installations and clean databases.&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;b&gt;Keywords:&lt;/b&gt;CPU throttling mysql slow query script optimize database&lt;/p&gt;</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/564</link><pubDate>Mon, 26 Jul 2010 13:55:17 GMT</pubDate><guid isPermaLink="false">a62114b85e2b2f86b22485426d50933a</guid></item><item><title>Executing PHP code within an HTML document</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt; Executing php code within a HTML document &lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
Executing php code within a HTML document is easy.  Simply add this line to your main .htaccess file:&lt;/p&gt;
&lt;pre&gt;
  AddHandler application/x-httpd-php5 .html .php .htm
&lt;/pre&gt;
&lt;p&gt;Then, you can insert code into your .html pages like this:&lt;/p&gt;

&lt;div class="smallfont"
style="font-family: verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 11px; line-height: normal; font-size-adjust: none; font-stretch: normal; margin-bottom: 2px;"&gt;Code:&lt;/div&gt;
&lt;pre class="alt2" dir="ltr" style="border-style: inset; border-width: 1px; margin: 0px; padding: 6px; overflow: auto; background-color: rgb(225, 228, 242); color: rgb(0, 0, 0); width: 520px; height: 114px; text-align: left;"&gt;  &lt;&amp;#063;php
    echo "hello world"
  &amp;#063;&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;Keywords:&lt;/strong&gt; php handler mime addtype sethandler addhandler parse&lt;/p&gt;</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/143</link><pubDate>Sun, 25 Jul 2010 12:47:09 GMT</pubDate><guid isPermaLink="false">f1f5c6fd4c0622ec8d9ecfb4a6b3e127</guid></item><item><title>Adding Favorites icon (Favicon) to site</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;How can I add a favorites icon (favicon) to my site.&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
&lt;strong&gt;Step 1 - Find an Image&lt;/strong&gt;
 &lt;ol&gt;
    &lt;li&gt; Most web sites use a smaller version of their logo or similar. &lt;/li&gt;&lt;br&gt;
  &lt;li&gt;The main consideration is to keep your icon simple and clear at such a small size.&lt;br&gt; &amp;nbsp;&lt;/li&gt;
  &lt;li&gt;Most browser interfaces (the top tool bar containing the browser buttons) can display 256 colors, but it's best to use the Windows 16 colors. &lt;/li&gt;
  &lt;/ol&gt;

&lt;strong&gt;Step 2 - Covert the Picture to an Icon&lt;/strong&gt;

&lt;ol&gt;
  &lt;li&gt;We recommend using DynamicDrive (&lt;a href="http://tools.dynamicdrive.com/favicon/" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; ' target='_new'&gt;www.DynamicDrive.com&lt;/a&gt;).&lt;/li&gt;
  
&lt;/ol&gt;

&lt;strong&gt;Step 3 - Including the icon in your web pages&lt;/strong&gt;
&lt;ol&gt;
  &lt;li&gt;Publish the icon into the root directory of your web site.
	&lt;p&gt;
	This is the location Internet Explorer will automatically look for your favicon when a visitor bookmarks your site. &lt;/li&gt;
  &lt;li&gt;Help the browser find your icon by including in the html, within the &amp;lt;head&amp;gt; tag, the following: &amp;lt;link rel="shortcut icon" href="http://www.your-web-site-name.com/favicon.ico"&amp;gt;.

        &lt;p&gt;Preferably nearer the closing &amp;lt;/head&amp;gt; tag, because more important information, such as your &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000105" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;meta tags&lt;/a&gt;, should come earlier. &lt;/li&gt;

  &lt;li&gt;Save your web page and publish it.

        &lt;p&gt;If you want to create different icons for different pages, simply call them something other than favicon.ico, but still retaining the .ico suffix.
        &lt;p&gt;Link to them in your pages in the same way as above, just changing the href location for the different icons.
  &lt;/li&gt;
&lt;/ol&gt;

&lt;strong&gt;Step 4 - Testing your Icon&lt;/strong&gt;
&lt;ol&gt;
  &lt;li&gt;Open Internet Explorer (version 5 or above) and bookmark your page.&lt;br&gt; &amp;nbsp;&lt;/li&gt;
  &lt;li&gt;Determine if your icon stands out from other bookmarked web sites  with favorites icons.&lt;br&gt; &amp;nbsp;&lt;/li&gt;
  &lt;li&gt;If necessary, re-edit your icon and publish it again.
          &lt;p&gt;However, you will need to remove the bookmark (Favorites &gt; Organize Favorites, select your bookmark and click "Delete") and delete your temporary Internet files and page history  (Tools &gt; Internet Options, tab "General" and click "Delete Files" under "Temporary Internet Files" and click "Clear History" under "History").
          &lt;p&gt;This may take a few minutes if you haven't done this recently.
  &lt;/li&gt;

  &lt;li&gt;Close your browser and re-open it, bookmark your page again to check the new version of your icon.&lt;br&gt; &amp;nbsp;&lt;/li&gt;
  &lt;li&gt;Repeat until you're satisfied your icon is suitably eye-catching. &lt;/li&gt;
&lt;/ol&gt;

&lt;/blockquote&gt;
&lt;strong&gt;Keywords:&lt;/strong&gt; favorites Favorites favorite Favorite icon Icon</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/104</link><pubDate>Tue, 20 Jul 2010 19:00:00 GMT</pubDate><guid isPermaLink="false">98f8d863207faf21c78bb453571d84ca</guid></item><item><title>phpMotion</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
How to Install phpMotion&lt;/blockquote&gt;  

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
Sorry, this cannot be installed.  The phpMotion script requires FFMPEG module or flvtools.  These are too processor intensive for a shared hosting environment.  We recommend finding a host that provides VPS or dedicated servers for any video encoding utilities.
&lt;/blockquote&gt;

&lt;strong&gt;Keywords:&lt;/strong&gt; phpmotion video</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/587</link><pubDate>Tue, 20 Jul 2010 15:56:50 GMT</pubDate><guid isPermaLink="false">537b5a13329df6695bf9835debc9fa59</guid></item><item><title>phpShield</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
How to Install phpSHIELD Loaders
&lt;/blockquote&gt;  

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
Sorry, this cannot be installed.  You must have root access to your server in order to copy the phpshield.x.x.lin to the extension_dir which is &lt;em&gt;/usr/lib64/php/modules&lt;/em&gt;. If you have this access, it means you have a VPS, dedicated server or are running a server in your home.  Since Fastdomain.com offers no root access in its shared hosting plan, you are not able to install phpSHIELD.

&lt;/blockquote&gt;

&lt;strong&gt;Keywords:&lt;/strong&gt; phpshield phpmotion php.ini</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/586</link><pubDate>Tue, 20 Jul 2010 13:06:54 GMT</pubDate><guid isPermaLink="false">f987d582ec2ecfc41edca9fb65a8ce9c</guid></item><item><title>Django Troubleshooting</title><description>&lt;head&gt;
&lt;link href="http://www.etrainingteam.com/cerb4-rst.css" rel="stylesheet" type="text/css"&gt;

&lt;body&gt;

&lt;div class="topsection section" id="problem"&gt; 
&lt;h1&gt;Problem&lt;/h1&gt; 
&lt;p&gt;While trying to deploy my Django application, I am getting error pages.&lt;/p&gt; 
&lt;/div&gt; 
&lt;div class="topsection section" id="solution"&gt; 
&lt;h1&gt;Solution&lt;/h1&gt; 
&lt;p&gt;There are a few basic troubleshooting steps that can be done to diagnose what's
wrong. Visiting the site through a web browser is one diagnostic method. 500
errors that occur will have information in the main &lt;a class="reference external" href="http://helpdesk.fastdomain.com/index.php/kb/article/562"&gt;error log&lt;/a&gt;. Another thing to
test is the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file by running it directly via shell, if you have
&lt;a class="reference external" href="http://helpdesk.fastdomain.com/index.php/kb/article/000180"&gt;SSH access enabled&lt;/a&gt;. Each test can
help you determine what the problem is.&lt;/p&gt; 
&lt;div class="section" id="problems-with-htaccess"&gt; 
&lt;h2&gt;Problems with .htaccess&lt;/h2&gt; 
&lt;p&gt;When visiting in a browser, if there is a 500 error happening with the generic
error message &amp;quot;Internal Server Error - The server encountered an internal error
or misconfiguration and was unable to complete your request.&amp;quot;, then it may be a
&lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;.htaccess&lt;/span&gt;&lt;/tt&gt; error. The error log will confirm it is a &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;.htaccess&lt;/span&gt;&lt;/tt&gt; problem
if it references the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;.htaccess&lt;/span&gt;&lt;/tt&gt; file when the error happens. For example, a
typo in RewriteRule may result in an error that looks similar to the
following:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
/home/username/public_html/.htaccess: Invalid command 'RewrireRule', perhaps misspelled or defined by a module not included in the server configuration
&lt;/pre&gt; 
&lt;p&gt;Do a quick check over your &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;.htaccess&lt;/span&gt;&lt;/tt&gt; file and make sure there are no syntax
errors, and try again. Once you're fairly certain it is no longer the
&lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;.htaccess&lt;/span&gt;&lt;/tt&gt; file that is causing the problem, and you're still having
trouble, move on. In some cases, fixing the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;.htaccess&lt;/span&gt;&lt;/tt&gt; file may be the only
thing that needs to be done.&lt;/p&gt; 
&lt;/div&gt; 
&lt;div class="section" id="problems-with-mysite-fcgi"&gt; 
&lt;h2&gt;Problems with mysite.fcgi&lt;/h2&gt; 
&lt;p&gt;If loading the web browser displays a 500 error that is similar to &amp;quot;500 Server
Error A misconfiguration on the server caused a hiccup. Check the server logs,
fix the problem, then try again.&amp;quot;, then you may have a problem with the
&lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; script. The error logs will confirm a problem with a
&lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file. There are various errors and error messages that you may
come across. Fixing one error could make another error appear. Fix each problem
as it comes until you have a working installation.&lt;/p&gt; 
&lt;div class="section" id="file-permissions"&gt; 
&lt;h3&gt;File Permissions&lt;/h3&gt; 
&lt;p&gt;The following is an error log snippet for when the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file is not
executable:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
[Thu May 27 14:28:35 2010] [notice] mod_fcgid: process /home/username/public_html/mysite.fcgi(14904) exit(communication error), terminated by calling exit(), return code: 121
suexec policy violation: see suexec log for more details
[Thu May 27 14:28:35 2010] [warn] (104)Connection reset by peer: mod_fcgid: read data from fastcgi server error.
[Thu May 27 14:28:35 2010] [error] [client 224.0.0.1] Premature end of script headers: mysite.fcgi
&lt;/pre&gt; 
&lt;p&gt;Make sure that the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file has permissions set to 755. Permissions
of 777 will not work in our environment-- Apache recognizes 777 as unsafe and
treats it like it has no permissions.&lt;/p&gt; 
&lt;/div&gt; 
&lt;div class="section" id="bad-interpretor"&gt; 
&lt;h3&gt;Bad Interpretor&lt;/h3&gt; 
&lt;p&gt;Once the file is executable, if it still doesn't work, then there is likely a
different problem with the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file itself. A possible error log
message when getting a 500 error related to the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file is the
following:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
[Thu May 27 15:19:49 2010] [warn] (104)Connection reset by peer: mod_fcgid: read data from fastcgi server error.
[Thu May 27 15:19:49 2010] [error] [client 224.0.0.1] Premature end of script headers: mysite.fcgi
[Thu May 27 15:19:55 2010] [notice] mod_fcgid: process /home/username/public_html/mysite.fcgi(10502) exit(communication error), terminated by calling exit(), return code: 1
&lt;/pre&gt; 
&lt;p&gt;Instead of bad permissions, in this case the problem is a bad interpretor line.
This can be confirmed by SSHing into your account, and attempting to run the
&lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file directly. Before manually running, make sure you run the
command &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;unset&lt;/span&gt; &lt;span class="pre"&gt;PYTHONPATH&lt;/span&gt;&lt;/tt&gt; first, to more closely duplicate the environment
the script is run in through Apache.:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
$ unset PYTHONPATH
$ ./mysite.fcgi
-bash: ./mysite.fcgi: /usr/bin/python^M: bad interpreter: No such file or directory
&lt;/pre&gt; 
&lt;p&gt;In this case, the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file was uploaded by FTP in binary mode
instead of ASCII mode from a computer running Windows. As with any CGI or shell
script that includes an interpretor line at the top, it must be uploaded in
ascii mode, or converted to the unix-style newline format if it isn't already
using that.&lt;/p&gt; 
&lt;p&gt;The bad interpreter error can also happen if the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;#!&lt;/span&gt;&lt;/tt&gt; line points to a
location that doesn't exist. For example, &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;#!/foo/bar/m/python&lt;/span&gt;&lt;/tt&gt; in which case
the error when running &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; would look like this:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
$ ./mysite.fcgi
-bash: ./mysite.fcgi: /foo/bar/m/python: bad interpreter: No such file or directory
&lt;/pre&gt; 
&lt;/div&gt; 
&lt;div class="section" id="python-errors-and-exceptions"&gt; 
&lt;h3&gt;Python Errors and Exceptions&lt;/h3&gt; 
&lt;p&gt;If at this point the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;.htaccess&lt;/span&gt;&lt;/tt&gt; file, the permissions of &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt;,
and the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;#!&lt;/span&gt;&lt;/tt&gt; line in &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; are all good, and you are still getting
an error, it is likely an error occurring in the Python code, including
unhandled exceptions and syntax errors. This still produces a 500 error in the
browser, and the error log will look similar to the following:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
Traceback (most recent call last):
  File &amp;quot;/home/username/public_html/mysite.fcgi&amp;quot;, line 13, in ?
    from django.core.servers.fastcgi import runfastcgi
ImportError: No module named django.core.servers.fastcgi
[Thu May 27 16:02:56 2010] [warn] (104)Connection reset by peer: mod_fcgid: read data from fastcgi server error.
[Thu May 27 16:02:56 2010] [error] [client 224.0.0.1] Premature end of script headers: mysite.fcgi
[Thu May 27 16:02:58 2010] [notice] mod_fcgid: process /home/username/public_html/mysite.fcgi(30339) exit(communication error), terminated by calling exit(), return code: 1
&lt;/pre&gt; 
&lt;p&gt;The same &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file, when run via SSH (after running &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;unset&lt;/span&gt; 
&lt;span class="pre"&gt;PYTHONPATH&lt;/span&gt;&lt;/tt&gt;) produces the following output:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
Traceback (most recent call last):
  File &amp;quot;/home/username/public_html/mysite.fcgi&amp;quot;, line 13, in ?
    from django.core.servers.fastcgi import runfastcgi
ImportError: No module named django.core.servers.fastcgi
&lt;/pre&gt; 
&lt;p&gt;This particular ImportError means that the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;django&lt;/span&gt;&lt;/tt&gt; package isn't found by
Python when the script is run. Make sure that the directory holding the
&lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;django&lt;/span&gt;&lt;/tt&gt; package has been added to &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;sys.path&lt;/span&gt;&lt;/tt&gt; in &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt;. If your
django installation is located at &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;/home/username/.local/lib/python/django&lt;/span&gt;&lt;/tt&gt; 
then you'll need to have &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;sys.path.insert(0,&lt;/span&gt; &lt;span class="pre"&gt;&amp;quot;/home/username/.local/lib/python&amp;quot;)&lt;/span&gt;&lt;/tt&gt; 
in &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt;. If it is in a different directory, it too will need to be
inserted to the sys.path list. You can add multiple locations to &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;sys.path&lt;/span&gt;&lt;/tt&gt; 
if needed.&lt;/p&gt; 
&lt;p&gt;An example of a syntax error in the error_log is the following output:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
File &amp;quot;mysite.fcgi&amp;quot;, line 7
    sys.path.insert(0, &amp;quot;/home/username/&amp;quot;)
    ^
SyntaxError: invalid syntax
[Mon May 31 10:17:00 2010] [warn] (104)Connection reset by peer: mod_fcgid: read data from fastcgi server error.
[Mon May 31 10:17:00 2010] [error] [client 224.0.0.1] Premature end of script headers: mysite.fcgi
[Mon May 31 10:17:01 2010] [notice] mod_fcgid: call /home/username/public_html/500.php with wrapper /usr/local/cpanel/cgi-sys/fcgiwrapper
&lt;/pre&gt; 
&lt;p&gt;And running &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; directly looks like this:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
File &amp;quot;./mysite.fcgi&amp;quot;, line 7
    sys.path.insert(0, &amp;quot;/home/username/&amp;quot;)
    ^
SyntaxError: invalid syntax
&lt;/pre&gt; 
&lt;p&gt;The syntax error here is an indentation error. Python uses indentation to
indicate code blocks. A line that shouldn't be in its own block was indented.
Un-indenting that line fixes this particular syntax error.&lt;/p&gt; 
&lt;p&gt;Another common traceback that is output is the following:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
ERROR: No module named flup
  Unable to load the flup package.  In order to run django
  as a FastCGI application, you will need to get flup from
  http://www.saddi.com/software/flup/   If you've already
  installed flup, then make sure you have it in your PYTHONPATH.
&lt;/pre&gt; 
&lt;p&gt;This may happen, even if you have installed flup already. If you are using
Python 2.4, and did a &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;python&lt;/span&gt; &lt;span class="pre"&gt;setup.py&lt;/span&gt; &lt;span class="pre"&gt;install&lt;/span&gt; &lt;span class="pre"&gt;--home=$HOME/.local&lt;/span&gt;&lt;/tt&gt; 
installation of flup, you likely have a flup egg file. This egg needs to be
added to your Python path as well. If your flup egg is located at
&lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;/home/username/.local/lib/python/flup-1.0.2-py2.4.egg&lt;/span&gt;&lt;/tt&gt;, then you will need
to add the following line to your mysite.fcgi file:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
sys.path.insert(0, &amp;quot;/home/username/.local/lib/python/flup-1.0.2-py2.4.egg&amp;quot;)
&lt;/pre&gt; 
&lt;p&gt;A third common error page displayed in the browser is the following message:
&amp;quot;Unhandled Exception An unhandled exception was thrown by the application.&amp;quot;,
which happens after flup has been called, but an exception is thrown before
Django starts up enough to be able to use its normal error handling. In the
error logs it looks like the following:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr: Traceback (most recent call last):
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:   File &amp;quot;build/bdist.linux-x86_64/egg/flup/server/fcgi_base.py&amp;quot;, line 558, in run
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:   File &amp;quot;build/bdist.linux-x86_64/egg/flup/server/fcgi_base.py&amp;quot;, line 1118, in handler
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:   File &amp;quot;/home/username/.local/lib/python/django/core/handlers/wsgi.py&amp;quot;, line 230, in __call__
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:     self.load_middleware()
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:   File &amp;quot;/home/username/.local/lib/python/django/core/handlers/base.py&amp;quot;, line 33, in load_middleware
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:     for middleware_path in settings.MIDDLEWARE_CLASSES:
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:   File &amp;quot;/home/username/.local/lib/python/django/utils/functional.py&amp;quot;, line 276, in __getattr__
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:     self._setup()
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:   File &amp;quot;/home/username/.local/lib/python/django/conf/__init__.py&amp;quot;, line 40, in _setup
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:     self._wrapped = Settings(settings_module)
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:   File &amp;quot;/home/username/.local/lib/python/django/conf/__init__.py&amp;quot;, line 75, in __init__
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr:     raise ImportError(&amp;quot;Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?): %s&amp;quot; % (self.SETTINGS_MODULE, e))
[Thu May 27 16:33:48 2010] [warn] mod_fcgid: stderr: ImportError: Could not import settings 'mysite.settings' (Is it on sys.path? Does it have syntax errors?): No module named mysite.settings
&lt;/pre&gt; 
&lt;p&gt;When running &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; manually, it looks like this:&lt;/p&gt; 
&lt;pre class="literal-block"&gt; 
WSGIServer: missing FastCGI param REQUEST_METHOD required by WSGI!
WSGIServer: missing FastCGI param SERVER_NAME required by WSGI!
WSGIServer: missing FastCGI param SERVER_PORT required by WSGI!
WSGIServer: missing FastCGI param SERVER_PROTOCOL required by WSGI!
Traceback (most recent call last):
  File &amp;quot;build/bdist.linux-x86_64/egg/flup/server/fcgi_base.py&amp;quot;, line 558, in run
  File &amp;quot;build/bdist.linux-x86_64/egg/flup/server/fcgi_base.py&amp;quot;, line 1118, in handler
  File &amp;quot;/home/username/.local/lib/python/django/core/handlers/wsgi.py&amp;quot;, line 230, in __call__
    self.load_middleware()
  File &amp;quot;/home/username/.local/lib/python/django/core/handlers/base.py&amp;quot;, line 33, in load_middleware
    for middleware_path in settings.MIDDLEWARE_CLASSES:
  File &amp;quot;/home/username/.local/lib/python/django/utils/functional.py&amp;quot;, line 276, in __getattr__
    self._setup()
  File &amp;quot;/home/username/.local/lib/python/django/conf/__init__.py&amp;quot;, line 40, in _setup
    self._wrapped = Settings(settings_module)
  File &amp;quot;/home/username/.local/lib/python/django/conf/__init__.py&amp;quot;, line 75, in __init__
    raise ImportError(&amp;quot;Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?): %s&amp;quot; % (self.SETTINGS_MODULE, e))
ImportError: Could not import settings 'mysite.settings' (Is it on sys.path? Does it have syntax errors?): No module named mysite.settings
Content-Type: text/html
 
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//IETF//DTD HTML 2.0//EN&amp;quot;&amp;gt;
&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;
&amp;lt;title&amp;gt;Unhandled Exception&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;
&amp;lt;h1&amp;gt;Unhandled Exception&amp;lt;/h1&amp;gt;
&amp;lt;p&amp;gt;An unhandled exception was thrown by the application.&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;
&lt;/pre&gt; 
&lt;p&gt;This particular error happens when the settings module isn't found. In this
case, the mysite Django project isn't on sys.path. Depending on where you've
chosen to put your Django code, you may need to add a third location to
sys.path in &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt;. In this case, adding &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;sys.path.insert(0,&lt;/span&gt; 
&lt;span class="pre"&gt;&amp;quot;/home/username/django-projects&amp;quot;)&lt;/span&gt;&lt;/tt&gt; did the trick, because in this example, the
mysite package is located at &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;/home/username/django-projects/mysite&lt;/span&gt;&lt;/tt&gt;.&lt;/p&gt; 
&lt;/div&gt; 
&lt;/div&gt; 
&lt;div class="section" id="other-errors"&gt; 
&lt;h2&gt;Other Errors&lt;/h2&gt; 
&lt;p&gt;At this point, you should have fixed any of the most common errors seen by
Fastdomain users when getting their Django site working. If you have &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;DEBUG&lt;/span&gt;&lt;/tt&gt; on
in your settings.py, you may see one of the nice styled error pages that Django
generates. If you're getting the nicely formatted &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;DEBUG=True&lt;/span&gt;&lt;/tt&gt; error pages,
(or if &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;DEBUG&lt;/span&gt;&lt;/tt&gt; is off, you get the error emails) then your Django deployment
onto Fastdomain has been successful, and the error you are experiencing is out of
the scope of this document.&lt;/p&gt; 
&lt;/div&gt; 
&lt;/div&gt; 
 
&lt;div class="docutils_footer"&gt; 
&lt;strong&gt;keywords&lt;/strong&gt;: python django 500 error flup fastcgi
&lt;/div&gt; 
&lt;/body&gt;
&lt;/head&gt;</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/585</link><pubDate>Fri, 16 Jul 2010 15:52:18 GMT</pubDate><guid isPermaLink="false">341e06620d413a6e7fd0add0eca840e4</guid></item><item><title>Publisher 2007 Upload Instructions</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;How do I publish my website using Microsoft Publisher 2007&lt;/blockquote&gt;
&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;  
Before you may publish your website to the Fastdomain server, you will need to create an FTP location within Publisher.
&lt;p&gt;
To create an FTP location using Microsoft Publisher 2007:
&lt;ol&gt;
	&lt;li&gt;In Microsoft Publisher, from the File menu, click &amp;quot;Publish to the Web&amp;quot;.&lt;/li&gt;
	&lt;li&gt;In the Publish to the Web window, click Tools, and then click &amp;quot;Map Network Drive&amp;quot;.&lt;/li&gt;
	&lt;!-- put image here --&gt;
	&lt;li&gt;In the Map Network Drive window, click &amp;quot;Connect to a Network Server&amp;quot;. &lt;!-- put image here --&gt;
	&lt;ol&gt;
		&lt;li&gt;Click &amp;quot;Next&amp;quot;.&lt;/li&gt;
		&lt;li&gt;Click &amp;quot;Specify the address of of FTP site&amp;quot;.&lt;/li&gt;
		&lt;!-- put image here --&gt;
		&lt;li&gt;Enter your hostname in &amp;quot;Network address&amp;quot; box eg. &lt;a href="ftp://ipaddress/public_html" class="moz-txt-link-freetext"&gt;ftp://IPaddress/public_html&lt;/a&gt; where IPaddress is the IP address of your Fastdomain server. The IP address can be found in your cpanel in the left column 'stats', or by contacting Fastdomain technical support.&lt;/li&gt;
		&lt;li&gt;Un-check &amp;quot;log on anonymously&amp;quot;.&lt;/li&gt;
		&lt;li&gt;Enter your username in the User name box eg. your 8-character cPanel username or custom FTP username. This information is found in your cPanel under the icon &amp;quot;FTP Accounts&amp;quot;.&lt;/li&gt;
		&lt;li&gt;Enter a name for this connection. eg. &amp;quot;My Website&amp;quot;.&lt;/li&gt;
		&lt;!-- put image here --&gt; 	&lt;/ol&gt;
		&lt;/li&gt;
		&lt;li&gt;Click Next.&lt;/li&gt;
		&lt;li&gt;Click Finish.&lt;/li&gt;
	&lt;/ol&gt;
	To upload site content using Microsoft Publisher 2007:
	&lt;ol&gt;
		&lt;li&gt;In Microsoft Publisher, from the File menu, click &amp;quot;Publish to the Web&amp;quot;.&lt;/li&gt;
		&lt;li&gt;From the Save in list, click &amp;quot;FTP Locations&amp;quot;.&lt;/li&gt;
		&lt;!-- put image here --&gt;
		&lt;li&gt;Select the appropriate domain name.&lt;/li&gt;
		&lt;!-- put image here --&gt;
		&lt;li&gt;Double-click the folder where you want to publish your site.&lt;/li&gt;
		&lt;!-- put image here --&gt;
		&lt;li&gt;Click Save.&lt;/li&gt;
	&lt;/ol&gt;
	&lt;/blockquote&gt;

&lt;/blockquote&gt;
&lt;b&gt;Keywords:&lt;/b&gt;Microsoft Publisher publish settings FTP upload&lt;br&gt;
</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/584</link><pubDate>Fri, 16 Jul 2010 15:34:38 GMT</pubDate><guid isPermaLink="false">025d9922c7442b01d11779901eda8b3b</guid></item><item><title>phpList Suggested Settings</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;PHPList is not sending all messages. &lt;br&gt;
The most common error is "could not instantiate mail function". &lt;br&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;Locate the config.php file.&amp;nbsp; If installed with defaults from Simple Scripts the full path will be &lt;/br&gt; 
/home#/username/public_html/list/config/config.php.
&lt;br&gt;&lt;br&gt;
Please make a backup at this point.
&lt;/p&gt;
&lt;p&gt;Locate the Miscellaneous Section. 
&lt;/p&gt;
&lt;p&gt;Below this section find the following. 
&lt;/p&gt;
&lt;span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"&gt;
&lt;span style="font-family: Verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-size: 10px;"&gt;
&lt;div style="margin: 5px 20px 20px;"&gt;
&lt;div class="smallfont"
style="font-family: verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 11px; line-height: normal; font-size-adjust: none; font-stretch: normal; margin-bottom: 2px;"&gt;Code:&lt;/div&gt;
&lt;pre class="alt2" dir="ltr" style="border-style: inset; border-width: 1px; margin: 0px; padding: 6px; overflow: auto; background-color: rgb(225, 228, 242); color: rgb(0, 0, 0); width: 520px; height: 114px; text-align: left;"&gt;# define the amount of emails you want to send per period. If 0, batch processing&lt;br&gt;# is disabled&lt;br&gt;# Fastdomain suggest a default of 150 per hour.&lt;br&gt;define("MAILQUEUE_BATCH_SIZE",0);&lt;br&gt;&lt;br&gt;# define the length of one batch processing period, in seconds (3600 is an hour)&lt;br&gt;define("MAILQUEUE_BATCH_PERIOD",3600);&lt;/pre&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;/span&gt;These are the default settings.&lt;span

style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"&gt;&lt;span

style="font-family: Verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-size: 10px;"&gt;
&lt;br&gt;
&lt;/span&gt;&lt;/span&gt;Here is the suggested default code. &lt;span

style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"&gt;&lt;span

style="font-family: Verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-size: 10px;"&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div style="margin: 5px 20px 20px;"&gt;
&lt;div class="smallfont"
style="font-family: verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 11px; line-height: normal; font-size-adjust: none; font-stretch: normal; margin-bottom: 2px;"&gt;Code:&lt;/div&gt;
&lt;pre class="alt2" dir="ltr"
style="border-style: inset; border-width: 1px; margin: 0px; padding: 6px; overflow: auto; background-color: rgb(225, 228, 242); color: rgb(0, 0, 0); width: 520px; height: 114px; text-align: left;"&gt;# define the amount of emails you want to send per period. If 0, batch processing&lt;br&gt;# is disabled&lt;br&gt;# Fastdomain suggests a default of 150 per hour.&lt;br&gt;define("MAILQUEUE_BATCH_SIZE",150);&lt;br&gt;&lt;br&gt;# define the length of one batch processing period, in seconds (3600 is an hour)&lt;br&gt;define("MAILQUEUE_BATCH_PERIOD",3600);&lt;/pre&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;/span&gt;

The above settings tell phplist to send 150 emails per hour. 

&lt;span 
style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"&gt;&lt;span

style="font-family: Verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-size: 10px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
The last edit to make is under the Experimental Section. &lt;br&gt;
&lt;br&gt;
&lt;span 
style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"
&amp;gt;=""&gt;&lt;span class="Apple-style-span"
style="font-family: Verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-size: 10px;"&gt;
&lt;div style="margin: 5px 20px 20px;"&gt;
&lt;div class="smallfont"
style="font-family: verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 11px; line-height: normal; font-size-adjust: none; font-stretch: normal; margin-bottom: 2px;"&gt;Code:&lt;/div&gt;
&lt;pre class="alt2" dir="ltr"
style="border-style: inset; border-width: 1px; margin: 0px; padding: 6px; overflow: auto; background-color: rgb(225, 228, 242); color: rgb(0, 0, 0); width: 520px; height: 114px; text-align: left;"&gt;# Mailqueue autothrottle. This will try to automatically change the delay&lt;br&gt;# between messages to make sure that the MAILQUEUE_BATCH_SIZE (above) is spread evently over&lt;br&gt;# MAILQUEUE_BATCH_PERIOD, instead of firing the Batch in the first few minutes of the period&lt;br&gt;# and then waiting for the next period. This only works with mailqueue_throttle off&lt;br&gt;# it still needs tweaking, so send your feedback to mantis.tincan.co.uk if you find&lt;br&gt;# any issues with it&lt;br&gt;define('MAILQUEUE_AUTOTHROTTLE',0);&lt;/pre&gt;
&lt;/div&gt;
&lt;/span&gt;
&lt;/span&gt;
Change the MAILQUE_AUTOTHROTTLE to 1.&lt;br&gt;

&lt;span 
style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"&gt;&lt;span

style="font-family: Verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-size: 10px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span 
style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"&gt;&lt;span

style="font-family: Verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-size: 10px;"&gt;
&lt;div style="margin: 5px 20px 20px;"&gt;
&lt;div class="smallfont"
style="font-family: verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 11px; line-height: normal; font-size-adjust: none; font-stretch: normal; margin-bottom: 2px;"&gt;Code:&lt;/div&gt;
&lt;pre class="alt2" dir="ltr"
style="border-style: inset; border-width: 1px; margin: 0px; padding: 6px; overflow: auto; background-color: rgb(225, 228, 242); color: rgb(0, 0, 0); width: 520px; height: 114px; text-align: left;"&gt;# Mailqueue autothrottle. This will try to automatically change the delay&lt;br&gt;# between messages to make sure that the MAILQUEUE_BATCH_SIZE (above) is spread evently over&lt;br&gt;# MAILQUEUE_BATCH_PERIOD, instead of firing the Batch in the first few minutes of the period&lt;br&gt;# and then waiting for the next period. This only works with mailqueue_throttle off&lt;br&gt;# it still needs tweaking, so send your feedback to mantis.tincan.co.uk if you find&lt;br&gt;# any issues with it&lt;br&gt;define('MAILQUEUE_AUTOTHROTTLE',1);&lt;/pre&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;/blockquote&gt;
&lt;strong&gt;Keywords:&lt;/strong&gt;phplist</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/580</link><pubDate>Fri, 16 Jul 2010 14:17:55 GMT</pubDate><guid isPermaLink="false">c29acc617c1231d16ff3a06704f0032e</guid></item><item><title>Canceling the Hosting Account</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;How can I cancel my hosting account?&lt;/blockquote&gt;
&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;  We do not require our customers to sign contracts so you may cancel your hosting services with fastdomain.com at any time and receive a prorated refund of the unused time remaining on your hosting term.  Before contacting the Billing Department to have your hosting account canceled, please review the following information regarding the cancellation of a hosting account:
&lt;ul&gt;
	&lt;li&gt;Only the Account Owner can request to have the account canceled. &lt;/li&gt;
        &lt;li&gt;When a hosting cancellation is processed, ALL content is permanently deleted from our servers. This includes all of your emails, files, and databases associated with the hosting account.  Once this data has been deleted, there is no possibility of restoration.   So prior to canceling, you will want to make sure you have ALL necessary backups of your emails, files, and databases.&lt;/li&gt;
        &lt;ul&gt;
        *Click  &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000147" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Here &lt;/a&gt; for information about creating and downloading backups.&lt;br&gt;
	&lt;/ul&gt;
        &lt;li&gt;Canceling a hosting account will delete the hosting services for ALL domains associated with the account.  This includes parked, unparked, and add-on domains.&lt;/li&gt;
	&lt;li&gt;Canceling the hosting services will not affect your access to the Domain Manager to manage the domain name(s) you have registered with us.  You will still be able to log in to your Domain Manager to manage your domain(s) to update your privacy options, nameservers, and the domain registration renewal settings.  All domains kept on the default Auto-Renew setting will attempt renewal 15 days prior to expiration.&lt;/li&gt;
	&lt;li&gt;All notifications regarding your hosting account and any domains you have registered with us will be sent to the contact email address you have provided in the Profile/Billing tab of your cPanel.  This needs to be a current email address unassociated with your hosting account.  If necessary, please update your email address prior to contacting us to cancel the account.&lt;/li&gt;
	&lt;li&gt;A prorated refund of the unused time remaining on your hosting term will be issued back to the Credit Card account or PayPal account with which the service was most recently purchased.  If the account is no longer active, please indicate this in your cancellation request so we can make alternate refund arrangements for you.&lt;/li&gt;
&lt;/ul&gt;
When you are ready to cancel your hosting account, simply contact the Billing Department via Phone, Live Chat or by Opening a Ticket.  Please be sure to include ALL of the following information to expedite your request:
&lt;ul&gt;
	&lt;li&gt;Your first and last name.&lt;/li&gt;
	&lt;li&gt;The Primary domain name of the hosting account you wish to cancel.&lt;/li&gt;
	&lt;li&gt;For security purposes, verify you are the Account Owner by providing:&lt;/li&gt;
               &lt;ul&gt;
                   &lt;li&gt;The last four case-sensitive characters of the cPanel login     Password.&lt;/li&gt;
	AND &lt;/br&gt;
                   &lt;li&gt;If you paid with a Credit Card: the last four digits of the credit card used to pay for the most recent hosting payment. &lt;/li&gt;
                   &lt;li&gt;If you paid with PayPal: the full 7-digit PayPal Invoice Number for the most recent hosting payment&lt;/li&gt;
                     
        &lt;p&gt;
	&lt;span style="color: rgb(255, 0, 0);"&gt;*Note:&lt;/span&gt;  BOTH the password AND the verifying method of payment are required to process the cancellation.
               &lt;/ul&gt;    
	&lt;li&gt;Confirm you have all necessary backups of your emails, files, and databases, and that the Billing Department can proceed with canceling and deleting all content from our servers associated with your hosting account.&lt;/li&gt;
         &lt;li&gt;Specify the desired renewal settings for the domain names you have registered with us.  Please note that Auto-Renew is the default setting. &lt;/li&gt;
         &lt;li&gt;Confirm that your contact email address is current and unassociated with your hosting services. &lt;/li&gt;
         &lt;li&gt;Confirm that the Credit Card/PayPal account is still active.&lt;/li&gt;
	&lt;/blockquote&gt;
	&lt;p&gt;&lt;b&gt;Keywords:&lt;/b&gt; cancel credit prorate pro-rate 30-day guarantee&lt;/p&gt;</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/122</link><pubDate>Fri, 09 Jul 2010 21:23:28 GMT</pubDate><guid isPermaLink="false">7e328d3dc7aa7537037cdd9a668b27bb</guid></item><item><title>Backup Utility Tools in cPanel</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
How to use the CPanel Backup Tool
&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
In the cPanel under the Files section are two icons: &lt;strong&gt;Backups&lt;/strong&gt; and &lt;strong&gt;Backup Wizard&lt;/strong&gt;.

&lt;p&gt;The backup areas in the cPanel allow you to download the courtesy backup file of your entire web site, a home directory /public_html or a particular MySQL, alias, or filter backup file. If your computer crashes or your personal backups are destroyed, these files allow you to recover your site in a convenient manner (you could use FTP to download each file, but it would take much longer as the files are not compressed).  Having multiple backups in different locations provides security against permanently losing information.&lt;/p&gt;

&lt;p&gt;&lt;span style='color: rgb(255, 0, 0);'&gt;&lt;strong&gt;***Important***:&lt;/strong&gt;&lt;/span&gt; You should keep your own backup copy of your web site as well. See &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000312" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Backup Policy&lt;/a&gt; for more details. &lt;/p&gt;

&lt;p&gt;&lt;span style='color: rgb(255, 0, 0);'&gt;Note:&lt;/span&gt; A complete web site backup file includes everything: web pages, images, scripts, MySQL Databases, and access logs. A large site will have a large backup file, and will take some time to download.&lt;/p&gt;

To download in the &lt;strong&gt;Backups&lt;/strong&gt; icon:
&lt;ol&gt;
  &lt;li&gt;Click on the Backup button in your account's cPanel.&lt;/li&gt;
  &lt;li&gt;Click on the dated button to begin downloading to your computer the entire system backup or click on the link underneath the required area to download an SQL, Alias, or Filter backup file.&lt;/li&gt;
  &lt;li&gt;Save the file to your disk.&lt;/li&gt;
&lt;/ol&gt;

To download in the &lt;strong&gt;Backup Wizard&lt;/strong&gt; icon:
&lt;ol&gt;
  &lt;li&gt;Click the Backup link.&lt;/li&gt;
  &lt;li&gt;Click link to do Full or Partial backup.&lt;/li&gt;
  &lt;li&gt;With either choice, select the link for the available backups to begin downloading to your computer.&lt;/li&gt;
  &lt;li&gt;Save the file to your disk.&lt;/li&gt;
&lt;/ol&gt;

In the Full Backup option, you can generate a new backup you can download when completed. This is limited to 5 GB. An email will be sent to notify you when completed. For an account larger than 5 GB, use the command line.

&lt;p&gt;&lt;span style='color: rgb(255, 0, 0);'&gt;Note for Windows users:&lt;/span&gt;  This file is in .tar.gz format (a GZIP archive file that contains a TAR archive file). This is a common archive format used on Unix machines, in the same way that .zip is a common Windows archive format. Most compression utilities should be able to uncompress a .tar.gz file. Click here to visit &lt;a href="http://www.ezsitemove.com" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;www.EZSiteMove.com&lt;/a&gt;, they will perform backups and restores for a discount for Fastdomain Customers to a different hosting Service Provider.&lt;/p&gt;

&lt;/blockquote&gt;

&lt;strong&gt;Keywords:&lt;/strong&gt; cpanel backup back ups backups utility mysql</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/147</link><pubDate>Fri, 09 Jul 2010 21:15:46 GMT</pubDate><guid isPermaLink="false">e5b64f412032dde572c76a7100469abc</guid></item><item><title>MySQL Version</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
  What version of MySQL are you running?
&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;

The current version can be viewed in the cPanel on left side.  Alternately, you can view which version the server has with the following &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000495" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;'&gt;Telnet&lt;/a&gt; command from either Window's DOS prompt or a terminal on Mac or Linux, It will print out the current version.

&lt;p&gt;In command prompt or terminal:&lt;/p&gt;
&lt;pre&gt; telnet domain.com 3306&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;b&gt;Keywords:&lt;/b&gt; MySQL SQL version</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/3</link><pubDate>Thu, 08 Jul 2010 16:34:41 GMT</pubDate><guid isPermaLink="false">d2fdcd5be6183da6fc88c1d9916fb931</guid></item><item><title>FTP Setup using Fetch (Mac)</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;How do I upload my page to your server using FTP on a Mac?&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt; How to Connect and Upload files on a Mac via FTP using Fetch (Version 4.0.3). 
&lt;ol&gt;
	&lt;li&gt;Open Fetch. It will prompt you to enter some login info.&lt;/li&gt;
	&lt;li&gt;For Host, type your domain name. Also type in your username and password and click OK.&lt;/li&gt;
	&lt;li&gt;Once you have logged in, open the public_html folder. To open it, double-click it.&lt;/li&gt;
	&lt;li&gt;Once in the public_html folder, click Put Files.&lt;/li&gt;
	&lt;li&gt;Select the picture you want to upload. Then click on Choose.&lt;/li&gt;
	&lt;li&gt;Fetch will confirm the file name that will be uploaded and saved. Click OK to upload.&lt;/li&gt;
	&lt;li&gt;When you look under public_html, you should see the newly uploaded file.&lt;/li&gt;
&lt;/ol&gt;
If you do not have fetch&lt;/b&gt;, here are a couple more popular and free FTP clients:
&lt;p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href='http://cyberduck.ch' style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; ' target='_new'&gt;Cyberduck&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href='http://www.rbrowser.com/RBrowserLite.html' style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; ' target='_new'&gt;RBrowser&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;b&gt;Keywords:&lt;/b&gt; Mac Macintosh OSX OS-X  FTP fetch&lt;/p&gt;</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/96</link><pubDate>Thu, 08 Jul 2010 16:25:18 GMT</pubDate><guid isPermaLink="false">318087563b172e21ee39b74b92dc8010</guid></item><item><title>Unable to Assign Domain via Domain Manager</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;I tried to assign a domain through the Domain Manager, but it does not allow me to. What is wrong?
&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
Most likely you have not yet changed the NameServers (NS) or A record for the domain you are attempting to assign. If you have changed the NS or ARecord, it is possible enough time has not been allowed for DNS propagation.

&lt;p&gt;If you have not yet changed the NS record, please change it to point to:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Primary NameServer: ns1.fastdomain.com&lt;/li&gt;
	&lt;li&gt;Secondary NameServer: ns2.fastdomain.com&lt;/li&gt;
&lt;/ul&gt;
Allow up to 24-48 hours for DNS propagation.  
&lt;p&gt;
&lt;span style='color: rgb(255, 0, 0);'&gt;Note:&lt;/span&gt; If the NameServers or the proper ARecord has been pointed to us and you are still having any difficulty assigning domains, please contact us via &lt;a href="http://fastdomain.com/contact_us.html" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Phone&lt;/a&gt;, &lt;a href="http://www.fastdomain.com/chat" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Live Chat&lt;/a&gt; or by &lt;a href="http://helpdesk.fastdomain.com/index.php/contact" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Opening a Ticket&lt;/a&gt;.
&lt;/blockquote&gt;

&lt;b&gt;Keywords:&lt;/b&gt; addon add-on park parked domain&lt;/p&gt;</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/81</link><pubDate>Thu, 08 Jul 2010 13:27:08 GMT</pubDate><guid isPermaLink="false">e617aa33e0cfd357b69285b5e446ab6a</guid></item><item><title>Duplicate Messages in Outlook 2002</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
Why Am I Getting Duplicate Messages in Outlook 2002?
&lt;/blockquote&gt;
&lt;h2&gt;Solution:&lt;/h2&gt;

&lt;blockquote&gt;
&lt;em&gt;Symptom:&lt;/em&gt;

&lt;p&gt;Outlook downloads messages from a Post Office Protocol 3 (POP3) server again after it empties the Deleted Items folder even if you have both the Leave a copy of messages on the server and the Remove from server when deleted from Deleted Items options enabled on the POP3 account. 

&lt;p&gt;&lt;em&gt;Cause:&lt;/em&gt;
&lt;p&gt;This problem occurs because a background synchronization took place at the same time or just after the Deleted Items folder was emptied. This is an issue with the order in which Outlook carries out the deletion from the server and the downloading of messages. 

&lt;p&gt;There is not an available workaround for this problem other than not to begin a synchronization at about the same time that the Deleted Items folder is emptied. This issue does not result in data loss (other than messages that you instructed Outlook to delete). Simply delete the duplicate messages.

&lt;/blockquote&gt;
&lt;b&gt;Keywords:&lt;/b&gt; email outlook duplicate</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/36</link><pubDate>Thu, 08 Jul 2010 13:07:24 GMT</pubDate><guid isPermaLink="false">3a1c5fd4c5e855a6e03706526f34f4d8</guid></item><item><title>How to clear browser cache</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt; 
  What is Cache? How do I clear my browsers Cache?
&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;

 &lt;b&gt;Cache&lt;/b&gt; is a block of memory used for temporary storage of data (ie:&lt;b&gt; webpages&lt;/b&gt;, etc..) that is likely to be used again. Your CPU and hard drive frequently use a &lt;b&gt;Cache&lt;/b&gt;, as do web browsers and web servers. A &lt;b&gt;Cache&lt;/b&gt; is made up of a pool of entries. Each entry has a piece of data or copy of the original information which can be stored in multiple locations. Each entry also has a tag, which specifies the identity of that particular piece of data in your storage. When the &lt;b&gt;Cache&lt;/b&gt; client (&lt;b&gt;web browser&lt;/b&gt;, &lt;b&gt;ISP&lt;/b&gt;, or &lt;b&gt;operating system&lt;/b&gt;) wishes to access this data it first checks the &lt;b&gt;Cache&lt;/b&gt;. This helps save time and reduces the workload on the system using the &lt;b&gt;Cached&lt;/b&gt; client. If you use your web browser and an entry can be found with a tag matching that of the desired data, then the &lt;b&gt;Cached&lt;/b&gt; version is used instead. This situation is known as a &lt;b&gt;Cache Hit&lt;/b&gt;. When the &lt;b&gt;Cache&lt;/b&gt; is consulted and found not to contain data with the desired tag, it is known as a &lt;b&gt;Cache Miss&lt;/b&gt;.

&lt;p&gt;So, for example, a web browser program might check its &lt;b&gt;Local Cache&lt;/b&gt; stored on your computer to see if it has a local copy of the contents of a web page at based on a particular URL. In this example, the URL is the tag, and the contents of the web page is the data. The percentage of accesses that result in &lt;b&gt;Cache Hits&lt;/b&gt; or &lt;b&gt; Cache Misses&lt;/b&gt; is known as the &lt;b&gt;Hit Rate&lt;/b&gt; or &lt;b&gt;Hit Ratio&lt;/b&gt; of the cache.&lt;/p&gt;

&lt;p&gt;Most systems fetch and retrieve updated versions of your stored data or &lt;b&gt;Cache&lt;/b&gt; every &lt;b&gt;24-72&lt;/b&gt; hours. This means that your ISP and your local system can at anytime have an out of date version of your data (i.e. website) in its &lt;b&gt;Cache&lt;/b&gt;. If you have updated your website, migrated servers or changed webhosts you may not immediately see the changes you made. This could be because your local system has an out of date copy or your ISP's system has not clear their &lt;b&gt; Master Cache&lt;/b&gt;. Follow the steps below to clear your local systems &lt;b&gt;Cache&lt;/b&gt; first. If this does not do the trick then you may need to contact your ISP and request they manually flush their current cache. Depending on the ISP if they refuse you will have to wait for them to automatically clear their &lt;b&gt;Cache&lt;/b&gt; which may take &lt;b&gt;24-72&lt;/b&gt; hours for them to do.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;How do I clear my browsers Cache?&lt;/em&gt;&lt;/p&gt;

&lt;b&gt;For Internet Explorer 4.x and Up &lt;img src="http://training.bluehost.com/cerberus/shared/browser_ie.gif" alt=""&gt;&lt;/b&gt;
&lt;ul&gt;
	&lt;li&gt;Click &lt;b&gt;Tools&lt;/b&gt; from the Internet Explorer menubar&lt;/li&gt;
	&lt;li&gt;Click &lt;b&gt;Internet Options&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Click the &lt;b&gt;General&lt;/b&gt; Tab&lt;/li&gt;
	&lt;li&gt;Click the &lt;b&gt;Delete Files&lt;/b&gt; button in the &lt;b&gt;Temporary Internet files&lt;/b&gt; section&lt;/li&gt;
	&lt;li&gt;If you still have a problem, repeat the steps above and restart the computer.&lt;/li&gt;
	&lt;li&gt;Please refer to the Internet Explorer Support page for more details on &lt;a target="_blank" href="http://www.microsoft.com/windows/ie/ie6/using/howto/customizing/clearcache.mspx" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;How and Why to Clear Your Cache&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;b&gt;For FireFox 1.5x and Up &lt;img src="http://training.bluehost.com/cerberus/shared/browser_firefox.gif" alt=""&gt;&lt;/b&gt;
&lt;ul&gt;
	&lt;li&gt;Click &lt;b&gt;Tools&lt;/b&gt; from the FireFox menubar&lt;/li&gt;
	&lt;li&gt;Click &lt;b&gt;Clear Private Data...Ctrl+Shift+Del&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Make sure the box is checked next to each option you wish to &lt;b&gt;Clear Private Data&lt;/b&gt; for. (Browsing History, &lt;b&gt;Cache&lt;/b&gt;, Cookies, Authenticated Sessions)&lt;/li&gt;
	&lt;li&gt;Click the &lt;b&gt;Clear Private Data Now&lt;/b&gt; button.&lt;/li&gt;
	&lt;li&gt;If you still have a problem, repeat the steps above and restart the computer.&lt;/li&gt;
&lt;/ul&gt;
&lt;br&gt;
&lt;h3&gt;&lt;b&gt;For Opera &lt;img src="http://training.bluehost.com/cerberus/shared/browser_opera.gif" alt=""&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;ul&gt;
	&lt;li&gt;Click &lt;b&gt;Edit&lt;/b&gt; from the &lt;b&gt;Opera&lt;/b&gt; menubar&lt;/li&gt;
	&lt;li&gt;Click &lt;b&gt;Preferences...&lt;/b&gt; from the &lt;b&gt;File&lt;/b&gt; menu&lt;/li&gt;
	&lt;li&gt;Click the &lt;b&gt;History and Cache menu&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Click &lt;b&gt;Cache&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Click &lt;b&gt;ok&lt;/b&gt; to close the Preferences menu&lt;/li&gt;
	&lt;li&gt;If you still have a problem, repeat the steps above and restart the computer.&lt;/li&gt;
	&lt;li&gt;Please refer to the Opera support page for more detailed information on &lt;a href="http://www.opera.com/support/tutorials/security/prefs/history/" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Web Caching&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br&gt;
&lt;h3&gt;&lt;b&gt;For AOL 3.x and Up &lt;img src="http://training.bluehost.com/cerberus/shared/browser_aol.gif" alt=""&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;ul&gt;
	&lt;li&gt;Start &lt;b&gt;AOL&lt;/b&gt;from the AOL menu bar&lt;/li&gt;
	&lt;li&gt;Select &lt;b&gt;Keyword &amp;gt; Go to Keyword&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;type the keyword &lt;b&gt;preferences&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Click &lt;b&gt;Go&lt;/b&gt;&lt;br&gt;
	Dialog box: &lt;b&gt;AOL Settings: Customize your AOL Experience&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Select &lt;b&gt;Essentials tab &amp;gt; Internet (Web) Options&lt;/b&gt; - Set Web browser options and properties&lt;br&gt;
	Dialog box: &lt;b&gt;Internet Options&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Select &lt;b&gt;General&lt;/b&gt; tab&lt;/li&gt;
	&lt;li&gt;Click &lt;b&gt;Delete files&lt;/b&gt;&lt;br&gt;
	Dialog box: &lt;b&gt;Delete Files&lt;/b&gt;: &lt;b&gt;Delete all files in the Temporary Internet files&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Select &lt;b&gt;Delete all offline content&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Click &lt;b&gt;OK&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;Click &lt;b&gt;OK&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;If you still have a problem, repeat the steps above and restart the computer.&lt;/li&gt;
	&lt;li&gt;Please refer to the AOL Support page for more detailed information on &lt;a href="http://webmaster.info.aol.com/faq.html#cachingfaq" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Web caching&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br&gt;
&lt;h3&gt;&lt;b&gt;For Safari 1.x for Macintosh OSX &lt;img src="http://training.bluehost.com/cerberus/shared/browser_safari.gif" alt=""&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;ul&gt;
	&lt;li&gt;Open &lt;b&gt;Safari&lt;/b&gt;.&lt;/li&gt;
	&lt;li&gt;Click on &lt;b&gt;Safari&lt;/b&gt; in the toolbar and select &lt;b&gt;Empty Cache...&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;When prompted Are You Sure, click &lt;b&gt;Empty&lt;/b&gt;.&lt;/li&gt;
	&lt;li&gt;Exit your &lt;b&gt;Safari&lt;/b&gt; browser completely and re-launch &lt;b&gt;Safari&lt;/b&gt;.&lt;/li&gt;
	&lt;li&gt;If you still have a problem, repeat the steps above and restart the computer.&lt;/li&gt;
	&lt;li&gt;Please refer to the Safari Support page for more detailed information on &lt;a href="http://www.apple.com/support/safari/" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Safari Issues&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;/blockquote&gt;

&lt;strong&gt;Keywords:&lt;/strong&gt; Cache</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/431</link><pubDate>Sun, 04 Jul 2010 10:58:51 GMT</pubDate><guid isPermaLink="false">dce05d017cc8f6b8836980b66b5ae6a2</guid></item><item><title>Shared vs. Dedicated IPs &amp; Port Access</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;

What is the difference between a Shared &amp; Dedicated IP? How do I get Port Access? What type of SSL Certificate is right for me?

&lt;/blockquote&gt;
&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;

&lt;B&gt;Shared IP's:&lt;/B&gt;
&lt;p&gt; Every domain name has an IP address assigned to it. An IP address is the real address of a web site or server. Domain names were developed because it is difficult to remember long IP numbers like 234.123.66.7.&lt;/p&gt;

&lt;p&gt; In shared hosting we host several hundred web sites on one server; those same sites will share one single IP address. Instead of having a unique IP address for every domain, you share one IP address with all of the accounts on your server. The downside to shared IP's is that some countries, like China, censure particular web sites by their IP address.  If a web site they censure is on the same server as yours, and China blocks that web site using the shared IP address, then your web site and the hundreds of others on that server are also blocked.  This means that any clients in China would be unable to view your site.  Getting a dedicated IP address would make your web site separate so that if the shared IP address was blocked, your site wouldn't automatically be blocked along with it.

&lt;p&gt;&lt;B&gt;Email:&lt;/B&gt;

&lt;p&gt;Email will not be affected by obtaining a dedicated IP address.  Other than a program needing more than 5 minutes to send out emails from a mailing list, there is no benefit to email between a shared and a dedicated IP address.  All email, including forwarded email, is sent out through our mail proxy servers.  Obtaining a dedicated IP address will not prevent your emails from being marked as SPAM, having an ISP block the IP of the mail proxy server, or pass a reverse DNS test for places such as AOL.  People sometimes are under the wrong impression that these things will change by obtaining a dedicated IP address.  They won't change.&lt;/p&gt;
&lt;p class="whs3"&gt;&lt;B&gt;Dedicated IP's:&lt;/B&gt;

&lt;p&gt;By &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000541" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;'&gt;Purchasing a Dedicated IP&lt;/a&gt; your site is the only one on the Internet that will be using that unique IP address. For example, if you typed http://64.233.187.99/ into your web browsers address bar you would see Goggle's web site come up. This is their dedicated IP address and no one else's. This is their unique address on the web that has been attached to the domain name google.com&lt;/p&gt;

&lt;p&gt;&lt;B&gt;Program/Script Requirements:&lt;/B&gt;

&lt;p&gt;The program or script you run on your site may require a process to run longer than 5 minutes.  On a shared IP address, the process will terminate at the 5 minute mark. With a dedicated IP address, processes are allowed to run for more than 5 minutes as long as they aren't consuming too much of the server's memory, which would result in a CPU throttling.  CPU throttling can occur both on a shared and a dedicated IP address. Certain voice chat programs require a dedicated IP address before they can be setup and used. If you have a program that sends out emails every so many seconds, such as from a mailing list program like DaDa Mail, then you would need to get a dedicated IP address, if it's going to take more than 5 minutes to send out the emails..&lt;/p&gt; 

&lt;p&gt;&lt;b&gt;Port Access:&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;In a shared hosting environment, where everyone shares the same IP, some ports must be blocked. We block access to certain ports to help avoid having security holes in the firewall, and to allow us to monitor and control customers who attempt to abuse the different services that we allow to run through these ports. The majority of processes requiring specific Port Access typically are bound to the IP address which they are running on. 
&lt;p&gt;On a shared IP only one service could run through a specific port from that IP. We have only opened the ports for processes which we are running on our servers (web mail, cPanel, etc.). Purchasing a dedicated IP will allow us to grant you access to the ports you will need to run your specific services on. This applies to both outbound and inbound connections running on non-standard ports. If you have a dedicated IP and require ports to be opened, please contact us via &lt;a href="http://fastdomain.com/contact_us.html" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Phone&lt;/a&gt;, &lt;a href="http://www.fastdomain.com/chat" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Live Chat&lt;/a&gt; or by &lt;a href="http://helpdesk.fastdomain.com/index.php/contact" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Opening a Ticket&lt;/a&gt;.&lt;/p&gt;


&lt;p&gt;&lt;B&gt;Alternative Options:&lt;/B&gt;
&lt;p&gt;There are two ways you can get around purchasing a Dedicated IP &amp; Private SSL.

&lt;ol&gt;
  &lt;li&gt;The first is by using a PayPal shopping cart or an alternative shopping cart that is hosted by another company off of your site. 
Your main site would still be hosted with Fastdomain. However when someone goes to pay they would be redirected to the company you choose to host your shopping cart. Most businesses and customers don't like the idea of sending or being sent to a new web site address to complete transactions. &lt;/li&gt;
  &lt;li&gt; The second is by using the Fastdomain Shared SSL. This is a free SSL.  The Shared SSL carries all the same levels of encryption and security that a Private SSL carries but there is a big difference. To use your SSL certificate you would point your hyperlinks that you want to be secure to &lt;B&gt;https://secure.fastdomain.com/~yourunixusername&lt;/B&gt;. When your customers look at the URL or examine the validity of the Shared Certificate they will see that it belongs to Fastdomain instead of to your specific site. This tends to cause anxiety for most customers or at least raise a flag of caution. For the sake of professionalism most companies will opt to purchase a Private SSL.&lt;/li&gt;
&lt;/ol&gt;

&lt;span style='color: rgb(255, 0, 0);'&gt;Note:&lt;/span&gt; You cannot use the shared SSL Certificate if you have purchased a dedicated IP, only when you are on the shared IP.

&lt;p&gt;&lt;B&gt;Purchasing a Dedicated IP &amp; Private SSL:&lt;/B&gt;
&lt;p&gt; If you would like to purchase a Dedicated IP or a Private SSL Certificate please review our articles on &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000425" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Purchasing a Private SSL&lt;/a&gt; or &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000541" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;Purchasing a Dedicated IP&lt;/a&gt;.


&lt;/blockquote&gt;
&lt;b&gt;Keywords:&lt;/b&gt; Shared vs. Dedicated IP's, Port Access &amp; shared SSL Cert.'s Secure Socket Layer  Certificates</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/426</link><pubDate>Fri, 02 Jul 2010 17:56:58 GMT</pubDate><guid isPermaLink="false">0fec1a086b6a41e2fe5041172f2ab600</guid></item><item><title>Comodo Positive SSL Certificate Seal</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt;
  Where do I get a copy of the site seal for my SSL I purchased through Bluehost?
&lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt;
If you purchased the SSL Certificate from your Bluehost cPanel, the SSL you purchased is the Comodo Positive SSL Certificate. This certificate includes a static image which you may place on your website. Simply right click on the image below and save the image to your computer. You may then upload the image to your Bluehost account and incorporate it in the design of your website.&lt;p&gt;

   &lt;a href="http://www.PositiveSSL.com" title="SSL Certificate Authority" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;&lt;img src="http://tutorials.bluehost.com/cerberus/shared/PositiveSSL_tl_white.gif" alt="SSL Certificate Authority" title="SSL Certificate Authority" border="0" /&gt;&lt;br /&gt;SSL Certificate Authority&lt;/a&gt;
&lt;p&gt;
To learn more about the Comodo Positive SSL Certificate you may visit &lt;a href="http://www.positivessl.com" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;www.positivessl.com&lt;/a&gt;

&lt;/blockquote&gt;

&lt;strong&gt;Keywords:&lt;/strong&gt; ssl cert seal secure image logo</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/181</link><pubDate>Tue, 29 Jun 2010 18:33:50 GMT</pubDate><guid isPermaLink="false">ec5e4062c2c6b7e212ab82248cfd33d8</guid></item><item><title>Problem using fsockopen function</title><description>&lt;h2&gt;Problem:&lt;/h2&gt;
&lt;blockquote&gt; Why am I unable to use the fsockopen function? &lt;/blockquote&gt;

&lt;h2&gt;Solution:&lt;/h2&gt;
&lt;blockquote&gt; 
The fsockopen function will work for outbound connection to any URL on port 80 (HTTP) or 443 (HTTPS).  If fsockopen is attempting to use another port, it will not work until we have added that &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000405" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;port&lt;/a&gt; to the firewall.

&lt;p&gt;By default, your account is on a shared IP address. We have a firewall for our shared IP customers which prohibits opening additional ports. If you need to connect using a port number other than 80 or 443, this will require you &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000541" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Purchase a Dedicated IP&lt;/a&gt; for your Fastdomain account.  

&lt;p&gt;Dedicated IPs cost $2.50 per month, the equivalent of $30 per year (prorated to the remaining hosting term). You may purchase a Dedicated IP address from within your cPanel by clicking on the Dedicated IP tab at the top of the page.

&lt;p&gt;Once you have a dedicated IP, you will need to contact us via &lt;a href="http://bluehost.com/contact_us.html" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Phone&lt;/a&gt;, &lt;a href="http://www.bluehost.com/chat" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Live Chat&lt;/a&gt; or by &lt;a href="http://helpdesk.bluehost.com/index.php/contact" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;Opening a Ticket&lt;/a&gt; to request the specific port number is added to the firewall.

&lt;/blockquote&gt;

&lt;strong&gt;Keywords:&lt;/strong&gt; fsockopen  php rss curl remote dedicated IP port</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/152</link><pubDate>Tue, 29 Jun 2010 12:55:58 GMT</pubDate><guid isPermaLink="false">603bf49c548d0844621b49d9524fec1a</guid></item><item><title>Django</title><description>&lt;h1&gt;Problem&lt;/h1&gt;
&lt;blockquote&gt;
How do I set up Django?
&lt;/blockquote&gt;

&lt;h1&gt;Solution&lt;/h1&gt;
&lt;blockquote&gt;
&lt;strong&gt;Using Django on Fastdomain&lt;/strong&gt;
&lt;p&gt;This is a brief tutorial showing how to set up Django for either development or deployment of Django applications on Fastdomain. It is not a Django tutorial. The official Django documentation includes a tutorial as well as documentation on just about every feature that Django offers.&lt;/p&gt;

&lt;p&gt;Django is a web framework that makes it easy for developers to rapidly create complete web applications using best practices, and a clean design. It has a database abstraction layer built in, a templating engine, an automatic admin interface, and much more.&lt;/p&gt;

&lt;div id="pre-requisites" class="section"&gt;
&lt;h2&gt;Pre-requisites&lt;/h2&gt;
&lt;ul class="simple"&gt;
	&lt;li&gt;You will need &lt;a href="http://helpdesk.fastdomain.com/index.php/kb/article/000180" style="color: rgb(255, 0, 0); font-weight: bold; text-decoration: underline;"&gt;SSH access &lt;/a&gt; to use Django.&lt;/li&gt;
	&lt;li&gt;Optionally, you can install your own version of Python into your home directory. This is &lt;strong&gt;not&lt;/strong&gt; required, but can be done if you choose. All versions of Python run by any Fastdomain server can run Django.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;div id="installing-django" class="section"&gt;
&lt;h2&gt;Installing Django&lt;/h2&gt;
&lt;p&gt;Django itself is just a bunch of Python code. The way that Python code is made accessible by Python is by putting it into a directory that is on the Python path.&lt;/p&gt;
&lt;p&gt;Due to a few differences in Python 2.6, the instructions are slightly different for installation. To find out what version of Python you are running, type &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;python&lt;/span&gt; &lt;span class="pre"&gt;-V&lt;/span&gt;&lt;/tt&gt; at the command line.&lt;/p&gt;

&lt;div id="python-2-6-and-newer" class="section"&gt;
&lt;h3&gt;Python 2.6 and newer&lt;/h3&gt;
&lt;p&gt;As of Python 2.6, default location for user-specific Python code in your home directory is &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;~/.local/lib/python2.6/site-packages/&lt;/span&gt;&lt;/tt&gt;. This directory is where we will install Django.&lt;/p&gt;
&lt;p&gt;Now, you are ready to download and install the Django code to this directory. The latest release of Django is available from &lt;a href="http://www.djangoproject.com/download/" class="reference external" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;http://www.djangoproject.com/download/&lt;/a&gt;. Go ahead and download the latest version of Django to your home directory, and untar it:&lt;/p&gt;
&lt;pre class="literal-block" style="margin-left: 2em; margin-right: 2em;"&gt;
$ wget http://www.djangoproject.com/download/1.1/tarball/
$ tar xzvf Django-1.1.tar.gz
$ cd Django-1.1
&lt;/pre&gt;
&lt;p&gt;This is the Django distribution tree. Installation is easy:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
    $ python setup.py install --user
&lt;/pre&gt;
&lt;/div&gt;
&lt;div id="python-2-3-2-4-or-2-5" class="section"&gt;
&lt;h3&gt;Python 2.3, 2.4 or 2.5&lt;/h3&gt;
&lt;p&gt;First, we need a directory for Python code to reside in your home directory. Python 2.6 has made a standard for doing this, but you can follow the new convention with older versions of Python as well. Create this directory by doing the following:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
    mkdir -p ~/.local/lib/python/
&lt;/pre&gt;
&lt;p&gt;Now, we need to put this directory on your Python path. To do this, add the following to the bottom of your &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;~/.bashrc&lt;/span&gt;&lt;/tt&gt; file using a text editor:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
    export PYTHONPATH=$HOME/.local/lib/python/:$PYTHONPATH
&lt;/pre&gt;
&lt;p&gt;Re-log in to your session to effect this change.&lt;/p&gt;
&lt;p&gt;Now, you are ready to download and install the Django code to this directory. The latest release of Django is available from &lt;a href="http://www.djangoproject.com/download/" class="reference external" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;http://www.djangoproject.com/download/&lt;/a&gt;. Go ahead and download the latest version of Django to your home directory and untar it:&lt;/p&gt;
&lt;pre class="literal-block" style="margin-left: 2em; margin-right: 2em;"&gt;
$ wget http://www.djangoproject.com/download/1.1/tarball/
$ tar xzvf Django-1.1.tar.gz
$ cd Django-1.1
&lt;/pre&gt;
&lt;p&gt;This is the Django distribution tree. Installation is easy:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
    $ python setup.py install --home $HOME/.local
&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id="installing-support-libraries" class="section"&gt;
&lt;h2&gt;Installing Support Libraries&lt;/h2&gt;
&lt;p&gt;Django comes with plenty to get your site working out of the box, but it also needs some support libraries for some functionality. Each of these support libraries come with their own set of instructions for installation, and in many cases, the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;setup.py&lt;/span&gt;&lt;/tt&gt; method can be used.&lt;/p&gt;
&lt;p&gt;You will at least need the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;flup&lt;/span&gt;&lt;/tt&gt; library to get Django working on Bluehost. You may also need one or more of &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;MySQLdb&lt;/span&gt;&lt;/tt&gt;, &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;sqlite3&lt;/span&gt;&lt;/tt&gt;, or &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;psycopg2&lt;/span&gt;&lt;/tt&gt;. Depending what database you plan on using, what version of Python you are running, or what is already installed server-wide.&lt;/p&gt;
&lt;p&gt;You can download the latest version of &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;flup&lt;/span&gt;&lt;/tt&gt; from &lt;a href="http://www.saddi.com/software/flup/dist/" class="reference external" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline;' target="new"&gt;http://www.saddi.com/software/flup/dist/&lt;/a&gt;. Once downloaded, the install process is the same as it was for Django itself:&lt;/p&gt;
&lt;pre class="literal-block" style="margin-left: 2em; margin-right: 2em;"&gt;
$ wget http://www.saddi.com/software/flup/dist/flup-1.0.2.tar.gz
$ tar xzvf flup-1.0.2.tar.gz
$ cd flup-1.0.2
&lt;/pre&gt;
&lt;p&gt;For Python 2.6 and higher:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
    $ python setup.py install --user
&lt;/pre&gt;
&lt;p&gt;For Python 2.3 - 2.5:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
    $ python setup.py install --home $HOME/.local
&lt;/pre&gt;
&lt;p&gt;Follow this process for any other Python modules you will need for your project.&lt;/p&gt;
&lt;/div&gt;
&lt;div id="your-django-application" class="section"&gt;
&lt;h2&gt;Your Django Application&lt;/h2&gt;
&lt;p&gt;Your Django application is also Python code, just like &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;django&lt;/span&gt;&lt;/tt&gt; and &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;flup&lt;/span&gt;&lt;/tt&gt;. Go ahead and put your Django project directory into &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;~/.local/lib/python2.6/site-packages&lt;/span&gt;&lt;/tt&gt; or &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;~/.local/lib/python&lt;/span&gt;&lt;/tt&gt;, depending on the version of Python you are running. Once there, you will be ready to actually deploy your Django application using Apache/FastCGI.&lt;/p&gt;
&lt;p&gt;The instructions in the official Django documentation for deploying Django on shared hosting using FastCGI work perfectly on Fastdomain. The official instructions are here: &lt;a href="http://docs.djangoproject.com/en/dev/howto/deployment/fastcgi/#running-django-on-a-shared-hosting-provider-with-apache" class="reference external" style='color: rgb(255, 0, 0);font-weight: bold;text-decoration: underline; '&gt;http://docs.djangoproject.com/en/dev/howto/deployment/fastcgi/#running-django-on-a-shared-hosting-provider-with-apache&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Essentially, you need two components to make this work. The first thing you need is a fastcgi script, written in Python, that loads your Django application and starts the FastCGI listener. Here is a (slightly) modified copy of the script from the Django documentation. This example assumes your Django project is called &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;myproject&lt;/span&gt;&lt;/tt&gt;, but you should update it to be whatever your project name really is. Copy the following code, and put it into a file called &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; in your public_html directory, updating it to reflect your project:&lt;/p&gt;
&lt;pre class="literal-block" style="margin-left: 2em; margin-right: 2em;"&gt;
#!/usr/bin/python
import sys, os

# Add a custom Python path.
sys.path.insert(0, "/home/username/.local/lib/python")

# Switch to the directory of your project. (Optional.)
# os.chdir("/home/user/myproject")

# Set the DJANGO_SETTINGS_MODULE environment variable.
os.environ['DJANGO_SETTINGS_MODULE'] = "myproject.settings"

from django.core.servers.fastcgi import runfastcgi
runfastcgi(method="threaded", daemonize="false")
&lt;/pre&gt;
&lt;p&gt; 
Please note that you may need to have additional Python path locations. Simply add additional instances of the 'sys.path.insert(0, "/full/path/to/path")' lines for each location you need to add. If any of the support libraries you install are installed as eggs, you may need to add the full path to the egg. The flup module falls into this category.&lt;/p&gt;


&lt;p&gt;Make the &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi&lt;/span&gt;&lt;/tt&gt; file executable by setting the permissions to 0755. Please note that if you are using a different or a custom version of Python, that you should update &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;/usr/bin/python&lt;/span&gt;&lt;/tt&gt; on the first line to reflect the real location.&lt;/p&gt;
&lt;p&gt;Next, we'll need to set up a rewrite so you won't see &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;mysite.fcgi/&lt;/span&gt;&lt;/tt&gt; in your URL. Make sure the following code is in your &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;.htaccess&lt;/span&gt;&lt;/tt&gt; file:&lt;/p&gt;
&lt;pre class="literal-block" style="margin-left: 2em; margin-right: 2em;"&gt;
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ mysite.fcgi/$1 [QSA,L]
&lt;/pre&gt;
&lt;pre class="literal-block"&gt;
&lt;span style="font-family: Comic Sans MS;"&gt;&lt;strong&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Note:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; Django installs many files please be sure that these additional files do not exceed our terms of service. 
&lt;/pre&gt;
&lt;/div&gt;
&lt;/blockquote&gt;

&lt;b&gt;keywords&lt;/b&gt;: python django script install</description><link>http://helpdesk.fastdomain.com/index.php/kb/article/531</link><pubDate>Tue, 22 Jun 2010 21:41:11 GMT</pubDate><guid isPermaLink="false">a4cfde771eeda8f754c11967a5f46ace</guid></item></channel></rss>
