Secure directory password protection without .htaccess - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:37:46Zhttp://stackoverflow.com/feeds/question/932793http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/932793/secure-directory-password-protection-without-htaccess0Secure directory password protection without .htaccessblake2009-05-31T20:30:06Z2009-05-31T20:48:07Z
<p>Hi, I was going to use .htaccess to password protect a directory for a php script I'm writing, as I do not trust my PHP skills to create a secure login, but I found out you cannot use relative paths for AuthUserFile and I could not generalize this.</p>
<p>If you could direct me to a secure PHP login script to password protect a directory I would be very grateful. Thanks.</p>
http://stackoverflow.com/questions/932793/secure-directory-password-protection-without-htaccess/932815#9328150Answer by Dave W. Smith for Secure directory password protection without .htaccessDave W. Smith2009-05-31T20:42:07Z2009-05-31T20:42:07Z<p>You can use absolute paths to the AuthUserFile, and arrange to put that file in a place not accessible to the web server. I've done that for many years. Works fine.</p>
http://stackoverflow.com/questions/932793/secure-directory-password-protection-without-htaccess/932826#9328261Answer by n3rd for Secure directory password protection without .htaccessn3rd2009-05-31T20:48:07Z2009-05-31T20:48:07Z<p>One thing you can do is keep all your "secret" files in a directory outside of the server's webroot. All access to these files can then be routed through a single PHP-script inside your directory. Something like this:</p>
<p><a href="http://www.example.com/protected-directory/access.php?file=/foo/document.doc" rel="nofollow">http://www.example.com/protected-directory/access.php?file=/foo/document.doc</a></p>
<p>With a directory structure such as this:</p>
<pre><code>+--+ /server_root
|
+--+ /web_root
| |
| +--+ /protected-directory
| +-- access.php
| +-- access-denied.html
|
+--+ /protected_root
|
+--+ /foo
+-- document.doc
</code></pre>
<p>In your <code>access.php</code> you would do something like this:</p>
<pre><code>$file = $_REQUEST['file'];
if ($user->hasAccessTo($file)) {
readfile("/server_root/protected_root/$file");
} else {
readfile('access-denied.html');
}
</code></pre>
<p>Now, you have to be careful that you make sure nobody screws with your <code>file</code>-parameter and passes something along like <code>"../../../etc/passwd"</code>. Also, you probably want to make sure you send the correct headers in the above example, I omitted that for reasons of clarity.</p>