I've Banging my brains in the last weeks with my project, after an error which did not occure loacaly but did when uploaded.
found out that was do to case sensitivty on a character.
So long story short;
since then I put a variable at the top of my MAIN script,
$OnloadList = array($Variable1=>FALSE,$Class1=>FALSE);
include './myVariables.php';
// equals : <?php $Variable1=TRUE; and th rest.... ?>
include_once './myClass.php';
// equals : <?php $Class1=TRUE; class my_cls {-code- } ?>
so when debugging I check my array for anything FALSE.
Hope this helps anyone ....
found out that was do to case sensitivty on a character.
So long story short;
since then I put a variable at the top of my MAIN script,
$OnloadList = array($Variable1=>FALSE,$Class1=>FALSE);
include './myVariables.php';
// equals : <?php $Variable1=TRUE; and th rest.... ?>
include_once './myClass.php';
// equals : <?php $Class1=TRUE; class my_cls {-code- } ?>
so when debugging I check my array for anything FALSE.
Hope this helps anyone ....