MANEJO DE ARCHIVOS
Publicado por AUGUSTO (1 intervención) el 04/07/2005 16:19:49
Estas lineas de codigo son las q tengo en el servidor y no tengo problemas, mi pregunta es x q localmente si?
<?
$path = "/home/maquinag/public_html/admin/images/noticias/";
$max_size = 2000000;
if (!isset($HTTP_POST_FILES['userfile'])) echo("ERROR") exit; //x q aca siempre me esta saliendo por tue, si la imagen la estoy seleccionando???????????????????
if (is_uploaded_file($HTTP_POST_FILES['userfile']['tmp_name'])) {
if ($HTTP_POST_FILES['userfile']['size']>$max_size) { echo "The file is too big<br>\n"; exit; }
if (($HTTP_POST_FILES['userfile']['type']=="image/gif") || ($HTTP_POST_FILES['userfile']['type']=="image/pjpeg") || ($HTTP_POST_FILES['userfile']['type']=="image/jpeg")) {
if (file_exists($path . $HTTP_POST_FILES['userfile']['name'])) { echo "Ya existe un archivo como éste !<br>\n"; exit; }
$res = copy($HTTP_POST_FILES['userfile']['tmp_name'], $path .
$HTTP_POST_FILES['userfile']['name']);
if (!$res) { echo "Error al subir !<br>\n"; exit;
}else{
// echo "upload sucessful<br>\n";
}
} else { echo "Archivo no permitido <br>\n"; exit; }
}
?>
bueno agradezco q alguien me de una mano!!!
<?
$path = "/home/maquinag/public_html/admin/images/noticias/";
$max_size = 2000000;
if (!isset($HTTP_POST_FILES['userfile'])) echo("ERROR") exit; //x q aca siempre me esta saliendo por tue, si la imagen la estoy seleccionando???????????????????
if (is_uploaded_file($HTTP_POST_FILES['userfile']['tmp_name'])) {
if ($HTTP_POST_FILES['userfile']['size']>$max_size) { echo "The file is too big<br>\n"; exit; }
if (($HTTP_POST_FILES['userfile']['type']=="image/gif") || ($HTTP_POST_FILES['userfile']['type']=="image/pjpeg") || ($HTTP_POST_FILES['userfile']['type']=="image/jpeg")) {
if (file_exists($path . $HTTP_POST_FILES['userfile']['name'])) { echo "Ya existe un archivo como éste !<br>\n"; exit; }
$res = copy($HTTP_POST_FILES['userfile']['tmp_name'], $path .
$HTTP_POST_FILES['userfile']['name']);
if (!$res) { echo "Error al subir !<br>\n"; exit;
}else{
// echo "upload sucessful<br>\n";
}
} else { echo "Archivo no permitido <br>\n"; exit; }
}
?>
bueno agradezco q alguien me de una mano!!!
Valora esta pregunta
0