[MediaWiki-l] Re: update.php failed for mediawiki-1.38.0

2022-06-06 Thread Stefanie Leisestreichler
You are sooo right, thanks :) One more catch? Now after all we've been through it is showing up this friendly message: PHP Fatal error: Uncaught FatalError: $wgBaseDirectory must not be modified in settings files! Use the MW_INSTALL_PATH environment variable to override the installation root

[MediaWiki-l] Re: update.php failed for mediawiki-1.38.0

2022-06-06 Thread Benjamin Lees
You're missing the dollar sign in $IP. :-) On Mon, Jun 6, 2022 at 3:09 AM Stefanie Leisestreichler < stefanie.leisestreich...@peter-speer.de> wrote: > When setting > > $wgExtensionDirectory = "{$IP}/extensions"; > > there are no more errors regarding missing extensions/extension.json. > > Now

[MediaWiki-l] Re: update.php failed for mediawiki-1.38.0

2022-06-06 Thread Stefanie Leisestreichler
I provided wrong info in my last post when saying I have no skin.json in the skins/$THEME/ directories. They are there. Nevertheless with the following config I get the following error: # Themes $wgStyleDirectory = "{IP}/skins"; wfLoadSkin( 'Timeless' ); wfLoadSkin( 'Vector' ); wfLoadSkin(

[MediaWiki-l] Re: update.php failed for mediawiki-1.38.0

2022-06-06 Thread Stefanie Leisestreichler
When setting $wgExtensionDirectory = "{$IP}/extensions"; there are no more errors regarding missing extensions/extension.json. Now the same problem applies to the Skins I am using. Thanks to the link you provided I set $wgStyleDirectory in Localsettings.php also. This is my current config:

[MediaWiki-l] Re: update.php failed for mediawiki-1.38.0

2022-06-05 Thread Benjamin Lees
The initialization of $wgExtensionDirectory changed in 1.38: https://github.com/wikimedia/mediawiki/commit/f5641f9856b27c1b88bdbb5456d59f394c37d2e3 I don't think that should be a problem, though, unless you're using $wgExtensionDirectory to define another path in LocalSettings.php. What happens

[MediaWiki-l] Re: update.php failed for mediawiki-1.38.0

2022-06-05 Thread Stefanie Leisestreichler
No, not setting $wgExtensionDirectory. Extensions all are loaded with pattern like wfLoadExtension( 'Cite' ); . I updated this installalation a few days ago from 1.36.0 to 1.36.2 without having any issues. The bug suddenly appears when updating from 1.36.2 to 1.38.0. On 04.06.22 08:51,

[MediaWiki-l] Re: update.php failed for mediawiki-1.38.0

2022-06-04 Thread Benjamin Lees
Are you setting $wgExtensionDirectory in LocalSettings.php? It sounds like it's been set to the root directory instead of the extensions directory. On Fri, Jun 3, 2022 at 2:48 PM Stefanie Leisestreichler < stefanie.leisestreich...@peter-speer.de> wrote: > Hi. > When looking at the error message

[MediaWiki-l] Re: update.php failed for mediawiki-1.38.0

2022-06-03 Thread Stefanie Leisestreichler
Hi. When looking at the error message "stat failed for /Cite/extension.json" one will see, that update.php is not looking in "extensions/Cite/" for extension.json. Instead it is searching in "/Cite/" for extension.json. File extensions/Cite/extension.json exists in my installation, but not

[MediaWiki-l] Re: update.php failed for mediawiki-1.38.0

2022-06-03 Thread Sammy Tarling
Hey, It'd be worth checking that extensions/Cite/extension.json exists, and/or re-downloading the Cite Extension if possible. If you're still having trouble, Manual:How to debug has