I need to check if PHPSUEXEC or SUPHP is enabled. How can I do that within a php script?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

The easyiest way to check if its enables is something like this

ob_start();
phpinfo();
$sTmp ob_get_contents();
ob_end_clean();

$iPos = strripos($sTmp, "PHPSUEXEC"); //not sure how the string in phpinfo is spelled!!
if($iPos === false) {
 echo "not found";
} else {
 echo "found";
}

hope that helps!

Cheers,

Dennis

link|improve this answer
thank you I can really make use of that – Dali Jan 28 '10 at 4:54
feedback

Your Answer

 
or
required, but never shown

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