Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/01/2004, 04:06
bichomalo_spain
 
Fecha de Ingreso: enero-2004
Mensajes: 68
Antigüedad: 20 años, 3 meses
Puntos: 0
Esto es rarisimo!!!

Tengo una aplicacion en php, y me dispongo a cambiar el logo de muestra por el mio ok?? pues eso me meto con el ftp y borro el *.gif y subo el otro *.gif exactamente con el mismo nombre, pues bien entro en mi aplicación y sorpresa!! todabia sale el logo de antes, como puede ser¿?? e puesto el raton sobre la imagen y en propiedades e comprobado la ruta y coincide, luego e seguido probando, y lo ke e echo es borrar el gif no e puesto ni el mio ni el de muestra, y sorpresa!! aun sin el archibo sigue apareciendo, y tecleando la ruta en el navegador igual..



KE KOÑOOOO PASAAAAA!!!!!!!



tiene algo que ver este *txt

makethumb.txt

<?
/************************************************** *************************
* Copyright: Copyright 2003 http://www.brooky.com
*
************************************************** *************************/

// CONFIGURATION FOR THUMBNAILS

// FOR GD VERSION 1.6 (default) SET $gd_version=1;
// FOR GD VERSION 2.0+ FOR IMPROVED THUMBNAILS SET $gd_version=2;
// IF YOU DO NOT HAVE GD SET $gd_version=0;

$gd_version=1;

// HOW CAN I TELL WHAT VERSION I RUN?
// Login to admin and click server environment off the main menu.
// If you have GD you will see a table entitled GD and the
// version number will be displayed there. :o)


// END THUMBNAILS CONFIG

// ************************************************** ***********************
class thumbnail
{
var $img;

function thumbnail($imgfile)
{
//detect image format
$this->img["format"]=ereg_replace(".*\.(.*)$","\\1",$imgfile);
$this->img["format"]=strtoupper($this->img["format"]);
if ($this->img["format"]=="JPG" || $this->img["format"]=="JPEG") {
//JPEG
$this->img["format"]="JPEG";
$this->img["src"] = ImageCreateFromJPEG ($imgfile);
} elseif ($this->img["format"]=="PNG") {
//PNG
$this->img["format"]="PNG";
$this->img["src"] = ImageCreateFromPNG ($imgfile);
} else {
//DEFAULT
echo "Not Supported File! Thumbnails can only be made from .jpg and .png images!";
exit();
}
@$this->img["lebar"] = imagesx($this->img["src"]);
@$this->img["tinggi"] = imagesy($this->img["src"]);
//default quality jpeg
$this->img["quality"]=75;
}

function size_auto($size=100)
{
//size
if ($this->img["lebar"]>=$this->img["tinggi"]) {
$this->img["lebar_thumb"]=$size;
@$this->img["tinggi_thumb"] = ($this->img["lebar_thumb"]/$this->img["lebar"])*$this->img["tinggi"];
} else {
$this->img["tinggi_thumb"]=$size;
@$this->img["lebar_thumb"] = ($this->img["tinggi_thumb"]/$this->img["tinggi"])*$this->img["lebar"];
}
}

function jpeg_quality($quality=75)
{
//jpeg quality
$this->img["quality"]=$quality;
}



function show($gd_version)
{

@Header("Content-Type: image/".$this->img["format"]);
if($gd_version==2)
{
$this->img["des"] = imagecreatetruecolor($this->img["lebar_thumb"],$this->img["tinggi_thumb"]);
@imagecopyresampled ($this->img["des"], $this->img["src"], 0, 0, 0, 0, $this->img["lebar_thumb"],$this->img["tinggi_thumb"], $this->img["lebar"], $this->img["tinggi"]);
}
if($gd_version==1)
{
$this->img["des"] = imagecreate($this->img["lebar_thumb"],$this->img["tinggi_thumb"]);
@imagecopyresized ($this->img["des"], $this->img["src"], 0, 0, 0, 0, $this->img["lebar_thumb"],$this->img["tinggi_thumb"], $this->img["lebar"], $this->img["tinggi"]);
}
if ($this->img["format"]=="JPG" || $this->img["format"]=="JPEG") {
//JPEG
imageJPEG($this->img["des"],"",$this->img["quality"]);
} elseif ($this->img["format"]=="PNG") {
//PNG
imagePNG($this->img["des"]);
}
}

function save($save="",$gd_version)
{

if($gd_version==2)
{
$this->img["des"] = imagecreatetruecolor($this->img["lebar_thumb"],$this->img["tinggi_thumb"]);
@imagecopyresampled ($this->img["des"], $this->img["src"], 0, 0, 0, 0, $this->img["lebar_thumb"], $this->img["tinggi_thumb"], $this->img["lebar"], $this->img["tinggi"]);
}
if($gd_version==1)
{
$this->img["des"] = imagecreate($this->img["lebar_thumb"],$this->img["tinggi_thumb"]);
@imagecopyresized ($this->img["des"], $this->img["src"], 0, 0, 0, 0, $this->img["lebar_thumb"], $this->img["tinggi_thumb"], $this->img["lebar"], $this->img["tinggi"]);
}
if ($this->img["format"]=="JPG" || $this->img["format"]=="JPEG") {
//JPEG
imageJPEG($this->img["des"],"$save",$this->img["quality"]);
} elseif ($this->img["format"]=="PNG") {
//PNG
imagePNG($this->img["des"],"$save");
}
}
}
// ************************************************** ***********************
?>













SALUDOS