﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Knowledgebase » Knowledgebase » Linux</title><generator>InstantKB.NET 2.0.4</generator><description>Knowledgebase</description><link>http://www.webhost4life.com/HostingKB/</link><webMaster>kb@webhost4life.com</webMaster><lastBuildDate>Fri, 20 Nov 2009 20:02:47 GMT</lastBuildDate><ttl>20</ttl><item><title>How do I send email using PHP with phpMailer class</title><link>http://www.webhost4life.com/HostingKB/Goto50140.aspx</link><description>&lt;p&gt;&lt;font face="Arial"&gt;Here's a sample for using SMTP. Our server setting REQUIRES all customers to use SMTP authorization in order to send out email. You can acquire a copy of phpmailer class from http://sourceforge.net/project/showfiles.php?group_id=26031. You should upload the file "class.phpmailer.php" to same folder for your script.&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial"&gt;IMPORTANT:  From email address and your authorization email address MUST be same.&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial"&gt;&lt;br /&gt;&lt;font face="Courier New"&gt;&amp;lt;?php&lt;br /&gt;require("class.phpmailer.php");&lt;br /&gt;$mail = new PHPMailer();&lt;br /&gt;&lt;/font&gt;&lt;font face="Courier New"&gt;$mail-&gt;CharSet ="utf-8"; &lt;font color="#ff0000"&gt;// You can adjust the Charset according to your language&lt;/font&gt;&lt;br /&gt;$mail-&gt;IsSMTP();&lt;br /&gt;$mail-&gt;Host = "&lt;font color="#ff0000"&gt;mail.Yourdomain.com&lt;/font&gt;";&lt;br /&gt;&lt;/font&gt;&lt;/font&gt;&lt;font face="Arial"&gt;&lt;font face="Courier New"&gt;$mail-&gt;From="youremail@yourdomain.com"; &lt;font color="#ff0000"&gt;//REMEMBER, this MUST be same as your authorization email address above.&lt;/font&gt;&lt;br /&gt;$mail-&gt;FromName="My site's mailer";&lt;/font&gt;&lt;/font&gt;&lt;br /&gt;&lt;font face="Arial"&gt;&lt;font face="Courier New"&gt;$mail-&gt;SMTPAuth = true;&lt;br /&gt;$mail-&gt;Username = "youremail@yourdomain.com";&lt;br /&gt;$mail-&gt;Password = "yourpassword";&lt;br /&gt;&lt;br /&gt;$mail-&gt;AddAddress("sendTOemail");&lt;br /&gt;$mail-&gt;Subject = "Test 1";&lt;br /&gt;$mail-&gt;Body = "Test 1 of PHPMailer.";&lt;br /&gt;&lt;br /&gt;if(!$mail-&gt;Send())&lt;br /&gt;{&lt;br /&gt;   echo "Error sending: " . $mail-&gt;ErrorInfo;;&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;   echo "Letter is sent";&lt;br /&gt;}?&gt;&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;To add information about sender, use following functions:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial"&gt;&lt;font face="Courier New"&gt;$mail-&gt;Sender="mailer@example.com"; // indicates ReturnPath header&lt;br /&gt;$mail-&gt;AddReplyTo("replies@example.com", "Replies for my site"); // indicates ReplyTo headers&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;For specifying various types of recepients use these:&lt;br /&gt;&lt;br /&gt;&lt;font face="Courier New"&gt;$mail-&gt;AddAddress("mail1@domain.com", "Recepient 1");&lt;br /&gt;$mail-&gt;AddCC("mail1@domain.com", "Recepient 1");&lt;br /&gt;$mail-&gt;AddBCC("mail1@domain.com", "Recepient 1");&lt;/font&gt;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;font face="Arial"&gt;&lt;br /&gt;&lt;/font&gt;</description><pubDate>Mon, 16 Nov 2009 09:27:28 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>I can't use FTP to upload my .htaccess file!</title><link>http://www.webhost4life.com/HostingKB/Goto50494.aspx</link><description>To tighten the security, you cannot use FTP to upload your .htaccess file for Linux hosting.  You may find the following errors when you upload the file by FTP:&lt;br /&gt;&lt;br /&gt;- &lt;strong&gt;553 Prohibited File Name : .htaccess&lt;/strong&gt;&lt;br /&gt;- &lt;strong&gt;Unable to upload one or more files&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;In order to add/edit/upload your .htaccess file, you can use the methods below.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;Method 1: SSH&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Login to your control panel, click "Account" and find your SSH Address. It should be in the format of &lt;em&gt;sshxxx.mysite4now.net&lt;br /&gt;&lt;br /&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;Login to your account with any SSH Client such as WINSCP&lt;br /&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Host Name : (your SSH Address)&lt;/li&gt;&lt;li&gt;User Name : (your member ID)&lt;/li&gt;&lt;li&gt;Password : (Your control panel password)&lt;br /&gt;&lt;img src="/HostingKB/Uploads/Images/ssh.JPG" style="width: 519px; height: 361px;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;You can upload/edit your .htaccess file directly with your SSH Client now.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;u&gt;&lt;strong&gt;&lt;br /&gt;&lt;br /&gt;Method 2: Use our File Manager&lt;br /&gt;&lt;/strong&gt;&lt;/u&gt;&lt;ol&gt;&lt;li&gt;Login to your control panel&lt;/li&gt;&lt;li&gt;Click "Site Admin"&lt;/li&gt;&lt;li&gt;Click "File Manager"&lt;/li&gt;&lt;li&gt;The "File Manager" window pops out. &lt;br /&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;If you don't have a .htaccess file before, right click any folder and choose "new file". Then save the file as .htaccess&lt;br /&gt;&lt;/li&gt;&lt;li&gt;If you have a .htaccess file, just simply right click the file and click "edit" &lt;font color="#ff0000"&gt;(DO NOT USE Html Editor option, otherwise unnecessary code will insert)&lt;/font&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;</description><pubDate>Tue, 14 Jul 2009 10:45:54 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to upload file and use the temp url for site testing at linux</title><link>http://www.webhost4life.com/HostingKB/Goto50480.aspx</link><description>&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font size="3"&gt;Upload site contents (FTP and other uploading tools):&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;    a.) You can upload site contents to your hosting storage via different tools:&lt;br /&gt;&lt;br /&gt;    b.) Traditional FTP with FTP client programs:&lt;br /&gt;        - Each hosting account has a default FTP account to web server storage. &lt;br /&gt;        - The default FTP account's FTP is pointing to the member root folder. You can establish FTP connection with:&lt;br /&gt;            - Web Server address: sitexxx.mysite4now.net  (refer to "Account Summary")&lt;br /&gt;            - Default FTP login: [your member ID]&lt;br /&gt;            - Default FTP password: [your control panel password]&lt;br /&gt;&lt;font color="#008000"&gt;            - Related KB: &lt;em&gt;Can I use FTP software to upload/download my files? &lt;/em&gt;&lt;a href="KnowledgebaseArticle50060.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;             &lt;/font&gt;&lt;br /&gt;        - You can manage FTP accounts information via control panel:&lt;br /&gt;            - Control Panel -&gt; Security [Top Navigation Bar] -&gt; FTP manager [Left Sub Menus]&lt;br /&gt;&lt;font color="#008000"&gt;            - Related KB: &lt;em&gt;What does the FTP Manager do? &lt;/em&gt;&lt;a href="KnowledgebaseArticle50012.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;   &lt;br /&gt;        - Common Issues with FTP uploading:&lt;br /&gt;            - Related KB: &lt;em&gt;8 FTP Video Demos &lt;/em&gt;&lt;a href="KnowledgebaseArticle50071.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;            - Related KB: &lt;em&gt;How can I connect to your server with FTPeS FTP over explicit TLS/SSL?&lt;/em&gt; &lt;a href="KnowledgebaseArticle50208.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt; &lt;br /&gt;            - Related KB: &lt;em&gt;How can I upload files to my site using Internet Explorer 7?&lt;/em&gt; &lt;a href="KnowledgebaseArticle50055.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;p&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;    c.) File manager via web base control panel&lt;br /&gt;        - File manager: &lt;br /&gt;            - Control Panel -&gt; Site Admin [Top Navigation Bar] -&gt; File Manager [Left Sub Menus]&lt;br /&gt;&lt;font color="#008000"&gt;            - Related KB: &lt;em&gt;How to use file manager for Linux Hosting? &lt;/em&gt;&lt;a href="KnowledgebaseArticle50482.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;    d.) Web sFTP Tool via web base control panel&lt;br /&gt;        - Control Panel -&gt; Site Admin [Top Navigation Bar] -&gt; Web sFTP Tool [Left Sub Menus]&lt;br /&gt;&lt;font color="#008000"&gt;        - Related KB: &lt;em&gt;How to enable and use Web sFTP tool from hosting control panel? &lt;/em&gt;&lt;a href="KnowledgebaseArticle50201.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr style="border-width: 1px 0px 0px; border-top: 1px solid rgb(179, 199, 228); background: rgb(179, 199, 228) none repeat scroll 0% 0%; height: 0px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" /&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font size="3"&gt;Testing my site via temp URL:&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;    a.) Each hosting account associated with a temp URL, for example, linuxxxx.mysite4now.net/demouser (from "Account Summary")&lt;br /&gt;    &lt;br /&gt;    b.) Temp URL constructed as : web_server_address/member_ID/folder_path/file_name&lt;br /&gt;        - For example,&lt;br /&gt;            - your temp URL path is &lt;font color="#c71585"&gt;linux999.mysite4now.net/demouser&lt;/font&gt;&lt;br /&gt;            - you have sub folder named “&lt;font color="#c71585"&gt;website&lt;/font&gt;” under your member root folder &lt;br /&gt;            - there is a file named “&lt;font color="#c71585"&gt;hello.html&lt;/font&gt;” within “&lt;font color="#c71585"&gt;website&lt;/font&gt;” folder&lt;br /&gt;            - you can access the file via temp URL as:&lt;br /&gt;            - http://&lt;font color="#c71585"&gt;linux999.mysite4now.net/demouser/www/website/hello.html&lt;br /&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;</description><pubDate>Mon, 01 Jun 2009 15:58:56 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to check my Linux hosting account information?</title><link>http://www.webhost4life.com/HostingKB/Goto50478.aspx</link><description>1.) Login the web base control panel:&lt;br /&gt;    a.) You can mange your hosting account / website via the web base control panel interface:&lt;br /&gt;        - URL: https://linuxcp.mysite4now.com/wcp/ &lt;br /&gt;        - Username: [your member ID]&lt;br /&gt;        - Password: [your control panel password]&lt;br /&gt;&lt;br /&gt;    &lt;br /&gt;2.) My hosting account information:&lt;br /&gt;    a.) You can get your hosting account information from control panel:&lt;br /&gt;        - Control Panel -&gt; Account [Top Navigation Bar] -&gt; Account Summary [Left Sub Menus]&lt;br /&gt;    &lt;br /&gt;    b.) Useful hosting information can get from "Account Summary":&lt;br /&gt;        - Temp URL&lt;br /&gt;            this usually named as linuxxxx.mysite4now.net/memberID/www&lt;br /&gt;        - Web Server address&lt;br /&gt;            this is same as the first part of the Temp URL, for example, linuxxxx.mysite4now.net &lt;br /&gt;        - Base directory&lt;br /&gt;            this is the path setting where your member root folder located on server side&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3.) Member root folder/path:&lt;br /&gt;    a.) Each hosting account has its own member root folder, your web contents/files are stored under this folder/path.&lt;br /&gt;&lt;br /&gt;    b.) Member root folder/path information are displayed within “Account Summary”:&lt;br /&gt;        - Control Panel -&gt; Account [Top Navigation Bar] -&gt; Account Summary [Left Sub Menus]&lt;br /&gt;        - For example, Base Directory:  /shfs/home/demouser&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4.) Member root folder and Sub folder:&lt;br /&gt;    a.) For better site content management and security, we suggest members upload/manage their site contents with sub folder architecture.&lt;br /&gt;    &lt;br /&gt;    b.) Instead of upload all site contents to member root folder. Contents for individual site are suggested to be placed within separated sub folder.&lt;br /&gt;        - For example,&lt;br /&gt;            - /shfs/home/demouser/site1  &amp;lt;- site contents of 1st_domain.com will upload into this sub folder&lt;br /&gt;            - /shfs/home/demouser/site2  &amp;lt;- site contents of 2nd_domain.com will upload into this sub folder&lt;br /&gt;            - /shfs/home/demouser/site3  &amp;lt;- site contents of 3rd_domain.com will upload into this sub folder&lt;br /&gt;&lt;br /&gt;</description><pubDate>Sun, 24 May 2009 18:10:27 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to add domain or buy domain at linux control panel</title><link>http://www.webhost4life.com/HostingKB/Goto50481.aspx</link><description>&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;&lt;font size="3"&gt;&lt;strong&gt;Register your own domain name&lt;br /&gt;&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;a.) To host your web site with your own domain name. You need to register the domain name with a domain name registry.If you already have registered domain name, you can skip this   section.&lt;br /&gt;&lt;br /&gt;b.) If you need to purchase/register your own domain name, you can register the domain name via control panel:&lt;br /&gt;        - Control Panel -&gt; Domains [Top Navigation Bar] -&gt; Buy Domain Name! [Left Sub Menus] &lt;br /&gt;        &lt;font color="#008000"&gt;- Related KB: &lt;em&gt;Domain Tutorial &lt;/em&gt;&lt;/font&gt;&lt;a href="KnowledgebaseArticle50415.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;c.) If you purchased/registered the domain name from us, you can manage the registered domain via control panel:&lt;br /&gt;        - Control Panel -&gt; Domains [Top Navigation Bar] -&gt; Domain Manager [Left Sub Menus]&lt;br /&gt;&lt;br /&gt;&lt;font color="#ff0000"&gt;    * After purchased/registered the domain name via the control panel, the domain name has not been hosted within our system yet.&lt;br /&gt;       You need to host the domain name into our system via control panel.&lt;br /&gt;       Please refer to the next part.&lt;/font&gt;&lt;br /&gt; &lt;/font&gt;&lt;/font&gt;&lt;hr style="border-width: 1px 0px 0px; border-top: 1px solid rgb(179, 199, 228); background: rgb(179, 199, 228) none repeat scroll 0% 0%; height: 0px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" /&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;&lt;font size="3"&gt;&lt;strong&gt;Hosting your own domain name&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/font&gt;a.) Hosting a domain name to our system via control panel:&lt;br /&gt;        - Control Panel -&gt; Domains [Top Navigation Bar] -&gt; Domain Name [Left Sub Menus] -&gt; Add to Subfolder or Add to Root&lt;br /&gt;        - For example,&lt;br /&gt;            - Domain Name: http://www.[&lt;font color="#c71585"&gt;mydomain.com&lt;/font&gt;   ]&lt;font color="#ff0000"&gt;  &amp;lt;- enter your registered domain name&lt;/font&gt;                            &lt;br /&gt;            - Map To: /shfs/home/demouser/www/[&lt;font color="#c71585"&gt;website&lt;/font&gt;   ]&lt;font color="#ff0000"&gt;  &amp;lt;- map the domain root folder path to existing folder (only for Add domain to Subfolder) &lt;/font&gt;            &lt;br /&gt;            - [Add Domain]: (Click Once Only. This might take up to 5 mins.)&lt;font color="#ff0000"&gt;  &amp;lt;- click the "add domain" button once to process&lt;br /&gt;        &lt;font color="#008000"&gt;- Related KB: &lt;em&gt;Domain Tutorial &lt;/em&gt;&lt;/font&gt;&lt;a href="KnowledgebaseArticle50415.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;/font&gt;&lt;font color="#008000"&gt;        - Related KB: &lt;em&gt;How can I add/delete domain to my hosting account?&lt;/em&gt;&lt;a href="KnowledgebaseArticle50207.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;        - Related KB: &lt;em&gt;How can I add domain to my hosting account?&lt;/em&gt;&lt;a href="KnowledgebaseArticle50412.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;br /&gt;&lt;/a&gt; &lt;/font&gt;&lt;br /&gt;b.) Control panel display hosted domain list as:&lt;br /&gt;        - Control Panel -&gt; Domains [Top Navigation Bar] -&gt; View All Domains and Subdomains [Left Sub Menus]&lt;br /&gt;&lt;br /&gt;    &lt;font color="#ff0000"&gt;* Hosting a domain name to our system does not mean you've purchased/registered your domain name. &lt;br /&gt;       You need to purchase/register a domain name with domain name provider&lt;br /&gt;       Please refer to "Register your own domain name"&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;hr style="border-width: 1px 0px 0px; border-top: 1px solid rgb(179, 199, 228); background: rgb(179, 199, 228) none repeat scroll 0% 0%; height: 0px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" /&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;&lt;font size="3"&gt;&lt;strong&gt;Manage your Domain to point to web server  &lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/font&gt;a.) If you purchased/registered your domain name from us, &lt;br /&gt;        - the domain name server(DNS) setting should have been pointed to our name servers.&lt;br /&gt;        - Furthermore, you can manage domain name server setting via control panel:&lt;br /&gt;            - Control Panel -&gt; Domains [Top Navigation Bar] -&gt; Domain Manager [Left Sub Menus]&lt;br /&gt;&lt;br /&gt;b.) If you purchased/registered your domain name from other Domain Name Provider/Registrar&lt;br /&gt;        - please login domain name provider's management panel&lt;br /&gt;        - update your registered domain name server setting to point to our name servers pair &lt;br /&gt;        &lt;font color="#008000"&gt;- Related KB: &lt;em&gt;14 Video Demos on how to change DNS in domain name registrar &lt;/em&gt;&lt;/font&gt;&lt;a href="KnowledgebaseArticle50149.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;font color="#ff0000"&gt;        * please remember to remove the existing remote name servers and add our name server pairs only, &lt;br /&gt;          otherwise the domain query may handled with remote name server and resolve to incorrect IP address&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;c.) Each hosted domain within our system will be handled with our name server pair:&lt;br /&gt;        - Control Panel -&gt; DNS [Top Navigation Bar] -&gt; Zone Editor [Left Sub Menus] -&gt; Select Domain and [Edit Zone]&lt;br /&gt;        - The name server pair information can find under “DNS group:”&lt;br /&gt;        - &lt;font color="#008000"&gt;Related KB: &lt;em&gt;How can I check which Name Servers my domain is hosting on?&lt;/em&gt; &lt;/font&gt;&lt;a href="KnowledgebaseArticle50413.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;d.) Common issues with Domain name management:&lt;br /&gt;        - My Domain does not work!&lt;br /&gt;&lt;font color="#008000"&gt;            - Related KB: &lt;em&gt;I am not sure whether my domain is working properly. What can I do?&lt;/em&gt; &lt;/font&gt;&lt;a href="KnowledgebaseArticle50156.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;font color="#008000"&gt;  &lt;br /&gt;            - Related KB: &lt;em&gt;Why does my domain not resolve? &lt;/em&gt;&lt;/font&gt;&lt;a href="KnowledgebaseArticle50296.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;br /&gt;&lt;/font&gt;&lt;/a&gt;&lt;font color="#008000"&gt;            - Related KB: &lt;em&gt;What if I do not have access to my current domain name to change DNS?&lt;/em&gt; &lt;/font&gt;&lt;a href="KnowledgebaseArticle50161.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;a href="KnowledgebaseArticle50156.aspx"&gt;&lt;br /&gt;&lt;/a&gt;        - Transfer Domain to us:&lt;br /&gt;&lt;font color="#008000"&gt;            - Related KB: &lt;em&gt;I have registered my domain with previous registration system, &lt;br /&gt;                                 and I want to be able to see this domain at the domain manager area  &lt;/em&gt;&lt;/font&gt;&lt;a href="KnowledgebaseArticle50326.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;a href="KnowledgebaseArticle50292.aspx"&gt;&lt;br /&gt;&lt;/a&gt;            &lt;font color="#008000"&gt;- Related KB: &lt;em&gt;What is the pre-condition required in order to transfer my domain name to our hosting?&lt;/em&gt;&lt;/font&gt;&lt;a href="KnowledgebaseArticle50356.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt; &lt;br /&gt;            - &lt;font color="#008000"&gt;Related KB: &lt;em&gt;How can I tansfer my domain name from current domain name provider to you&lt;/em&gt; &lt;/font&gt;&lt;a href="Search.aspx?Keywords=Transfer%20domain%20names"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;br /&gt;&lt;/font&gt;&lt;/a&gt;    &lt;font color="#008000"&gt;        - Related KB: &lt;em&gt;How can I transfer an Expired Domain?&lt;/em&gt; &lt;/font&gt;&lt;a href="KnowledgebaseArticle50292.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;        &lt;font color="#008000"&gt;    - Related KB: &lt;em&gt;What is your IPS Tag for my co.uk domain?&lt;/em&gt; &lt;/font&gt;&lt;a href="KnowledgebaseArticle50165.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;/font&gt;&lt;/font&gt;&lt;hr style="border-width: 1px 0px 0px; border-top: 1px solid rgb(179, 199, 228); background: rgb(179, 199, 228) none repeat scroll 0% 0%; height: 0px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" /&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;&lt;font size="3"&gt;&lt;strong&gt;Browse the site with your domain name&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/font&gt;a.) Normally, after DNS propagation, you should able to browse to your site with the domain name.&lt;br /&gt;&lt;br /&gt;b.) Common issue: My domain does not show up? &lt;br /&gt;        - You can check with follow tips:&lt;br /&gt;&lt;br /&gt;            - Have I uploaded my site contents to the correct web server &lt;br /&gt;                - Check with FTP or File Manager within the control panel&lt;br /&gt;&lt;br /&gt;            - Have I hosted the domain into the system yet&lt;br /&gt;                - Refer to section "Hosting your own domain name"&lt;br /&gt;&lt;br /&gt;            - Does the domain map to the correct folder/path&lt;br /&gt;                - Check with control panel if the domain entry point to correct folder:&lt;br /&gt;                - Control Panel -&gt; Site Admin [Top Navigation Bar] -&gt; Change Path [Left Sub Menus]&lt;br /&gt;                - If the domain mapped to incorrect domain root folder, you can update the domain root folder path via this function    &lt;br /&gt;&lt;br /&gt;            - Is the domain handled with correct name servers / resolve to the correct web server &lt;br /&gt;                - Check with web base DNS report tool, for example,&lt;a href="http://www.dnscolos.com/free-dns-report.html"&gt;http://www.dnscolos.com/free-dns-report.html&lt;/a&gt;                &lt;br /&gt;                - Try ping test to the domain name&lt;br /&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;</description><pubDate>Sun, 24 May 2009 17:47:44 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>Information about Email, Database and File permission of Linux plan</title><link>http://www.webhost4life.com/HostingKB/Goto50483.aspx</link><description>&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;&lt;font size="3"&gt;&lt;strong&gt;Email&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;    a.) Email service included for any domain which added from control panel (except subdomain)&lt;br /&gt;&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/font&gt;    b.) &lt;/span&gt;The mail domain service can access via:&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;  &lt;p&gt;        - URL: http://mail.yourdomain.com &lt;br /&gt;        - Admin login: postmaster    &lt;em&gt;or&lt;/em&gt;     postmaster@yourdomain.com&lt;br /&gt;        - Password: [your contronl panel password]&lt;/p&gt;&lt;p&gt;    c.) Manage your mail domain:&lt;br /&gt;        - Email User / Alias    &lt;br /&gt;            - Control Panel -&gt; Mail [Top Navigation Bar] -&gt; Email Manager [Left Sub Menus] -&gt; Select Mail domain and "Go"&lt;br /&gt;        - Email Quota&lt;br /&gt;            - Control Panel -&gt; Mail [Top Navigation Bar] -&gt; Quota Manager [Left Sub Menus]&lt;br /&gt;        - Advance Email Managment    &lt;br /&gt;            - For Advance Features such as Spam Management, Content Filtering, Auto responder and more&lt;br /&gt;            - please login to your webmail at http://mail.yourdomain.com, with postmaster account&lt;br /&gt;            - manage though the smarter mail web base interface&lt;br /&gt;        - Related KB: SmarterMail Administration Tutorial&lt;a href="../KnowledgebaseArticle50411.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;    e.) Common issue with Email service:&lt;br /&gt;&lt;font color="#008000"&gt;        - Related KB: &lt;em&gt;What is my POP3, IMAP and SMTP server?&lt;/em&gt; &lt;/font&gt;&lt;a href="../KnowledgebaseArticle50426.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;br /&gt;&lt;/font&gt;&lt;/a&gt;&lt;font color="#008000"&gt;        - Related KB: &lt;em&gt;How to config my email setting on Outlook or Outlook express?&lt;/em&gt; &lt;/font&gt;&lt;a href="../KnowledgebaseArticle50418.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;hr style="border-width: 1px 0px 0px; border-top: 1px solid rgb(179, 199, 228); background: rgb(179, 199, 228) none repeat scroll 0% 0%; height: 0px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" /&gt;&lt;font size="3"&gt;&lt;strong&gt;Database&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;    &lt;br /&gt;    a.) MySQL Database &lt;br /&gt;    &lt;font color="#ff0000"&gt;    &lt;/font&gt;&lt;font color="#000080"&gt;- You can create/manage/delete MySQL DB via control panel:&lt;/font&gt;&lt;br /&gt;        - Control Panel -&gt; Database [Top Navigation Bar] -&gt; MySQL Admin [Left Sub Menus]&lt;br /&gt;        &lt;font color="#008000"&gt;- Related KB: &lt;em&gt;What do I use to connect to MySQL?&lt;/em&gt; &lt;/font&gt;&lt;a href="../KnowledgebaseArticle50068.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;   &lt;br /&gt;&lt;br /&gt;    b.) Common issue with Database&lt;br /&gt;&lt;font color="#008000"&gt;        - Related KB: &lt;em&gt;How do I backup my database?&lt;/em&gt;&lt;/font&gt;&lt;a href="../KnowledgebaseArticle50032.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt;&lt;/font&gt;&lt;/a&gt;&lt;font color="#008000"&gt;  &lt;br /&gt;        - Related KB: &lt;em&gt;I can't login FTP to retrieve my db backup file.&lt;/em&gt;&lt;/font&gt;&lt;a href="../KnowledgebaseArticle50062.aspx"&gt;&lt;font color="#008000"&gt;&amp;lt;click here&gt; &lt;/font&gt;&lt;/a&gt;&lt;br /&gt; &lt;hr style="border-width: 1px 0px 0px; border-top: 1px solid rgb(179, 199, 228); background: rgb(179, 199, 228) none repeat scroll 0% 0%; height: 0px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" /&gt;&lt;font size="3"&gt;&lt;strong&gt;File permission&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;    a.) You can manage the file permission by following method:&lt;br /&gt;         1) Control Panel -&gt; Site Admin [Top Navigation Bar] -&gt; File Manager [Left Sub Menus], tick the check box of file or folder, input the file permission number and click "chmod" button [Right Sub Menus]&lt;br /&gt;        2) Connect you server via ssh&lt;br /&gt;            - server name : linuxxxx.mysite4now.net&lt;br /&gt;            - login name : [Your account ID]&lt;br /&gt;            - password : [Your control panel's password]&lt;br /&gt;            after login, you can use the chmod function to change file or folder permission&lt;br /&gt;&lt;br /&gt;    b.) Detail information of chmod method and number of file permission can be found &amp;lt;&lt;a href="http://en.wikipedia.org/wiki/Chmod"&gt;Here&lt;/a&gt;&gt;     &lt;/span&gt;&lt;br /&gt;</description><pubDate>Sun, 24 May 2009 17:42:54 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>Quick Start Guide for My Site (Linux hosting)</title><link>http://www.webhost4life.com/HostingKB/Goto50484.aspx</link><description>                                                                                                                                            &lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;&lt;p&gt;This article will go though follow topic &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;My Hosting Account:&lt;/strong&gt;  Please check &amp;lt;&lt;a href="http://www.webhost4life.com/HostingKB/KnowledgebaseArticle50478.aspx"&gt;here&lt;/a&gt;&gt; for detail information&lt;br /&gt;    - Login the web base control panel&lt;br /&gt;    - My hosting account information&lt;br /&gt;    - Member root folder/path&lt;br /&gt;    - Member root folder and Sub folder &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Upload and temp URL:&lt;/strong&gt;  &lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;Please check &amp;lt;&lt;a href="http://www.webhost4life.com/HostingKB/KnowledgebaseArticle50480.aspx"&gt;here&lt;/a&gt;&gt; for detail information&lt;/span&gt;&lt;br /&gt;    - Upload site contents (FTP and other uploading tools)&lt;br /&gt;    - Testing my site via temp URL&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;My Domain:&lt;/strong&gt;  &lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;Please check &amp;lt;&lt;a href="http://www.webhost4life.com/HostingKB/KnowledgebaseArticle50481.aspx"&gt;here&lt;/a&gt;&gt; for detail information&lt;/span&gt;&lt;br /&gt;    - Register your own domain name&lt;br /&gt;    - Hosting your own domain name&lt;br /&gt;    - Manage your Domain to point to web server &lt;br /&gt;    - Browse the site with your domain name&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Others:   &lt;/strong&gt;&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;Please check &amp;lt;&lt;a href="http://www.webhost4life.com/HostingKB/KnowledgebaseArticle50483.aspx"&gt;here&lt;/a&gt;&gt; for detail information&lt;/span&gt;&lt;br /&gt;    - Email&lt;br /&gt;    - Database&lt;br /&gt;    - File Permission&lt;br /&gt;    &lt;br /&gt;&lt;/p&gt;&lt;/span&gt;</description><pubDate>Sun, 24 May 2009 17:40:37 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to setup custom error responses?</title><link>http://www.webhost4life.com/HostingKB/Goto50198.aspx</link><description>&lt;p&gt;&lt;font face="Arial" color="#000000" size="2"&gt;&lt;font face="Arial"&gt;You can modify .htaccess file under your domain mapping root to setup custom error. The syntax is like that:&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" color="#000000" size="2"&gt;&lt;font face="Courier"&gt;ErrorDocument &amp;lt;3-digit-http-status-code&gt; Action&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" color="#000000" size="2"&gt;&lt;font face="Arial"&gt;Following are some samples:&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" color="#000000" size="2"&gt;&lt;font face="Courier"&gt;ErrorDocument 500 /cgi-bin/500.html&lt;br /&gt;ErrorDocument 500 "Sorry, our script crashed."&lt;br /&gt;ErrorDocument 500 &lt;/font&gt;&lt;font face="Courier"&gt;http://www.yourdomain.com/&lt;/font&gt;&lt;br /&gt;&lt;font face="Arial"&gt;&lt;font face="Courier"&gt;ErrorDocument 404 /error/not_found.html&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;Ref: &lt;/font&gt;&lt;a href="http://httpd.apache.org/docs/1.3/custom-error.html"&gt;&lt;font face="Arial"&gt;http://httpd.apache.org/docs/1.3/custom-error.html&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" color="#000000" size="2"&gt;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" color="#000000" size="2"&gt;&lt;font face="Arial"&gt;In addition, you may setup custom error on your domain via hosting control panel -&gt; site admin -&gt; &lt;/font&gt;&lt;/font&gt;&lt;font face="Arial" color="#000000" size="2"&gt;&lt;span style="color: rgb(255, 255, 255); font-family: Verdana,Helvetica,Arial; font-style: normal; font-variant: normal; font-size: 10px; line-height: normal; font-size-adjust: none; font-stretch: normal; font-weight: bold;"&gt;&lt;span style="color: rgb(255, 255, 255); font-family: Verdana,Helvetica,Arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; line-height: normal; font-size-adjust: none; font-stretch: normal;" /&gt;&lt;/span&gt;&lt;/font&gt;&lt;font face="Arial" color="#000000" size="2"&gt;Set Custom Error&lt;/font&gt;&lt;/p&gt;</description><pubDate>Tue, 19 May 2009 09:52:16 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>Error: Forbidden You don't have permission to access / on this server</title><link>http://www.webhost4life.com/HostingKB/Goto50457.aspx</link><description>If you get this error on site hosted on Linux server:&lt;br /&gt;&lt;br /&gt;&lt;title&gt;HTML clipboard&lt;/title&gt;&lt;font face="Times New Roman" color="#ff0000" style="font-size: 13pt;"&gt;&lt;span lang="EN-US"&gt;Forbidden&lt;br /&gt;		 You don't have permission to access / on this server.&lt;br /&gt;		 -------------------------------------------------------------------------------&lt;br /&gt;		 Apache/2.2.3 (CentOS) Server at domain.com Port 80&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;then need to check following:&lt;br /&gt;1. There is default page in the requesting path / folder&lt;br /&gt;2. Permission is correct, for the folder need to grant 755 permission, and the file need 644 permission.&lt;br /&gt;3. Notice that Linux system is case sensitive. Make sure the requesting path is mapping the actual files/folder name on server.&lt;br /&gt;&lt;br /&gt;</description><pubDate>Thu, 07 May 2009 12:42:44 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to setup redirection on Apache?</title><link>http://www.webhost4life.com/HostingKB/Goto50450.aspx</link><description>&lt;p&gt;You can modify .htaccess file under your domain mapping root to setup redirection.&lt;/p&gt;&lt;p&gt;To redirect &lt;a href="http://www.domain.com/"&gt;www.domain.com&lt;/a&gt; to &lt;a href="http://www.newdomain.com/"&gt;www.newdomain.com&lt;/a&gt; , add following line to .htaccess:&lt;br /&gt;&lt;br /&gt;&lt;span class="Code"&gt;RedirectMatch 301 ^(.*)$ &lt;a href="http://www.newdomain.com/"&gt;http://www.newdomain.com&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;To redirect domain.com to &lt;a href="http://www.domain.com/"&gt;www.domain.com&lt;/a&gt;, add following lines to .htaccess:&lt;br /&gt;&lt;br /&gt;&lt;span class="Code"&gt;RewriteCond %{HTTP_HOST} ^domain\.com&lt;br /&gt;RewriteRule ^(.*)$ &lt;a href="http://www.domain.com/$1"&gt;http://www.domain.com/$1&lt;/a&gt; [R=permanent,L]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;To redirect domain.com to domain.com/hello.php, add following lines to .htaccess:&lt;/p&gt;&lt;p&gt;&lt;span class="Code"&gt;RewriteEngine On&lt;br /&gt;RewriteCond %{HTTP_HOST} ^domain.com$&lt;br /&gt;RewriteRule ^$ &lt;a href="http://domain.com/hello.php"&gt;http://domain.com/hello.php&lt;/a&gt; [L,R=301]&lt;/span&gt;&lt;/p&gt;</description><pubDate>Mon, 20 Apr 2009 17:21:56 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How do I use .htaccess directives on an Apache server to serve files with a specific encoding?</title><link>http://www.webhost4life.com/HostingKB/Goto50197.aspx</link><description>&lt;font face="Arial" size="2"&gt;Answer: Specify by extension&lt;/font&gt;&lt;p&gt;&lt;font face="Arial" size="2"&gt;Use the AddCharset directive toassociate the character encoding with all files having a particularextension in the current directory and its subdirectories. For example,to serve all files with the extension .html as UTF-8, open the .htaccess file in a plain text editor and type the following line:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" size="2"&gt;Example:&lt;/font&gt;&lt;/p&gt;&lt;pre&gt;&lt;font face="Arial" size="2"&gt;AddDefaultCharset UTF-8&lt;/font&gt;&lt;/pre&gt;&lt;p&gt;&lt;font face="Arial" size="2"&gt;Example for gb2312 &lt;/font&gt;&lt;/p&gt;&lt;pre&gt;&lt;font face="Arial" size="2"&gt;AddDefaultCharset gb2312&lt;/font&gt;&lt;/pre&gt;</description><pubDate>Wed, 10 Dec 2008 16:45:35 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How do I turn on certain PHP flags?</title><link>http://www.webhost4life.com/HostingKB/Goto50196.aspx</link><description>&lt;p&gt;&lt;font face="Arial" color="#000000" size="2"&gt;You can do that by putting the flag in your .htaccess&lt;/font&gt;&lt;font face="Arial" color="#000000" size="2"&gt;&lt;font face="Arial"&gt; under your domain mapping root &lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" color="#000000" size="2"&gt;Ex:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" color="#000000" size="2"&gt;php_flag magic_quotes_gpc on&lt;/font&gt;&lt;/p&gt;</description><pubDate>Wed, 10 Dec 2008 16:43:28 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>You don't have permission to access</title><link>http://www.webhost4life.com/HostingKB/Goto50200.aspx</link><description>&lt;p&gt;&lt;font face="Arial" size="2"&gt;When I try to browse my website, I get a Error 403 Forbidden You don't have permission to access.&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" size="2"&gt;To fix this, please make sure all your .htaccess files in all of your folders have chmod 0644.&lt;/font&gt;&lt;/p&gt;</description><pubDate>Wed, 10 Dec 2008 16:40:53 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to convert permission from Linux/Unix to Window</title><link>http://www.webhost4life.com/HostingKB/Goto50123.aspx</link><description>&lt;p align="left"&gt;&lt;font face="MS Sans Serif" size="2"&gt;You cannot set CHMOD on a Windows 2000 or 2003 serversince CHMOD is a Unix/Linux server command function that does not workon Windows IIS servers. However, you can set read write and executepermissions by using the tool in hosting control panel under the "filepermission".  You can check out the tutorial on our "&lt;a href="http://www.webhost4life.com/hostingKB/KnowledgebaseArticle50122.aspx"&gt;file permission&lt;/a&gt;" section.&lt;/font&gt;&lt;/p&gt;&lt;p align="center"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;(File Permissions)&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;&lt;table border="1" width="79%" id="table3"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td bgcolor="#c0c0c0" align="center" width="45%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;PERMISSION &lt;/strong&gt;&lt;/font&gt;&lt;/td&gt;&lt;td bgcolor="#c0c0c0" align="center" width="55%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt; COMMAND  &lt;/strong&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="45%"&gt;&lt;p align="left"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;U   G   E&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width="55%"&gt;&lt;font face="MS Sans Serif" size="2"&gt; &lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="45%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;rwx rwx rwx &lt;/font&gt;&lt;/td&gt;&lt;td width="55%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;chmod 777 filename&lt;/strong&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="45%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;rwx rwx r-x &lt;/font&gt;&lt;/td&gt;&lt;td width="55%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;chmod 775 filename&lt;/strong&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="45%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;rwx r-x r-x&lt;/font&gt;&lt;/td&gt;&lt;td width="55%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;chmod 755 filename&lt;/strong&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="45%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;rw- rw- r-- &lt;/font&gt;&lt;/td&gt;&lt;td width="55%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;chmod 664 filename&lt;/strong&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="45%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;rw- r-- r-&lt;/font&gt;&lt;/td&gt;&lt;td width="55%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;chmod 644 filename&lt;/strong&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="45%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;U&lt;/strong&gt; = User &lt;br /&gt;&lt;strong&gt;G&lt;/strong&gt; = Group &lt;br /&gt;&lt;strong&gt;E&lt;/strong&gt; = Everyone&lt;/font&gt;&lt;/td&gt;&lt;td width="55%"&gt;&lt;font face="MS Sans Serif" size="2"&gt;&lt;strong&gt;r &lt;/strong&gt;= Readable&lt;br /&gt;&lt;strong&gt;w&lt;/strong&gt; = writable&lt;br /&gt;&lt;strong&gt;x &lt;/strong&gt;= executable &lt;br /&gt;&lt;strong&gt;- &lt;/strong&gt;= no permission&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;&lt;font face="MS Sans Serif" size="2"&gt;Here is anther way of looking at CHMOD Commands translated to Windows permissions&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="MS Sans Serif" size="2"&gt;Permissions:&lt;br /&gt;&lt;br /&gt;400 read by owner&lt;br /&gt;040 read by group&lt;br /&gt;004 read by anybody (other)&lt;br /&gt;200 write by owner&lt;br /&gt;020 write by group&lt;br /&gt;002 write by anybody&lt;br /&gt;100 execute by owner&lt;br /&gt;010 execute by group&lt;br /&gt;001 execute by anybody&lt;/font&gt;&lt;/p&gt;&lt;div align="left"&gt;&lt;p align="left"&gt;&lt;font face="MS Sans Serif" size="2"&gt;To find the combination,  just add them up. &lt;/font&gt;&lt;/p&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;pre&gt;&lt;font face="MS Sans Serif" size="2"&gt;For example, to get read write execute by owner, &lt;/font&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;pre&gt;&lt;font face="MS Sans Serif" size="2"&gt;read execute by group, and execute by anybody,&lt;br /&gt;you would add 400 200 100 040 010 001 to give 751.&lt;/font&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;pre&gt;&lt;font face="MS Sans Serif" size="2"&gt; &lt;/font&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;p align="left"&gt;&lt;font face="MS Sans Serif" size="2"&gt;PERMISSION            COMMAND    &lt;br /&gt;&lt;br /&gt;         U   G   W&lt;br /&gt;        rwx rwx rwx          chmod 777 filename       &lt;br /&gt;        rwx rwx r-x            chmod 775 filename&lt;br /&gt;        rwx r-x r-x              chmod 755 filename&lt;br /&gt;        rw- rw- r--              chmod 664 filename&lt;br /&gt;        rw- r-- r--                chmod 644 filename&lt;br /&gt;&lt;br /&gt;        U = User &lt;br /&gt;        G = Group &lt;br /&gt;        W = Everyone&lt;br /&gt;&lt;br /&gt;        r = Readable&lt;br /&gt;        w = writable&lt;br /&gt;        x = executable &lt;br /&gt;        - = no permission&lt;/font&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;font face="MS Sans Serif" size="2"&gt;NOTE: If you are still having trouble understanding how to convertpermission setting from unix/linux system to Window, just open a &lt;a target="_blank" href="http://helpdesk.webhost4life.com/"&gt;helpdesk ticket&lt;/a&gt; and our support team will help you out.&lt;/font&gt;&lt;/p&gt;</description><pubDate>Sun, 30 Nov 2008 16:49:23 GMT</pubDate><dc:creator>Mark</dc:creator></item></channel></rss>