[15:37:01] hi folks, I just updated my mediawiki to 1.33.0 [15:37:24] looking for some advice on what the best way to offer my community flexible login [15:37:41] I can't seem to get the GoogleLogin extension to show up in the Login page [17:24:47] hey can anyone help me figure out what's worng with parsoid / visualeditor setup on my mediawiki install? [17:25:47] i don't see anything listening on port 8142 or 8000 [17:26:28] despite parsoid apparently running according to service parsoid status [17:37:07] vicatcu: can you see if there's a node process running at least? [17:39:37] vicatcu: Run: sudo netstat -patun | grep node [18:42:00] @Vulpix I figured it out, the init.d script was using the system install nodejs which is ancient instead of my nvm installed version [18:42:26] so I basically just deleted the init.d script and replaced it with a custom systemd script [18:43:08] following https://gist.github.com/joepie91/73ce30dd258296bd24af23e9c5f761aa [19:15:51] I removed LS.php so I could re-generate it. But I get an error from mw-config/index.php [19:16:12] 'Error: Semantic Compound Queries requires the Semantic MediaWiki extension. Please enable or install the extension first' [19:17:36] Where does this come from? How can I get past it? I don't know how you would install an extension when you don't have LocalSettings.php in the first place [19:18:05] I have many extensions in 'extensions' including SemanticMediaWiki [19:30:02] freephile: I think SMW uses composer, and composer may change the list of php files that MediaWiki includes by default [19:31:07] Vulpix: thanks. I tried blanking the extensions directory, but that resulted in a 500 error until I ran composer update --no-dev in $IP [19:31:12] freephile: Apparently you'll need to manually edit the composer.local.json file: https://www.semantic-mediawiki.org/wiki/Help:Deinstallation [19:32:21] OK, great... that's the info I was just looking for... how to UNinstall SMW or SMWCompoundQueries [19:35:36] Vulpix: that worked! I deleted all the 'require' statements from composer.local.json and re-ran composer update --no-dev and now I can get to the installer to generate a LocalSettings.php file [19:42:48] glad to know :)