BreadCrumbs: Apache
Apache
From Luke Jackson
(Difference between revisions)
| Revision as of 18:17, 13 June 2007 (edit) Ljackson (Talk | contribs) (→(13)Permission denied: /www/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable) ← Previous diff |
Revision as of 18:24, 13 June 2007 (edit) Ljackson (Talk | contribs) (→(13)Permission denied: /www/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable) Next diff → |
||
| Line 25: | Line 25: | ||
| * Ensure all .htaccess files have a permission of 755 | * Ensure all .htaccess files have a permission of 755 | ||
| - | chmod -R 755 dir_or_file(s) | + | chmod -R 755 <dir_or_file(s)> |
| + | |||
| + | == Access forbidden! You don't have access to the requested directory... == | ||
| + | |||
| + | There is either no index document or the directory is read-protected. | ||
| + | |||
| + | '''Allow Directory Listing''' | ||
| + | |||
| + | ** Create .htaccess file in the affected directory and copy the text below into the file. | ||
| + | Options FollowSymLinks ExecCGI Indexes | ||
| + | |||
| + | '''Create DocumentIndex File''' | ||
| + | |||
| + | * Determine Allowable DocumentIndex extensions from the DocumentIndex line in your httpd.conf file. | ||
| + | |||
| + | * Create an empty file in the affected directory. | ||
| + | touch index.htm | ||
| [[Category:Linux]] | [[Category:Linux]] | ||
| [[Category:Mac OS X]] | [[Category:Mac OS X]] | ||
Revision as of 18:24, 13 June 2007
Contents |
FAQs
How do I change the length of the URLs generated by mod_autoindex?
The NameWidth keyword allows you to specify the width of the filename column in bytes.
- -NameWidth (or unset) allows mod_autoindex to calculate the best width.
- NameWidth=n fixes the column width to n bytes wide.
- NameWidth=* grows the column to the necessary width.
Below is an example on how to edit your httpd.conf file to enable unlimited characters:
# IndexOptions: Controls the appearance of server-generated directory # listings. # IndexOptions FancyIndexing VersionSort NameWidth=*
(13)Permission denied: /www/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
This can range in exact location but at the core it is a permissions issue.
- While child directories of the DocumentRoot can have a permission value of 744 the DocumentRoot needs to have a permission of 755.
- Ensure all .htaccess files have a permission of 755
chmod -R 755 <dir_or_file(s)>
Access forbidden! You don't have access to the requested directory...
There is either no index document or the directory is read-protected.
Allow Directory Listing
- Create .htaccess file in the affected directory and copy the text below into the file.
Options FollowSymLinks ExecCGI Indexes
Create DocumentIndex File
- Determine Allowable DocumentIndex extensions from the DocumentIndex line in your httpd.conf file.
- Create an empty file in the affected directory.
touch index.htm