Here are a few tips of how to secure your php.ini !
Edit our php.ini by logging into shell with root :
pico /usr/lib/php.ini
And change the line:
disable_functions =
to:
disable_functions = exec, shell_exec, system, passthru
another thing you could change is
safe_mode = Off
to
safe_mode = On
another thing you could disable is
enable_dl=On
change to
enable_dl=Off
Edit our php.ini by logging into shell with root :
pico /usr/lib/php.ini
And change the line:
disable_functions =
to:
disable_functions = exec, shell_exec, system, passthru
another thing you could change is
safe_mode = Off
to
safe_mode = On
another thing you could disable is
enable_dl=On
change to
enable_dl=Off













