So would that restriction affect size/number of files you upload to another server via PHP's ftp_put()?
It does not give me any error, other than my own error. So I have the command setup similar to this:-
Code:
$upload = ftp_put($conn_id, $ftp_file, $filename, FTP_BINARY);
if (!$upload)
{
echo "FTP upload of ".$filename." has failed!<br><br>";
}
else
{
echo "Uploaded ".$filename." to ".$ftp_server." as ".$file."<br><br>";
}
It goes through a foreach loop for each each file. As stated the first one goes fine but not the rest. Works fine when running as root.
Thanks
Infocom