disable_functions not working
I am trying to configure a hosting plan with disable_functions however after I do a sync, or make a change to the domain, the functions do not get populated in the domains <domain>/etc/php.ini file.
Can someone please help me understand what I am doing wrong and how I make sure these changes get applied to the domains?
Here is what i have:
disable_functions = apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd, eval, exec, fp, fput, ftp_connect, ftp_exec, ftp_get, ftp_login, ftp_nb_fput, ftp_put, ftp_raw, ftp_rawlist, highlight_file, ini_alter, ini_get_all, ini_restore, inject_code, openlog, passthru, php_uname, phpAds_remoteInfo, phpAds_XmlRpc, phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, posix_setuid, posix_uname, proc_close, proc_get_status, proc_nice, proc_open, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode
then in the domain to apply this change I make a small modification and click ok. I see the domain go down briefly as apache is restarted, but the disable_functions do not get applied.
I am using php 5.3 (php_safe mode is deprecated).
According to the manual:
>>
This directive allows you to disable certain functions for security reasons. It takes on a comma-delimited list of function names. disable_functions is not affected by Safe Mode.
Only internal functions can be disabled using this directive. User-defined functions are unaffected.
This directive must be set in php.ini For example, you cannot set this in httpd.conf.
<<
Any assistance is greatly appreciated.