Recoded it with Curl instead of allow_fopen_url
-
allow_fopen_url is on many servers deactivated.
So i recoded row 26 in widget.php:
#$xml = simplexml_load_file($url); #changed the script for working on machines without allow_fopen_url # works with Curl - Start $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // get the result of http query $output = curl_exec($ch); curl_close($ch); $xml = simplexml_load_string($output); # works with Curl - End
- The topic ‘Recoded it with Curl instead of allow_fopen_url’ is closed to new replies.