I did a comparison between my wiki install (version 1.23.1 upgraded in two steps to 1.23.3) and the latest version of MediaWiki (version 1.23.3).
The 'images' directory in the copy of my wiki (cpwiki) is missing as I ran 'diff' on another machine (i.e. not the server hosting the website) and didn't want to copy those files (13 GB).
# diff -qr cpwiki mediawiki-1.23.3 | sort > diff_output.txt # more diff_output.txt ----- Files cpwiki/extensions/SpamBlacklist/SpamBlacklist_body.php and mediawiki-1.23.3/extensions/SpamBlacklist/SpamBlacklist_body.php differ Files cpwiki/extensions/SpamBlacklist/SpamBlacklist.i18n.php and mediawiki-1.23.3/extensions/SpamBlacklist/SpamBlacklist.i18n.php differ Files cpwiki/extensions/SpamBlacklist/SpamBlacklist.php and mediawiki-1.23.3/extensions/SpamBlacklist/SpamBlacklist.php differ Files cpwiki/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.class.php and mediawiki-1.23.3/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.class.php differ Files cpwiki/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.i18n.php and mediawiki-1.23.3/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.i18n.php differ Files cpwiki/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php and mediawiki-1.23.3/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php differ Files cpwiki/extensions/WikiEditor/modules/jquery.wikiEditor.js and mediawiki-1.23.3/extensions/WikiEditor/modules/jquery.wikiEditor.js differ Files cpwiki/includes/GlobalFunctions.php and mediawiki-1.23.3/includes/GlobalFunctions.php differ Only in cpwiki/extensions: FlaggedRevs Only in cpwiki/extensions: Math Only in cpwiki/extensions: MobileFrontend Only in cpwiki/extensions: Scribunto Only in cpwiki/extensions: WikiSEO Only in cpwiki: LocalSettings.php Only in cpwiki: lp_favicon.png Only in cpwiki: lplogo.png Only in cpwiki: sitemap-index-librepathology.xml Only in cpwiki: sitemap-librepathology-NS_0-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_10-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_1-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_11-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_12-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_14-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_2-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_3-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_4-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_6-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_8-0.xml.gz Only in cpwiki: sitemap-librepathology-NS_828-0.xml.gz Only in cpwiki: tests Only in mediawiki-1.23.3/extensions/SpamBlacklist: api Only in mediawiki-1.23.3/extensions/SpamBlacklist: i18n Only in mediawiki-1.23.3/extensions/SyntaxHighlight_GeSHi: COPYING Only in mediawiki-1.23.3/extensions/SyntaxHighlight_GeSHi: i18n Only in mediawiki-1.23.3: images -----
What caught my eye is "Files cpwiki/includes/GlobalFunctions.php and mediawiki-1.23.3/includes/GlobalFunctions.php differ"
# diff ./cpwiki/includes/GlobalFunctions.php ./mediawiki-1.23.3/includes/GlobalFunctions.php ----------------------------- 2923c2923 < $status = proc_get_status( $proc ); ---
$status = proc_get_status( $proc );
2926c2926 < if ( !$status['running'] ) { ---
if ( !$status['running'] ) {
-----------------------------
"GlobalFunctions.php" ( http://www.mediawiki.org/wiki/Manual:GlobalFunctions.php ) seems to be important... and the change makes me wonder whether a bug is lurking somewhere in this.
I don't know why I have the difference... but I tend to think it shouldn't be there-- if the patches were applied properly.
I looked at the last two patch files ( mediawiki-1.23.3.patch.gz , mediawiki-1.23.2.patch.gz ). The latest patch ( mediawiki-1.23.3.patch.gz ) has changes to 'GlobalFunctions.php'.
I did the 1.23.3 patch on August 29th. Temporally, this doesn't align with when the problems started; my problems started a couple of days before then. In any case, I don't understand how this could explain the problems I have... but it is something that looks funny.
Thanks, Michael