• Welcome to the Chevereto user community!

    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:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Non image

Open index.php

Change this:
Code:
<link href="<?php echo URL_SCRIPT;?>estilo.css" rel="stylesheet" type="text/css" />

With this :
Code:
<link href="http://46.102.243.171/img/estilo.css" rel="stylesheet" type="text/css" />
 
config.php

FIND :

Code:
path = dirname($_SERVER['PHP_SELF']);
if (strlen($path)>1) { 
    define('PATH_SCRIPT', $path.'/');
} else {
    define('PATH_SCRIPT', $path);
}

replace with :

Code:
define('PATH_SCRIPT', 'http://46.102.243.171/img/');
 
Well then, change everything manually :

Find everything starting with :

Code:
/js/

replace with :

Code:
http://46.102.243.171/img/js/

Find everything starting with :

Code:
/site-img/

replace with :

Code:
http://46.102.243.171/img/site-img/
 
Back
Top