I have installed the code on two different sites and the ads show up fine. Now on my third site playgroundmall.com I can't get the code to show up. Does my new account need to be activated?
Strange - I can't see the code in your page so if its there it must be being processed as php. What code do you have on your pages?
It's on this page: http://www.playgroundmall.com/resources/addlink.php I even went so far as to type "test" just above where the code should be to make sure I wasn't losing my mind or viewing a cached version. You can see "test" but when you view the source there's not code there...
Here's what I'm putting in my footer: test <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network.php'); echo $ad_network[0]; ?>
Well it must be processing the php then. Try adding: echo 'test<br>'; to ad_network.php to see if its finding the file.
I tried adding it here in the ad_network.php file: <?php echo 'test<br>'; if (!function_exists('file_get_contents')) { function file_get_contents($url) { $handle = fopen($url, 'r'); $string = fread($handle, 4096000); fclose($handle); return $string; } }
nothing...so I put it in here: <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network.php'); echo $ad_network[0]; ?> and it showed test at the bottom....that's it. Weird...