[09:46:00] Hello, I am testing upgrading from mediawiki 1.19 to 1.28. For some reason images with [[Image:]] stopped showing, but [[File:]] images show. Any idea why this would happen? [09:59:10] Never mind, it seems that both are broken [10:09:55] good lord, the problems was a trailing forwardslash in wgSharedUploadDirectory [10:10:02] it worked with 1.19 but not with 1.28 [10:33:54] Hi guys. Trying to set up MediaWiki w/ Visual Editor and receiving "Error loading data from server: HTTP 0." when clicking 'Create'. [10:34:05] Stumped, no clue what is going on, there's absolutely zero documentation. Help? [10:52:19] Hi, I have a question about using templates like this one https://en.wikipedia.org/wiki/Template:Chart on my own wiki. Anyone who can help with that? [12:50:31] Mayzie: it sounds like web server error [12:50:46] what is http 0 status code o.O [12:50:57] No clue. [12:50:59] I fixed it anyway. [12:51:03] Looking in Chrome console helped. [12:51:45] Had the wrong RESTbase URL specified in LocalSettings.php [12:52:21] Basically I specified `localhost`, rather than my actual website address, thinking that PHP on the system would communicate with RESTbase, and not the client/browser. [13:12:33] Still buggy, though [13:12:39] Any multiline SyntaxHighlight [13:12:54] 'd code won't load and will cause PHP to lock up [18:42:30] when developing a custom skin what do I need to make sure is included to allow search suggestions to work properly. Here is the part of the file where we've added the search form https://pastebin.com/raw/BBkHtBMU [20:25:55] when developing a custom skin what do I need to make sure is included to allow search suggestions to work properly. Here is the part of the file where we've added the search form https://pastebin.com/raw/BBkHtBMU [20:28:42] I dont see how mediawiki and wordpress are related... [20:32:39] Both build web pages and run php :P [20:35:53] c: be sure the skin loads mediawiki.searchSuggest.js [20:36:48] c: also, it tries to find some hardcoded element ids https://phabricator.wikimedia.org/source/mediawiki/browse/master/resources/src/mediawiki/mediawiki.searchSuggest.js [20:36:55] Vulpix: i was comparing the skin files looking for a load line for something like that in monobook and vector but didn't find it [20:37:03] $searchRegion = $( '#simpleSearch, #searchInput' ).first() [20:37:05] $searchInput = $( '#searchInput' ) [20:40:04] c: on includes/Skin.php there's a $modules['search'][] = 'mediawiki.searchSuggest'; [20:40:25] I guess each skin defines a "search" module somehow, and if it's present, then it loads that dependency [20:40:56] but I don't really know how it works, I just grepped the code :) [23:39:54] ok so I made some progress, search suggestions are now working via Special:Search but not the search box on every page