<?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>Ask me Questions and get Answers ! &#187; CMS</title>
	<atom:link href="http://askmetoo.com/category/cms/feed" rel="self" type="application/rss+xml" />
	<link>http://askmetoo.com</link>
	<description>Ask Questions and get Answers About everything for free!</description>
	<lastBuildDate>Wed, 07 Jul 2010 15:41:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dle &#8211; how to disable all posts shown on main page</title>
		<link>http://askmetoo.com/dle-how-to-disable-all-posts-shown-on-main-page.htm</link>
		<comments>http://askmetoo.com/dle-how-to-disable-all-posts-shown-on-main-page.htm#comments</comments>
		<pubDate>Fri, 03 Apr 2009 09:38:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[dle]]></category>

		<guid isPermaLink="false">http://askmetoo.com/?p=104</guid>
		<description><![CDATA[You need just run in database in phpmyadmin
update `dle_post` SET allow_main=0 WHERE 1
and all posts would tot beeeing shoen on main page
]]></description>
			<content:encoded><![CDATA[<p>You need just run in database in phpmyadmin</p>
<p><strong>update `dle_post` SET allow_main=0 WHERE 1</strong></p>
<p>and all posts would tot beeeing shoen on main page</p>
]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/dle-how-to-disable-all-posts-shown-on-main-page.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to change chmod for folders and files recursively?</title>
		<link>http://askmetoo.com/how-to-change-chmod-for-folders-and-files-recursively.htm</link>
		<comments>http://askmetoo.com/how-to-change-chmod-for-folders-and-files-recursively.htm#comments</comments>
		<pubDate>Tue, 09 Dec 2008 08:18:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://askmetoo.com/?p=37</guid>
		<description><![CDATA[chmod for all sub folders 4770, also for siles 660 &#8230;

1
2
find /path -type f -exec chmod 660 &#123;&#125; \;
find /path -type d -exec chmod 4770 &#123;&#125; \;

]]></description>
			<content:encoded><![CDATA[<p>chmod for all sub folders 4770, also for siles 660 &#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> <span style="color: #000000; font-weight: bold;">/</span>path <span style="color: #660033;">-type</span> f <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">660</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;
<span style="color: #c20cb9; font-weight: bold;">find</span> <span style="color: #000000; font-weight: bold;">/</span>path <span style="color: #660033;">-type</span> d <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">4770</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/how-to-change-chmod-for-folders-and-files-recursively.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Wget files form FTP to another server recursively</title>
		<link>http://askmetoo.com/how-to-wget-files-form-ftp-to-another-server-recusively.htm</link>
		<comments>http://askmetoo.com/how-to-wget-files-form-ftp-to-another-server-recusively.htm#comments</comments>
		<pubDate>Thu, 04 Dec 2008 19:42:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://askmetoo.com/?p=34</guid>
		<description><![CDATA[easy
so this code &#8230;
wget:
download to  ./tmp2 dir
from ftp /foldername dir
20 &#8211; dir length from main url

1
wget -r -l20 -P./tmp2 ftp://login:pas@servername/foldername

]]></description>
			<content:encoded><![CDATA[<p>easy<br />
so this code &#8230;<br />
wget:<br />
download to  <strong>./tmp2</strong> dir<br />
from ftp <strong>/foldername</strong> dir<br />
20 &#8211; dir length from main url</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-r</span> <span style="color: #660033;">-l20</span> -P.<span style="color: #000000; font-weight: bold;">/</span>tmp2 <span style="color: #c20cb9; font-weight: bold;">ftp</span>:<span style="color: #000000; font-weight: bold;">//</span><span style="color: #c20cb9; font-weight: bold;">login</span>:pas<span style="color: #000000; font-weight: bold;">@</span>servername<span style="color: #000000; font-weight: bold;">/</span>foldername</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/how-to-wget-files-form-ftp-to-another-server-recusively.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chmod commands for install DLE Datalife template engine</title>
		<link>http://askmetoo.com/chmod-commands-for-install-dle-temaplat-engine.htm</link>
		<comments>http://askmetoo.com/chmod-commands-for-install-dle-temaplat-engine.htm#comments</comments>
		<pubDate>Tue, 28 Oct 2008 17:58:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[dle]]></category>

		<guid isPermaLink="false">http://askmetoo.com/?p=24</guid>
		<description><![CDATA[Run this commands in putty at root dir (public_html)

chmod g+w ./backup/
chmod 775 ./engine/data/
chmod 775 ./engine/cache/
chmod 775 ./engine/cache/system/
chmod 775 ./engine/forum/cache/
chmod 775 ./engine/forum/cache/system
chmod 775 ./uploads/
chmod 775 ./uploads/files/
chmod 775 ./uploads/fotos/
chmod 775 ./uploads/posts/
chmod 777 ./uploads/posts/thumbs/
chmod 777 ./uploads/thumbs/
chmod 777 ./templates/
chmod 777 ./templates/Default/
&#160;
&#160;
find ./engine/cache/ -exec chmod 775 &#123;&#125; \;
find ./engine/cache/system/ -exec chmod 775 &#123;&#125; \ ;
find ./uploads -type d -exec chmod [...]]]></description>
			<content:encoded><![CDATA[<p>Run this commands in putty at root dir (public_html)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> .<span style="color: #000000; font-weight: bold;">/</span>backup<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> .<span style="color: #000000; font-weight: bold;">/</span>engine<span style="color: #000000; font-weight: bold;">/</span>data<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> .<span style="color: #000000; font-weight: bold;">/</span>engine<span style="color: #000000; font-weight: bold;">/</span>cache<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> .<span style="color: #000000; font-weight: bold;">/</span>engine<span style="color: #000000; font-weight: bold;">/</span>cache<span style="color: #000000; font-weight: bold;">/</span>system<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> .<span style="color: #000000; font-weight: bold;">/</span>engine<span style="color: #000000; font-weight: bold;">/</span>forum<span style="color: #000000; font-weight: bold;">/</span>cache<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> .<span style="color: #000000; font-weight: bold;">/</span>engine<span style="color: #000000; font-weight: bold;">/</span>forum<span style="color: #000000; font-weight: bold;">/</span>cache<span style="color: #000000; font-weight: bold;">/</span>system
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> .<span style="color: #000000; font-weight: bold;">/</span>uploads<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> .<span style="color: #000000; font-weight: bold;">/</span>uploads<span style="color: #000000; font-weight: bold;">/</span>files<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> .<span style="color: #000000; font-weight: bold;">/</span>uploads<span style="color: #000000; font-weight: bold;">/</span>fotos<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> .<span style="color: #000000; font-weight: bold;">/</span>uploads<span style="color: #000000; font-weight: bold;">/</span>posts<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">777</span> .<span style="color: #000000; font-weight: bold;">/</span>uploads<span style="color: #000000; font-weight: bold;">/</span>posts<span style="color: #000000; font-weight: bold;">/</span>thumbs<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">777</span> .<span style="color: #000000; font-weight: bold;">/</span>uploads<span style="color: #000000; font-weight: bold;">/</span>thumbs<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">777</span> .<span style="color: #000000; font-weight: bold;">/</span>templates<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">777</span> .<span style="color: #000000; font-weight: bold;">/</span>templates<span style="color: #000000; font-weight: bold;">/</span>Default<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span>engine<span style="color: #000000; font-weight: bold;">/</span>cache<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;
<span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span>engine<span style="color: #000000; font-weight: bold;">/</span>cache<span style="color: #000000; font-weight: bold;">/</span>system<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \ ;
<span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span>uploads <span style="color: #660033;">-type</span> d <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">777</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;
<span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span>uploads <span style="color: #660033;">-type</span> f <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">666</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span>templates <span style="color: #660033;">-type</span> d <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">777</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;
<span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span>templates <span style="color: #660033;">-type</span> f <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">666</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;
&nbsp;
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span>engine<span style="color: #000000; font-weight: bold;">/</span>data <span style="color: #660033;">-type</span> d <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">777</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;
<span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span>engine<span style="color: #000000; font-weight: bold;">/</span>data <span style="color: #660033;">-type</span> f <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">666</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;</pre></div></div>

<p>or use ftp commands<br />
cache</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> backup
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> engine<span style="color: #000000; font-weight: bold;">/</span>data<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> engine<span style="color: #000000; font-weight: bold;">/</span>cache<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> engine<span style="color: #000000; font-weight: bold;">/</span>cache<span style="color: #000000; font-weight: bold;">/</span>system<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> uploads<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> uploads<span style="color: #000000; font-weight: bold;">/</span>files<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> uploads<span style="color: #000000; font-weight: bold;">/</span>fotos<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> uploads<span style="color: #000000; font-weight: bold;">/</span>posts<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> uploads<span style="color: #000000; font-weight: bold;">/</span>posts<span style="color: #000000; font-weight: bold;">/</span>thumbs<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> uploads<span style="color: #000000; font-weight: bold;">/</span>thumbs<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> templates<span style="color: #000000; font-weight: bold;">/</span>
SITE <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">775</span> templates<span style="color: #000000; font-weight: bold;">/</span>Default<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/chmod-commands-for-install-dle-temaplat-engine.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chmod for Joomla Installation. Step by step Chmod and Chgrp!</title>
		<link>http://askmetoo.com/chmod-for-joomla-installation.htm</link>
		<comments>http://askmetoo.com/chmod-for-joomla-installation.htm#comments</comments>
		<pubDate>Wed, 06 Feb 2008 13:28:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[apache joomla install]]></category>
		<category><![CDATA[chgrp]]></category>

		<guid isPermaLink="false">http://askmetoo.com/2008/02/06/chmod-for-joomla-instalation/</guid>
		<description><![CDATA[For joomla 1.5

chmod g+w administrator/backups/
chmod g+w administrator/components/
chmod g+w administrator/language/
chmod g+w administrator/language/en-GB/
chmod g+w administrator/language/ru-RU/
chmod g+w administrator/modules/
chmod g+w administrator/templates/
chmod g+w components/
chmod g+w images/
chmod g+w images/banners/
chmod g+w images/stories/
chmod g+w language/
chmod g+w language/en-GB/
chmod g+w language/pdf_fonts/
chmod g+w language/ru-RU/
chmod g+w media/
chmod g+w modules/
chmod g+w plugins/
chmod g+w plugins/content/
chmod g+w plugins/editors/
chmod g+w plugins/editors-xtd/
chmod g+w plugins/search/
chmod g+w plugins/system/
chmod g+w plugins/user/
chmod g+w plugins/xmlrpc/
chmod g+w templates/

For [...]]]></description>
			<content:encoded><![CDATA[<p><strong>For joomla 1.5</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>backups<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>components<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>language<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>language<span style="color: #000000; font-weight: bold;">/</span>en-GB<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>language<span style="color: #000000; font-weight: bold;">/</span>ru-RU<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>templates<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> components<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> images<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> images<span style="color: #000000; font-weight: bold;">/</span>banners<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> images<span style="color: #000000; font-weight: bold;">/</span>stories<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> language<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> language<span style="color: #000000; font-weight: bold;">/</span>en-GB<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> language<span style="color: #000000; font-weight: bold;">/</span>pdf_fonts<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> language<span style="color: #000000; font-weight: bold;">/</span>ru-RU<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> media<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> modules<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> plugins<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> plugins<span style="color: #000000; font-weight: bold;">/</span>content<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> plugins<span style="color: #000000; font-weight: bold;">/</span>editors<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> plugins<span style="color: #000000; font-weight: bold;">/</span>editors-xtd<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> plugins<span style="color: #000000; font-weight: bold;">/</span>search<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> plugins<span style="color: #000000; font-weight: bold;">/</span>system<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> plugins<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> plugins<span style="color: #000000; font-weight: bold;">/</span>xmlrpc<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> templates<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p><strong>For joomla 1.0</strong></p>
<div class="Section1">
<p>The main thing that needs to be changed during a <a href="http://www.joomla.org/">Joomla</a> install is the     directory permissions. Here is a shot of the install application before fixing    the permissions:</p>
<p>administrator/backups <strong>Unwriteable</strong><br />
administrator/components <strong>Unwriteable</strong><br />
administrator/modules <strong>Unwriteable</strong><br />
administrator/templates <strong>Unwriteable</strong><br />
cache <strong>Unwriteable</strong><br />
components <strong>Unwriteable</strong><br />
images <strong>Unwriteable</strong><br />
images/banners <strong>Unwriteable</strong><br />
images/stories <strong>Unwriteable</strong><br />
language <strong>Unwriteable</strong><br />
mambots <strong>Unwriteable</strong><br />
mambots/content <strong>Unwriteable</strong><br />
mambots/editors <strong> Unwriteable</strong><br />
mambots/editors-xtd <strong>Unwriteable</strong><br />
mambots/search <strong>Unwriteable</strong><br />
mambots/system <strong>Unwriteable</strong><br />
media <strong>Unwriteable</strong><br />
modules <strong>Unwriteable</strong><br />
templates <strong>Unwriteable</strong></p>
<p>List of <strong>chgrp</strong> for <strong>Apache</strong> and <strong>chmod</strong> commands list to make permissions for the web server when joomla install:</p>
<table border="0" cellpadding="0">
<tbody>
<tr>
<td>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache cache
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache components
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache images
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache images<span style="color: #000000; font-weight: bold;">/</span>banners
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache images<span style="color: #000000; font-weight: bold;">/</span>stories
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache language
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache mambots
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache mambots<span style="color: #000000; font-weight: bold;">/</span>content
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache mambots<span style="color: #000000; font-weight: bold;">/</span>editors
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache mambots<span style="color: #000000; font-weight: bold;">/</span>editors-xtd
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache mambots<span style="color: #000000; font-weight: bold;">/</span>search
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache mambots<span style="color: #000000; font-weight: bold;">/</span>system
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache media
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache modules
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache templates
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>backups
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>components
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>modules
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> administrator<span style="color: #000000; font-weight: bold;">/</span>templates
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> cache
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> components
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> images
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> images<span style="color: #000000; font-weight: bold;">/</span>banners
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> images<span style="color: #000000; font-weight: bold;">/</span>stories
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> language
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> mambots
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> mambots<span style="color: #000000; font-weight: bold;">/</span>content
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> mambots<span style="color: #000000; font-weight: bold;">/</span>editors
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> mambots<span style="color: #000000; font-weight: bold;">/</span>editors-xtd
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> mambots<span style="color: #000000; font-weight: bold;">/</span>search
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> mambots<span style="color: #000000; font-weight: bold;">/</span>system
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> media
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> modules
<span style="color: #c20cb9; font-weight: bold;">chmod</span> g+<span style="color: #c20cb9; font-weight: bold;">w</span> templates
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache administrator<span style="color: #000000; font-weight: bold;">/</span>backups
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache administrator<span style="color: #000000; font-weight: bold;">/</span>components
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache administrator<span style="color: #000000; font-weight: bold;">/</span>modules
<span style="color: #c20cb9; font-weight: bold;">chgrp</span> apache administrator<span style="color: #000000; font-weight: bold;">/</span>templates</pre></div></div>

</td>
</tr>
</tbody>
</table>
<p>Now the installation check looks like this:</p>
<table border="0" cellpadding="0" width="400">
<tbody>
<tr>
<td>administrator/backups</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>administrator/components</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>administrator/modules</td>
<td><span style="color:#00EE00">Writeable</span></td>
</tr>
<tr>
<td>administrator/templates</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>cache</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>components</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>images</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>images/banners</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>images/stories</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>language</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>mambots</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>mambots/content</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>mambots/editors</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>mambots/editors-xtd</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>mambots/search</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>mambots/system</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>media</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>modules</td>
<td><span style="color:green">Writeable</span></td>
</tr>
<tr>
<td>templates</td>
<td><span style="color:green">Writeable</span></td>
</tr>
</tbody>
</table>
<h4>Note:Chmod Commands:</h4>
<p>As shown the general format of the command is</p>
<p>chmod -R/c/f/v [u / g / o / a] [+ / - / =] [rwxXstugo]</p>
<p>here</p>
<p>u : user</p>
<p>g: group</p>
<p>o : others</p>
<p>a : all</p>
<p>+ : give permission</p>
<p>- : take permission away</p>
<p>= : cause the permissions given to be the only permissions of the file</p>
<p>r : read permission</p>
<p>w: write permission</p>
<p>x : execute permission</p>
<p>X: execute only if it is a directory or already has execute permission for some user</p>
<p>s : set user or group ID on execution</p>
<p>t : save program text on swap device</p>
<p>u : the permissions that the user who owns the file has for it</p>
<p>g : the permissions that the owner?s group has for a file</p>
<p>o : the permissions that users not in the owner?s group have for it</p>
<p>(X, s, t, u, g and o are not required for common tasks)</p>
<p>the initial options -R/c/f/v are explained as follows :</p>
<p>-c : Displays names of only those files whose permissions are being changed</p>
<p>( &#8211;changes can also be used instead of -c )</p>
<p>-f : Suppresses display of error messages when a file?s permissions cannot be changed</p>
<p>( &#8211;silent of &#8211;quiet can also be used instead of -f )</p>
<p>-R: Recursively changes the permission of all files in all subdirectories of the directory whose</p>
<p>permissions are being changed</p>
<p>( &#8211;recursive can also be used )</p>
<p>-v : Displays results of all permission changes</p>
<p>( &#8211;verbose can also be used )</p>
<p><strong></strong></p>
<p><strong></strong></div>
<h4>Note: <strong>chgrp command</strong></h4>
<p>The chgrp command is used to change the group ownership of one or more files or directories. Its general syntax is :</p>
<p>chgrp [-Rcfv] groupname foo.txt</p>
<p>The flags used here are also the same as those in the chmod command. The changes in ownership are applied to the groupname and the filename specified</p>
]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/chmod-for-joomla-installation.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
