Feed RSS temporanei in wp_options non rimossi automaticamente?
2 risposta
- voti
-
- 2010-12-21
Sì,sembra unproblema di cron.
Ilplug-in Core Control è utileper diagnosticare le attività cron (tra le altre cose).
Non sono ancora sicuro di quale sia la ragioneper cui sei sommerso datransitori difeed.Tuttavia avevo scritto del codice chepotrebbe aiutare con lapulizia automatica .
Yep, this does seem like a cron issue.
Core Control plugin is good to diagnose cron tasks (among other things).
I am still unsure what is the reason of you getting overrun with feed transients. However I had written some code that might help with automatic cleanup.
-
Hoprovato aprogrammare unposte beh ...in realtà è statopubblicatogrmbl quindi sembra che cronfunzionimai feed RSSnon vengonomai rimossi.forseposso cron le 2 righe sql daeseguire una volta alla settimana * GRIN *I tried scheduling a post and well... it was actually posted grmbl so it looks like cron works but the rss feeds are never ever removed. maybe I can cron the 2 sql lines to run once every week *GRIN*
- 0
- 2010-12-21
- edelwater
-
@edelwater dovrebbefunzionare ...posiziona la suapaginain `Strumenti`@edelwater should work... it places its page in `Tools`
- 0
- 2010-12-21
- Rarst
-
ma uhm ...nonfaparte di wp_scheduled_delete?but uhm... its not part of wp_scheduled_delete ?
- 0
- 2010-12-21
- edelwater
-
In realtànon sonopiù sicuro che sia collegato a cron ... Itransienti vengonoeliminati senon sono aggiornati all'accessoe la classe chegestiscei transitori difeed ha ancheilmetodo `unlink ()` ...Actually I am no longer sure it is linked to cron... Transients are deleted if they are outdated on access and class that handles feed transients has `unlink()` method as well...
- 0
- 2010-12-21
- Rarst
-
- 2010-12-21
Le voci duranopertempi diversi.Puoieseguire un sqlpereliminaretutto:
DELETE FROM
wp_optionsWHERE
nome_opzioneLIKE ('_transient%_feed_%')
Ilmodopiù semplicepereseguire un sql direct sul database èilplugin Adminer all'interno delBackend WP.Altreinformazioni sipossono leggere su questopost suelimina la cachetemporanea deifeed.
The entries life for different time. You can run a sql for delete all:
DELETE FROM
wp_optionsWHERE
option_nameLIKE ('_transient%_feed_%')
THe easiest wy for run a sql direct on the database is the plugin Adminer inside the WP Backend. More you can read on this post about delete the transient-cache of feeds.
Ho appenanotato 55.000 voci (!)nellamiatabella wp_options.Non ci andavo da unpo '.
Così hoeseguito:
E ... ora sonotornati a 645 voci ...
Comefaccio a rimuovere automaticamente queste voci RSSmeno recentipoichéiltransitorio sembraessereeterno.
Potrebbeessere che sulmio host web cronnonfunzioni?