• 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

Error

Status
Not open for further replies.
All the links in the <head> of your xHTML code seem to be wrong.
For example:

This is the line where your CSS file is called:
Code:
<link href="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/themes/Peafowl/style.css" rel="stylesheet" type="text/css" />

This line should be like this:
Code:
<link href="http://imglocker.net/content/themes/Peafowl/style.css" rel="stylesheet" type="text/css" />

The path is wrong in all the calls.
 
alexvf said:
All the links in the <head> of your xHTML code seem to be wrong.
For example:

This is the line where your CSS file is called:
Code:
<link href="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/themes/Peafowl/style.css" rel="stylesheet" type="text/css" />

This line should be like this:
Code:
<link href="http://imglocker.net/content/themes/Peafowl/style.css" rel="stylesheet" type="text/css" />

The path is wrong in all the calls.

i havent changed anything tho
 
your directorys are wrong

your head section:

Code:
<script src="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/system/js/jquery.min.js" type="text/javascript">
<script src="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/system/js/jquery.validate.min.js" type="text/javascript">
<script src="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/system/js/jquery.easing.js" type="text/javascript">
<script src="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/system/js/swfobject.js" type="text/javascript">
<script src="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/system/js/jquery.uploadify.v2.1.4_chevereto.js" type="text/javascript">
<script src="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/system/js/peafowl.php" type="text/javascript">
<link type="text/css" rel="stylesheet" href="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/themes/Peafowl/style.css">
<link type="text/css" rel="stylesheet" href="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/themes/Peafowl/uploadify.css">
<link type="image/x-icon" rel="shortcut icon" href="http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/themes/Peafowl/favicon.ico">

but your section have to be:

Code:
<script src="http://imglocker.net/content/system/js/jquery.min.js" type="text/javascript">
<script src="http://imglocker.net/content/system/js/jquery.validate.min.js" type="text/javascript">
<script src="http://imglocker.net/content/system/js/jquery.easing.js" type="text/javascript">
<script src="http://imglocker.net/content/system/js/swfobject.js" type="text/javascript">
<script src="http://imglocker.net/content/system/js/jquery.uploadify.v2.1.4_chevereto.js" type="text/javascript">
<script src="http://imglocker.net/content/system/js/peafowl.php" type="text/javascript">
<link type="text/css" rel="stylesheet" href="http://imglocker.net/content/themes/Peafowl/style.css">
<link type="text/css" rel="stylesheet" href="http://imglocker.net/content/themes/Peafowl/uploadify.css">
<link type="image/x-icon" rel="shortcut icon" href="http://imglocker.net/content/themes/Peafowl/favicon.ico">

your body section:

Code:
http://imglocker.net/hermes/bosweb26b/b2105/ipg.imglockernet/content/themes/Peafowl/theme-img/logo.png

have to be:

Code:
http://imglocker.net/content/themes/Peafowl/theme-img/logo.png

and so on...

all of your links seem wrong.

Is chevereto in your home directory?
if only your index.php is in your home directory you have to change the links.
if not , you could send us a screenshot of the structure of your directorys.
 
ok, but why are they always this paths: ? /hermes/bosweb26b/b2105/ipg.imglockernet

you have to delet this path everywhere.... after it chevereto have to work without problems
 
The automatic path detection is not working for you. This is because the function that detect the path wasn't made taking into account every possible server config. If you like, you can send me your ftp details to inbox@chevereto.com and I will find a way to fix the function for everyone.
 
Rodolfo said:
The automatic path detection is not working for you. This is because the function that detect the path wasn't made taking into account every possible server config. If you like, you can send me your ftp details to inbox@chevereto.com and I will find a way to fix the function for everyone.

ive sent you the details
 
This is because your server is using symbolic links.
To fix this, the new definition in /includes/config.php should be:

PHP:
define('__CHV_RELATIVE_ROOT__', str_ireplace(rtrim(realpath($_SERVER['DOCUMENT_ROOT']), '/'), '', __CHV_ROOT_DIR__));

This bugfix will be bundled on 2.0.4
 
Status
Not open for further replies.
Back
Top