blad79
Forum Replies Created
-
Forum: Plugins
In reply to: [Crony Cronjob Manager] Feature for log page.
Forum: Plugins
In reply to: [Crony Cronjob Manager] Feature for log pageAlso to better show time in format “24 hours”, but not “am/pm”.
Forum: Plugins
In reply to: [Crony Cronjob Manager] Cronjob has not been created.Look http://ww.wp.xz.cn/support/topic/plugin-cant-be-reinstalled-if-its-table-deleted-from-the-database?replies=1
Check exists tables [prefix]_crony_jobs and _logs in your database. If it no, then you could create it manualy with all fields…Probably, cause of the error was bad field in [database].[prefix]_posts.post_modified_gmt, this field had zeros instead datetime. Because, I does write posts directly to database with script, instead write it commonly with WP editor. Old version of the script didn’t write datatime to there.
I have this issue too. The error in sitemap on site, not only in Google.
I found in \wp-content\plugins\wordpress-seo\inc\class-sitemaps.php function get_last_modified. Search by it found that plugin get last_modifed_gmt from wp_cache, but it quicly died, else get from DB. posts, standart field.
Plugin works with date in format$date = date('c', strtotime($date));Thus, it’s with letter ‘T’.
All looks right – code, table of DB…
But how fix error???