<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Design and Web Programming Professionals in Syracuse NY - Update, Promte, Optimize and Improve Website &#187; server file system</title>
	<atom:link href="http://www.webredesignpro.com/tag/server-file-system/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webredesignpro.com</link>
	<description>Web design, whether starting from scratch or redesigning, is all about planning and organization. Think long-term but focus on short-term -- and never lose sight of your customer.</description>
	<lastBuildDate>Sat, 10 Jul 2010 12:04:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Server File Permissions</title>
		<link>http://www.webredesignpro.com/2009/09/14/file-permissions/</link>
		<comments>http://www.webredesignpro.com/2009/09/14/file-permissions/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 06:07:47 +0000</pubDate>
		<dc:creator>kela</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Templates]]></category>
		<category><![CDATA[.htassess]]></category>
		<category><![CDATA[644]]></category>
		<category><![CDATA[755]]></category>
		<category><![CDATA[777]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[file access]]></category>
		<category><![CDATA[File Permissions]]></category>
		<category><![CDATA[filesystem permissions]]></category>
		<category><![CDATA[hosting permissions]]></category>
		<category><![CDATA[online permission]]></category>
		<category><![CDATA[permission mode]]></category>
		<category><![CDATA[permission modes]]></category>
		<category><![CDATA[read write permissions]]></category>
		<category><![CDATA[server file system]]></category>
		<category><![CDATA[server permissions]]></category>
		<category><![CDATA[user group]]></category>
		<category><![CDATA[web server permission]]></category>

		<guid isPermaLink="false">http://webredesignpro.com/?p=42</guid>
		<description><![CDATA[On computer filesystems, different files and directories have permissions that specify who and what can read, write, modify and access them. This is important because ]]></description>
			<content:encoded><![CDATA[<p>On computer filesystems, different files and directories have <strong>permissions</strong> that specify who and what can read, write, modify and access them. This is important because<br />
<a id="Permission_Modes" name="Permission_Modes"></a></p>
<h2>Permission Modes</h2>
<pre style="background-color: #bfe4ff; width: 45%; color: #000; font-size: 1.1em; font-weight: bold; border: #80c9ff 1px solid; padding: 0.5em;">  7       7     7
 user   group  world
 r+w+x  r+x    r+x
 4+2+1  4+0+1  4+0+1  = 755</pre>
<p>The permission mode is computed by adding up the following values for the user, the file group, and for everyone else. The diagram shows how.</p>
<ul>
<li><strong>R</strong>ead 4 &#8211; Allowed to read files</li>
<li><strong>W</strong>rite 2 &#8211; Allowed to write/modify files</li>
<li>e<strong>X</strong>ecute1 &#8211; Read/write/delete/modify/directory</li>
</ul>
<pre style="background-color: #bfffbf; width: 45%; color: #000; font-size: 1.1em; font-weight: bold; border: #80ff80 1px solid; padding: 0.5em;">  7       7      4
 user   group  world
 r+w+x    r      r
 4+2+1  4+0+0  4+0+0  = 644</pre>
<p><a id="Example_Permission_Modes" name="Example_Permission_Modes"></a></p>
<h3>Example Permission Modes</h3>
<table border="0">
<tbody>
<tr style="margin: 0px auto; width: 99%;" align="center" bgcolor="#eee">
<th><strong>Mode</strong></th>
<th><strong>Str Perms</strong></th>
<th><strong>Explanation</strong></th>
</tr>
<tr>
<td><strong>0477</strong></td>
<td>-r&#8211;rwxrwx</td>
<td>owner has read only (4), other and group has rwx (7)</td>
</tr>
<tr>
<td><strong>0677</strong></td>
<td>-rw-rwxrwx</td>
<td>owner has rw only(6), other and group has rwx (7)</td>
</tr>
<tr>
<td><strong>0444</strong></td>
<td>-r&#8211;r&#8211;r&#8211;</td>
<td>all have read only (4)</td>
</tr>
<tr>
<td><strong>0666</strong></td>
<td>-rw-rw-rw-</td>
<td>all have rw only (6)</td>
</tr>
<tr>
<td><strong>0400</strong></td>
<td>-r&#8212;&#8212;&#8211;</td>
<td>owner has read only(4), group and others have no permission(0)</td>
</tr>
<tr>
<td><strong>0600</strong></td>
<td>-rw&#8212;&#8212;-</td>
<td>owner has rw only, group and others have no permission</td>
</tr>
<tr>
<td><strong>0470</strong></td>
<td>-r&#8211;rwx&#8212;</td>
<td>owner has read only, group has rwx, others have no permission</td>
</tr>
<tr>
<td><strong>0407</strong></td>
<td>-r&#8212;&#8211;rwx</td>
<td>owner has read only, other has rwx, group has no permission</td>
</tr>
<tr>
<td><strong>0670</strong></td>
<td>-rw-rwx&#8212;</td>
<td>owner has rw only, group has rwx, others have no permission</td>
</tr>
<tr>
<td><strong>0607</strong></td>
<td>-rw&#8212;-rwx</td>
<td>owner has rw only, group has no permission and others have rwx</td>
</tr>
</tbody>
<caption>See full list <a title="http://www.askapache.com/security/chmod-stat.html#chmod-0-to-7777" href="http://www.askapache.com/security/chmod-stat.html#chmod-0-to-7777" target="_blank">0000 to 0777</a>. </caption>
</table>
<p><a id="Permission_Scheme_for_WordPress" name="Permission_Scheme_for_WordPress"></a></p>
<h2>Permission Scheme for WordPress</h2>
<p>All files should be owned by your user account on your web server, and should be writable by your username. Any file that needs write access from WordPress should be group-owned by the user account used by the webserver. For example, you may have a user account that lets you FTP files back and forth to your server, but your server itself may run using a separate user, in a separate usergroup. A user such as <strong>dhapache</strong> or <strong>nobody</strong>.</p>
<p>The file and folder permissions of wordpress should be the same for most users, depending on the type of installation you performed and the umask settings of your system environment at the time of install.</p>
<div style="BORDER-BOTTOM: #c6d9e9 1px solid; BORDER-LEFT: #c6d9e9 1px solid; PADDING-BOTTOM: 7px; BACKGROUND-COLOR: #ffffff; MARGIN: 0.5em auto; PADDING-LEFT: 7px; PADDING-RIGHT: 7px; COLOR: #000000; CLEAR: both; VERTICAL-ALIGN: middle; BORDER-TOP: #c6d9e9 1px solid; BORDER-RIGHT: #c6d9e9 1px solid; PADDING-TOP: 7px"><strong>NOTE:</strong> If you installed WordPress yourself, you likely do not need to modify file permissions. Unless you are experiencing problems with permission errors, or you <em>want to</em>, you probably should not mess with this.</div>
<p>For core WordPress files, all should be writable only by your user account. However, if you utilize mod_rewrite Permalinks or other .htaccess features you should make sure that WordPress can also write to your <code>/.htaccess</code> file.<br />
If you want to use the built-in theme editor, all files need to be group writable. Try using it before modifying file permissions, it should work.</p>
<p>Some plugins require the /wp-content/ folder be made writeable, but in such cases they will let you know during installation. In some cases, this may require assigning 755 permissions or higher (e.g. 777 on some hosts). The same is true for <code>/wp-content/cache/</code> and maybe <code>/wp-content/uploads/</code></p>
<p>Additional directories under /wp-content/ should be documented by whatever plugin / theme requires them. <strong>Permissions will vary.</strong></p>
<pre>/
|- index.php
|- wp-admin
|   `- wp-admin.css
|- wp-blog-header.php
|- wp-comments-post.php
|- wp-commentsrss2.php
|- wp-config.php
|- wp-content
|   |- cache
|   |- plugins
|   |- themes
|   `- uploads
|- wp-cron.php
|- wp-includes
`- xmlrpc.php</pre>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;title=Server%20File%20Permissions&amp;bodytext=On%20computer%20filesystems%2C%20different%20files%20and%20directories%20have%20permissions%20that%20specify%20who%20and%20what%20can%20read%2C%20write%2C%20modify%20and%20access%20them.%20This%20is%20important%20because%20" title="Digg"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F" title="Sphinn"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;title=Server%20File%20Permissions&amp;notes=On%20computer%20filesystems%2C%20different%20files%20and%20directories%20have%20permissions%20that%20specify%20who%20and%20what%20can%20read%2C%20write%2C%20modify%20and%20access%20them.%20This%20is%20important%20because%20" title="del.icio.us"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;t=Server%20File%20Permissions" title="Facebook"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;title=Server%20File%20Permissions&amp;annotation=On%20computer%20filesystems%2C%20different%20files%20and%20directories%20have%20permissions%20that%20specify%20who%20and%20what%20can%20read%2C%20write%2C%20modify%20and%20access%20them.%20This%20is%20important%20because%20" title="Google Bookmarks"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;title=Server%20File%20Permissions" title="Blogosphere News"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="mailto:?subject=Server%20File%20Permissions&amp;body=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F" title="email"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;title=Server%20File%20Permissions&amp;source=Web+Design+and+Web+Programming+Professionals+in+Syracuse+NY+-+Update%2C+Promte%2C+Optimize+and+Improve+Website+Web+design%2C+whether+starting+from+scratch+or+redesigning%2C+is+all+about+planning+and+organization.+Think+long-term+but+focus+on+short-term+--+and+never+lose+sight+of+your+customer.&amp;summary=On%20computer%20filesystems%2C%20different%20files%20and%20directories%20have%20permissions%20that%20specify%20who%20and%20what%20can%20read%2C%20write%2C%20modify%20and%20access%20them.%20This%20is%20important%20because%20" title="LinkedIn"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Server%20File%20Permissions&amp;URL=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=On%20computer%20filesystems%2C%20different%20files%20and%20directories%20have%20permissions%20that%20specify%20who%20and%20what%20can%20read%2C%20write%2C%20modify%20and%20access%20them.%20This%20is%20important%20because%20" title="MSN Reporter"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;t=Server%20File%20Permissions" title="MySpace"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;partner=sociable" title="PDF"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;title=Server%20File%20Permissions" title="Reddit"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F" title="Technorati"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Server%20File%20Permissions%20-%20http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F" title="Twitter"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Twitthis"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/" title="Twitthis" alt="Twitthis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;t=Server%20File%20Permissions&opener=bm&amp;ei=UTF-8&amp;d=On%20computer%20filesystems%2C%20different%20files%20and%20directories%20have%20permissions%20that%20specify%20who%20and%20what%20can%20read%2C%20write%2C%20modify%20and%20access%20them.%20This%20is%20important%20because%20" title="Yahoo! Bookmarks"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;submitHeadline=Server%20File%20Permissions&amp;submitSummary=On%20computer%20filesystems%2C%20different%20files%20and%20directories%20have%20permissions%20that%20specify%20who%20and%20what%20can%20read%2C%20write%2C%20modify%20and%20access%20them.%20This%20is%20important%20because%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="javascript:AddToFavorites();" title="Add to favorites"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/addtofavorites.png" title="Add to favorites" alt="Add to favorites" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bitacoras.com/anotaciones/http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F" title="Bitacoras.com"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/bitacoras.png" title="Bitacoras.com" alt="Bitacoras.com" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Server%20File%20Permissions&amp;url=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F" title="blogtercimlap"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F&amp;title=Server%20File%20Permissions" title="Diigo"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Server%20File%20Permissions&amp;u=http%3A%2F%2Fwww.webredesignpro.com%2F2009%2F09%2F14%2Ffile-permissions%2F" title="Fark"><img src="http://www.webredesignpro.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.webredesignpro.com/2009/09/14/file-permissions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
