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 is over 1MB it does not send.