[00:00:02] basically http://wiki.domain.org/mediawiki/index.php?title=Main_Page&action=edit [00:00:20] becomes http://wiki.domain.org/mediawiki/index [00:00:31] everything after the period gets removed [00:00:35] :-/ [00:03:05] hhm [00:03:08] the rewrite rules are not matching the pattern of the first url [00:03:13] danolj: you may have to escape the . [00:03:15] with \. [00:03:19] just a thought [00:03:24] yeah, that's not it [00:03:38] I wonder if I messed up LocalSettings.php somehow? [00:03:47] what do you have in LocalSettings.php? [00:04:17] 03(mod) API: action=parse should default to wikitext contentmodel if no title given - 10https://bugzilla.wikimedia.org/48201 summary (10Krinkle) [00:04:37] Krenair: here... let me check my bz privs [00:05:40] Jasper_Deng: you want me to pastebin the entire file or is there a specific area you want to look at [00:05:40] You still have bz admin [00:06:07] danolj: $wgServer, $wgCanonicalServer, and the other ones mentioned in that (wrong) instruction se.tr [00:06:09] set* [00:06:17] at least according to https://meta.wikimedia.org/w/index.php?title=System_administrators/table&diff=5594090&oldid=5513992 [00:06:30] Krenair: Reedy, fwiw, I do still have bz admin privs but I want to make sure I coordinate anything with Andre [00:08:11] Jasper_Deng: http://pastebin.com/TzYWmQSY [00:08:23] no setting for $wgCanonicalServer [00:09:26] your rewrite rules? [00:09:47] http://pastebin.com/vDKB7NFu [00:10:24] ok, none of your rules mention "/wiki" [00:10:39] or rather, one of them is inverted wrongly [00:11:41] hmm.. [00:12:12] disable the main page one first [00:13:12] done [00:13:30] also, based on my rough understanding, the parameter after /wiki has to be passed to index.php as ?title= [00:13:32] does not resolve the problem [00:14:36] does not appendQueryString="true" do that? [00:14:59] I wouldn't think so, because whatever's after /wiki/ isn't recognized as a parameter [00:16:38] Let me try the other rewrite method.. one moment [00:16:56] Does anyone here have a good understanding of the job queue system? Specifically, what are the job_params for each job entry? [00:19:34] Jasper_Deng: the same behavior occurs using url="/mediawiki/index.php?title={UrlEncode:{R:1}}" [00:19:45] I'm trying to trim my job queue by deleting duplicate jobs (those that have same job_cmd, job_namespace and job_title) [00:20:20] hhm [00:20:20] neither of the rules match a url of the format wiki.domain.org/mediawiki/ and so they should not be executed [00:20:38] the IIS GUI for testing redirects also confirms that behavior [00:20:57] I'm not totally aware of the degree to which the module does regex. [00:22:48] * Jasper_Deng guesses danolj didn't try \. but doubts that's probably the root issue. [00:22:51] although it seems likely. [00:24:30] danolj: yes, you do need to escape the . [00:24:34] I have removed all the rewrite rules [00:24:46] and am using mediawiki/index.php?title=Main_Page [00:24:50] according to documentation [00:24:51] the edit function remains broken [00:25:12] well, that's b/c your $wg's are wrong b/c they assume rewrite rules, ofc. [00:26:03] those were changed back to the default as well [00:27:07] are you still getting redirected to an "index"? [00:27:35] yeah [00:27:49] there are no other redirect rules present in IIS [00:28:03] and this only happens for edit or create at the top level [00:29:35] your $wgArticlePath? [00:30:03] one moment [00:30:28] commented out [00:30:28] # $wgArticlePath = "/wiki/$1"; [00:30:38] Try setting it explicitly [00:30:50] $wgArticlePath="/mediawiki/index.php?title=$1" [00:31:20] nope, same behavior [00:31:28] $wgArticlePath = "/mediawiki/$1"; [00:31:48] I mean set it to that value above [00:31:56] b/c you have no URL rewrite rule, right? [00:33:03] all changes made to shorten the URLs have been removed. No rewrite rules, no redirects, vanilla IIS configuration [00:33:22] the setting for $wgArticlePath to "/mediawiki/$1" was made per your request [00:33:30] should be $wgArticlePath="/mediawiki/index.php?title=$1" [00:34:22] you are correct, my fault, sorry [00:37:15] I've run tests, setting as listed above causes 500 errors, commenting out allows mw to work with the exception of the aforementioned edit issue [00:39:37] danolj: did you remember the ; ? [00:39:50] $wgArticlePath = "/mediawiki/index.php?title=$1" [00:40:01] direct cut & paste [00:40:16] * danolj tries to follow jasper's instructions carefully [00:41:00] good evening [00:43:10] I have a project for which I would like to use mediawiki but I would need a "Translate" link like the "Edit" link putting the content of the page on, for example, a pootle server, allowing for translation of the page into any language. Then the translated page would live on the version for that languague on the same wiki. Is this possible? [00:43:12] danolj: yeah you need the ; after it [00:43:23] can I put a bounty on it? [00:43:36] !extension Translate [00:43:36] MediaWiki has been built so it can easily be customized by adding extensions. This is usually a simple process. See http://www.mediawiki.org/wiki/Manual:Extensions for instructions to install extensions, as well as for writing them. See http://www.mediawiki.org/wiki/Extension_Matrix for an overview of known extensions. [00:43:40] ehh [00:43:45] well duh [00:43:50] http://www.mediawiki.org/wiki/Extension:Translate [00:43:53] that was aimed at me [00:44:01] * danolj is an idiot sometimes [00:44:10] thank you! I'll look into it [00:44:52] so 500 error gone, edit still not working [00:46:01] are you still getting redirected? [00:46:20] yes [00:46:32] let me check something for a moment, I'm going to sniff http traffic [00:47:03] I've never heard of this before [00:48:40] but this allows for the translation of articles like in edit? [00:49:15] japrrpaj: I'm not completely following you [00:51:20] Jasper_Deng: I'm suspecting a browser problem [00:51:41] which ones have you tried? [00:51:42] its a chrome problem [00:52:04] opening an incognito window and trying the URLs showed them all working fine [00:52:10] clear your cache! [00:52:17] yep [00:52:36] why the heck is the browser, when I put in a URL, sending a much shorter URL? [00:52:38] * Jasper_Deng is guessing danolj would like to put back the rewrite rules now [00:52:46] heh [00:52:51] if I can remember how! [00:53:49] is it possible to export a wiki article to LaTeX? [00:53:56] I am annoyed in a major major way and deeply sorry to have wasted your time [00:54:08] wtf was chrome doing? [00:54:08] no problem [00:54:29] japrrpaj: not that I know of [00:54:36] danolj: sometimes the cache is rotten. [00:54:42] or a faulty add-on [00:54:58] no add ons installed - I keep this particular instance clear of junk [00:55:10] but I did have a ton of tabs open - searches for iis wikimedia install documentation :-) [01:01:00] wikibooks converts books to .pdf [01:01:09] so there must be something LaTeX-able [01:02:27] Do everyone know the answer to this question? http://www.mediawiki.org/wiki/Extension_talk:CentralAuth#No_accounts_matching_your_name_were_found_in_the_central_account_tracking_table.21_The_database_must_be_corrupt. [01:15:05] hi guys, how do I remove the math challenge on page edits? [01:15:11] that is, saving the edit? [01:27:11] danolj, Remove the extension that adds it? Or set it up so autoconfirmed users don't see it [01:28:09] thanks, no extensions, will look into the other settings [01:28:15] just ran into this .doc upload bug https://gerrit.wikimedia.org/r/#/c/44379/ [01:28:17] patch time [01:28:46] oh, well, that patch has been abandoned [02:06:50] 03(NEW) revisions need to be scrubbed from the Wikipedia database - 10https://bugzilla.wikimedia.org/50031 normal; Wikimedia: Site requests; () [02:08:00] 03(mod) revisions need to be scrubbed from the English Wikipedia database - 10https://bugzilla.wikimedia.org/50031 summary (10Graham87) [02:14:56] 03(NEW) Lohit Panjabi font display error of siharis (vowel short I) - 10https://bugzilla.wikimedia.org/50032 normal; Wikimedia: Language setup; () [02:17:30] 03(mod) Lohit Panjabi font display error of siharis (vowel short I) - 10https://bugzilla.wikimedia.org/50032 (10Guglani) [02:26:38] 03(mod) Lohit Panjabi font display error of siharis (vowel short I) - 10https://bugzilla.wikimedia.org/50032 (10Guglani) [03:07:19] 03(mod) Remove ULS from ml.wiktionary and re-install Narayam - 10https://bugzilla.wikimedia.org/49889 +comment (10vssun9) [03:18:06] 03(NEW) Toolbar shows on non-existent pages - 10https://bugzilla.wikimedia.org/50033 normal; MediaWiki extensions: GettingStarted; () [03:22:33] 03(mod) Parsoid 500 error on some articles. - 10https://bugzilla.wikimedia.org/50015 normal->major; +comment (10Erik Moeller) [03:30:53] 03(mod) VisualEditor: Support references - 10https://bugzilla.wikimedia.org/39599 +comment (10gerritadmin) [04:04:42] 03(mod) Remove ULS from ml.wiktionary - 10https://bugzilla.wikimedia.org/49889 summary (10sunil) [04:05:48] 03(mod) Remove ULS from ml.wiktionary - 10https://bugzilla.wikimedia.org/49889 +comment (10sunil) [04:15:22] 03(mod) adminbot (morebot) about to lose ability to log to Identi.ca and Twitter due to API deprecations - 10https://bugzilla.wikimedia.org/49476 +comment (10gerritadmin) [04:20:36] 03(mod) adminbot (morebot) about to lose ability to log to Identi.ca and Twitter due to API deprecations - 10https://bugzilla.wikimedia.org/49476 +comment (10greg) [04:31:08] 03(mod) revisions need to be scrubbed from the English Wikipedia database - 10https://bugzilla.wikimedia.org/50031 +shell (10This, that and the other) [04:31:55] 03(mod) Mobile Beta edition: can not edit the 11th and after section in a article - 10https://bugzilla.wikimedia.org/50017 +comment (10This, that and the other) [04:32:07] 03(mod) adminbot (morebot) about to lose ability to log to Identi.ca and Twitter due to API deprecations - 10https://bugzilla.wikimedia.org/49476 +comment (10ori) [04:35:19] 03(mod) Add Translation: namespace to English Wikisource - 10https://bugzilla.wikimedia.org/50007 +comment (10This, that and the other) [04:52:14] 03(mod) Remove ArticleFeedback extension from Wikimedia wikis - 10https://bugzilla.wikimedia.org/49976 +comment (10This, that and the other) [05:08:01] 03(mod) Edit button sometimes chooses wrong section - 10https://bugzilla.wikimedia.org/49208 +comment (10Qiyue2001) [05:18:19] 03(mod) Mobile Beta edition: can not edit the 11th and after section in some articles - 10https://bugzilla.wikimedia.org/50017 summary (10Qiyue2001) [05:26:00] 03(mod) Mobile Beta edition: can not edit the 11th and after section in some articles - 10https://bugzilla.wikimedia.org/50017 +comment (10qiyue2001) [05:30:22] 03(mod) Mobile Beta edition: can not edit the 11th and after section in some articles - 10https://bugzilla.wikimedia.org/50017 +comment (10This, that and the other) [05:30:23] 03(mod) Edit button sometimes chooses wrong section - 10https://bugzilla.wikimedia.org/49208 +comment (10at.light) [06:20:46] 03(mod) VisualEditor: Support references - 10https://bugzilla.wikimedia.org/39599 +comment (10James Forrester) [06:28:33] 03(mod) VisualEditor: Convert save dialog to use ve.ui.Dialog - 10https://bugzilla.wikimedia.org/48566 (10James Forrester) [06:28:35] 03(mod) VisualEditor: Pre-beta needs (tracker) - 10https://bugzilla.wikimedia.org/48426 (10James Forrester) [06:36:17] 03(NEW) Requesting to sinhala wikipedia - 10https://bugzilla.wikimedia.org/50034 normal; MediaWiki extensions: Echo; () [06:42:41] 03(mod) Parsoid: New images get a link=… set whether or not they need it - 10https://bugzilla.wikimedia.org/49844 (10James Forrester) [06:43:27] 03(mod) Special:UploadCampaigns and Special:UploadCampaign contents are hidden from people without editing rights - 10https://bugzilla.wikimedia.org/36914 +comment (10nischayn22) [06:44:33] 03(mod) Uncaught TypeError: Cannot read property 'description' of undefined - 10https://bugzilla.wikimedia.org/50016 +comment (10James Forrester) [06:44:35] 03(mod) VisualEditor: Transclusion inspector blank on opening some templates - 10https://bugzilla.wikimedia.org/49493 +comment (10James Forrester) [06:44:42] 03(mod) VisualEditor: Transclusion inspector blank on opening some templates - 10https://bugzilla.wikimedia.org/49493 (10James Forrester) [06:47:07] 03(mod) Images not displayed in latest VE deployment - 10https://bugzilla.wikimedia.org/50008 +comment (10James Forrester) [06:53:26] 03(mod) Images not displayed in latest VE deployment - 10https://bugzilla.wikimedia.org/50008 +comment (10jforrester) [06:55:10] 03(mod) VisualEditor: Click-dragging of content to move it - 10https://bugzilla.wikimedia.org/49981 (10James Forrester) [07:03:22] 03(mod) Images not displayed in latest VE deployment - 10https://bugzilla.wikimedia.org/50008 +comment (10at.light) [07:21:14] 03(NEW) VisualEditor: Images with HTML tags in captions are invisible (along with other images on the same page) - 10https://bugzilla.wikimedia.org/50035 normal; VisualEditor: Editing Tools; () [07:26:09] 03(mod) Special:UploadCampaigns and Special:UploadCampaign contents are hidden from people without editing rights - 10https://bugzilla.wikimedia.org/36914 +comment (10nischayn22) [07:28:35] 03(mod) Images turned into mw:Placeholder in certain cases - 10https://bugzilla.wikimedia.org/50035 summary; +comment (10Roan Kattouw) [07:29:00] 03(mod) VisualEditor: Consecutive images align incorrectly in "edit" mode and cannot be modified - 10https://bugzilla.wikimedia.org/50013 +comment (10James Forrester) [07:47:44] 03(NEW) VisualEditor: enwiki template {{columns-list}} looks broken - 10https://bugzilla.wikimedia.org/50036 normal; VisualEditor: General; () [08:12:49] I'm having an issue with the hashtables extension, if anyone here's particularly familiar with it [08:13:08] trying to use it to set up a color table... it used to be a giant switch statement template, which worked fine, but a hash table isn't [08:13:25] I think it might be that it's padding the output with spaces or something, but I'm not sure how to get around that [08:17:21] this is a pastebin of the template: http://pastebin.com/g8C3sts5 [08:18:35] 03(mod) OutputPage: Module state of "user" (and similar modules) should be set to "ready" instead of "missing" when there is none - 10https://bugzilla.wikimedia.org/46854 +comment (10Krinkle) [08:22:09] hello. For E:UserMerge I need a clever database query for multi-row deletion from table watchlist to remove duplicates wl_user, wl_namespace, wl_title ... Is someone listening here who can help me ? [08:26:05] 03(NEW) OutputPage: Don't add