Installation BlueSpice 4 with Installer

Download installation package

Download the installation package from the bluespice.com website.


Store the installation package in a web root of your choice (see our folder structure recommendations for Windows installations), where you can access it via your browser.


Make sure that file system permissions are set up properly.

Introduction

BlueSpice 4 is installed as a complete package with MediaWiki 1.39 and BlueSpice 4. This installation guide gives you step-by-step instructions to install BlueSpice.

Important!If you do a fresh install of BlueSpice 4, it might be necessary to run update.php afterwards if you get an error.

This document only describes the steps for installing the web application itself. For the installation of extended functions such as VisualEditor and Extendedsearch, please refer to the corresponding documentation.

We will not go into details about your operating system installation here, but assume that you have already checked the system requirements and your server configuration. You can find more details in our detailed installation guide.

Further help on optimizing the operating system can be found in our compendium.

Step-by-step installation

Note:If you also install the paid extension "BlueSpiceWikiFarm", make sure that the codebase is not located directly in the DocumentRoot of your web server or VirtualHost - it must be located in the /w subfolder!
Note:If Error "Fatal exception of type MWException" shows up, you need to check the rights of your Bluespice Folder and give it reading- and writing permissions. If there is still a error you need to add "$wgShowExceptionDetails = true" to your localsettings.php file and reload your URL to get preciser information of your error.


First use your browser to call up the URL under which the web application can be reached. Then complete the following steps:

BlueSpice WikiFarm

If you are installing BlueSpice WikiFarm, follow these instructions. If not, skip to Next steps.

Now open a command line and change to the folder <installpath-bluespice>.

Run the following command:

  • php maintenance/update.php (Linux)
  • php maintenance\update.php (Windows)

Next steps

Note:If the page is not loading, give the group "users" change-permissions for the folder C:\Windows\Temp.

For security reasons, it is recommended to prevent access to the path mw-config/ after the installation. This can be implemented as follows:


In Apache, add the following entry to the file 000-bluespice.conf:

    <Directory /var/www/bluespice/w/mw-config>
        Require all denied
    </Directory>


In IIS, create a file web.config in the sub-directory mw-config/ with the following content:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <security>
            <authentication>
                <anonymousAuthentication enabled="false" />
            </authentication>
        </security>
    </system.webServer>
</configuration>

Please note that this entry may have to be removed temporarily if the web installer is used to update the application.

Important!As next step, you can configure VisualEditor and Extendedsearch.



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