Hallo,
Ich habe ein PHP Script und ich kann zb
<?php
$output = shell_exec('ls -lart');
echo "<pre>$output</pre>";
?>
ohne Prob ausführen, aber
<?php
$output = shell_exec('mkdir /home/abc/test');
echo "<pre>$output</pre>";
?>
macht er nicht.
Warum?
IT-OKTAI