Discuss Check link popularity problem in the PHP Development forum on Dev Shed. Check link popularity problem PHP Development forum discussing coding practices, tips on PHP, and other PHP-related topics. PHP is an open source scripting language that has taken the web development industry by storm.
The ASP Free website provides in-depth information on the latest developer tools available from Microsoft. Our cadre of writers, highly experienced industry experts, reveals the best ways to use established technologies as well as new and emerging technologies. Our coverage of Microsoft's development and administration technologies is among the most respected in the IT industry today.
ASP Free and Iron Speed Designer are giving away $5,500+ in FREE licenses. Iron Speed's RAD CASE toolset can save up to 80% of your coding time. One free license per week, one perpetual license per month! Download and Activate to enter!
Intel® Graphics Performance Analyzers is a powerful tool suite for analyzing and optimizing your games, media, and graphics-intensive applications. Used by some of the best developers on the planet, Intel GPA lets you maximize your app’s performance.
Posts: 0
Time spent in forums: < 1 sec
Reputation Power: 0
fopen mess please help
Hope i get a solution for this problem
this script runs fine when i run it for MSN or Alltheweb.
GOOGLE..........?
Warning: fopen("http://www.google.com/search?hl=en&q=link:URL","r") - Transport endpoint is not connected in /home/clients/pressnote.net/www/test/php_in.php on line 22
Could not connect to remote server [URL[/url]]
Posts: 27
Time spent in forums: 5 h 4 m 14 sec
Reputation Power: 0
You can not read google using fopen because google checks from where the request is coming and may be the url you gave is correct but it does not work. If you really need the google result try with google.yahoo.com in stead of google.com
suppose u want to find query then http://google.yahoo.com/bin/query?p=query&hc=0&hs=0
Then you get the result from yahoo but these result are returned by google.
i hope it helps you
Posts: 27
Time spent in forums: 5 h 4 m 14 sec
Reputation Power: 0
You can not read google using fopen because google checks from where the request is coming and may be the url you gave is correct but it does not work. If you really need the google result try with google.yahoo.com in stead of google.com
suppose u want to find query then http://google.yahoo.com/bin/query?p=query&hc=0&hs=0
Then you get the result from yahoo but these result are returned by google.
i hope it helps you
Posts: 0
Time spent in forums: < 1 sec
Reputation Power: 0
I have a true Solution for you
Hello kishysss,
I just have gone with your problem, and would like to suggest that few replies are misguiding you. You can definitly be correct with your code and i'm 100% sure that you can open google.com with your "fopen()" in PHP.
Problem might be with PHP side just review once again your php.ini and try to find "allow_url_fopen " and be sure to enable it.
Try to check using "phpinfo()" function with code,
use the following code:
<?php
phpinfo();
?>
save as file and review the PHP related Informations.
I'll be glad if I can be helpful to come u over this problem