Linux – Disabling PHP Safe Mode for a specific folder
May 27th, 2009
1 comment
using .htaccess file:
create the .htaccess file
the content of the .htaccess file should be:
php_value safe_mode "1"
using php.ini file
upload to specific folder the php.ini file
in php.ini enter this command
safe_mode = Off
for globall efect, search php.ini in /etc/ folder and chnage safe_mode = ...








