On Sat, Jan 12, 2008 at 04:12:14PM -0800, [EMAIL PROTECTED] wrote: > Hi, > > I have installed GoogleBlogPing. Here are the following messages > I get in the log: > > Jan 11 09:50:37 ethelbert httpd: PHP Warning: fopen(): URL file-access is > disabled in the server configuration in > /home/e-smith/files/ibays/sqlhacks.pm/html/cookbook/googleblogping.php on > line 52 > Jan 11 09:50:37 ethelbert httpd: PHP Warning: > fopen(http://blogsearch.google.com/ping?name=SQLHacks&url=http%3A%2F%2Fwww.sqlhacks.com%2Findex.php%2FMain%2FHomePage): > failed to open stream: no suitable wrapper could be found in > /home/e-smith/files/ibays/sqlhacks.pm/html/cookbook/googleblogping.php on > line 52
This is one of those rare situations where the error message specifies exactly what is wrong. :-) The PHP software on the server is configured to disallow reading information from remote sites (i.e., http://blogsearch.google.com/ping?...). So, PHP is preventing the recipe from doing the steps of the ping. The fix is to change the allow_url_fopen setting in the PHP configuration. Pm _______________________________________________ pmwiki-users mailing list [email protected] http://www.pmichaud.com/mailman/listinfo/pmwiki-users
