Nodral Posted August 18, 2011 Share Posted August 18, 2011 Hi I'm desperately trying to get an FTP sorted, however for some reason I cannot write to the ftp file. The file gets set up and saved correctly with the right permissions, however when I come to write to it I cannot get it to work. I've tried fputs and fwrite but I'm getting nowhere fast <?php if($login){ echo "connected"; //make directory @ftp_mkdir($ftpstream,'tmp/test'); // make temp file $temp=tmpfile(); //upload temp file @ftp_fput($ftpstream,'tmp/promo.txt',$temp, FTP_ASCII); //make file writable ftp_site($ftpstream,"CHMOD 0777 tmp/promo.txt"); //write to file $fp=fopen('tmp/promo.txt','w'); fwrite($fp,"hello"); fclose($fp); } else{ echo"failed"; } //Close connection ftp_close($ftpstream); ?> As mentioned, this connects fine, so there is nothing wrong with $login. I have omitted this for my own security. Link to comment https://forums.phpfreaks.com/topic/245122-ftp-issues/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.