|
htacceass allow_url_fopen and register_globals
sorry, but i a not familiar with HTACCESS..
i currently have
AuthType Basic
AuthName "Admin Control"
AuthUserFile "/home/jttechno/.htpasswds/admin/passwd"
require valid-user
I want to add
allow_url_fopen and register_globals
but this doesnt work
AuthType Basic
AuthName "Admin Control"
AuthUserFile "/home/jttechno/.htpasswds/admin/passwd"
require valid-user
php_flag allow_url_fopen on
(i solved the register globals by invoking a function to do foreach $superglobal as $value => $key ....)
Any help please? thanks in advance!
|