Secure directory password protection without .htaccess - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:37:46Z http://stackoverflow.com/feeds/question/932793 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/932793/secure-directory-password-protection-without-htaccess 0 Secure directory password protection without .htaccess blake 2009-05-31T20:30:06Z 2009-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#932815 0 Answer by Dave W. Smith for Secure directory password protection without .htaccess Dave W. Smith 2009-05-31T20:42:07Z 2009-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#932826 1 Answer by n3rd for Secure directory password protection without .htaccess n3rd 2009-05-31T20:48:07Z 2009-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-&gt;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>