• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Install issues : a lot of errors

Loic

Chevereto Noob
Hi!

First, I'm french, so, I don't speak english correctly... 🙄

I installed chevreto on my local post with WAMP SERVER and I have this result on http://localhost :

Code:
---------------------------------------- */ /* Please link us.. http://chevereto.com/ */ require('engine.php'); ?>
<br /> <b>Notice</b>: Use of undefined constant APP_NAME - assumed 'APP_NAME' in <b>C:\Program Files\wamp\www\chevereto\Upload\index.php</b> on line <b>65</b><br /> APP_NAME

Notice: Use of undefined constant TAG_LINE - assumed 'TAG_LINE' in C:\Program Files\wamp\www\chevereto\Upload\index.php on line 67
TAG_LINE
JPG PNG BMP GIF Max.
Notice: Undefined variable: max_mb in C:\Program Files\wamp\www\chevereto\Upload\index.php on line 67
Mb

Notice: Undefined variable: errormsg in C:\Program Files\wamp\www\chevereto\Upload\index.php on line 71
>
>
Notice: Use of undefined constant TXT_PREFERENCES - assumed 'TXT_PREFERENCES' in C:\Program Files\wamp\www\chevereto\Upload\index.php on line 82
TXT_PREFERENCES
Notice: Use of undefined constant TXT_PREFERENCES - assumed 'TXT_PREFERENCES' in C:\Program Files\wamp\www\chevereto\Upload\index.php on line 82
TXT_PREFERENCES

checked="checked" />
Notice: Use of undefined constant TXT_TINYURL - assumed 'TXT_TINYURL' in C:\Program Files\wamp\www\chevereto\Upload\index.php on line 89
TXT_TINYURL

Notice: Use of undefined constant TXT_CLOSE_PREF - assumed 'TXT_CLOSE_PREF' in C:\Program Files\wamp\www\chevereto\Upload\index.php on line 89
TXT_CLOSE_PREF

Notice: Use of undefined constant TXT_LOCAL - assumed 'TXT_LOCAL' in C:\Program Files\wamp\www\chevereto\Upload\index.php on line 94
TXT_LOCAL .......

Why ?

Thanks,
Loïc.

PS: My config.php file :

Code:
<?

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

  Chevereto - Script de hosting de imagenes
  Nightly Build 1.9 (11/04/2010)
  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)

// App
define('APP_NAME', 'Demo Chevereto'); // Your image hosting name
define('TAG_LINE', 'Image Hosting'); // Your tagline (for doctitles and logo)
define('DESCRIPTION', 'Demo Chevereto is a free image hosting service powered by Chevereto'); // For meta description
define('KEYWORDS', 'images, photos, image hosting, photo hosting, free image hosting'); // For meta keywords

// 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 = false; // 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) ////
///////////////////////////////////////////////////////////////////

/* We get this value with $_SERVER. If your server doesn't resolve this value, the script will not work.
   If the script doesn't work, you must manually set this value. (look the example) */

$DOM_SCRIPT = $_SERVER['SERVER_NAME']; // --> EXAMPLE: $DOM_SCRIPT = 'mysite.com';

///////////////////////////////
/// 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);

?>
 
seems strange, but never worked for me in localhost on a windows machine :s try to do it on a linux machine (maybe ubuntu)
 
You are getting this error since your wamp server is running php 5.3
Since php 5.3 (I think) the use of <? tags are deprecated.

You must edit every <? tags to <?php if you are using notepad++ simply open all .php files and using ctrl + f their is options to edit all of them.

Make sure to do not replace <?php to <?phpphp
 
Back
Top