我有一个带有2个CPanel帐户的VPS,我需要将一个文件从account1写入account2,我有以下错误:
警告:fopen(/home/account2/public_html/files/file.csv)[function.fopen] :无法打开流:/ home / account1 / public_html / test中的权限被拒绝。 php 第7行
我的代码:
$content = array('sku','status','visibility');
$fp_mt = fopen("/home/account2/public_html/files/file.csv", 'w');
fputcsv($fp_mt, $content);
fclose($fp_mt);
有人知道我需要做什么吗?
由于