Displaying 2 results from an estimated 2 matches for "feedurl".
Did you mean:
feed_url
2009 Dec 24
0
serving crossdomain.xml from icecast web-root
...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.com:8000/stats.xml
Now i have an advanced script that manages my stats.xml with admin password,
etc.. but this is the jist of it.
~D...
2009 Aug 13
0
Efficiently Extracting Meta Data from TM Corpora
...reatly speed up the processing. However, the "meta" function that I need does not take advantage of MPI.
I have two ideas:
1) Find a way of running the meta function in parallel mode. Specifically, the code that I'm running is:
urllist <- lapply(workingcorpus, meta, tag = "FeedUrl")
Unfortunately, I receive the following error message when I try to use the command "parLapply"
"Error in checkCluster(cl) : not a valid cluster
Calls: parLapply ... is.vector -> clusterApply -> staticClusterApply -> checkCluster"
2) Alternatively, I wonder i...