[04:10:31] it's certainly possible ... the question is just if there exists an extension. Do you want the checkbox state to be saved within the wikitext? Have you asked the extension developer if they could support other versions of MediaWiki? [10:02:59] ConfirmAccount is great until you get hit by a deluge requests from compromised dedicated servers [10:03:19] "prospective authors (open requests [95]" [10:03:41] * Remilia goes to write a script to automate blacklisting [11:41:07] Hi, is there any way to make wgMobileFrontendLogo work? I tried with the instruction at https://www.mediawiki.org/wiki/Topic:Rypa7now22k21ctx and placed $wgMobileFrontendLogo = "{$wgScriptPath}/logo.svg"; in the root directory where index.php exists but the logo is not showing. [12:29:40] martin[m]: I don't think a commercial offering like BlueSpice is going to fix their extension for one person not even using their product. To answer your other question, yes, I'd like the state to be saved in the wikitext if at all possible. [12:52:18] Is it possible to access a template argument from lua **without it getting expanded first**? [12:52:46] The agument value is   example [12:52:55] I am accessing it in lua with   frame:getParent().args[1] [12:53:46] Unfortunately the text that returns is      .... [12:53:56] Rather than the desired     example [13:21:28] Been digging through the code a bit. All the lua seems to be using PPFrame::getArgument, which returns an already expanded value. Is there an existing Lua function that provides access to the unexpanded values? PPTemplateFrame_Hash::$numberedArgs [14:06:05] Hey, im having an issue where I get a 502 bad gateway when trying to install Mediawiki. Im using a Debian server. I downloaded the dependecies listed on the installation guide. Im using Nginx as my web server, i used the nginx config from here: https://www.nginx.com/resources/wiki/start/topics/recipes/mediawiki/ . Im at the step where i configure MediaWiki, but im not getting anything, only a 502 error. Nginx doesnt show any errors [14:06:06] either. Some guidance would be appreciated [14:13:21] Another thing, im using the latest MediaWiki software - 1.38.4 [14:23:24] ah, finally got an error [14:23:48] 2022/11/01 14:00:00 [crit] 844#844: *1 connect() to unix:/var/run/php/php7.3-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 84.52.171.32, server: wiki.mywiki.xyz, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/var/run/php/php7.3-fpm.sock:", host: "wiki.mywiki.xyz" [14:32:25] I have php7.4, except its looking for php7.3, perhaps thats the issue? [17:13:46] voyage: the nginx snippet you link to says `fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;` [17:14:09] so yeah, that's not going to work on PHP 7.4 [18:53:52] Does anybody know if there is a modern version of cgi_img_auth.php available? The one on mediawiki.org/wiki/Manual_talk:Image_authorization doesn't seem to have been updated for some time. [18:55:49] The link to cgi_img_auth.php takes me to a paste from 2007 xD [19:08:45] ? [19:10:16] LorenDB[m]: img_auth.php is shipped with mediawiki [19:10:43] and would likely work just fine regardless of what SAPI you're using to run php [19:12:30] tgr_ : so, what are my options? should i replace php 7.4 with 7.3, can i somehow make a 7.4 socket? [19:13:24] voyage: you probably just need to replace php7.3 with php7.4 in your config and restart nginx... [19:13:42] and install php-fpm, if you haven't already [19:16:39] ah, the php-fpm.conf file? [19:17:53] ah no, my nginx configuration [19:36:26] moonmoon: indeed, despite the mediawiki documentation saying you have to use a special CGI script, it turns out img_auth.php works just fine in CGI mode. [19:41:48] many years have passed... [19:54:26] I've got another question. I'm trying to set up source highlighting and I've installed Pygmentize and properly set $wgPygmentizePath, but I keep getting an error like `[5eebe492c9a42a5960c89534] 2022-11-01 19:51:58: Fatal exception of type "MediaWiki\SyntaxHighlight\PygmentsException"` when I access my wiki. Relevant log output is at https://gist.github.com/LorenDB/25b93c7ec484d363ef0c2ec89ec5a4da. Any suggestions?