I've been banging my head against this one for too long now....I want to allow users to download a movie, rather than play it in the browser. I figured the best way to do this would be to set up a php link (am I right about this...??). Anyway the code I've got for it runs like this:
$conn = ftp_connect("ftp.mysite.com");
ftp_login($conn,"user","pass");
ftp_get($conn, $jobName, $oldName , FTP_BINARY);
But I keep getting an error message - Warning, error opening file.....
Can anybody tell me what I'm missing? Many thanks.