I am currently running a script that is failing to work, it turns out that there is this line:
$this->conn_id = @ftp_connect($this->ftp_server);
This line throw ftp_connect
function undefined, but as it's preceded by @
operator, shouldn't it not terminated?
Anyway I checked there is error_reporting(E_ALL);
in the beginning of the script. Is this the cause?
Thanks!