2
Colleagues.
I have a part of the system that sends pdf files to the server:
list($arquivo, $extensao) = explode(".",$arquivoNome);
    $codificar = md5(date('h:i').$arquivo).".".$extensao;
    $dirArquivo = "uploads/pdf/";
    $upArquivo = $dirArquivo . basename($codificar);
    if(move_uploaded_file($arquivoTemp, $upArquivo)){
      ......
}
The problem is that if the file is light, it works, but if the file has above 1MB does not send.
That’s right, your server must have a restriction ;)
– rray