Hi , I have a big problem :
I must upload file with size > 2 MB .
With a form and command copy().. it's no possible because the limit of php.ini in server where my site hosted is 2 MB, so if I try to upload the temp file is no created .
I have try also with ftp function , with connect , login and ftp_put but I received errore "open file" and a lot of people say me that it's no possible to make this :
$upload = ftp_put($conn_id, "ftp/nico.txt", "c:\web\nico.txt", FTP_BINARY);
because is not permitted to get a file from local machine .
What I can try ??
Please help me !
Thks