Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/10/2009, 10:18
mogoxd
 
Fecha de Ingreso: diciembre-2007
Mensajes: 77
Antigüedad: 16 años, 4 meses
Puntos: 3
Respuesta: Upload de ficheros + htaccess

La cuestion es que antes lo tenia asi y funcionaba todo bien, lo que pasa es que esto exige el tener un filtro de seguridad en cada fichero.

Ademas, el accesso a segun que ficheros, como pueden ser los scripts de javascripts no esta totalmente controlado.

Este sistema, principalmente sirve para poner el htaccess en la carpeta determinada y se le aplican unos criterios de accesso, como por ejemplo, un usuario valido, el cual lo comprueba del archivo htpasswd, que en mi caso esta creado dinamicamente(con datos de una BD).

La verdad es que es el unico problema que tengo, pues todo lo demas funciona correctamente.

De todas formas pongo el fichero del UPLoad, haber si veis algo raro:

Código PHP:
<?php
/*
Uploadify v2.1.0
Release Date: August 24, 2009

Copyright (c) 2009 Ronnie Garcia, Travis Nickels

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
if (!empty($_FILES)) {
    
$tempFile $_FILES['Filedata']['tmp_name'];
    
$targetPath $_SERVER['DOCUMENT_ROOT'] . $_REQUEST['folder'] . '/';
    
$targetFile =  str_replace('//','/',$targetPath) . $_FILES['Filedata']['name'];
    
    
// $fileTypes  = str_replace('*.','',$_REQUEST['fileext']);
    // $fileTypes  = str_replace(';','|',$fileTypes);
    // $typesArray = split('\|',$fileTypes);
    // $fileParts  = pathinfo($_FILES['Filedata']['name']);
    
    // if (in_array($fileParts['extension'],$typesArray)) {
        // Uncomment the following line if you want to make the directory if it doesn't exist
        // mkdir(str_replace('//','/',$targetPath), 0755, true);
        
        
move_uploaded_file($tempFile,$targetFile);
        echo 
"1";
    
// } else {
    //     echo 'Invalid file type.';
    // }
}
?>
No entiendo cual puede ser el problema, ya que tanto la carpeta temporal, como la carpeta destino esta fuera de la carpeta protegida.
El fichero upload esta dentro, pero bueno...