Updating old posts w/o RSS showing them as new

Creating and modifying plugins.
Post Reply
oliverg
Regular
Posts: 43
Joined: Sat Feb 24, 2007 12:34 pm
Contact:

Updating old posts w/o RSS showing them as new

Post by oliverg »

Hi,

when I let e.g. the tagging script tag old posts automagically or wehen I edit them by hand I do not want the RSS feed to show them as new. 8I havy many old untagged posts and want to update them with auto-tags).

Is there any way to prevent this?

Say: 'Do not show articles as new that are older than one month and are changed.'

OLiver
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Updating old posts w/o RSS showing them as new

Post by garvinhicking »

Hi!

The most easy way is after tagging you run this SQL query:

Code: Select all

UPDATE serendipity_entries SET last_modified = `timestamp`
This will make sure that the last-modified timestamp is set to the creation of the article.

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Don Chambers
Regular
Posts: 3657
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Post by Don Chambers »

Isn't that possible with this setting: Activate strict RFC2616 RSS-Feed compliance ????
=Don=
oliverg
Regular
Posts: 43
Joined: Sat Feb 24, 2007 12:34 pm
Contact:

Re: Updating old posts w/o RSS showing them as new

Post by oliverg »

garvinhicking wrote:Hi!

The most easy way is after tagging you run this SQL query:

Code: Select all

UPDATE serendipity_entries SET last_modified = `timestamp`
This will make sure that the last-modified timestamp is set to the creation of the article.
I do not Think I have a) access b)= the skill to access my mysql. I am a writer not a techie ;)

I'll try the other hint as soon as I find the option ;)
Post Reply