Hello, I joined the coop-network yesterday, and copied the ad_network_388.php code to my webserver, and created the ad_network_ads_388.txt file with the correct permissions. I added the appropriate code to my footer.htm file but no ads are showing on my pages. My ad_network_ads_388.txt file is empty. What do I need to do to get this working? My site is built with .html files with apache setup to treat them as shtml files by use of the xbithack directive. In other words ssi is enabled for all pages on my site. Site url: http://pcpro.draikes.com I checked my apache error log and found the following message: [client 216.9.35.51] PHP Notice: Undefined index: PATH_INFO in /home/pcpro/public_html/ad_network_388.php on line 78
I am using: <!--#include virtual="/ad_network_388.php"--> I was originally haveing some problems with this but I finally got rid of all the error in my log, but now I get the afore mentioned error.
In your ad_network PHP file, change this line: if (substr (@$_SERVER['DOCUMENT_NAME'], -6) == '.shtml') { PHP: to this: if (substr (@$_SERVER['DOCUMENT_NAME'], -6) == '.shtml' || true) { PHP: