Hi: I'm trying to get my site validated. The set up instructions have this note: "Note: If your files are in sub-directories, you may need to use the full path to the ad_network_311.php file." QUESTION: Where would I insert the full path to the ad_network_319.php file??? Can you post exactly how it should look?? This is what is showing on my website pages: ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_311.php'); echo $ad_network; Thanks for any help. Robert
include '/path/to/your/ad_network_311.php'; PHP: that's what is meant by 'full path'. and you must replace /path/to/your/ with the actual path ofcourse.
Hi Frankm: Thanks for the guidance, but I still have a lot of questions. This is the full path: http://www.100freeworkathometools.com/ad_network_311.php EXACTLY what should the code I entered on my web pages look like after entry?? Also, what do I have to do with this line of code?? ini_set ("include_path", ini_get("include_path") . ':../:../../:../../../:../../../../'); As you can see my technical knowledge is very limited. Thanks for your help. Robert
Shawn: So what exactly is a file path?? And how does it look when entered under the setup instructions. Robert
It's going to be dependent on your server. As an example, the file path for it on this forum would be: /xserve1/sites/forums.digitalpoint.com/web/ad_network.php
Hi: The set up instructions have this note: "Note: If your files are in sub-directories, you may need to use the full path to the ad_network_311.php file." This is my domain: http://100FreeWorkAtHomeTools.com According to my host's help desk this is the full path to the ad network file: include('/home/freew/public_html/ad_network_311.php'); This is the code that is pasted on my web pages: ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_311.php'); echo $ad_network; EXACTLY what should the immediately above be modified to look like when I include the "full path" to the ad network file?? Thanks for your help. Robert
ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_311.php'); echo $ad_network; Shawn: I'm not sure exactly what to do, but here are the two modifications I tried: ini_set include ('ad_network_311.php'); . ':../:../../:../../../:../../../../'); ("include_path", ini_get ("include_path") echo $ad_network; include ('ad_network_311.php'); ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); echo $ad_network; Neither of these attempts resulted in the ads being shown. What Now???? Robert