I have a VPS with 2 CPanel accounts and I need to write a file from account1 to account2 and I have the following error:
Warning: fopen(/home/account2/public_html/files/file.csv) [function.fopen]: failed to open stream: Permission denied in /home/account1/public_html/test.php on line 7
My code:
$content = array('sku','status','visibility');
$fp_mt = fopen("/home/account2/public_html/files/file.csv", 'w');
fputcsv($fp_mt, $content);
fclose($fp_mt);
Someone have an idea what I need to do?
Thanks