Jump to content

FTP issues


Nodral

Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.