Hi Tim:
Thanks for your answer but going further about this problem, i think that permissions are set correctly. It looks like if it was something about running the exec/system command. It seems like if php wasn't able to call a shell.
In this code,
<?
copy ("c:\file1.txt","d:\file1.txt");
$text="copy c:\\file1.txt d:\\file2.txt";
exec($texto,$array1,$return_value1);
?>
The first command executes correctly but the second returns an empty array and 128 as a return value.
Do you know what does this "128" value mean?
Can this be related with our shell problem?
Thanks