Andryon PHProgrammer Posted September 26, 2011 Report Share Posted September 26, 2011 Pessoal,ao tentar fazer o upload de uma imagem localmente esta funcionando perfeitamente, mas quando colo em produção, no ftp do meu site, o upload nõ consegue copiar a imagem para a pasta de destino.alguém sabe o porque? Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted September 26, 2011 Report Share Posted September 26, 2011 Você recebe algum erro? Já verificou as permissões da pasta de destino?Um abraço. Quote Link to comment Share on other sites More sharing options...
0 Andryon PHProgrammer Posted September 26, 2011 Author Report Share Posted September 26, 2011 não aparece nenhum erro. Já dei todas as permissões possíveis a pasta de destino mas também não deu certo. Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted September 26, 2011 Report Share Posted September 26, 2011 Você esqueceu de postar o seu script.Um abraço. Quote Link to comment Share on other sites More sharing options...
0 Andryon PHProgrammer Posted September 26, 2011 Author Report Share Posted September 26, 2011 // INI: UPLOAD DE FOTOS DO CLIENTE // if( $_FILES["EMP_LOGO"] != "none" && !empty( $_FILES["EMP_LOGO"]["name"] ) ){ $type = $_FILES["EMP_LOGO"]["type"]; $size = $_FILES["EMP_LOGO"]["size"]; $temp = $_FILES["EMP_LOGO"]["tmp_name"]; if( $oUtil->validaUpload( $type, true ) ){ if( $size <= 2048000 ){ $newname = "fotos_empresa/". $EMP_ID . ".jpg"; $copied = copy($_FILES['EMP_LOGO']['tmp_name'], $newname); } else{ // INI: TRATANDO A MSG DE RETORNO // $msgTxt = "upSizeErCrr"; $clsTxt = "ok"; $disTxt = "block"; // FIM: TRATANDO A MSG DE RETORNO // } } else{ // INI: TRATANDO A MSG DE RETORNO // $msgTxt = "uploadErCrr"; $clsTxt = "ok"; $disTxt = "block"; // FIM: TRATANDO A MSG DE RETORNO // } } // FIM: UPLOAD DE FOTOS DO CLIENTE // Quote Link to comment Share on other sites More sharing options...
0 Jefferson Oliveira Posted September 26, 2011 Report Share Posted September 26, 2011 (edited) Kd o $EMP_ID ???Se vier do Form poe ai $EMP_ID = $_POST["id_emp"]; Edited September 26, 2011 by Jefferson Oliveira Quote Link to comment Share on other sites More sharing options...
0 Andryon PHProgrammer Posted September 26, 2011 Author Report Share Posted September 26, 2011 consegui fazer apresentar o erro, mas já dei permissões as pastas e continua a mesma coisaWarning: copy(fotos_empresa/1440.jpg) [function.copy]: failed to open stream: Permission denied in /home/httpd/vhosts/makrosis.com.br/subdomains/sistema/httpdocs/cEmpresa.php on line 442Erro durante a manipulação do arquivo fotos_empresa/1440.jpg Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted September 26, 2011 Report Share Posted September 26, 2011 Troque o copy por move_uploaded_file. Quote Link to comment Share on other sites More sharing options...
0 Andryon PHProgrammer Posted September 26, 2011 Author Report Share Posted September 26, 2011 tambem num deu certoWarning: move_uploaded_file(fotos_empresa/1440.jpg) [function.move-uploaded-file]: failed to open stream: Permission denied in /home/httpd/vhosts/makrosis.com.br/subdomains/sistema/httpdocs/cEmpresa.php on line 442Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpjjoG3b' to 'fotos_empresa/1440.jpg' in /home/httpd/vhosts/makrosis.com.br/subdomains/sistema/httpdocs/cEmpresa.php on line 442Erro durante a manipulação do arquivo fotos_empresa/1440.jpg Quote Link to comment Share on other sites More sharing options...
0 Andryon PHProgrammer Posted September 27, 2011 Author Report Share Posted September 27, 2011 alguém? Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted September 28, 2011 Report Share Posted September 28, 2011 O erro é claro: "Permission denied".Sem "up" por favor.Um abraço. Quote Link to comment Share on other sites More sharing options...
Question
Andryon PHProgrammer
Pessoal,
ao tentar fazer o upload de uma imagem localmente esta funcionando perfeitamente, mas quando colo em produção, no ftp do meu site, o upload nõ consegue copiar a imagem para a pasta de destino.
alguém sabe o porque?
Link to comment
Share on other sites
10 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.