While most of the time I'd just use file_get_contents and CURL, I can't get it to work with a port in the URL. How can I read this file? http://174.120.124.178:7800/7.html (It's a shoutcast statistics file)

Ultimately, I just want the text after the last comma.

link|improve this question
Please show some code – Pekka Feb 27 '11 at 23:09
feedback

3 Answers

up vote 4 down vote accepted

It has nothing to do with the port. They're blocking you because you're not using a browser user agent. curl does let you fake the user agent, but that may be a violation of the site's terms of service.

According to this post it's not about blocking scripts, but just distinguishing between Shoutcast clients and everything else. So the code is:

curl_setopt($curl_handle, CURLOPT_USERAGENT, "Mozilla");
link|improve this answer
While this does solve the problem with my code, the ultimate issue is that my shared hosting account does not allow me to use CURL on ports other than 80 or 443. – Jimmy Feb 28 '11 at 23:27
feedback

I tried to download your file with Curl on the command line and got a 404 error; it does load with Firefox and Lynx. This page says that you need to change the User-Agent string for it to download.

link|improve this answer
1  
Reading various forum posts, you just need a User-Agent header that contains Mozilla somewhere within it; see forums.shoutcast.com/showthread.php?t=147753. – Jeremiah Willcock Feb 27 '11 at 23:16
feedback

CURLOPT_PORT Needs to be set to the appropriate port perhaps~

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.