View Single Post
  #3  
Old 02-05-2012, 07:09 PM
NiteWave NiteWave is online now
LiteSpeed Staff
 
Join Date: Sep 2009
Posts: 2,295
to confirm if suExec or not, please run following php code under a vhost docroot:
PHP Code:
<?php
$pid
=getmypid();
echo 
"getmypid()=" $pid ."<br>";
echo 
"<hr><pre>";
system("ps -fp " $pid);
echo 
"</pre><hr>";
?>
Reply With Quote