avgenisis Posted July 30, 2013 Share Posted July 30, 2013 Hi, I'm a total noob at this, I have done some other programming, but never php, anyway, I need a web portal for an FTP site I run, all works well but, when I download files the script caches the file on the same server before download, the files I am shifting are aprox 500mb, so this doesn't work well as you can imagine, it usually crashes the portal.... There was a modified script that did away with the caching, and I have updated the code, all seems to work, it des a direct push to the browser, but always saves a zero byte file. The update script is described here http://web.archive.org/web/20110922224413/http://www.net2ftp.org/forums/viewtopic.php?id=3083 Any help on solving this would be much appreciated. Link to comment https://forums.phpfreaks.com/topic/280655-net2ftp-modifications/ Share on other sites More sharing options...
kicken Posted July 31, 2013 Share Posted July 31, 2013 Using ftp_fget to output the file directly may work. Something like: header('Content-type: text/plain'); //Whatever headers you need to send $outfile = fopen('php://output', 'w'); ftp_fget($ftp, $outfile, 'the_file.txt', FTP_BINARY); Link to comment https://forums.phpfreaks.com/topic/280655-net2ftp-modifications/#findComment-1442739 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.