dongwang6837 2013-06-13 14:30
浏览 140
已采纳

将csv文件上传到ftp服务器 - 文件为空

I am trying to store a file from my local server on an ftp server.

source file is in my current directory (same as php file)

I run the script with http://www.server.co.za/kisv2/xmltest/export.php

file to upload to ftp is http://www.server.co.za/kisv2/xmltest/exportfile.csv

destination ftp path is: ftp://ftp.ftpserver.co.za/LocExports/exportfile.csv

my ftp login defaults to: ftp://ftp.ftpserver.co.za

so I want to copy file from in current directory exportfile.csv to ftp://ftp.ftpserver.co.za/LocExports/exportfile.csv

My Current syntax is:

$source = 'exportfile.csv';  //this is a file in the same directory as my php file. full path is... http://www.server.co.za/kisv2/xmltest/exportfile.csv
$target = '/LocExports/exportfile.csv'; //full path is... ftp://ftp.ftpserver.co.za/LocExports/exportfile.csv

$conn = ftp_connect("ftp.ftpserver.co.za") or die("Could not connect");
ftp_login($conn, "username", "password");

$upload = ftp_put($conn, $target, $source, FTP_ASCII);
if (!$upload) { echo 'FTP upload failed!'; }

echo "complete";

This gives me error Warning: ftp_put() [function.ftp-put]: Opening ASCII mode data connection. the file does appear on the FTP server but is blank and 0bytes in size.

Any ideas welcome.

Thanks and regards

UPDATE

$source = 'exportfile.csv';  
$target = '/LocExports/exportfile.csv'; 

$conn = ftp_connect("ftp.server.co.za") or die("Could not connect");
ftp_login($conn, "username", "password");

ftp_pasv($conn, true); 

$upload = ftp_put($conn, $target, $source, FTP_BINARY);
if (!$upload) { echo 'FTP upload failed!'; }

echo "complete";

this still fails with: Warning: ftp_put() [function.ftp-put]: Opening BINARY mode data connection.

file is created on ftp but empty.

thanks again

  • 写回答

2条回答 默认 最新

  • duanrebo3559 2013-06-13 14:33
    关注

    Add ftp_pasv($conn, true); after your ftp_login(...) .

    From http://www.php.net/manual/en/function.ftp-put.php

    If when using ftp_put you get the one of the following errors:

    Warning: ftp_put() [function.ftp-put]: Opening ASCII mode data connection

    Warning: ftp_put() [function.ftp-put]: Opening BINARY mode data connection

    and it creates the file in the correct location but is a 0kb file and all FTP commands thereafter fail. It is likely that the client is behind a firewall. To rectify this use:

    ftp_pasv($conn, true);

    Before executing any put commands. Took me so long to figure this out I actually cheered when I did :D

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办