Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/11/2008, 09:01
llanesluna
Usuario no validado
 
Fecha de Ingreso: mayo-2006
Mensajes: 113
Antigüedad: 18 años
Puntos: 0
subida de ficheros usando apache

Hola, estaba usando IIS como servidor web, ya q antes desarrollaba con ASP, pero decidí pasarme al PHP por la variedad de funciones agrgadas q tiene.
El asunto es que estaba usando un uploader que con IIS me funcionaba muy bien y ahora con Apache no me funciona.
Es algún problema de usuario de Apache o algo que me falta por configurar?
Debo aclarar que no me da ningun error, solo inserta en la base de datos la información sin subirme el fichero.
adjunto la función de subir imagenes.

Código PHP:
 if (is_uploaded_file($_FILES['userfile']['tmp_name']))  
 
  {   
    
$idusuario "2"
    
$resource "../../noticias/images/" date("Y-m-d") . "_" $_FILES['userfile']['name']; 
    
//move_uploaded_file($_FILES['userfile']['tmp_name'], $resource); 
    // Esto es para hacerle un resize a la imagen
    
    

    // This is the temporary file created by PHP 
    
$uploadedfile $_FILES['userfile']['tmp_name'];
    
// Create an Image from it so we can do the resize
    
$src imagecreatefromjpeg($uploadedfile);
    
// Capture the original size of the uploaded image
    
list($width,$height)=getimagesize($uploadedfile);
    
    
// For our purposes, I have resized the image to be
    // 600 pixels wide, and maintain the original aspect 
    // ratio. This prevents the image from being "stretched"
    // or "squashed". If you prefer some max width other than
    // 600, simply change the $newwidth variable
    
$newwidth=150;
    
$newheight=($height/$width)*150;
    
$tmp=imagecreatetruecolor($newwidth,$newheight);
    
    
// this line actually does the image resizing, copying from the original
    // image into the $tmp image
    
imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height); 
    
    
// now write the resized image to disk. I have assumed that you want the
    // resized, uploaded image file to reside in the ./images subdirectory.
    
$filename "../../noticias/images/" date("Y-m-d") . "_" $_FILES['userfile']['name'];  //"images/". $_FILES['uploadfile']['name'];
    
imagejpeg($tmp,$filename,100);
    
    
imagedestroy($src);
    
imagedestroy($tmp); // NOTE: PHP will clean up the temp file it created when the request
    // has completed.