search for: proxy_info

Displaying 1 result from an estimated 1 matches for "proxy_info".

Did you mean: proc_info
2009 Dec 24
0
serving crossdomain.xml from icecast web-root
Eric, David The way to do that is by using something called a proxy script. Simply the code goes out to your source server, reads the xml, and then relays it on your local server. You can find more information about this by going to: http://xmlrpcflash.mattism.com/proxy_info.php Or if you wanted to just try a simple one, you can create a file called proxy.php and paste this code into it: <?php $feedURL = $_POST['source']; $feedURL = trim($feedURL); readfile($feedURL); ?> and set your xml source to: http://your.domain.com?source=http://this.isyoursource...