• I actually noticed that rss feeds doesn’t care about the “GMT offset” set in the admin panel. The offset is statically +000, and that cause some problem when the feed is handled by software, because GMT is assumed +000.
    I made a patch for this, just changing the whole date string, with the ‘r’ parameter that since php 4.0.4, output the correctly formatted RFC date.

    The patch is available there: http://www.free-os.it/Downloads/wp.patch

Viewing 11 replies - 1 through 11 (of 11 total)
  • How can I apply this? Is it possible to post the whole new wp-rss.php?

    Thread Starter GiacomoRz

    (@alt-os)

    Just replace the string
    ‘D, d M Y H:i:s +0000’
    in the mysql2date function with a
    ‘r’

    The same should be done with wp-rss2.php, and the change must be done twice, at lines 24 and 33

    (in any case, you apply the patch with the command “patch -p0 < wp.patch” in the /directory)

    Thanks a lot, alt-os!

    Thread Starter GiacomoRz

    (@alt-os)

    This bug is still not fixed on last released 1.5.1. Who have I to write to??

    Can you be more specific about what the real problem is?

    We’re sending out a timestamp in GMT rather than in local time, but as far as I can tell, we’re sending out the *correct* timetamp… Is that not the case?

    Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    This bug is still not fixed on last released 1.5.1. Who have I to write to??

    http://codex.wordpress.org/Submitting_Bugs

    alt-os, you rock–I really hope this works. I’ve been struggling with this problem lately.

    Thanks so much for this.

    I’m with dougal, I don’t see a problem with regard to 1.5.1. We’re sending out the time in UTC, and the time seems to be correct. The patches mentioned in this thread are for 1.5, not 1.5.1.

    You’re right, ryan–I am using 1.5.

    But just for the record, alt-os, the patch outputs the pubdate as one hour earlier than the actual post date (I’m on EST time). Is there a way to fix that?

    Thread Starter GiacomoRz

    (@alt-os)

    I’ll try to explain the problem I met in a better way (sorry for my english :/).
    I live in Europe (Italy), and for that reason, my clock is set 2 hours more than the GMT (1 hour is for the Dayloght saving time).

    I had some problems because the rss aggregator my blog was subscribed to, aggregated my posts as if they where been written 2 hours before the real date. But the blog homepage reported the correct time, so I went reading in the code, beginning from wp-rss2.php. There, I found that the “GMT offset” (+0000, +0200) part of the date reported in the feed, was static. Once I changed the date string, using the ‘r’ parameter of date() (that actually give the same output, but with the gmt offset, working directly on the date settings of the server), and everything went fine.
    I’ve not check if the problem still in 1.5.1, because I patched the two files before trying it… :/

    Thread Starter GiacomoRz

    (@alt-os)

    Still not be changed. What the problem with the +r option of date(), instead of the “manual” way wordpress is using?
    That’s just causing problems!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Bug in wp-rss*.php, handling GMT offset’ is closed to new replies.