I am trying to make a system('touch 1.test'); inside my server.
So I call systest.php:
<?php
system('touch 1.test');
?>
the file isn't created.
it works perfectly when called through the command line:
/bin/php /public_html/systest.php
and it creates the file 1.test.
Can it be a permissions error? some other kind of security issue?
Any ideas? Thanks!