Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know if there's a way to check in a php script if exec() is enabled or disabled on a server..

Thanks!

share|improve this question
What do you mean by "enabled or disabled" ? – Pascal MARTIN May 1 '10 at 10:37

3 Answers

up vote 8 down vote accepted
if(function_exists('exec')) {
    echo "exec is enabled";
}
share|improve this answer
it works, Thanks! – Adrian M. May 1 '10 at 11:20
4  
This is incorrect - it will only detect whether the function is available. Most servers will disable it via INI, which means the function will still be present but throw a warning when run and not do anything. See this answer: stackoverflow.com/questions/3938120/check-if-exec-is-disabled – pospi Aug 2 '12 at 2:31

This will check if the function actually works (permissions, rights, etc):

if(exec('echo EXEC') == 'EXEC'){
    echo 'exec works';
}
share|improve this answer
1  
This is actually a better answer :-) – bvl Feb 24 at 17:33

This will check that exec is available and enabled BEFORE trying to run it. If you run exec() and the function does not exist or is disabled a warning will be generated. Depending on the server settings that may render to the browser and will almost-always write a line to a log file = performance hit.

    // Exec function exists.
    // Exec is not disabled.
    // Safe Mode is not on.
    $exec_enabled =
         function_exists('exec')                                            &&
         !in_array('exec', array_map('trim',explode(', ', ini_get('disable_functions'))))     &&
                  !(strtolower( ini_get( 'safe_mode' ) ) != 'off')
         ;


if ($exec_enabled) { exec('blah'); }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.