Forum Moderators: coopster
Doing it by hand, I generate a mysql-dump twice a week, copy it to my webserver, and run a routine importing it there. This file currently covers almost 7 MByte (uncompressed
If I try to automate this ftp-process with the php-ftp-command (running on my intranet-server in the eveneing), the upload is interrupted after about 4,7MByte. The code I use after log-in in is:
$upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY);
Is there a certain limit for such binary files?
Any simple solution instead of splitting or compressing the file?