Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.
Please keep in mind:
Smart said:I have a lot of experiences with php, can you tell me precisely what I do I edit here?
// 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 = $_SERVER['DOCUMENT_ROOT']; // --> /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;