我在PhpStorm上遇到了一些奇怪的、间歇性的FTP问题,在传输文件时,后者得到了3/5次的FTP错误,而其他的FTP客户端则没有问题。不幸的是,PhpStorm没有给出有意义的错误,它只是说:
Failed to collect files: Could not connect to FTP server on "----.com".
我想确切知道FTP说了什么,错误标志,号码等。我似乎找不到这些信息在PhpStorm上。
其他信息:
Identical!Everything 使用最新的PHP版本。与FileZilla相比,使用相同的设置,包括auth、传输模式等。直到3
我们有一堆cli cron风格的脚本是用php编写的。
其中一些服务使用ftp将数据发送到远程位置。
设置东西的方式,经常发生的事情是:
a) Script start
b) Connect to ftp @ remote location
c) Send data
d) Close ftp connection
e) Terminate script
f) Return to A, repeat, within a short amount of time and send to the same target, but different data.
问题是,由于步骤b,它首先必须连接到f
当我开始收到错误时,我正在编辑文件map.php。所以我打开我的FTP并删除了其中的map.php。现在我遇到了这个错误。我既无法访问我的管理面板,也无法访问我的网站。这是网址:
Warning: Class 'WPBMap' not found in /home/eyeandre/public_html/wp-content/plugins/js_composer/include/helpers/helpers_api.php on line 17
更新:错误似乎出现在js_composer目录中
对不起,我用的是谷歌翻译。首先,我留下我的代码:
FtpServiceProdiver.php
<?php namespace Jaimemse\Ftp;
use Illuminate\Support\ServiceProvider;
class FtpServiceProvider extends ServiceProvider {
protected $defer = false;
public function boot()
{
$this->package('jaimemse/ftp');
}
public function registe