我正在运行tcl
文件中的php
脚本,如下所示,
$cmd = "tclsh compare.tcl $src $dst 2>&1";
$output = shell_exec($cmd);
echo $output;
在tcl脚本中,我将一个文件从一个目录复制到另一个目录。当我从终端运行脚本时,它运行正常。但是,当从php
触发时,我收到以下错误。
error copying "/somedir/summary.log" to "/anotherdir/summary.log": permission denied while executing "file copy -force $remote_file $local_file"