Tagged Questions
1
vote
1answer
45 views
Insert rss pubdate to MySQL database
I try to insert a rss pubdate to my MySQL database. The format of the date is:
Tue, 16 apr 2013 17:04:08 UT
I try different function to format this pubdate, but I have problems with the timezone UT ...
0
votes
1answer
55 views
How to realize a Newsletter system with Rss news feed?
I have a news portal with eveyday newses. My need is to send through newsletter the daily news to subscribers.
I've already realized a PHP/MySQL custom newsletter system that performs the following ...
0
votes
0answers
36 views
SimpleXmlElement failes to fetch items
I have made a function like this:
function getFeed($feed_url) {
$content = file_get_contents($feed_url);
$x = new SimpleXmlElement($content);
echo ...
0
votes
0answers
73 views
Pulling wordpress post's img src to be background-image
Ok. So I have a wordpress plug-in that runs a cron job that reads RSS feeds, then parses the RSS feed title and excerpt into new posts.
Most of the time, each RSS 'post' that is read includes an img ...
0
votes
2answers
315 views
Conversion to RFC822 date format
I really have no idea what's going on here. I'm trying to add a RSS feed to my blog. Since RSS requires the date to be in the RFC822 format, I'm using the PHP date function to convert my original ...
5
votes
1answer
47 views
W3C RSS error after copying posts from one blog to another
There is something wrong with the script that copies last posts from one Wordpress blog to another in different domains.
Everything works fine and we have been using the script for over a year. ...
1
vote
3answers
168 views
How to Speed Up PHP Script With Huge MySQL Database
I've been working on getting an RSS feed setup and with the help of some people here I got it done. However, I really need some advice from some of you more experienced coders to show me what needs ...
0
votes
0answers
50 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
87 views
Properly Escape & in dynamic PHP to XML script
I have a dynamically generated XML file that is working great except for the RSS generated is written out as & in the
Sample URL:
http://tinyurl.com/bbhnpg6
Actual Working URL that ...
0
votes
1answer
33 views
Getting internal error when do this while loop for RSS feed
I try that write a RSS feed with php+mysql but i get internat error 500 and i'm sure that it is from while loop ,thanks for your help.
The codes:
$result = mysql_query($query_site_archive);
while ...
-1
votes
1answer
109 views
modx evolution external database
I have 3 seperate modx evolution website. All 3 websites are completely different and therefore run off a seperate database. However for the news and events pages of each website i would like them to ...
1
vote
1answer
98 views
build a rss feed
I'm trying to build a dynamic rss feed file, for the first time, for a news page to a site.
so I have the following code
<?php
header("Content-Type: application/rss+xml; charset=utf-8");
...
0
votes
1answer
264 views
Simple XML PHP MySQL
Ok Edit here still got an issue but not the same as before updated code
<?php
date_default_timezone_set('Europe/London');
$date = date('Y-m-d H:i:s', time());
$now = date('Y-m-d ...
0
votes
2answers
64 views
Identify duplicate Titles and/or URLs stored in MySQL (RSS articles)
I am collecting articles from numerous RSS feeds into a MySQL database (just the title and link from the actual feed), and I would like to make sure I do not enter the same article twice when ...
2
votes
3answers
225 views
How should I structure my rss feed pulling site to make the site load quick?
My site daisy.camorada.com is running a very slow. The reason that it is running slow is that I am pulling multiple RSS feeds to create each masonry that shows on the page.
My question for you ...