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
Updating old posts w/o RSS showing them as new
-
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
Hi!
The most easy way is after tagging you run this SQL query:
This will make sure that the last-modified timestamp is set to the creation of the article.
Regards,
Garvin
The most easy way is after tagging you run this SQL query:
Code: Select all
UPDATE serendipity_entries SET last_modified = `timestamp`
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/
# 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:
Re: Updating old posts w/o RSS showing them as new
I do not Think I have a) access b)= the skill to access my mysql. I am a writer not a techiegarvinhicking wrote:Hi!
The most easy way is after tagging you run this SQL query:
This will make sure that the last-modified timestamp is set to the creation of the article.Code: Select all
UPDATE serendipity_entries SET last_modified = `timestamp`
I'll try the other hint as soon as I find the option