Tagged Questions
0
votes
1answer
26 views
In PHP, create an ATOM Feed from an RDF based RSS Feed
Because of a legacy system I have that produces an old RDF based RSS 1.0 Feed, and the unability of most of the RSS Readers to handle HTTP Basic Auth, I'd like to have a PHP script that reads this ...
0
votes
2answers
68 views
PHP header issue
I have set php header as
header("Content-Type: application/xml");
And I got following response
<?xml version="1.0" encoding="utf-8"?>
<feedback>
...
0
votes
0answers
32 views
ATOM to RSS feeds converter
I found this working converter: http://feedmix.novaclic.com/atom2rss.php
However I would like to have a source code. Where can I found a working one for PHP?
4
votes
1answer
139 views
I need to read email body using mail feed atom [duplicate]
i got a code from a website to read gmail content
in that code they are using
https://mail.google.com/mail/feed/atom
From this i can get
1. mail title
2. mail from (name and email)
3. subject of ...
2
votes
0answers
172 views
Why is my ZF2 MVC App Using PhpRenderer instead of FeedRenderer?
I have a controller class that extends Zend\Mvc\Controller\AbstractActionController. I want one of the action method to generate an atom feed.
I enabled the ViewFeedStratagy in module.config.php:
...
0
votes
1answer
49 views
How to catch XML Dom with php regex
I got some XML Atom files on local.
On all of those files, there are some <author>...</author> balise that I want to catch in a PHP string variable.
So I did that :
function ...
0
votes
0answers
62 views
SimpleXmlElement constructor generates error on one server, but doesn't on another
I used the same piece of code with the same test URL. My localhost and my public web server both run Ubuntu, they both have Simplexml support enabled and Schema support enabled. My localhost runs PHP ...
0
votes
0answers
51 views
Inserting Database Information Into RSS Feed
This is the current code for my RSS Feed:
<?php header("Content-type: text/xml"); ?>
<?php echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>
<?php ...
0
votes
1answer
90 views
Random Number in RSS feed
This is what I currently have for my PHP file:
<?php header("Content-type: text/xml"); ?>
<?php echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>
<rss version="2.0">
...
0
votes
2answers
177 views
Simple XML Element fail to parse a <link type=“”> string from an .atom file
I've this piece of code taken by a .atom document wrapped with file_get_contents:
<entry>
<link type="text/html" rel="alternate" href="..."/>
</entry>
My goal is to extract ...
-4
votes
1answer
96 views
Can a Site get a Virus from using Curl? [closed]
I have a script which uses simple php curl requests to get the contents from rss/atom feeds....
now my question is it possible that by using curl, is there a chance i might get a virus?
Let's say I ...
0
votes
1answer
219 views
load all items from one Atom RSS feed
I'm using SimplePie and it gives me a headache. First, let me explain what I'm trying to do.
My friend, for which I'm making a website, already has blog with not so few posts and I want to load all ...
2
votes
1answer
376 views
How do I fix simplepie? failed to open stream: No such file or directory
I am trying to pull in some posts from a remote wordpress site with simplepie. I have installed the library and put what I think is the right code at the top of the .php page.
right now my it looks ...
0
votes
0answers
40 views
How to read Atom namespaces with simplexml_load_string?
I'm trying to read namespaces inside entry tag. Such as
<entry>
<onder:Event_Date>4</onder:Event_Date>
<onder:Location>7</onder:Location>
</entry>
But ...
0
votes
1answer
343 views
Parse RSS/Atom feeds with PHP's HTML DomDocument
How to find the values for namespace content:encoded and dc:creator with the following code
Unfortunately I cannot use simplepie or magpierss or even simplexml.
I know I've to use ...
0
votes
0answers
34 views
How to set a feature image in wordpress with feedwordpress plugin?
Using this wordpress plugin and I would like you to insert automatically the feature image. By reading the post and entering the first one it finds. Does anyone have experience in the field? thank you ...
0
votes
1answer
1k views
Can't get RSS feed to show in Drupal 7
I cannot get RSS feed to show on Drupal 7.14 page, feed does not show any items. Feed url: http://www.engadget.com/rss.xml
I added feed url in Feed aggregator with no problems, and feed name is shown ...
0
votes
0answers
63 views
How to get URL of last cached feed in SimplePie
How can I know which feed was downloaded last?
$files = glob("cache/*.spc");
$files = array_combine($files, array_map("filemtime", $files));
arsort($files);
$latest_file = key($files);
Above code ...
-1
votes
1answer
176 views
Restructure XML File using XSLT or PHP script
I have an iphone app which parses standard rss feeds and displays it on a table.
However I have been given a feed from a client but the parser in the app cannot pickup the nodes and parse the data as ...
7
votes
1answer
115 views
Correct/Accepted Way to Update an ATOM Entry
What's to "correct" way to indicate an entry in an ATOM feed is updated?
By "correct" I mean fits into existing specifications and something feed readers will notice and mark as new/unread.
All the ...
0
votes
0answers
112 views
Parse VCalendar string from Atom entry node
I'm reading an existing Atom feed with PHP (using Zend_Feed_Atom) that will be manipulated and converted (probably to JSON) for eventual consumption by an Android app (Java), and iOS app (Obj-C), and ...
0
votes
1answer
140 views
Print atom web feed how to
I'm using this code to print a atom web feed. how do i get access to one of the images in the link rel='enclosure'? can anybody help me please? I just want to print one image on my screen, but i don't ...
1
vote
1answer
1k views
Parse iTunes RSS Atom feed with PHP?
Trying to parse an iTunes Atom feed with a PHP script. If you visit the iTunes RSS Generator, you can generate an Atom feed like this:
...
0
votes
2answers
50 views
What type of feed does Nature Magazine use?
I tried to parse nature magazine's feed using php and several different rss/atom reader yet I can't find a proper way of reading them.
Their feed structure is bizzare to me its not RSS for sure but ...
0
votes
1answer
268 views
Convert xml to atom feed
I would like to convert the xml below to an atom feed:
<item>
<offerStartDate>2012-15-02</offerStartDate>
<offerEndDate>2012-19-02</offerEndDate>
...
1
vote
0answers
172 views
Consuming atom namespaces with Zend_Feed_Atom
I'm have I hope a very simple question about Zend_Feed, but for some reason I can't work out how to use Zend_Feed_Atom.
I'm trying to consume google shopping atom feed, which looks like the ...
0
votes
1answer
235 views
Removing Leading White Space from XML Doc
Our company web site generates feeds, but for some reason, white space is being injected before the <?xml version="1.0" encoding="UTF-8" standalone="yes"?> tag, making it invalid XML.
How do I ...
1
vote
0answers
253 views
Getting Access token Gmail atom feed (PHP)
How can I get the access token properly in gmail atom feed. I have gone through 1-4 steps in getting the token but stuck at the last part in upgrading to access token. At the 4th step I have been ...
0
votes
0answers
120 views
How to apply styles to .rss files or Atom feed files
I created an atom feed for my website.
test.rss is my file. I also created a test.xsl file for my feed. But it's not working.
If I change test.rss to test.xml then it works. Is there is any option ...
0
votes
1answer
180 views
How to query the <entry> nodes from an ATOM feed
I can query the description nodes in an RSS feed and return a result like this:
$xpath = new DOMXPath($xmlDoc);
$items = $xpath->query('/rss/channel/item/description/..');
foreach($items as ...
0
votes
1answer
104 views
Counting the total item in an ATOM feed
I have a problem in counting the total items in this feed,
$xml = ('http://www.huffingtonpost.com/author/index.php?author=simon-cohen');
$xmlDoc = new DOMDocument();
$xmlDoc -> load($xml);
# Get ...
2
votes
2answers
365 views
Adding a namespace to a Zend_Feed_Writer_Feed
I'm working on implementing a feed generator for use with Google Product Search for our sites. As Zend incorporates a feed writer class, I decided to go with Atom for the feed format.
I've done ...
1
vote
2answers
112 views
Consume various feed formats via a library (C# or PHP)?
I am looking for a library in either C# or PHP to consume various kinds of feeds such as RSS, Atom, eBay, Amazon, YouTube, Flickr, Twitter, Yelp, etc so I can standardize them under a single format to ...
0
votes
1answer
249 views
Google Shopping API and Zend Framework
Can Zend Framework interface with Google Shopping and send data about our products?
From what I understand the interface is based on a modified Atom feed.
Zend currently provides a library for ...
0
votes
1answer
130 views
Get 5 items from feed and save as new file
how I can get the first 5 items from a feed that have more than 10 items and save as a new xml file
I was using something like this to get all the feed data, but there is some feed that have more ...
0
votes
1answer
47 views
Atom Issue with different Twitter accounts
I'm using an atom feed parsed via PHP to display the most recent post.
The URL that feeds into this is: http://search.twitter.com/search.atom?q=from:username&rpp=1.
When using ...
0
votes
1answer
24 views
Having some problems removing details & validation of RSS feed.
Sorry in advance, I'm rather new at this.
Below is the full code for the rss.php feed (It's from FMyScript if anyone is wondering). I want to remove the junk that it prints out at the bottom. My ...
1
vote
1answer
1k views
Problems parsing Facebook atom feed using PHP
I have problems parsing a atom facebook feed.
Using:
PHP's DOMDocument.
Errors:
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 12
Warning: ...
0
votes
2answers
235 views
Posting full articles from RSS feeds
How can this be done?
Now I use fulltextrssfeed.com and WP robot, but I don't really like it, because fulltextrssfeed.com posts only like 5 articles when it was more than 50 in the original RSS feed. ...
1
vote
1answer
255 views
Pulling <s:variant> from atom feed with simple pie
How can I get the title tag from the s:variant block below using simple pie?
<s:variant>
<id>product_variants-96590662</id>
<title>Default Title</title>
...
0
votes
1answer
41 views
PHP searching and counting the occurence of a string in a file in atom format
I'm looking for a way to parse a URL that's in the atom format, for example, the results shown here - ...
0
votes
0answers
232 views
atom XML georss namespace issues in PHP
I have tried almost everything to access the georss:featurename from this specific atom xml file but have had no luck what so ever so far.
<?xml version="1.0" encoding="utf-8"?>
Current ...
1
vote
2answers
4k views
How to parse XML / RSS feeds and store them in Database
How to parse XML / RSS feeds and store them in Database. I have set of RSS feeds to parse and store them in my DB tables.
are there any code / tutorials available for this.
Please help.
1
vote
1answer
225 views
Query RSS feeds
I have generated the RSS feeds successfully.
Now the problem is, XML output is coming out very well in Mozilla Firefox browser. but when it comes to Google Chrome, output is displaying with NO XML ...
1
vote
1answer
1k views
Consuming WCF Service with PHP
I would like to consume WCF service (created by ASP .NET) with PHP. I do not usually develop with PHP but I know it well enough to write my code by examples or references. In the end - it's like any ...
2
votes
5answers
909 views
using php to check if xml is atom or rss
i'm writing a php code which has to determine if given xml is in "atom" or "rss" format. After observing atom and rss xml files, i decided classify xml based on a root element. If root element is ...
0
votes
1answer
121 views
Problem with creating a rss feed
I have created a rss feed for my blog, it validates fine. I get this recommendation
line 1, column 1831: Missing atom:link with rel="self"
I have limited knowledge. How could I fix this I ...
0
votes
1answer
169 views
parsing XML with PHP need to display the embedded HTML as markup
I'm writing a simple atom XML parser with PHP
I have trouble displaying the proper content inside the <content> tag if there is additional HTML tag within.
Ex. If I want to parse the following ...
1
vote
1answer
961 views
Atom namespace with php simplexml
This is my RSS template that I load into my simplexml object. I want to change the
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
...
5
votes
2answers
454 views
What RSS parser should I use in PHP?
I am searching an RSS parser written in PHP. The problem is not that I cannot find one. The problem is that there are too many and it's hard to decide which one to use (especially when I have no ...


