Warning: move_uploaded_file(uploads/teste2.pdf) [function.move-uploaded-file]: failed to open stream: No such file or directory in C:\Inetpub\vhosts\bigbrindesgo.com.br\httpdocs\ftp\upload.php on line 9
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\Windows\Temp\php87FD.tmp' to 'uploads/teste2.pdf' inC:\Inetpub\vhosts\bigbrindesgo.com.br\httpdocs\ftp\upload.php on line 9
Warning: Cannot modify header information - headers already sent by (output started at C:\Inetpub\vhosts\bigbrindesgo.com.br\httpdocs\ftp\upload.php:9) inC:\Inetpub\vhosts\bigbrindesgo.com.br\httpdocs\ftp\upload.php on line 15
Pergunta
Carlos_Marques_Jga
Caros Amigos, tenho os seguintes códigos aqui
HTML
<form method="post" action="upload.php" enctype="multipart/form-data">
<label>Enviar Arquivo</label>
<input type="file" name="arquivo" />
<input type="submit" value="Enviar" /></form>
PHP
<?
/* Insira aqui a pasta que deseja salvar o arquivo*/
$uploaddir = 'ftp_artefinal/';
$uploadfile = $uploaddir . $_FILES['arquivo']['name'];
if (move_uploaded_file($_FILES['arquivo']['tmp_name'], $uploadfile)){
// redireciona para a url
header("Location: http://www.bigbrindesgo.com.br/arq_env.html");
}
else {
// redireciona para a url
header("Location: http://www.bigbrindesgo.com.br/erro_env.html");
}
?>
E o seguinte erro:
Warning: move_uploaded_file(uploads/teste2.pdf) [function.move-uploaded-file]: failed to open stream: No such file or directory in C:\Inetpub\vhosts\bigbrindesgo.com.br\httpdocs\ftp\upload.php on line 9
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\Windows\Temp\php87FD.tmp' to 'uploads/teste2.pdf' inC:\Inetpub\vhosts\bigbrindesgo.com.br\httpdocs\ftp\upload.php on line 9
Warning: Cannot modify header information - headers already sent by (output started at C:\Inetpub\vhosts\bigbrindesgo.com.br\httpdocs\ftp\upload.php:9) inC:\Inetpub\vhosts\bigbrindesgo.com.br\httpdocs\ftp\upload.php on line 15
alguém poderia me dar uma luz...
Editado por Carlos_Marques_JgaCorreção de texto
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.