I'm using a templating system that isn't in the absolute home of the website. When I'm using this: <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_XXX.php'); echo $ad_network; ?> Code (markup): Could I some how absolutely call that file so it doesn't have to search for i t?
I'm not sure exactly what you mean, but your code should look something like this: <?php ini_set ("include_path", ini_get ("include_path") . 'home/user/public_html/scripts/ad_network.php/'); include ('ad_network_XXX.php'); echo $ad_network; ?> Code (markup):
I'm specifically trying to get it working with evoTopSites. Anyone have any experience with validating through the templating system used by evoTopSites?