<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.wiki.bluespice.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rvogel</id>
	<title>BlueSpice - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://en.wiki.bluespice.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rvogel"/>
	<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/wiki/Special:Contributions/Rvogel"/>
	<updated>2026-04-14T12:35:04Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=8041</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=8041"/>
		<updated>2023-12-15T15:50:57Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Help others to help you==&lt;br /&gt;
Sometimes things go wrong. In many cases the user is then confronted with cryptic or no error messages at all. This page provides help about getting more information about what exactly went wrong, so it can be fixed quickly. This is especially important when asking for help on locations like [https://community.bluespice.com community.bluespice.com].&lt;br /&gt;
&lt;br /&gt;
Additional information can also be found at [[mediawikiwiki:Manual:How_to_debug|&amp;quot;Manual:How to debug&amp;quot; on MediaWiki.org]].&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=warning|header=Check for sensitive information|text=Most of the techniques described here will output very detailed information about the error, but also about the system and the context. The output may contain sensitive information like usernames, passwords, pathes, access-keys and many more. Before posting any information retrieved by this kind of debugging on a public location (like [https://community.bluespice.com community.bluespice.com]), make sure to redact all potential sensitive information!|icon=yes}}&lt;br /&gt;
&lt;br /&gt;
== Generic information ==&lt;br /&gt;
In general it is a good idea to provide additional context information about the error. Usually this information is easily to access/gather by the one who reports an error and very valueable to anyone trying to help.&lt;br /&gt;
&lt;br /&gt;
Such information can be&lt;br /&gt;
* Browser used (Firefox, Chrome, Edge, ...), ideally with the version&lt;br /&gt;
* URLs (which page the error occurs on, additional parameters that may play into the error)&lt;br /&gt;
* User permission level or role (admin, reader, editor, reviewer, ...)&lt;br /&gt;
&lt;br /&gt;
Again: Be careful if the shared information contains sensible data and redact it if required.&lt;br /&gt;
&lt;br /&gt;
== Server side debugging ==&lt;br /&gt;
There are various ways to get more information about errors by changing some configuration on the server side.&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== Enable detailed error reporting ====&lt;br /&gt;
Within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file, please add the following lines:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgShowSQLErrors&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgDebugDumpSql&#039;]  = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowExceptionDetails&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowDBErrorBacktrace&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This will turn error messages like &amp;lt;code&amp;gt;internal_api_error_DBQueryError&amp;lt;/code&amp;gt; into a more detailed stack of program calls, including database queries and responses.&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
Sometimes it can be useful to see all debugging information the application produces. To enable this general debug log please add the following lines within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if ( isset( $_GET[&#039;dodebuglog&#039;] ) ) {&lt;br /&gt;
    $GLOBALS[&#039;wgDebugLogFile&#039;] = &amp;quot;$IP/cache/debug.log&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Be aware that this configuration is set conditionally. It will only be used if the URL accessed in the browser contains some query string like  &amp;lt;code&amp;gt;dodebuglog=1&amp;lt;/code&amp;gt;. This is to allow a more isolated debug log file. Otherwise other requests (like calls to the &amp;lt;code&amp;gt;load.php&amp;lt;/code&amp;gt; entrypoint for CSS and JS content) may also add into this file, which makes analysis more difficult.&lt;br /&gt;
&lt;br /&gt;
==== Log channels ====&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
Many errors occur only on the client and server side debugging will not help. In such cases the webbrowser can be used to retrieve more information.&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
Most modern browsers have sophisticated development tools. Usually they can be accessed by pressing the &amp;lt;code&amp;gt;F12&amp;lt;/code&amp;gt; key on the keyboard. &lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
When some interface element (button, dialog, ...) does not behave like it should, it is usually worth checking the browsers JavaScript console.&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=tip|header=Nothing listed?|text=Sometimes it may be required to re-do the action that lead to the error with &#039;&#039;open console&#039;&#039; rather than opening it later.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_JS_console_01.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
One can click the link on the right side of the line to see the location of where the error has emerged from.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_JS_console_02.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
====Network panel====&lt;br /&gt;
Sometimes network communication in the background of the application fails. In such cases, the &amp;quot;Network&amp;quot; panel of the browsers developer tools may reveal more information.&lt;br /&gt;
&lt;br /&gt;
The error is also shown in the &amp;quot;Console&amp;quot; tab.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_01.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
When in the &amp;quot;Network&amp;quot; panel, one can select the faulty request from the list to get more information.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_02.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
The various tabs &amp;quot;Header&amp;quot;, &amp;quot;Payload&amp;quot;, &amp;quot;Response&amp;quot;, etc. can provide useful information.  When reporting such an issue, you can just &amp;quot;copy&amp;quot; the information using the context menu.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_03.png|center|frame]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=8040</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=8040"/>
		<updated>2023-12-15T15:50:06Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Help others to help you==&lt;br /&gt;
Sometimes things go wrong. In many cases the user is then confronted with cryptic or no error messages at all. This page provides help about getting more information about what exactly went wrong, so it can be fixed quickly. This is especially important when asking for help on locations like [https://community.bluespice.com community.bluespice.com].&lt;br /&gt;
&lt;br /&gt;
Additional information can also be found at [[mediawikiwiki:Manual:How_to_debug|&amp;quot;Manual:How to debug&amp;quot; on MediaWiki.org]].&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=warning|header=Check for sensitive information|text=Most of the techniques described here will output very detailed information about the error, but also about the system and the context. The output may contain sensitive information like usernames, passwords, pathes, access-keys and many more. Before posting any information retrieved by this kind of debugging on a public location (like [https://community.bluespice.com community.bluespice.com]), make sure to redact all potential sensitive information!|icon=yes}}&lt;br /&gt;
&lt;br /&gt;
== Generic information ==&lt;br /&gt;
In general it is a good idea to provide additional context information about the error. Usually this information is easily to access/gather by the one who reports an error and very valueable to anyone trying to help.&lt;br /&gt;
&lt;br /&gt;
Such information can be&lt;br /&gt;
* Browser used (Firefox, Chrome, Edge, ...), ideally with the version&lt;br /&gt;
* URLs (which page the error occurs on, additional parameters that may play into the error)&lt;br /&gt;
* User permission level or role (admin, reader, editor, reviewer, ...)&lt;br /&gt;
&lt;br /&gt;
Again: Be careful if the shared information contains sensible data and redact it if required.&lt;br /&gt;
&lt;br /&gt;
== Server side debugging ==&lt;br /&gt;
There are various ways to get more information about errors by changing some configuration on the server side.&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== Enable detailed error reporting ====&lt;br /&gt;
Within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file, please add the following lines:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgShowSQLErrors&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgDebugDumpSql&#039;]  = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowExceptionDetails&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowDBErrorBacktrace&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This will turn error messages like &amp;lt;code&amp;gt;internal_api_error_DBQueryError&amp;lt;/code&amp;gt; into a more detailed stack of program calls, including database queries and responses.&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
Sometimes it can be useful to see all debugging information the application produces. To enable this general debug log please add the following lines within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if ( isset( $_GET[&#039;dodebuglog&#039;] ) ) {&lt;br /&gt;
    $GLOBALS[&#039;wgDebugLogFile&#039;] = &amp;quot;$IP/cache/debug.log&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Be aware that this configuration is set conditionally. It will only be used if the URL accessed in the browser contains some query string like  &amp;lt;code&amp;gt;dodebuglog=1&amp;lt;/code&amp;gt;. This is to allow a more isolated debug log file. Otherwise other requests (like calls to the &amp;lt;code&amp;gt;load.php&amp;lt;/code&amp;gt; entrypoint for CSS and JS content) may also add into this file, which makes analysis more difficult.&lt;br /&gt;
&lt;br /&gt;
==== Log channels ====&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
Many errors occur only on the client and server side debugging will not help. In such cases the webbrowser can be used to retrieve more information.&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
Most modern browsers have sophisticated development tools. Usually they can be accessed by pressing the &amp;lt;code&amp;gt;F12&amp;lt;/code&amp;gt; key on the keyboard. &lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
When some interface element (button, dialog, ...) does not behave like it should, it is usually worth checking the browsers JavaScript console.&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=tip|header=Nothing listed?|text=Sometimes it may be required to re-do the action that lead to the error with &#039;&#039;open console&#039;&#039; rather than opening it later.}}&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
[[File:How_to_debug_JS_console_01.png|center|frame]]&lt;br /&gt;
One can click the link on the right side of the line to see the location of where the error has emerged from.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
[[File:How_to_debug_JS_console_02.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
====Network panel====&lt;br /&gt;
Sometimes network communication in the background of the application fails. In such cases, the &amp;quot;Network&amp;quot; panel of the browsers developer tools may reveal more information.&lt;br /&gt;
&lt;br /&gt;
The error is also shown in the &amp;quot;Console&amp;quot; tab.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;[[File:How_to_debug_Network_panel_01.png|center|frame]]When in the &amp;quot;Network&amp;quot; panel, one can select the faulty request from the list to get more information.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;[[File:How_to_debug_Network_panel_02.png|center|frame]]The various tabs &amp;quot;Header&amp;quot;, &amp;quot;Payload&amp;quot;, &amp;quot;Response&amp;quot;, etc. can provide useful information.  When reporting such an issue, you can just &amp;quot;copy&amp;quot; the information using the context menu.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;[[File:How_to_debug_Network_panel_03.png|center|frame]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=8039</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=8039"/>
		<updated>2023-12-15T15:43:32Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Help others to help you==&lt;br /&gt;
Sometimes things go wrong. In many cases the user is then confronted with cryptic or no error messages at all. This page provides help about getting more information about what exactly went wrong, so it can be fixed quickly. This is especially important when asking for help on locations like [https://community.bluespice.com community.bluespice.com].&lt;br /&gt;
&lt;br /&gt;
Additional information can also be found at [[mediawikiwiki:Manual:How_to_debug|&amp;quot;Manual:How to debug&amp;quot; on MediaWiki.org]].&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=warning|header=Check for sensitive information|text=Most of the techniques described here will output very detailed information about the error, but also about the system and the context. The output may contain sensitive information like usernames, passwords, pathes, access-keys and many more. Before posting any information retrieved by this kind of debugging on a public location (like [https://community.bluespice.com community.bluespice.com]), make sure to redact all potential sensitive information!|icon=yes}}&lt;br /&gt;
&lt;br /&gt;
== Generic information ==&lt;br /&gt;
In general it is a good idea to provide additional context information about the error. Usually this information is easily to access/gather by the one who reports an error and very valueable to anyone trying to help.&lt;br /&gt;
&lt;br /&gt;
Such information can be&lt;br /&gt;
* Browser used (Firefox, Chrome, Edge, ...), ideally with the version&lt;br /&gt;
* URLs (which page the error occurs on, additional parameters that may play into the error)&lt;br /&gt;
* User permission level or role (admin, reader, editor, reviewer, ...)&lt;br /&gt;
&lt;br /&gt;
Again: Be careful if the shared information contains sensible data and redact it if required.&lt;br /&gt;
&lt;br /&gt;
== Server side debugging ==&lt;br /&gt;
There are various ways to get more information about errors by changing some configuration on the server side.&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== Enable detailed error reporting ====&lt;br /&gt;
Within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file, please add the following lines:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgShowSQLErrors&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgDebugDumpSql&#039;]  = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowExceptionDetails&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowDBErrorBacktrace&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This will turn error messages like &amp;lt;code&amp;gt;internal_api_error_DBQueryError&amp;lt;/code&amp;gt; into a more detailed stack of program calls, including database queries and responses.&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
Sometimes it can be useful to see all debugging information the application produces. To enable this general debug log please add the following lines within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if ( isset( $_GET[&#039;dodebuglog&#039;] ) ) {&lt;br /&gt;
    $GLOBALS[&#039;wgDebugLogFile&#039;] = &amp;quot;$IP/cache/debug.log&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Be aware that this configuration is set conditionally. It will only be used if the URL accessed in the browser contains some query string like  &amp;lt;code&amp;gt;dodebuglog=1&amp;lt;/code&amp;gt;. This is to allow a more isolated debug log file. Otherwise other requests (like calls to the &amp;lt;code&amp;gt;load.php&amp;lt;/code&amp;gt; entrypoint for CSS and JS content) may also add into this file, which makes analysis more difficult.&lt;br /&gt;
&lt;br /&gt;
==== Log channels ====&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
Many errors occur only on the client and server side debugging will not help. In such cases the webbrowser can be used to retrieve more information.&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
Most modern browsers have sophisticated development tools. Usually they can be accessed by pressing the &amp;lt;code&amp;gt;F12&amp;lt;/code&amp;gt; key on the keyboard. &lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
When some interface element (button, dialog, ...) does not behave like it should, it is usually worth checking the browsers JavaScript console.&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=tip|header=Nothing listed?|text=Sometimes it may be required to re-do the action that lead to the error with &#039;&#039;open console&#039;&#039; rather than opening it later.}}&lt;br /&gt;
[[File:How_to_debug_JS_console_01.png|center|frame]]&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
[[File:How_to_debug_JS_console_02.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
==== Network panel ====&lt;br /&gt;
[[File:How_to_debug_Network_panel_01.png|center|frame]]&lt;br /&gt;
[[File:How_to_debug_Network_panel_02.png|center|frame]]&lt;br /&gt;
[[File:How_to_debug_Network_panel_03.png|center|frame]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7994</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7994"/>
		<updated>2023-12-13T10:09:30Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Help others to help you==&lt;br /&gt;
Sometimes things go wrong. In many cases the user is then confronted with cryptic or no error messages at all. This page provides help about getting more information about what exactly went wrong, so it can be fixed quickly. This is especially important when asking for help on locations like [https://community.bluespice.com community.bluespice.com].&lt;br /&gt;
&lt;br /&gt;
Additional information can also be found at [[mediawikiwiki:Manual:How_to_debug|&amp;quot;Manual:How to debug&amp;quot; on MediaWiki.org]].&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=warning|header=Check for sensitive information|text=Most of the techniques described here will output very detailed information about the error, but also about the system and the context. The output may contain sensitive information like usernames, passwords, pathes, access-keys and many more. Before posting any information retrieved by this kind of debugging on a public location (like [https://community.bluespice.com community.bluespice.com]), make sure to redact all potential sensitive information!|icon=yes}}&lt;br /&gt;
&lt;br /&gt;
== Generic information ==&lt;br /&gt;
In general it is a good idea to provide additional context information about the error. Usually this information is easily to access/gather by the one who reports an error and very valueable to anyone trying to help.&lt;br /&gt;
&lt;br /&gt;
Such information can be&lt;br /&gt;
* Browser used (Firefox, Chrome, Edge, ...), ideally with the version&lt;br /&gt;
* URLs (which page the error occurs on, additional parameters that may play into the error)&lt;br /&gt;
* User permission level or role (admin, reader, editor, reviewer, ...)&lt;br /&gt;
&lt;br /&gt;
Again: Be careful if the shared information contains sensible data and redact it if required.&lt;br /&gt;
&lt;br /&gt;
== Server side debugging ==&lt;br /&gt;
There are various ways to get more information about errors by changing some configuration on the server side.&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== Enable detailed error reporting ====&lt;br /&gt;
Within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file, please add the following lines:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgShowSQLErrors&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgDebugDumpSql&#039;]  = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowExceptionDetails&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowDBErrorBacktrace&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This will turn error messages like &amp;lt;code&amp;gt;internal_api_error_DBQueryError&amp;lt;/code&amp;gt; into a more detailed stack of program calls, including database queries and responses.&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
Sometimes it can be useful to see all debugging information the application produces. To enable this general debug log please add the following lines within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if ( isset( $_GET[&#039;dodebuglog&#039;] ) ) {&lt;br /&gt;
    $GLOBALS[&#039;wgDebugLogFile&#039;] = &amp;quot;$IP/cache/debug.log&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Be aware that this configuration is set conditionally. It will only be used if the URL accessed in the browser contains some query string like  &amp;lt;code&amp;gt;dodebuglog=1&amp;lt;/code&amp;gt;. This is to allow a more isolated debug log file. Otherwise other requests (like calls to the &amp;lt;code&amp;gt;load.php&amp;lt;/code&amp;gt; entrypoint for CSS and JS content) may also add into this file, which makes analysis more difficult.&lt;br /&gt;
&lt;br /&gt;
==== Log channels ====&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
Many errors occur only on the client and server side debugging will not help. In such cases the webbrowser can be used to retrieve more information.&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
Most modern browsers have sophisticated development tools. Usually they can be accessed by pressing the &amp;lt;code&amp;gt;F12&amp;lt;/code&amp;gt; key on the keyboard. &lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
When some interface element (button, dialog, ...) does not behave like it should, it is usually worth checking the browsers JavaScript console.&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=tip|header=Nothing listed?|text=Sometimes it may be required to re-do the action that lead to the error with &#039;&#039;open console&#039;&#039; rather than opening it later.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
[[File:How_to_debug_JS_console_01.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_JS_console_02.png]]&lt;br /&gt;
&lt;br /&gt;
==== Network panel ====&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_01.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_02.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_03.png]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7993</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7993"/>
		<updated>2023-12-13T10:07:23Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Help others to help you==&lt;br /&gt;
Sometimes things go wrong. In many cases the user is then confronted with cryptic or no error messages at all. This page provides help about getting more information about what exactly went wrong, so it can be fixed quickly. This is especially important when asking for help on locations like [https://community.bluespice.com community.bluespice.com].&lt;br /&gt;
&lt;br /&gt;
Additional information can also be found at [[mediawikiwiki:Manual:How_to_debug|&amp;quot;Manual:How to debug&amp;quot; on MediaWiki.org]].&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=warning|header=Check for sensitive information|text=Most of the techniques described here will output very detailed information about the error, but also about the system and the context. The output may contain sensitive information like usernames, passwords, pathes, access-keys and many more. Before posting any information retrieved by this kind of debugging on a public location (like [https://community.bluespice.com community.bluespice.com]), make sure to redact all potential sensitive information!|icon=yes}}&lt;br /&gt;
&lt;br /&gt;
== Generic information ==&lt;br /&gt;
In general it is a good idea to provide additional context information about the error. Usually this information is easily to access/gather by the one who reports an error and very valueable to anyone trying to help.&lt;br /&gt;
&lt;br /&gt;
Such information can be&lt;br /&gt;
* Browser used (Firefox, Chrome, Edge, ...), ideally with the version&lt;br /&gt;
* URLs (which page the error occurs on, additional parameters that may play into the error)&lt;br /&gt;
* User permission level or role (admin, reader, editor, reviewer, ...)&lt;br /&gt;
&lt;br /&gt;
Again: Be careful if the shared information contains sensible data and redact it if required.&lt;br /&gt;
&lt;br /&gt;
== Server side debugging ==&lt;br /&gt;
There are various ways to get more information about errors by changing some configuration on the server side.&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== Enable detailed error reporting ====&lt;br /&gt;
Within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file, please add the following lines:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgShowSQLErrors&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgDebugDumpSql&#039;]  = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowExceptionDetails&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowDBErrorBacktrace&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This will turn error messages like &amp;lt;code&amp;gt;internal_api_error_DBQueryError&amp;lt;/code&amp;gt; into a more detailed stack of program calls, including database queries and responses.&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
Sometimes it can be useful to see all debugging information the application produces. To enable this general debug log please add the following lines within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if ( isset( $_GET[&#039;dodebuglog&#039;] ) ) {&lt;br /&gt;
    $GLOBALS[&#039;wgDebugLogFile&#039;] = &amp;quot;$IP/cache/debug.log&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Be aware that this configuration is set conditionally. It will only be used if the URL accessed in the browser contains some query string like  &amp;lt;code&amp;gt;dodebuglog=1&amp;lt;/code&amp;gt;. This is to allow a more isolated debug log file. Otherwise other requests (like calls to the &amp;lt;code&amp;gt;load.php&amp;lt;/code&amp;gt; entrypoint for CSS and JS content) may also add into this file, which makes analysis more difficult.&lt;br /&gt;
&lt;br /&gt;
==== Log channels ====&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
Many errors occur only on the client and server side debugging will not help. In such cases the webbrowser can be used to retrieve more information.&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
Most modern browsers have sophisticated development tools. Usually they can be accessed by pressing the &amp;lt;code&amp;gt;F12&amp;lt;/code&amp;gt; key on the keyboard. &lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
When some interface element (button, dialog, ...) does not behave like it should, it is usually worth checking the browsers JavaScript console.&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=info|text=Sometimes it may be required to re-do the action that lead to the error with &#039;&#039;open console&#039;&#039; rather than opening it later.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
[[File:How_to_debug_JS_console_01.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_JS_console_02.png]]&lt;br /&gt;
&lt;br /&gt;
==== Network panel ====&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_01.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_02.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_03.png]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_Network_panel_03.png&amp;diff=7992</id>
		<title>File:How to debug Network panel 03.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_Network_panel_03.png&amp;diff=7992"/>
		<updated>2023-12-13T09:55:38Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_Network_panel_02.png&amp;diff=7991</id>
		<title>File:How to debug Network panel 02.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_Network_panel_02.png&amp;diff=7991"/>
		<updated>2023-12-13T09:55:11Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_Network_panel_01.png&amp;diff=7990</id>
		<title>File:How to debug Network panel 01.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_Network_panel_01.png&amp;diff=7990"/>
		<updated>2023-12-13T09:54:50Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_JS_console_02.png&amp;diff=7989</id>
		<title>File:How to debug JS console 02.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_JS_console_02.png&amp;diff=7989"/>
		<updated>2023-12-13T09:54:10Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_JS_console_01.png&amp;diff=7988</id>
		<title>File:How to debug JS console 01.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=File:How_to_debug_JS_console_01.png&amp;diff=7988"/>
		<updated>2023-12-13T09:53:43Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7987</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7987"/>
		<updated>2023-12-13T09:53:17Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes things go wrong. In many cases the user is then confronted with cryptic or no error messages at all. This page provides help about getting more information about what exactly went wrong, so it can be fixed quickly. This is especially important when asking for help on locations like [https://community.bluespice.com community.bluespice.com].&lt;br /&gt;
&lt;br /&gt;
Additional information can also be found at [[mediawikiwiki:Manual:How_to_debug|&amp;quot;Manual:How to debug&amp;quot; on MediaWiki.org]].{{Textbox|boxtype=warning|header=Check for sensitive information|text=Most of the techniques described here will output very detailed information about the error, but also about the system and the context. The output may contain sensitive information like usernames, passwords, pathes, access-keys and many more. Before posting any information retrieved by this kind of debugging on a public location (like [https://community.bluespice.com community.bluespice.com]), make sure to redact all potential sensitive information!|icon=yes}}&lt;br /&gt;
&lt;br /&gt;
== Server side debugging ==&lt;br /&gt;
There are various ways to get more information about errors by changing some configuration on the server side.&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== Enable detailed error reporting ====&lt;br /&gt;
Within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file, please add the following lines:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgShowSQLErrors&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgDebugDumpSql&#039;]  = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowExceptionDetails&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowDBErrorBacktrace&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This will turn error messages like &amp;lt;code&amp;gt;internal_api_error_DBQueryError&amp;lt;/code&amp;gt; into a more detailed stack of program calls, including database queries and responses.&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
Sometimes it can be useful to see all debugging information the application produces. To enable this general debug log please add the following lines within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if ( isset( $_GET[&#039;dodebuglog&#039;] ) ) {&lt;br /&gt;
    $GLOBALS[&#039;wgDebugLogFile&#039;] = &amp;quot;$IP/cache/debug.log&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Be aware that this configuration is set conditionally. It will only be used if the URL accessed in the browser contains some query string like  &amp;lt;code&amp;gt;dodebuglog=1&amp;lt;/code&amp;gt;. This is to allow a more isolated debug log file. Otherwise other requests (like calls to the &amp;lt;code&amp;gt;load.php&amp;lt;/code&amp;gt; entrypoint for CSS and JS content) may also add into this file, which makes analysis more difficult.&lt;br /&gt;
&lt;br /&gt;
==== Log channels ====&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
Many errors occur only on the client and server side debugging will not help. In such cases the webbrowser can be used to retrieve more information.&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
Most modern browsers have sophisticated development tools. Usually they can be accessed by pressing the &amp;lt;code&amp;gt;F12&amp;lt;/code&amp;gt; key on the keyboard. &lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_JS_console_01.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_JS_console_02.png]]&lt;br /&gt;
&lt;br /&gt;
==== Network panel ====&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_01.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_02.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_03.png]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7840</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7840"/>
		<updated>2023-12-04T09:52:28Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes things go wrong. In many cases the user is then confronted with cryptic or no error messages at all. This page provides help about getting more information about what exactly went wrong, so it can be fixed quickly. This is especially important when asking for help on locations like [https://community.bluespice.com community.bluespice.com].&lt;br /&gt;
&lt;br /&gt;
Additional information can also be found at [[mediawikiwiki:Manual:How_to_debug|&amp;quot;Manual:How to debug&amp;quot; on MediaWiki.org]].{{Textbox|boxtype=warning|header=Check for sensitive information|text=Most of the techniques described here will output very detailed information about the error, but also about the system and the context. The output may contain sensitive information like usernames, passwords, pathes, access-keys and many more. Before posting any information retrieved by this kind of debugging on a public location (like [https://community.bluespice.com community.bluespice.com]), make sure to redact all potential sensitive information!|icon=yes}}&lt;br /&gt;
&lt;br /&gt;
== Server side debugging ==&lt;br /&gt;
There are various ways to get more information about errors by changing some configuration on the server side.&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== Enable detailed error reporting ====&lt;br /&gt;
Within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file, please add the following lines:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgShowSQLErrors&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgDebugDumpSql&#039;]  = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowExceptionDetails&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowDBErrorBacktrace&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This will turn error messages like &amp;lt;code&amp;gt;internal_api_error_DBQueryError&amp;lt;/code&amp;gt; into a more detailed stack of program calls, including database queries and responses.&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
Sometimes it can be useful to see all debugging information the application produces. To enable this general debug log please add the following lines within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if ( isset( $_GET[&#039;dodebuglog&#039;] ) ) {&lt;br /&gt;
    $GLOBALS[&#039;wgDebugLogFile&#039;] = &amp;quot;$IP/cache/debug.log&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Be aware that this configuration is set conditionally. It will only be used if the URL accessed in the browser contains some query string like  &amp;lt;code&amp;gt;dodebuglog=1&amp;lt;/code&amp;gt;. This is to allow a more isolated debug log file. Otherwise other requests (like calls to the &amp;lt;code&amp;gt;load.php&amp;lt;/code&amp;gt; entrypoint for CSS and JS content) may also add into this file, which makes analysis more difficult.&lt;br /&gt;
&lt;br /&gt;
==== Log channels ====&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
Many errors occur only on the client and server side debugging will not help. In such cases the webbrowser can be used to retrieve more information.&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
Most modern browsers have sophisticated development tools. Usually they can be accessed by pressing the &amp;lt;code&amp;gt;F12&amp;lt;/code&amp;gt; key on the keyboard. &lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
&lt;br /&gt;
==== Network panel ====&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7839</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7839"/>
		<updated>2023-12-04T09:33:57Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes things go wrong. In many cases the user is then confronted with cryptic or no error messages at all. This page provides help about getting more information about what exactly went wrong, so it can be fixed quickly. This is especially important when asking for help on locations like [https://community.bluespice.com community.bluespice.com].&lt;br /&gt;
&lt;br /&gt;
Additional information can also be found at [[mediawikiwiki:Manual:How_to_debug|&amp;quot;Manual:How to debug&amp;quot; on MediaWiki.org]].{{Textbox|boxtype=warning|header=Check for sensitive information|text=Most of the techniques described here will output very detailed information about the error, but also about the system and the context. The output may contain sensitive information like usernames, passwords, pathes, access-keys and many more. Before posting any information retrieved by this kind of debugging on a public location (like [https://community.bluespice.com community.bluespice.com]), make sure to redact all potential sensitive information!|icon=yes}}&lt;br /&gt;
&lt;br /&gt;
== Server side debugging ==&lt;br /&gt;
There are various ways to get more information about errors by changing some configuration on the server side.&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== Enable detailed error reporting ====&lt;br /&gt;
Within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file, please add the following lines:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgShowSQLErrors&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgDebugDumpSql&#039;]  = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowExceptionDetails&#039;] = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowDBErrorBacktrace&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This will turn error messages like &amp;lt;code&amp;gt;internal_api_error_DBQueryError&amp;lt;/code&amp;gt; into a more detailed stack of program calls, including database queries and responses.&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
&lt;br /&gt;
==== Log channels ====&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
&lt;br /&gt;
==== Network panel ====&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7838</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=How_to_debug&amp;diff=7838"/>
		<updated>2023-12-04T09:17:17Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: Created page with &amp;quot;== Server side debugging ==  === Wiki application ===  ==== General debug log ====  ==== Log channels ====  == Client side debugging ==  === Browser development tools ===  ==== JavaScript console ====  ==== Network panel ====&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Server side debugging ==&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
&lt;br /&gt;
==== Log channels ====&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
&lt;br /&gt;
==== Network panel ====&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Debugging&amp;diff=7837</id>
		<title>Debugging</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Debugging&amp;diff=7837"/>
		<updated>2023-12-04T09:15:00Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: Redirected page to How to debug&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[How to debug]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Security:Security_Advisories/BSSA-2023-02&amp;diff=7455</id>
		<title>Security:Security Advisories/BSSA-2023-02</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Security:Security_Advisories/BSSA-2023-02&amp;diff=7455"/>
		<updated>2023-10-30T10:56:55Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Featurepage|featured=true|featuredesc=Current Security Advisory: BSSA-2023-01|featurestart=07/26/2023}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|Date&lt;br /&gt;
|2023-10-30&lt;br /&gt;
|-&lt;br /&gt;
|Severity&lt;br /&gt;
|Low&lt;br /&gt;
|-&lt;br /&gt;
|Affected&lt;br /&gt;
|&lt;br /&gt;
* BlueSpiceAvatars&lt;br /&gt;
|-&lt;br /&gt;
|Fixed in&lt;br /&gt;
|&lt;br /&gt;
* BlueSpiceAvatars 4.3.3&lt;br /&gt;
* BlueSpiceAvatars 3.2.10.1&lt;br /&gt;
|-&lt;br /&gt;
|CVE&lt;br /&gt;
|[https://www.cve.org/cverecord?id=CVE-2023-42431 CVE-2023-42431]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
&lt;br /&gt;
When setting the avatar profile image, one can cause an XSS attack by inserting a modified URL in the dialog. The issue only occurs in the dialog itself and only in the context of the user that applied the change.&lt;br /&gt;
== Solution ==&lt;br /&gt;
* BlueSpice 4: Update to version 4.3.3&lt;br /&gt;
* BlueSpice 3: Update Extension:BlueSpiceAvatars version [https://github.com/wikimedia/mediawiki-extensions-BlueSpiceAvatars/tree/3.2.10.1 3.2.10.1]&lt;br /&gt;
&lt;br /&gt;
== Acknowledgements ==&lt;br /&gt;
Special thanks to the security team of an undisclosed customer.&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Security:Security_Advisories/BSSA-2023-02&amp;diff=7454</id>
		<title>Security:Security Advisories/BSSA-2023-02</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Security:Security_Advisories/BSSA-2023-02&amp;diff=7454"/>
		<updated>2023-10-30T10:53:49Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Featurepage|featured=true|featuredesc=Current Security Advisory: BSSA-2023-01|featurestart=07/26/2023}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|Date&lt;br /&gt;
|2023-10-30&lt;br /&gt;
|-&lt;br /&gt;
|Severity&lt;br /&gt;
|Low&lt;br /&gt;
|-&lt;br /&gt;
|Affected&lt;br /&gt;
|&lt;br /&gt;
* BlueSpiceAvatars&lt;br /&gt;
|-&lt;br /&gt;
|Fixed in&lt;br /&gt;
|&lt;br /&gt;
* BlueSpiceAvatars 4.3.3&lt;br /&gt;
* BlueSpiceAvatars 3.2.10.1&lt;br /&gt;
|-&lt;br /&gt;
|CVE&lt;br /&gt;
|[https://www.cve.org/cverecord?id=CVE-2023-42431 CVE-2023-42431]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Solution ==&lt;br /&gt;
* BlueSpice 4: Update to version 4.3.3&lt;br /&gt;
* BlueSpice 3: Update Extension:BlueSpiceAvatars version [https://github.com/wikimedia/mediawiki-extensions-BlueSpiceAvatars/tree/3.2.10.1 3.2.10.1]&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Acknowledgements ==&lt;br /&gt;
Special thanks to the security team of an undisclosed customer.&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Security:Security_Advisories/BSSA-2023-02&amp;diff=7453</id>
		<title>Security:Security Advisories/BSSA-2023-02</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Security:Security_Advisories/BSSA-2023-02&amp;diff=7453"/>
		<updated>2023-10-30T10:53:17Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Featurepage|featured=true|featuredesc=Current Security Advisory: BSSA-2023-01|featurestart=07/26/2023}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|Date&lt;br /&gt;
|2023-10-30&lt;br /&gt;
|-&lt;br /&gt;
|Severity&lt;br /&gt;
|Low&lt;br /&gt;
|-&lt;br /&gt;
|Affected&lt;br /&gt;
|&lt;br /&gt;
* BlueSpiceAvatars&lt;br /&gt;
|-&lt;br /&gt;
|Fixed in&lt;br /&gt;
|&lt;br /&gt;
* BlueSpiceAvatars 4.3.3&lt;br /&gt;
* BlueSpiceAvatars 3.2.10.1&lt;br /&gt;
|-&lt;br /&gt;
|CVE&lt;br /&gt;
|[https://www.cve.org/cverecord?id=CVE-2023-42431 CVE-2023-42431]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Solution ==&lt;br /&gt;
* BlueSpice 4: Update to version 4.3.3&lt;br /&gt;
* BlueSpice 3: Update Extension:BlueSpiceAvatars version [https://github.com/wikimedia/mediawiki-extensions-BlueSpiceAvatars/tree/3.2.10.1 3.2.10.1]&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Acknowledgements ==&lt;br /&gt;
Found during an internal security audit.&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Security:Security_Advisories/BSSA-2023-02&amp;diff=7452</id>
		<title>Security:Security Advisories/BSSA-2023-02</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Security:Security_Advisories/BSSA-2023-02&amp;diff=7452"/>
		<updated>2023-10-30T10:49:31Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: Created page with &amp;quot;{{Featurepage|featured=true|featuredesc=Current Security Advisory: BSSA-2023-01|featurestart=07/26/2023}} {| class=&amp;quot;wikitable&amp;quot; |+ ! ! |- |Date |2023-07-25 |- |Severity |Medium |- |Affected | * BlueSpice Infrastructure: Ghostscript |- |Fixed in | * Ghostscript 9.53.3 and 10.01.2 |- |CVE |[https://www.cve.org/CVERecord?id=CVE-2023-36664 CVE-2023-36664] |}  == Problem == A bug in ghostscript can be exploited to run arbitrary code on the host machine using prepared PDF docum...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Featurepage|featured=true|featuredesc=Current Security Advisory: BSSA-2023-01|featurestart=07/26/2023}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|Date&lt;br /&gt;
|2023-07-25&lt;br /&gt;
|-&lt;br /&gt;
|Severity&lt;br /&gt;
|Medium&lt;br /&gt;
|-&lt;br /&gt;
|Affected&lt;br /&gt;
|&lt;br /&gt;
* BlueSpice Infrastructure: Ghostscript&lt;br /&gt;
|-&lt;br /&gt;
|Fixed in&lt;br /&gt;
|&lt;br /&gt;
* Ghostscript 9.53.3 and 10.01.2&lt;br /&gt;
|-&lt;br /&gt;
|CVE&lt;br /&gt;
|[https://www.cve.org/CVERecord?id=CVE-2023-36664 CVE-2023-36664]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
A bug in ghostscript can be exploited to run arbitrary code on the host machine using prepared PDF document. In BlueSpice, when a) PDFHandler is enabled and b) a PDF document is uploaded, a preview image is being generated using ghostscript. If an attacker uploads a prepared PDF, they can execute code on the server.&lt;br /&gt;
&lt;br /&gt;
PDFHandler is not enabled by default, but many installations have set it active.&lt;br /&gt;
&lt;br /&gt;
== Solution ==&lt;br /&gt;
Upgrade Ghostscript to a fixed version and ensure the updated version is used by adding &amp;lt;code&amp;gt;$wgPdfProcessor = &#039;/usr/bin/gs&#039;;&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
If upgrade of Ghostscript is not possible, disable the extension PDFHandler. This, however, removes the ability for BlueSpice to render PDF preview images.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* For Debian: https://www.debian.org/security/2023/dsa-5446&lt;br /&gt;
* For Debian10: [https://security-tracker.debian.org/tracker/source-package/ghostscript Information on source package ghostscript (debian.org)]&lt;br /&gt;
* For Ubuntu: https://launchpad.net/ubuntu/+source/ghostscript/9.50~dfsg-5ubuntu4.8&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Acknowledgements ==&lt;br /&gt;
Found during an internal security audit.&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Archive:Setup:Installation_Guide/Optimization/Cronjobs&amp;diff=6257</id>
		<title>Archive:Setup:Installation Guide/Optimization/Cronjobs</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Archive:Setup:Installation_Guide/Optimization/Cronjobs&amp;diff=6257"/>
		<updated>2023-06-14T12:37:47Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: Add&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Cronjobs}}&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This document describes cronjobs an related configurations, which should be set for your BlueSpice (depending on the used version).&lt;br /&gt;
&lt;br /&gt;
==Tips for this Document==&lt;br /&gt;
{{Setup-document-note}}&lt;br /&gt;
&lt;br /&gt;
{{Messagebox|boxtype=Hinweis|Note text=It is recommended to specify the complete path to php.exe under Windows. For more information, see the [[Setup:Installation_Guide/Services_and_system_configuration/Environment_Variables|environment variables]] document.}}&lt;br /&gt;
&lt;br /&gt;
==runJobs.php==&lt;br /&gt;
Time-consuming processes will be moved to a processing queue in the background of BlueSpice. With every page impression, a part of these will be processed. For the case that there are lots of processes in the queue and there are relatively litte page impressions, the tasks will not be processed promptly. &lt;br /&gt;
&lt;br /&gt;
For this reason, the queue should be processed regularly by cronjob. &lt;br /&gt;
&lt;br /&gt;
Create a cronjob (Windows: &amp;quot;Scheduled task&amp;quot;) depending on your operating system. The command to execute is:&lt;br /&gt;
&lt;br /&gt;
 php &amp;lt;code&amp;gt;&amp;amp;lt;installpath-bluespice&amp;amp;gt;&amp;lt;/code&amp;gt;/maintenance/runJobs.php &#039;&#039;(Linux)&#039;&#039;&lt;br /&gt;
 php.exe &amp;lt;code&amp;gt;&amp;amp;lt;installpath-bluespice&amp;amp;gt;&amp;lt;/code&amp;gt;\maintenance\runJobs.php &#039;&#039;(Windows)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Execute the cronjob every &#039;&#039;&#039;10 minutes&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==processRunner.php==&lt;br /&gt;
Certain tasks require server resources that can not be provided in the regular context of a webrequest. They will be moved to a special processing queue in the background of BlueSpice.&lt;br /&gt;
&lt;br /&gt;
Create a cronjob (Windows: &amp;quot;Scheduled task&amp;quot;) depending on your operating system. The command to execute is:&lt;br /&gt;
&lt;br /&gt;
 php &amp;lt;code&amp;gt;&amp;amp;lt;installpath-bluespice&amp;amp;gt;&amp;lt;/code&amp;gt;/vendor/mwstake/mediawiki-component-processmanager/maintenance/processRunner.php &amp;lt;code&amp;gt;&amp;amp;lt;installpath-bluespice&amp;amp;gt;&amp;lt;/code&amp;gt;/maintenance/Maintenance.php --max-processes=100 --wait &#039;&#039;(Linux)&#039;&#039;&lt;br /&gt;
 php.exe &amp;lt;code&amp;gt;&amp;amp;lt;installpath-bluespice&amp;amp;gt;&amp;lt;/code&amp;gt;\vendor\mwstake\mediawiki-component-processmanager\maintenance\processRunner.php &amp;lt;code&amp;gt;&amp;amp;lt;installpath-bluespice&amp;amp;gt;&amp;lt;/code&amp;gt;\maintenance\Maintenance.php --max-processes=100 --wait &#039;&#039;(Windows)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Execute the cronjob every &#039;&#039;&#039;minute&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
[[en:{{FULLPAGENAME}}]]&lt;br /&gt;
[[de:Setup:Installationsanleitung/Optimierungen/Cronjobs]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Setup:Release_Notes/erm/latest&amp;diff=5458</id>
		<title>Setup:Release Notes/erm/latest</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Setup:Release_Notes/erm/latest&amp;diff=5458"/>
		<updated>2023-01-23T15:22:51Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== BlueSpice ERM 4.2 ==&lt;br /&gt;
&lt;br /&gt;
=== BlueSpice ERM 4.2.4-23.01.23.1 ===&lt;br /&gt;
This is an unscheduled release of the BlueSpice ERM 4.2 branch.&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;bluespice/bluespice&amp;lt;/code&amp;gt; container does now support &amp;quot;HTTP/2&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Changes since BlueSpice ERM 4.2.4 ====&lt;br /&gt;
&lt;br /&gt;
* CHANGE: PermissionManager - Configure public access for some namespace (#31083)&lt;br /&gt;
* FIX: BSP overload issues (#3098; easysoftware#569052)&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Setup:Release_Notes/erm/latest&amp;diff=5457</id>
		<title>Setup:Release Notes/erm/latest</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Setup:Release_Notes/erm/latest&amp;diff=5457"/>
		<updated>2023-01-23T15:22:34Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: Created page with &amp;quot;== BlueSpice ERM 4.2 ==  === BlueSpice ERM 4.2.4-23.01.23.1 === This is an unscheduled release of the BlueSpice ERM 4.2 branch.  The &amp;lt;code&amp;gt;bluespice/bluespice&amp;lt;/code&amp;gt; container...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== BlueSpice ERM 4.2 ==&lt;br /&gt;
&lt;br /&gt;
=== BlueSpice ERM 4.2.4-23.01.23.1 ===&lt;br /&gt;
This is an unscheduled release of the BlueSpice ERM 4.2 branch.&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;bluespice/bluespice&amp;lt;/code&amp;gt; container does now support &amp;quot;HTTP/2&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Changes since BlueSpice ERM 4.2.4 ====&lt;br /&gt;
&lt;br /&gt;
* CHANGE: PermissionManager - Configure public access for some namespace (#31083)&lt;br /&gt;
* FIX: BSP overload issues (#3098; easysoftware:569052)&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Setup:Installation_Guide&amp;diff=5392</id>
		<title>Setup:Installation Guide</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Setup:Installation_Guide&amp;diff=5392"/>
		<updated>2022-12-28T09:40:51Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Messagebox|boxtype=note|icon=|Note text=For general questions regarding the installation, maintenance, and usage of BlueSpice free, go to our [https://sourceforge.net/p/bluespice/discussion/1249668/ SourceForge help forum] .|bgcolor=}}&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
We are happy that you decided to install the latest version of BlueSpice 4.  &lt;br /&gt;
&lt;br /&gt;
Please follow these steps: &lt;br /&gt;
&lt;br /&gt;
# [[Setup:Installation Guide#Check the system requirements|Check the system requirements]] &lt;br /&gt;
# [[Setup:Installation Guide#Prepare the server environment|Prepare the server environment]] &lt;br /&gt;
# [[Setup:Installation Guide#Install the BlueSpice application|Install the BlueSpice application]] &lt;br /&gt;
# [[Setup:Installation Guide#Optimizing the configuration|Optimize the configuration]] &lt;br /&gt;
&lt;br /&gt;
==Check the system requirements==&lt;br /&gt;
&lt;br /&gt;
*[[Setup:System requirements|System requirements]]&lt;br /&gt;
&lt;br /&gt;
== Prepare the server environment ==&lt;br /&gt;
&lt;br /&gt;
* [[Setup:Installation Guide/System Preparation/Linux|Linux server environment]]&lt;br /&gt;
* [[Setup:Installation Guide/System Preparation/Windows|Windows server environment]] &lt;br /&gt;
&lt;br /&gt;
==Install the BlueSpice application==&lt;br /&gt;
Please select which installation type you need:&lt;br /&gt;
&lt;br /&gt;
*[[Setup:Installation Guide/With Installer|Full BlueSpice installation]]&lt;br /&gt;
**Extended Functions: [[Setup:Installation Guide/Advanced/VisualEditor Configuration|VisualEditor]], [[Setup:Installation Guide/Advanced/ExtendedSearch Configuration|ExtendedSearch]]&lt;br /&gt;
*[[Setup:Installation Guide/Installation BlueSpice WikiFarm|BlueSpice WikiFarm installation]]&lt;br /&gt;
*[[Setup:Installation Guide/Docker/Docker Hub|Docker image]]&lt;br /&gt;
&lt;br /&gt;
==Upgrade and patch updates==&lt;br /&gt;
&lt;br /&gt;
*[[Setup:Installation Guide/Patch Update|Patch update from BlueSpice 4.2.x to a higher version 4.2.x+n]]&lt;br /&gt;
*[[Setup:Installation Guide/Upgrade free to pro|Upgrade from BlueSpice free 3.2.x to BlueSpice pro 4.2.x]]&lt;br /&gt;
*Upgrade from Bluespice free 4.2.x to pro 4.2.x&lt;br /&gt;
&lt;br /&gt;
==Migration from MediaWiki to BlueSpice==&lt;br /&gt;
&lt;br /&gt;
*[[Setup:Installation Guide/Migration from MediaWiki to BlueSpice|Migration from MediaWiki to BlueSpice]]&lt;br /&gt;
&lt;br /&gt;
==Optimize the configuration==&lt;br /&gt;
If you don&#039;t need to set up a server environment &amp;quot;from scratch&amp;quot;, you can directly refer to the setup instructions for individual system components. Just make sure that you really have everything configured as needed:&lt;br /&gt;
&lt;br /&gt;
===Webservices for Apache Tomcat===&lt;br /&gt;
&lt;br /&gt;
{{Special:PrefixIndex/Setup:Installation Guide/Webservices/ |hideredirects=1 |stripprefix=1}}&lt;br /&gt;
&lt;br /&gt;
===Additional settings and optimizations===&lt;br /&gt;
&lt;br /&gt;
*[[Setup:Installation Guide/Optimization/Caching|Caching]]&lt;br /&gt;
*[[Setup:Installation Guide/Optimization/Cronjobs|Cronjobs]]&lt;br /&gt;
*[[Setup:Installation Guide/Optimization/Time Zone|Time Zone]]&lt;br /&gt;
&lt;br /&gt;
===Security settings===&lt;br /&gt;
&lt;br /&gt;
*[[Setup:Installation Guide/Security Settings/File System Permissions|File System Permissions]]&lt;br /&gt;
*[[Setup:Installation Guide/Security Settings/Deactivating installcheck file|Deactivating installcheck file]]&lt;br /&gt;
*[[Setup:Installation Guide/Security Settings/Save Directories|Save Directories]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Compendium===&lt;br /&gt;
&lt;br /&gt;
{{Special:PrefixIndex/Setup:Installation Guide/Advanced/ |hideredirects=1 |stripprefix=1}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[en:{{FULLPAGENAME}}]]&lt;br /&gt;
[[de:Setup:Installationsanleitung]]&lt;br /&gt;
[[Category:Setup]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Setup:System_requirements&amp;diff=3817</id>
		<title>Setup:System requirements</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Setup:System_requirements&amp;diff=3817"/>
		<updated>2022-06-23T06:44:01Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:System Requirements}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
For a trouble-free installation of the current version BlueSpice 3.4, we recommend the following system requirements. The application BlueSpice is tested by Hallo Welt! for Windows and Linux.&lt;br /&gt;
&lt;br /&gt;
==Browser==&lt;br /&gt;
&lt;br /&gt;
*Microsoft Edge&lt;br /&gt;
*Google Chrome&lt;br /&gt;
*Firefox&lt;br /&gt;
&lt;br /&gt;
==Server Environment==&lt;br /&gt;
{{Messagebox|boxtype=warning|icon=yes|Note text=PHP version 8 is currently not supported!|bgcolor=}}&lt;br /&gt;
*Operating system: Microsoft Windows Server &amp;gt;= 2016 or Linux (common distributions)&lt;br /&gt;
*Webserver: &amp;lt;span style=&amp;quot;color: rgb(68, 68, 68)&amp;quot;&amp;gt;Apache 2.4.x, IIS &amp;gt;= 10 &#039;&#039;or&#039;&#039; nginx 1.x&amp;lt;/span&amp;gt; (&#039;&#039;nginx&#039;&#039; &#039;&#039;not possible in WikiFarm&#039;&#039;)&lt;br /&gt;
*PHP 7.4.x starting at 7.4.3&lt;br /&gt;
*MySQL: &amp;gt;= 5.6 oder MariaDB &amp;gt;= 10.3&lt;br /&gt;
*Main memory: 16 GB (minimal 8 GB)&lt;br /&gt;
*Available hard drive space: &amp;gt; 20GB (depends on the planned storage of data)&lt;br /&gt;
*CPU: 8 (minimal 4) cores&lt;br /&gt;
*Apache Tomcat &amp;gt;= 9 oder Jetty &amp;gt;= 9  (for PDF export and LaTexRenderer)&lt;br /&gt;
*ElasticSearch 6.8 with plugin “ingest-attachment”&lt;br /&gt;
*OpenJDK &amp;gt;= 10&lt;br /&gt;
*NodeJS 16&lt;br /&gt;
[[en:{{FULLPAGENAME}}]]&lt;br /&gt;
[[de:Setup:Systemanforderungen]]&lt;br /&gt;
[[Category:Setup]]&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Manual:Extension/FlaggedRevs/Server_script&amp;diff=3301</id>
		<title>Manual:Extension/FlaggedRevs/Server script</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Manual:Extension/FlaggedRevs/Server_script&amp;diff=3301"/>
		<updated>2022-04-22T07:51:47Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Mass approval using a script ==&lt;br /&gt;
The script &amp;lt;code&amp;gt;extensions/BlueSpiceFlaggedRevsConnector/maintenance/BSBatchReview.php&amp;lt;/code&amp;gt; can be used to approve all drafts in the wiki. This affects both first drafts, drafts of pages with already approved versions and drafts for embedded resources.&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Option&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--username&amp;lt;/code&amp;gt;&lt;br /&gt;
|Required. The user name of the existing user to use as the &amp;quot;reviewer&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--pageids&amp;lt;/code&amp;gt;&lt;br /&gt;
|Flat file containing page ids seperated by line break&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--pages&amp;lt;/code&amp;gt;&lt;br /&gt;
|Flat file containing page names seperated by line break&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--namespace&amp;lt;/code&amp;gt;&lt;br /&gt;
|Id of namespace to flag entirely&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--flag&amp;lt;/code&amp;gt;&lt;br /&gt;
|Which flags to apply? Possible values: &amp;quot;quality&amp;quot;, &amp;quot;pristine&amp;quot;, &amp;quot;checked&amp;quot;. Default is &amp;quot;quality&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
{{Messagebox|boxtype=note|icon=|Note text=The options &amp;lt;code&amp;gt;--pageids&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;--pages&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;--namespace&amp;lt;/code&amp;gt; are mutual exclusive required. One - and only one - of them &#039;&#039;must&#039;&#039; be provided.}}&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
&lt;br /&gt;
==== Whole namespace ====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
php extensions/BlueSpiceflaggedRevsConnector/maintenance/BSBatchReview.php --username WikiSysop --namespace 3000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== List of page ids ====&lt;br /&gt;
Such a list can be created from a database query.&lt;br /&gt;
&lt;br /&gt;
File &amp;lt;code&amp;gt;/tmp/page-ids-to-review.txt&amp;lt;/code&amp;gt;:&lt;br /&gt;
 23&lt;br /&gt;
 42&lt;br /&gt;
 1337&lt;br /&gt;
&lt;br /&gt;
Command line:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
php extensions/BlueSpiceflaggedRevsConnector/maintenance/BSBatchReview.php --username WikiSysop --pageids /tmp/page-ids-to-review.txt&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== List of page names ====&lt;br /&gt;
Such a list can be created using a [[SMW queries|SMW query]].&lt;br /&gt;
File &amp;lt;code&amp;gt;/tmp/page-titles-to-review.txt&amp;lt;/code&amp;gt;:&lt;br /&gt;
 Some/Page&lt;br /&gt;
 Other_page&lt;br /&gt;
 Help:Some_help_page&lt;br /&gt;
&lt;br /&gt;
Command line:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
php extensions/BlueSpiceflaggedRevsConnector/maintenance/BSBatchReview.php --username WikiSysop --pages /tmp/page-titles-to-review.txt&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Manual:Extension/FlaggedRevs/Server_script&amp;diff=3300</id>
		<title>Manual:Extension/FlaggedRevs/Server script</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Manual:Extension/FlaggedRevs/Server_script&amp;diff=3300"/>
		<updated>2022-04-22T07:51:10Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Mass approval using a script ==&lt;br /&gt;
The script &amp;lt;code&amp;gt;extensions/BlueSpiceFlaggedRevsConnector/maintenance/BSBatchReview.php&amp;lt;/code&amp;gt; can be used to approve all drafts in the wiki. This affects both first drafts, drafts of pages with already approved versions and drafts for embedded resources.&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Option&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--username&amp;lt;/code&amp;gt;&lt;br /&gt;
|Required. The user name of the existing user to use as the &amp;quot;reviewer&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--pageids&amp;lt;/code&amp;gt;&lt;br /&gt;
|Flat file containing page ids seperated by line break&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--pages&amp;lt;/code&amp;gt;&lt;br /&gt;
|Flat file containing page names seperated by line break&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--namespace&amp;lt;/code&amp;gt;&lt;br /&gt;
|Id of namespace to flag entirely&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--flag&amp;lt;/code&amp;gt;&lt;br /&gt;
|Which flags to apply? Possible values: &amp;quot;quality&amp;quot;, &amp;quot;pristine&amp;quot;, &amp;quot;checked&amp;quot;. Default is &amp;quot;quality&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
{{Messagebox|boxtype=note|icon=|Note text=The options &amp;lt;code&amp;gt;--pageids&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;--pages&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;--namespace&amp;lt;/code&amp;gt; are mutual exclusive required. One - and only one - of them &#039;&#039;must&#039;&#039; be provided.}}&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
&lt;br /&gt;
==== Whole namespace ====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
php extensions/BlueSpiceflaggedRevsConnector/maintenance/BSBatchReview.php --username WikiSysop --namespace 3000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== List of page ids ====&lt;br /&gt;
Such a list can be created from a database query.&lt;br /&gt;
&lt;br /&gt;
File &amp;lt;code&amp;gt;/tmp/page-ids-to-review.txt&amp;lt;/code&amp;gt;;&lt;br /&gt;
 23&lt;br /&gt;
 42&lt;br /&gt;
 1337&lt;br /&gt;
&lt;br /&gt;
Command line:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
php extensions/BlueSpiceflaggedRevsConnector/maintenance/BSBatchReview.php --username WikiSysop --pageids /tmp/page-ids-to-review.txt&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== List of page names ====&lt;br /&gt;
Such a list can be created using a [[SMW queries|SMW query]].&lt;br /&gt;
File &amp;lt;code&amp;gt;/tmp/page-titles-to-review.txt&amp;lt;/code&amp;gt;;&lt;br /&gt;
 Some/Page&lt;br /&gt;
 Other_page&lt;br /&gt;
 Help:Some_help_page&lt;br /&gt;
&lt;br /&gt;
Command line:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
php extensions/BlueSpiceflaggedRevsConnector/maintenance/BSBatchReview.php --username WikiSysop --pages /tmp/page-titles-to-review.txt&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=Manual:Extension/FlaggedRevs/Server_script&amp;diff=3299</id>
		<title>Manual:Extension/FlaggedRevs/Server script</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=Manual:Extension/FlaggedRevs/Server_script&amp;diff=3299"/>
		<updated>2022-04-22T07:45:51Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Mass approval using a script ==&lt;br /&gt;
The script &amp;lt;code&amp;gt;extensions/BlueSpiceFlaggedRevsConnector/maintenance/BSBatchReview.php&amp;lt;/code&amp;gt; can be used to approve all drafts in the wiki. This affects both first drafts, drafts of pages with already approved versions and drafts for embedded resources.&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Option&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--username&amp;lt;/code&amp;gt;&lt;br /&gt;
|Required. The user name of the existing user to use as the &amp;quot;reviewer&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--pageids&amp;lt;/code&amp;gt;&lt;br /&gt;
|Flat file containing page ids seperated by line break&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--pages&amp;lt;/code&amp;gt;&lt;br /&gt;
|Flat file containing page names seperated by line break&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--namespace&amp;lt;/code&amp;gt;&lt;br /&gt;
|Id of namespace to flag entirely&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;--flag&amp;lt;/code&amp;gt;&lt;br /&gt;
|Which flags to apply? Possible values: &amp;quot;quality&amp;quot;, &amp;quot;pristine&amp;quot;, &amp;quot;checked&amp;quot;. Default is &amp;quot;quality&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
{{Messagebox|boxtype=note|icon=|Note text=The options &amp;lt;code&amp;gt;--pageids&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;--pages&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;--namespace&amp;lt;/code&amp;gt; are mutual exclusive required. One - and only one - of them &#039;&#039;must&#039;&#039; be provided.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The pages are released per namespace and by a user with admin rights:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
php extensions/BlueSpiceflaggedRevsConnector/maintenance/BSBatchReview.php --username WikiSysop --namespace 3000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
If there is a large number of affected namespaces, a list of page titles or page IDs can be specified as a txt file. If necessary, this list can be created using a [[SMW queries|SMW query]].&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
	<entry>
		<id>https://en.wiki.bluespice.com/w/index.php?title=User:Rvogel&amp;diff=3295</id>
		<title>User:Rvogel</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.bluespice.com/w/index.php?title=User:Rvogel&amp;diff=3295"/>
		<updated>2022-04-21T07:08:42Z</updated>

		<summary type="html">&lt;p&gt;Rvogel: create user page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Userpage standard content}}&lt;/div&gt;</summary>
		<author><name>Rvogel</name></author>
	</entry>
</feed>