Update of /cvsroot/phpwiki/phpwiki
In directory usw-pr-cvs1:/tmp/cvs-serv16494
Added Files:
.htaccess
Log Message:
New file.
For people with (suitably configured) apache servers, this sets some
of PHP's configuration variables to safer values. In particular,
register_globals and allow_url_fopen are turned off.
--- NEW FILE ---
<IfModule mod_php4.c>
php_flag register_globals off
php_flag track_vars on
php_flag allow_url_fopen off
</IfModule>
|