Jump to content

PHP help need


chamarac

Recommended Posts

I am a beginner to PHP & web developing. Just doing these things to improve my knowledge.

 

This is called "Chevereto" It is a image hosting script.

 

I am trying to upload this to 000webhost but it is not working. It gave this error see chamaratest.webege.com/Upload

 

I did according to this guide http://chevereto.com/foro/topic483-howto-fix-chevereto-install-issues-with-000webhost-maybe-others.htm

 

That guide say No FTP mode!! Only change PATH_SERVER and engine.php!!! but My site asking for FTP mode.

 

edited config.php

 

<?

/* -----------------------------------------

  Chevereto - Script de hosting de imagenes
  Nightly Build 1.7 (29/10/2009)
  http://www.chevereto.com/

  Released under the GPL 2.0
  Copyright (C) 2008 by Rodolfo Berrios
  <inbox at rodolfoberrios dot com>

  ----------------------------------------- */

// Language //
define('LANG', 'en'); // en - English | es - Español | fa - Farsi | fr - Français | nl - Dutch | cn - ZH-CN (Chinese)

define('APP_NAME', 'Demo Chevereto'); // Your image hosting name
define('TAG_LINE', 'Image Hosting'); // Your tagline (for doctitles and logo)

// Folders //
/* If you change this, you also must change the folders name. */
define('DIR_UP','up/');
define('DIR_IM','images/'); // Change this to have something like /X/filename.jpg - where "X/" is the folder name. 
define('DIR_WORKING',DIR_UP.'working/');
define('DIR_TEMP',DIR_UP.'temp/');
define('DIR_TH','thumbs/');

// Min-Max values -> php.ini rules the nation... //
$max_mb = '2'; // Max. image size (Mbytes)
$max_by = $max_mb*1048576; // (bytes)
$max_name = '10'; // Max. file name lenght.

// Thumbs //
$mini_ancho = '150'; // Thumb width (pixels)
$mini_alto = '150'; // Thumb height (pixels)

// Resize //
$lowres = '16'; // Min. resize value (pixels)
$higres = '1280'; // Max. resize value (pixels)

// Options //
$lim_act = true; // true: Allows uploading just for your domain - false: Allows upload from anywhere (post from another website)
$debug_mode = true; // false: Debug OFF - true: Debug ON.
$cut_url = true; // true: Short URLs (TinyURL tr.im etc.) - false: normal url (http://mysite.com/images/image.jpg).
$cut_url_service = 'tinyurl'; // tinyurl
$cut_url_user = true; // If $cut_url = true -> true: Allows your users to cut their urls (preference) - false: Users can't choose to cut or not.
$allow_over_resize = false; // true: Allows over resize images - false: Don't allow over resize.


///////////////////////////////////////////////////////////////////
///// DO NOT EDIT BELOW THIS - (do it if the script can't run) ////
///////////////////////////////////////////////////////////////////

// SERVER ///
/* We get this values with $_SERVER. If your server doesn't resolve this values The script will not work.
   If the script doesn't work, you must change this values to be like values in the comments (see the exaple below) */


$DOM_SCRIPT = $_SERVER['SERVER_NAME']; // --> mysite.com
$PATH_SERVER = '/public_html/host'; // --> /public_html (pssst.. NO ENDING SLASH!)


// example:
#$DOM_SCRIPT = 'mysite.com';
# $PATH_SERVER = '/public_html'; 
/* Btw, you can check this values by uncommenting this: */
// echo 'DOM: '.$DOM_SCRIPT.' - PATH: '.$PATH_SERVER;

// FTP MODE //
/* Use this if you want to upload the files through ftp php (http://php.net/ftp). This is handly when your server config don't
   allow to upload files without CHMOD 777, like almost all the cPanel. Using this, you can forget the CHMOD  */
$use_ftp = false; // true: Uses ftp to upload files - false: Upload without ftp.
$ftp_host = $DOM_SCRIPT; // Change this if your ftp host is not the same as your mysite.com -- example: $ftp_host = 'ftp.mysite.com';
$ftp_user = ''; // valid username.
$ftp_pass = ''; // Valid password.
// NOTICE: FTP user must have access to the script folder.


///////////////////////////////
/// DO NOT TOUCH BELOW THIS ///
///////////////////////////////

// PATH //
/* Uhhh.. Can't touch this!. */
$path = dirname($_SERVER['PHP_SELF']);
if (strlen($path)>1) { 
define('PATH_SCRIPT', $path.'/');
} else {
define('PATH_SCRIPT', $path);
}

// URL //
/* Uhhh... Uhhh.. Can't touch this!. */
define('URL_SCRIPT', 'http://'.$DOM_SCRIPT.PATH_SCRIPT);

?>

 

edited engine.php

 

<?

/* -----------------------------------------

  Chevereto - Script de hosting de imagenes
  Nightly Build 1.7 (29/10/2009)
  http://www.chevereto.com/

  Released under the GPL 2.0
  Copyright (C) 2008 by Rodolfo Berrios
  <inbox at rodolfoberrios dot com>

  ----------------------------------------- */

// VERSION DEL SCRIPT
define('SC_VERSION','NB1.7');

// Config
require('config.php');

// Pseudo Debug
if(!$debug_mode) {
error_reporting(0);
}

// Critital error box
$o_errorbox = '<div style="background: #F00; color: #FFF; font-family: Courier, monospace; font-weight: bold; padding: 1em; text-align: center;">';
$c_errorbox = '</div>';

// CH-CH-Check FTP config //
if ($use_ftp == false) {
if (!is_writable(DIR_IM)) {
	echo $o_errorbox.'Critital error: Chevereto can\'t upload files. Please enable FTP mode in config.php'.$c_errorbox;
	die();
}
} else {
$check_ftp_con = ftp_connect($ftp_host);
$check_ftp_log = ftp_login($check_ftp_con, $ftp_user, $ftp_pass);
if (!$check_ftp_con || !$check_ftp_log) {
	echo $o_errorbox.'Critital error: Wrong FTP values in config.php'.$c_errorbox;
	die();
}
}

// CH-CH-Check Upload config //
$ini_upload = trim(ini_get('upload_max_filesize'), 'M');
if($ini_upload<$max_mb) {
echo $o_errorbox.'Critital error: Max. image size ('.$max_mb.'Mb) is greater than the value in php.ini ('.$ini_upload.'Mb)'.$c_errorbox;
die();
}

// CH-CH-Check GD //
if (!extension_loaded('gd') && !function_exists('gd_info')) {
echo $o_errorbox.'Critital error: You must load the GD extension. <a href="http://php.net/manual/en/book.image.php">http://php.net/manual/en/book.image.php</a>'.$c_errorbox;
die();
}

// CH-CH-Check $DOM_SCRIPT //
if(!getmxrr($DOM_SCRIPT, $mxhosts)) {
echo $o_errorbox.'Critital error: Invalid $DOM_SCRIPT, edit it manually in config.php'.$c_errorbox;
die();
}

// CH-CH-Chek $PATH_SERVER //
if(!file_exists('/home/a3007019/public_html/.htaccess')) {
echo $o_errorbox.'Critital error: Invalid $PATH_SERVER, edit it manually in config.php'.$c_errorbox;
die();
}

// CH-CH-Chek cURL //
if (!extension_loaded('curl')) {
echo $o_errorbox.'Critital error: You must load the cURL extension. <a href="http://php.net/manual/en/book.curl.php">http://php.net/manual/en/book.curl.php</a>'.$c_errorbox;
die();
}

// DOCTITLE
define('ESP_TITULO',' | ');

// VARIABLES
$lup = $_FILES['fileup'];
$remota = $_POST['remota'];
$resizf = str_replace(' ', '', $_POST['resize']); // Resize via POST
$url = $_GET['url'];
$urlrez = $_GET['urlrez'];
$v = $_GET['v'];  if ($v=='.htaccess') { unset($v); $v=''; }
$page = $_GET['p'];
$view_fld = $_GET['folder'];
$resizr = $_GET['ancho']; // Resize via GET

// SHORT URL SERVICE
switch($cut_url_service) {
case 'tinyurl':
	$tiny_api = 'http://tinyurl.com/api-create.php?url=';
	$tiny_service = 'TinyURL';
	break;
default:
	$tiny_api = 'http://tinyurl.com/api-create.php?url=';
	$tiny_service = 'TinyURL';
	break;
}

// LANGUAGE
include('lang/'.LANG.'.php');
if (LANG!=='es') { $lang = LANG; }

// DE DONDE VIENES?
$referer = parse_url($_SERVER['HTTP_REFERER']);
if (empty($referer['host']) && !isset($referer['host'])) {
$referido = $DOM_SCRIPT;
} else {
$referido = $referer['host'];
}

if (isset($remota)) {
$ref3 = explode('?',$ref2); // img.godlike.cl?urlrez=http:
$refok = $ref3['0'];
} else {
$refok = $ref2;
}

// Limite de actividad
if (isset($lup) || isset($remota)) {
if ($referido !== $DOM_SCRIPT && $lim_act==true) {
	if (!isset($url)) {
		echo $o_errorbox.ERROR_REF.$c_errorbox;
		die;
	}
}
}

// EL REZ
if (isset($resizr)) {
	$resize = str_replace(' ', '', $resizr);
} else {
	$resize = str_replace(' ', '', $resizf);
}

// SET Modo default
$modo = 1;

// MANEJEMOS LA RUP
if (isset($url)) {
	$rup = str_replace(' ', '', $url);
} else {
	$rup = str_replace(' ', '', $remota);
}

// DETERMINAMOS QUE MOSTRAMOS Y HACEMOS
//  1 = Mostrar formulario.
//  2 = Muetsra el visualizador
//  3 = Sube un archivo
//  4 = muestra la pag del error de redimensionamiento
//  5 = Muestra una pag. estatica
//  spit = devuelve los mensajes de error.

// Modo pagina
if (isset($page)) {
unset($modo);
$modo = 5;
// haga el switch
switch ($page) {
	// Los errores
	case '400':
        	$h1 = TITLE_400;
		$explained = DESC_400;
        break;
	case '401':
        	$h1 = TITLE_401;
		$explained = DESC_401;
        break;
	case '403':
        	$h1 = TITLE_403;
		$explained = DESC_403;
        break;
	case '404':
        	$h1 = TITLE_404;
		$explained = DESC_404;
        break;
	case '500':
        	$h1 = TITLE_500;
		$explained = DESC_500;
	case '503':
        	$h1 = TITLE_503;
		$explained = DESC_503;
        break;
	// Los directorios
	case 'up':
        	$h1 = TITLE_DIR_NO;
		$explained = DESC_DIR_NO;
        break;
	case 'up/temp':
        	$h1 = TITLE_DIR_NO;
		$explained = DESC_DIR_NO;
        break;
	case 'up/working':
        	$h1 = TITLE_DIR_NO;
		$explained = DESC_DIR_NO;
        break;
	case 'images':
        	$h1 = TITLE_DIR_NO;
		$explained = DESC_DIR_NO;
        break;
	default:
		$h1 = TITLE_404;
		$explained = DESC_404;
		$page = 'generico';
	break;
}
$titulo = $h1.ESP_TITULO;
}

// Si hay posteo / urleo
if (isset($lup) || isset($remota) || isset($url)) {
if ($lup[size] ==! null || !empty($remota) || !empty($url)) {
	unset($modo);
	$modo = 3;
} else {
	unset($modo);
	$modo = 1;
	$spit = true;
	$errormsg = FORM_INCOMPLETE;
	$titulo = TITLE_FORM_INCOMPLETE.ESP_TITULO;
}
}

// SI HAY DOBLE POSTEO...
if (!empty($rup) && !empty($lup['type'])) {
unset($modo);
$modo = 1;
$spit = true;
$errormsg = DOBLE_POSTED;
$titulo = FATAL_ERROR_TITLE.ESP_TITULO;
}

// Si hay urlrez, seteamos el modo rr
if (isset($urlrez)) {
if (!empty($urlrez)) {
	// veamos la extension...
	$urlrez3 = substr($urlrez, -3);
	if ($urlrez3=='jpg' || $urlrez3=='peg' || $urlrez3=='gif' || $urlrez3=='bmp' || $urlrez3=='png') {
		unset($modo);
		$modo = 'rr';
		$titulo = ENTER_WIDTH.ESP_TITULO;
	} else {
		$spit = true;
		$errormsg = INVALID_EXT;
		$titulo = INVALID_TITLE.ESP_TITULO;
	}
} else {
	$spit = true;
	$errormsg = NOTHING_TO_RESIZE;
	$titulo = INPUT_ERROR.ESP_TITULO;
}
}

// Si hay V, seteamos el modo 2
if (isset($v)) {
if (!empty($v)) {
	unset($modo);
	$modo = 2;
	$name = $v;
} else {
	$spit = true;
	$errormsg = NO_ID;
	$titulo = NO_ID_TITLE.ESP_TITULO;
}
}

$string = $rup.$urlrez;

if (preg_match("@".$DOM_SCRIPT."/(site-img|js)/@", $string)) {
unset($modo);
$modo = 1;
$spit = true;
$errormsg = NO_SELF_UPLOAD;
$titulo = CANT_UPLOAD_TITLE.ESP_TITULO;	
}

/* HAGAMOS EL UPLOADING ---MODO 3--- */
if ($modo==3) {

// Primer filtro (LOCAL)
function checklocal($lup) {	
	if (preg_match("@image/(gif|pjpeg|jpeg|png|x-png|bmp)$@", $lup['type'])) { return true; }
	if ($lup['size']<$max_by) { return true; }
	return false;
}

// Filtro (REMOTO)
function checkremota($rup) {
	if (!empty($rup)) {
		$rup3 = substr($rup, -3);
		if ($rup3=='bmp') {
			return true;
		} else {
			$ch = curl_init();
			curl_setopt($ch, CURLOPT_URL,$rup); 
			curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); 
			curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,100);
			$result = curl_exec($ch); 
			$imgstr = imagecreatefromstring($result);
			curl_close($ch);
			if ($imgstr==true) {
				return true;
			}
			imagedestroy($imgstr);
		}
	}
	return false;
}

if (checklocal($lup) || checkremota($rup)) {

	// FTP
	if ($use_ftp==true) {
		$FTP_connect = ftp_connect($ftp_host);
		$FTP_login = ftp_login($FTP_connect, $ftp_user, $ftp_pass);

		// Veamos si conectamos..
		if (!$FTP_connect || !$FTP_login) {
			echo $o_errorbox.CANT_RUN.$c_errorbox;
			die();
		}
		ftp_pasv($FTP_connect, true);
		ftp_chdir($FTP_connect, $PATH_SERVER);
	}

	// LA SUBIDA LOCAL
	if ($lup['size'] ==! null) {

		if ($use_ftp==true) {
			ftp_put($FTP_connect, './'.DIR_WORKING.$lup['name'], $lup['tmp_name'], FTP_BINARY);
		} else {
			copy($lup['tmp_name'], DIR_WORKING.$lup['name']);
		}

		$tmp_name = $lup[name]; // Temp name
	}
	// LA SUBIDA REMOTA
	if (!empty($rup)) {
		// Veamos si viene del resize
		$grabname = substr("$rup", -21); // up/temp/000000000.jpg
		if (file_exists($grabname)) {
			$tmp_name = substr("$rup", -13);
			rename($grabname, DIR_WORKING.$tmp_name);
		} else {
			// GET A NAME
			$partes = explode('/', $rup);
			$rname = $partes[count($partes) - 1];		
			// Conectando
			$ch = curl_init();
			curl_setopt($ch, CURLOPT_URL,$rup);
			curl_setopt($ch, CURLOPT_HEADER, false);
			curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
			curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
			set_time_limit(300); // 5 Min. PHP
			curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,300); // 5 Min.cURL
			curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 6.0; es-ES; rv:1.9.0.6) Gecko/2009011913 Firefox/3.0.6');

			$rup_parse = parse_url($rup);
			$rup_temp = substr($rup_parse['path'], 1);

			if (preg_match("@".DIR_TEMP."@", $rup_temp)) {
				$delete_temp = true;
			}

			if ($use_ftp==true) {
				ftp_put($FTP_connect, DIR_WORKING.$rname, 'site-img/canvas.gif', FTP_BINARY);
				ftp_chmod($FTP_connect, 0777, DIR_WORKING.$rname);
			}

			$out = fopen(DIR_WORKING.$rname, 'wb');
			curl_setopt($ch, CURLOPT_FILE, $out);
			// grab
			$resultado = curl_exec($ch);
			fclose($out);
			curl_close($ch);
			$tmp_name = $rname;
			}
	} // remota

	// Manejemos la temporal
	$handlework = DIR_WORKING.$tmp_name;

	$info = getimagesize($handlework);

	// Otras lecturas
	$statinfo = @stat($handlework);
	$tamano = $statinfo['size']; // BYTES
	$tamano_kb = round($tamano/1024,2);
	$mimosa = $info['mime']; // SI POR LA CONCHETUMADRE
	$ancho = $info[0]; // Fijate en esto!
	$alto = $info[1];
	$mime = $info['mime'];

	if (!$ancho || !$alto || !$mime || !$tamano) { // Fallan esas leseras
		$invalida = true;
		$inv_txt = INVALID_CORRUPT;
		$no = true; 
	}
	if ($tamano > $max_by) { // Muy pesada
		$peso = true;
		$no = true;
	}

	// Manejemos el mime tipe para los "amigos" que usan otras extensiones...
	if ($mimosa=="image/gif") { $exten = 'gif'; }
	if ($mimosa=="image/pjeg") { $exten = 'jpg'; }
	if ($mimosa=="image/jpeg") { $exten = 'jpg'; }
	if ($mimosa=="image/png") { $exten = 'png'; }
	if ($mimosa=="image/bmp") { $exten = 'bmp'; }

	if (!isset($no)) {
		$up = true;
	}

	if ($no==true) {
		// Eliminamos la imagen del up/working..
		if ($use_ftp==true) {
			ftp_delete($FTP_connect, $handlework);
		} else {
			unlink($handlework);
		}
		$spit = true;
		unset($modo);
		$modo = 1;
		if ($peso==true) {
			$pes_txt = TOO_HEAVY.' ('.$max_mb.'MB max.)';
		}
		if ($peso==true && $invalida==true) {
			$ademas = ' '.ANDTEXT.' ';
			$errormsg = $pes_txt.$ademas;
		} else {
			$errormsg = INVALID_EXT;
		}




	} // no!

	// Hay subida compadre...
	if ($up) {

		// Limpiemos el nombre
		// --> Tambien me quedo "super rico".
		$lower = strtolower($tmp_name); // Solo minusculas
		$alnum = ereg_replace("[^[:alnum:]]","",$lower); // Solo alfanumericos
		if ($exten==peg) { unset($exten); $exten = 'jpg'; }
		$clear = substr_replace($alnum, '', -3); // sin extension ni punto
		// Cortemos el nombre (si hace falta)
		$conteo = strlen($clear);

		// Random
		$ch_1 = chr(rand(ord("a"), ord("z")));
		$ch_2 = chr(rand(ord("z"), ord("a")));

		if ($conteo>$max_name) {
			$renombre = substr("$clear", 0, $max_name);
		} else {
			if (empty($clear)) {
				$renombre = $ch_1.$ch_2.$ch_1;
			} else {
				$renombre = $clear;
			}
		}

		// Si existe el nombre, renombramos el que estamos subiendo.
        	if (file_exists(DIR_IM.$renombre.'.'.$exten)) {
			if ($conteo>$totalchars) { 
				// Si el nombre es muy largo, corta
				$renombra = substr("$renombre", 0, $max_name-4); // 4 -> El remplazo de mas abajo			
			} else { 
				$renombra = $renombre;	
			}
			// Vamos a darle caracteres aleatorios.			
			$name = $renombra.$ch_1.$ch_2.$ch_1.'.'.$exten;
		} else { 
			$name = $renombre.'.'.$exten;
		}		

		// Setiemos el redimensionamiento
		if (!empty($resize)) {				
			if(preg_match("/[^0-9\.]/",$resize)) { // Queremos solo numeros!
				$errormsg = JUST_NUMBERS;
				$titulo = UPLOADED_BUT_NOT_RESIZED.ESP_TITULO;
				$spit = true;
				$red = 2;
			} else {
				if($allow_over_resize==false && $resize>$ancho) {
					$errormsg = OVER_RESIZE_ERROR.' ('.$ancho.'px)';
					$titulo = UPLOADED_BUT_NOT_RESIZED.ESP_TITULO;
					$spit = true;
					$red = 2;				
				} else {
					if ($resize<=$higres && $resize>=$lowres) {
						$new_alto = round($resize*$alto/$ancho);
						// Seteamos el nuevo alto y ancho
						unset($ancho);
						unset($alto);
						$ancho = $resize;
						$alto = $new_alto;
						$red = 1;
					} else {
						$errormsg = RESIZE_LIMITS.' '.$lowres.' '.ANDTEXT.' '.$higres.' (pixels)';
						$titulo = UPLOADED_BUT_NOT_RESIZED.ESP_TITULO;
						$spit = true;
						$red = 2;
					}
				}
			}
		}

		// Target -> Archivo a redimensionar (handlework)
		// Archivo -> Archivo work (DIR_WORKING.$name)
		function redimensionar($tipo,$target,$archivo,$ancho_n,$alto_n) {
			global $use_ftp, $FTP_connect;

			if ($tipo==gif) {
				$src = imagecreatefromgif($target);
			}
			if ($tipo==png) {
				$src = imagecreatefrompng($target);
			}
			if ($tipo==jpg) {
				$src = imagecreatefromjpeg($target);
			}

			$era_x = imageSX($src);
			$era_y = imageSY($src);
			$destino = imagecreatetruecolor($ancho_n,$alto_n);

			// gif
			if ($tipo==gif) {
				$transparente = imagecolortransparent($src);
				imagepalettecopy($src, $destino);
				imagefill($destino, 0, 0, $transparente);
				imagecolortransparent($destino, $transparente);
				imagetruecolortopalette($destino, true, 256);
			} else {
				imagecolortransparent($destino, imagecolorallocate($destino, 0, 0, 0) );
			}			

			imagealphablending($destino, false);
        		imagesavealpha($destino, true);

			imagecopyresampled($destino,$src,0,0,0,0,$ancho_n,$alto_n,$era_x,$era_y);

			// Si esta por FTP, otorgar permiso
			if ($use_ftp==true) { ftp_chmod($FTP_connect, 0777, $PATH_SERVER.$archivo); }

			if ($tipo==gif) { imagegif($destino, $archivo); }
			if ($tipo==png) { imagepng($destino, $archivo); }
			if ($tipo==jpg) { imagejpeg($destino, $archivo, 86); }
			if ($tipo==bmp) { imagewbmp($destino, $archivo); }

			imagedestroy($destino); 
			imagedestroy($src);	

			// Si esta por FTP, quitar permiso
			if ($use_ftp==true) { ftp_chmod($FTP_connect, 0644, $PATH_SERVER.$archivo); }

		} // La funcion

		if (empty($resize)) {
			// Haga como si nada...
			if ($use_ftp==true) {
				ftp_put($FTP_connect, DIR_IM.$name, $handlework, FTP_BINARY); // COPIA -> ADONDE, QUEARCHIVO
				ftp_put($FTP_connect, DIR_TH.$name, $handlework, FTP_BINARY); // Lo debemos hacer para que exista un archivo en thumbs para chmodear.
			} else {
				copy($handlework, DIR_IM.$name);
			}
			$titulo = UPLOAD_OK.ESP_TITULO;
		}
		if ($red==1) {
			// Correr la funcion redimensionamiento *img en el working

			if ($use_ftp==true) {
				ftp_put($FTP_connect, DIR_WORKING.$name, $handlework, FTP_BINARY);
			}

			redimensionar($exten,$handlework,DIR_WORKING.$name,$ancho,$alto);

				// Mover la redimensionada
				if ($use_ftp==true) {
					ftp_put($FTP_connect, DIR_IM.$name, DIR_WORKING.$name, FTP_BINARY);
					ftp_put($FTP_connect, DIR_TH.$name, DIR_WORKING.$name, FTP_BINARY);
				} else {
					copy(DIR_WORKING.$name, DIR_IM.$name);
				}

				$titulo = UPLOAD_AND_RESIZED.ESP_TITULO;

			// Borramos
			if ($use_ftp==true) {
				ftp_delete($FTP_connect, DIR_WORKING.$name);
				if($delete_temp) { ftp_delete($FTP_connect, $rup_temp); }
			} else {
				unlink(DIR_WORKING.$name);
				if($delete_temp==true) { unlink($rup_temp); }
			}

		}
		if ($red==2) {
			// No red correcto, renombra la temp (vea si esta)
			$tname = DIR_TEMP.$name;			
			if (file_exists(DIR_TEMP.$name)) {
				$numletra = ereg_replace("[^[:alnum:]]","",$name);
				$cleartemp = substr_replace($numletra, '', -3); // sin extension ni punto
				$randtemp = rand(000,999);
				$tname = DIR_TEMP.$cleartemp.$randtemp.'.'.$exten;						
			} else {
				$tname = DIR_TEMP.$name;
			}
			if ($use_ftp==true) {
				ftp_put($FTP_connect, $tname, $handlework, FTP_BINARY);
			} else {
				rename($handlework, $tname);
			}
			$URLrdn = URL_SCRIPT.$tname;
			// Setea el modo 4!
			unset($modo);
			$modo = 4;
		}

		// si se sube algo creemos el thumb
		if ((empty($resize) || $red==1)) {
			// thumb
			if ($ancho>$alto) {
				unset($mini_alto);
				$mini_alto = round($mini_ancho*$alto/$ancho);	
			}
			if ($ancho<$alto) {
				unset($mini_ancho);
				$mini_ancho = round($mini_alto*$ancho/$alto);
			}
			// Thumb
			redimensionar($exten,$handlework,DIR_TH.$name,$mini_ancho,$mini_alto);	
			// Chao work
			if ($use_ftp==true) {
				ftp_delete($FTP_connect, $handlework);
			} else {
				unlink($handlework);
			}				
		}

	}

} else { // Check local + remote 
	unset($modo);
	$modo = 1;
	$spit = true;
	$errormsg = CRITIC_ERROR_INPUT;
	$titulo = ERROR_UPLOADING.ESP_TITULO;
}

}

if ($modo==2 || $modo==3) {
// INFORMACION (ANCHO, ALTO y PESO)
if ($modo==2) {
	if ($_GET['v']) {
		$id = $_GET['v'];
		$imagen = DIR_IM.$id;
		if (file_exists($imagen)==true) {
			$title = SEEING.' '.$id; 
			$titulo = $id.' '.AT.' ';
			$info = getimagesize($imagen); //Obtenemos la informacion
			$statinfo = @stat($imagen);
				$ancho = $info[0];
				$alto = $info[1];	
				$mime = $info['mime']; 
					$tamano = $statinfo['size']; //Bytes
					$tamano_kb = round($tamano*0.0009765625, 2);
				$canales = $info['channels'];
		} else {
			unset($modo);
			$modo = 1;
			$spit = true;
			$errormsg = NOT_EXISTS;
			$titulo = NOT_EXISTS_TITLE.ESP_TITULO;
		}
	}
}

// LAS URL
$URLimg = URL_SCRIPT.DIR_IM.$name;
$URLthm = URL_SCRIPT.DIR_TH.$name;
$URLvim = URL_SCRIPT.'?v='.$name;
$URLshr = $URLvim; // Para no cambiar mas abajo
$eu_img = urlencode($URLimg);

// Short URL using services like TinyURL.com		
function cortar_url($url) {	
	global $tiny_api;
	$tiny = $tiny_api.$url;
	$chtny = curl_init();
	curl_setopt($chtny, CURLOPT_URL, $tiny);
	curl_setopt($chtny, CURLOPT_RETURNTRANSFER, 1);
	$ShortURL = curl_exec($chtny);
	curl_close($chtny);
	return $ShortURL;
}

// SI esta habilitado cortar url.. hagamolo.
if ($cut_url==true) {

	// Si se da a elegir al usuario, cortemos si el quiere.
	if ($cut_url_user==true) {
		// El usuario quiere cortar url...
		if (isset($_COOKIE['prefurl'])) {
			$ShortURL = cortar_url($URLimg);
		}
	// Cortamos si o si ya que la prefencia es de script y no de usuario.
	} else {
		$ShortURL = cortar_url($URLimg);
	}

}

}

// Esto debria preguntar si hay ftp abierto y ahi cerrar.
if ($use_ftp==true) {
ftp_close($FTP_connect);
}

if (!isset($titulo)) {
$titulo = WELCOME;
}

?>

 

Can anyone please tell me where the error is?

 

Thanks in advance.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.