Setup:Installation Guide/System Preparation/Linux/Memcached and Known issues: Difference between pages

(Difference between pages)
No edit summary
 
No edit summary
Tag: 2017 source edit
 
Line 1: Line 1:
{{DISPLAYTITLE:Memcached on Linux}}
{{Collapsible|cheader=The filter on special pages (e.g., "Recent changes") fails to load. {{Bsvs|bsvFrom=|bsvTo=4.2.6|bsvFeature=}}
__TOC__
|cdescription= In some cases, the page ''Special:RecentChanges'' does not finish loading.
{{Messagebox|boxtype=note|icon=|Note text=Memcached is a cache server to improve the performance of your BlueSpice installation. It is not required for the actual operation of BlueSpice. The steps listed here are therefore optional.|bgcolor=}}
|chelp=You can add the following script to ''MediaWiki:Common.js'':
==Installation==
<syntaxhighlight language="javascript">
Install Memcached with Aptitude:
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}
</syntaxhighlight>}}


<pre>apt-get update; \
apt-get -y install memcached; \
apt-get clean</pre>
==Configuration==
Open the file containing the memcached configuration (for example, /etc/memcached.conf on Debian / Ubuntu). Find the '' '-m' '' argument there and increase the available memory according to your server's capabilities:
<pre>-m 512</pre>
Save and close the file and restart memcached with <code>service memcached restart</code>.
==Next step==
If you have completed all steps successfully and want to install BlueSpice pro, proceed to the next step " [[Setup:Installation Guide/Advanced/Mathoid|Mathoid]]". If you want to install BlueSpice free, you can now continue with  [[Setup:Installation Guide/With Installer|Installing BlueSpice]].


[[en:{{FULLPAGENAME}}]]
[[en:{{FULLPAGENAME}}]]
[[de:Setup:Installationsanleitung/Systemvorbereitung/Linux/Memcached]]
[[de:Bekannte Probleme]]

Revision as of 12:12, 19 April 2023

The filter on special pages (e.g., "Recent changes") fails to load.   -v4.2.6

Description: In some cases, the page Special:RecentChanges does not finish loading.


Help: You can add the following script to MediaWiki:Common.js:

if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}



To submit feedback about this documentation, visit our community forum.

Discussions