[10:35:42] My mediawiki 1.28 install has started falling over in MathMathML with undefined function curl_multi_init() since I upgraded server to Ubuntu 18.04. Any clues for a fix would be appreciated. [10:37:19] chrisf_: try doing [10:37:24] sudo apt install php-curl [10:38:12] Its most likely that the php curl extension is installed. Its possible if you recently updated you might have multiple versions of php and maybe curl is only installed for some versions of php but not the one you are using [10:39:03] bawolff: Thanks. It's installed (php7.2-curl) already ... hmm how to check which php apache/mediawiki is using? [10:39:35] Just create a php file containing [10:39:39] when you go to it, it will say your php version [10:39:54] It should also say on the page named Special:Version on your wiki [10:40:35] Even if php-curl is installed, its possible that its not enabled in your php.ini config, although usually ubuntu would enable it automatically [10:41:25] However, a php file containing " So apache/mediawiki are using PHP 7.0.33-0ubuntu0.16.04.6 (apache2handler) [10:42:16] I have 7.2 installed so need to check extensions. [10:44:04] I uncommented extension=curl in /etc/php/7.2/apache2/php.ini [10:49:59] So if apache/mediawiki are using php7.0, you probably want to disable the php-7.0 apache module, and enable the php-7.2 module, in order to use the latest version [10:50:18] although I guess nothing wrong with sticking to the old version if you really want [10:56:14] They're definitely using 7.0 and I've got PHP Extension 20151012 in the phpinfo() output so guess it's loaded. [10:56:55] Thanks I'll look in to how to get apache to use the latest module. [14:15:37] Does someone know what tables.sql i can use to recreate the schema using SQLite? [14:37:13] Morn__: Since there's no tables.sql under the sqlite subdirectory, it should work with the tables.sql from the maintenance folder [14:38:51] that one does not work out of the box with sqlite, some of the attributes seem to be unsupported. [14:39:11] but i have now decided to do a xml backup and restore now to fix my database. [20:20:26] Hi, I was wondering if I could get some help with generating a dynamic table. In short I'm using {{#loop}} to iterate a certain number of variables. I wish to create a new row and new cell within the loop. That's currently happening correctly, but doesn't work when I try to insert it into a table, it's almost as if it renders everything in the [20:20:27] loop and therefore the pipe characters are not recognized by the table. Is it okay if I post a small snippet?