[00:49:58] HI everyone, followed this guide https://www.digitalocean.com/community/tutorials/how-to-install-mediawiki-on-ubuntu-14-04 have installed all LAMP config etc, i am getting to the wiki setup page, but when I finally write my LocalSettings.php file and browse to Public IP i'm getting a blank page [00:50:02] Please help [00:50:29] noobwikikid: try use localhost [00:50:53] Not really applicable, on a AWS instance sorry [00:59:59] ^bump [01:00:41] have install myphpadmin and am able to see sql database tables for my_wiki [01:28:14] noobwikikid: installer worked? [02:28:20] quick question, what's the formatting to add a password to a page [02:28:32] something like {{User|Userspassword}} [02:28:54] and it add's an asterix'd password section [02:29:02] with a show password hyperlink [02:36:41] hey all, can i ask [02:36:50] this {{#categorytree:Articles|mode=pages|depth=2|hideroot=on}} is for mediawiki [02:37:13] is there any code that i could write on my .php file to acheive the same result? [02:37:25] that is once an article is added to a category, it will auto show on my side menu bar [02:37:33] currently , my side menu bar is in a .php file.. [04:26:38] four: categorytree runs off ajax, which is why it can autoupdate [04:31:42] oh, that means if i want my menu items to be dynamically populated into my sidebar, i have to use ajax too? [04:31:46] because currently it is hardcoding [04:31:59] something like that currently (
  • Raw Materials
  • ) [09:59:33] hello [09:59:43] i use mediawiki 1.25.1 with vector skin [09:59:51] but i dont see the "edit" button on normal pages [09:59:58] for every user [10:00:16] so i guess its a configuration thing [10:00:33] somebody has an idea whats wrong on my localsettings.php [10:24:45] Hi. I have a problem with a freshly installed mediawiki 1.25.1 that generates "invalid" email address verification tokens during user registration. I noticed that clicking the link fails (token expired) and the expiry timestamp in the DB is NULL [10:25:24] I was able to reproduce on a different server, but only tried MySQL as a database backend. Which information is needed to determine if this is a software bug? [10:35:31] Guest40033: do you see a "View source" tab for those pages? And do the other tabs like "Talk" and "History" appear? [10:53:32] Hi [10:53:34] Page:Mrs Beeton's Book of Household Management (Part 2).djvu/618 Page:Mrs Beeton's Book of Household Management (Part 2).djvu/621 [10:53:42] at wikisource [10:53:43] mislink [10:53:49] and I'm not sure why [10:53:50] because it's ONLY these pages that mislink [14:11:43] physikerwelt: what is the status of the "missing tex annotation" bug. I still have it on wikipedia page but not on math-preview. Is it waiting upgrade for MathJax on production server? [15:35:45] I'm using "friendly names" (rewrite) so domain.com/wiki/Some_Article - but some special pages generate links like so: /mediawiki/index.php?title=Special%3AAllPages&from=&to=&namespace=14 [15:36:01] that is normal [15:36:13] But, doing (in that case) domain.com/wiki/Special:AllPages?namespace=14 seems to work. [15:36:56] So I guess the question is "Why?" [15:38:09] I do know it's normal; all of the mediawiki sites I've built worked that way, and even wikipedia uses that same url scheme [15:38:53] But it works there, too: https://en.wikipedia.org/wiki/Special:AllPages?namespace=10 [18:01:10] Alright, I'm having a brainfart. what's the proper syntax to modify someone's content language in common.js? I know I need to modify wgContentLanguage but I don't know the proper context [18:13:00] eh, nevermind. just gonna set their font to comic sans for everything [18:15:28] changing someone's language in js isn't going to magically change all of the interface text to that language -- that's already sent by the server based on their actual language preference [18:16:28] Skizzerz: That's what I was changing, I just can't remember if I need to go through the API or not [18:16:54] I had a little script that rolled the dice and assigned a random language to someone's account, I just can't remember what I did [18:17:21] there is no API for changing user preferences [18:18:01] the only mechanism for that is the [[Special:Preferences]] UI [18:18:59] Oh, ok. [18:25:35] found it: https://www.mediawiki.org/wiki/ResourceLoader/Modules#mediawiki.api.options [18:25:35] :D [18:27:16] also, did Bawolff die? I've been looking for him for like, a month [18:54:25] I need a link removed from a site associated with you. [20:19:28] if I install from git I don't get ParserFunctions and a lot of others. I know how to go into the extensions dir, and git clone the rest manually [20:19:44] but I suspect there is a automated, or composer, or some other new way [20:20:03] I should be using to grab all of the usual extensions? can anyone confirm or enlighten me? [21:38:23] if I wanted to pull a list of all broken transclusion links (ex, including a template that no longer exists). what table should I be querying? [21:52:56] Presumably you'd need templatelinks leftjoined onto page where page id is null or similar [23:25:34] got it [23:25:42] SELECT tl_title AS "video page", pg2.page_title AS "source page", pg2.page_id AS "source page id" FROM `templatelinks` LEFT JOIN `page` AS pg1 ON tl_namespace = pg1.page_namespace AND tl_title = pg1.page_title LEFT JOIN `page` AS pg2 ON tl_from = pg2.page_id WHERE pg1.page_namespace IS NULL AND pg2.page_namespace = 0 AND tl_namespace = 24;