all Php are run with apache

#1
all PHPs are run by user "apache"

Hi,

LSWS has been install over Directadmin,
the problem is that, all the PHPs are run by user "apache" instead of the corresponding user owner,
is there any adjustment to correct this issue ?

Thanks,
 
Last edited:

NiteWave

Administrator
#3
to confirm if suExec or not, please run following php code under a vhost docroot:
PHP:
<?php
$pid=getmypid();
echo "getmypid()=" . $pid ."<br>";
echo "<hr><pre>";
system("ps -fp " . $pid);
echo "</pre><hr>";
?>
 
Top