Page 1 of 1

Updating old posts w/o RSS showing them as new

Posted: Tue Apr 08, 2008 4:38 pm
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

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

Posted: Tue Apr 08, 2008 5:24 pm
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

Posted: Tue Apr 08, 2008 5:51 pm
by Don Chambers
Isn't that possible with this setting: Activate strict RFC2616 RSS-Feed compliance ????

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

Posted: Tue Apr 08, 2008 6:03 pm
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 ;)