codeigniter アプリケーションを使用して、localhost から Web サーバーに zip をアップロードする必要があります。ドキュメントに従いましたが、ファイルをアップロードできません。エラーは次のとおりです。
An Error Was Encountered
Unable to locate the source file. Please check your path.
ソースパスが見つからない理由がわかりません。パスがfile_exists
機能することをテストしようとすると、upload
メソッドが失敗します...
これは私のコードです:
$this->load->library('ftp');
$config_ftp['hostname'] = 'xxxxx';
$config_ftp['username'] = 'xxxxx';
$config_ftp['password'] = 'xxxxx';
$config_ftp['debug'] = TRUE;
$this->ftp->connect($config_ftp);
if(file_exists($my_file))
echo "ok";
else
echo "no";
$this->ftp->upload($my_file , '/web/'.$my_file, 'binary');