Ver Mensaje Individual
  #5 (permalink)  
Antiguo 25/02/2013, 19:41
Avatar de Triby
Triby
Mod on free time
 
Fecha de Ingreso: agosto-2008
Ubicación: $MX->Gto['León'];
Mensajes: 10.106
Antigüedad: 15 años, 9 meses
Puntos: 2237
Respuesta: Necesito me puedan ayudar con codigo

Busca el siguiente código:

Código PHP:
Ver original
  1. // Append number values on the end of the file name
  2.       // if the file already exists
  3.       while(file_exists(CC_FB_UPLOADS_DIRECTORY . "/$basename" .
  4.          CC_FB_UPLOADS_EXTENSION . "$i$extension"))
  5.       {
  6.          $i++;
  7.       }
  8.  
  9. // Reemplázalo con esto:
  10.  
  11. // Eliminar archivo si ya existe
  12. $i = ''; // Esto es necesario para evitar errores o advertencias
  13. $file = CC_FB_UPLOADS_DIRECTORY . "/$basename" .  CC_FB_UPLOADS_EXTENSION . $extension;
  14.  
  15. if(file_exists($file)) {
  16.     unlink($file);
  17. }
__________________
- León, Guanajuato
- GV-Foto