THanks for the earlier reply to my post on getting the SSI to work when called from sub folders. Apparently usintg the full path to the include file corrected the situation.
BUT Im still at a loss to understand what is going on. for instance when I am 2 folders deep if I call the include file with a static address like this
<?php
require(“http://localhost/pmachine/framework/Menu.php”);
?>
I get an error in the menu.php file where i am using the PMachine template:
<?php member_login_navbar(); ?>
But if I call the menu.php like this:
<?php
require(’../framework/Menu.php’);
?>
I get no error??
It also confuses me that i can access my CSS files that live in a subfolder of the root dir without absolute addressing but not my includes. Can any one shed some light into what I am missing? I also have been unable to lod\cate any variables used in the templates such as paths. where are the variables stored?
