Hi MortiOli ,
I read your message many time , but it's look like something is missing for me to answer clearly ...
Your directories look quite complicated .
I would not mess at all with that ROOT_PATH ...
What i suggest is to create a info.php file ( or config.php whatever )
put this file a the same place then your index.php
you will be able to : include("info.php"); just like that ...
let's say this info.php will have something like :
$sys[server][func][dir]="/var/www/php/functions/";
$sys[server][images][url]="...";
then you can include your skin functions :
include("info.php"); include($sys[server][func][dir] . "skin_functions.php");
|
putting all this kind of stuff in the same $sys array will permit you to put it in global in some of your functions more easily ...
this i just my humble suggestion ..
I may be too late but ...
Edited by Iluvalar - 29 August 2007 at 3:50pm