[17:39:53] Hi. I am using DPL () but they dont seem to update unless I edit and save the page. Cron is running every 5 min. What can be wrong? [17:41:06] Example: https://wiki.tnonline.net/w/Blog has the DPL section, but only lists the [17:41:11] ... [17:41:16] lists the three entries [17:41:35] whereas the category page shows all categories https://wiki.tnonline.net/w/Category:Blog [17:41:52] I mean all pages/entries [21:59:33] Is there a way to prefill new pages with some basic content when a user chooses to create a new page ? [22:02:30] https://www.mediawiki.org/wiki/Manual:Creating_pages_with_preloaded_text [22:35:12] Hello, [22:35:58] I wanna build a script to get all articles that have been "redirected" and/ or "deleted" on the site in the last ~24 hours. What's the easiest way to pull this info? [22:36:47] I'm assuming everytime a page is #REDIRECT (redirected) to another page..an entry is created in the redirect table [22:40:27] Anyone? [22:40:47] Patience is appreciated ;) [22:40:56] Deletion is easy, MW keeps a log [22:41:06] https://en.wikipedia.org/wiki/Special:Log?type=delete&user=&page=&wpdate=&tagfilter=&wpfilters%5B%5D=newusers [22:41:26] Can get that from the API or the database if you want [22:43:20] Ah yep, I edxpected deletion to be easy. Which table/ column would be best, do you know? [22:43:28] revision? and maybe checking using timestamp [22:43:47] Or look at the log table? :P [22:44:04] well, logging [22:44:06] That would be best. My bosses need it in a weekly CSV :) [22:45:24] yep, logging would work [22:45:53] thinking about the redirects now, MW doesn't store the timestamp when the redirect is placed, right? [22:46:25] nope [22:46:31] One solution is - I could monitor the differences to the redirect table [22:46:50] and the article IDs that changed, are the ones which were redirected [22:47:11] (i.e. if an article ID wasn't there in the table last week and is present this week..or its value changed) [22:47:33] thanks for your help Reedy!