i want to disable some function for data.php (../home/file/data.php) directory file? it is possible?
can is used php.in in this directory?
STEP: 1 Open php.ini file: ../home/file/php.ini
STEP: 2 Find disable_functions and set new list as follows: disable_functions= exec,passthru,shell_exec,system
STEP: 3 service httpd restart
With the help of above steps I am able to disable all the above functions. Now these functions are no longer available on server.
If I want to enable or disable these functions for particular directories then it is possible or not?