Download



Open the officical download page for Windows auf php.net (1).

Find a currently supported version (2) 64-bit Non Thread Safe (3) and download it (4):

PHP 01


Follow the download instructions.


Unpacking the ZIP archive

Unpack the ZIP archive that you just downloaded into a useful system path on your hard drive.

Setting the environment variable

To use PHP easily on the command line of Windows, it is necessary to configure an environment variable in Windows. Perform the following steps:

Enter the key combination Windows+R.

Enter "SystemPropertiesAdvanced.exe" (1) in the dialog window and click "OK" (2):

PHP 02

Click "Environment Variables...":

PHP 03

Double-click the entry "Path" in the section "System variables":

PHP 04

Click "New":

PHP 05

Add the path to your unpacked PHP version, which contains the php.exe file:

PHP 06

Close all newly opened windows one after the other by clicking "OK".

Checking the environment variable

To make sure the environment variable is set correctly, perform the following steps:

Enter the key combination Windows+R.

Enter "cmd" (1) in the dialog window and click "OK" (2):

PHP 07

The command prompt opens.

Type "php -v" (1) and press the Enter key. The found PHP version will be displayed (2).

PHP 08

If this is not the case, then the path to the php.exe file in the environment variables was specified incorrectly.

Configuring IIS for PHP

In the following steps, PHP will be included in IIS and IIS will be configured to provide a working basic setup:

Press the key combination Windows+R to call up IIS Manager.

Enter "inetmgr" (1) in the dialog window and click "OK" (2):

PHP 09

Select your server name (1) in the left pane and then double-click "PHP Manager" (2):

PHP 10

Click "Register new PHP version":

PHP 11

Select the browse "(...)" button in the next window:

PHP 12

Change to the path to which you previously unzipped PHP (1), mark the "php-cgi.exe" (2) and click "Open" (3):

PHP 13

Click "OK":

PHP 14

Click "Configure error reporting":

PHP 15

Select the item "Production machine" (1) and enter a path and a file of your choice where PHP should save its log (2). Click "Apply" (3):

PHP 16


Click "Enable or disable an extension" in the main window:

PHP 19

Make sure that the following extensions are activated:

PHP 20

To activate an extension, find it in the "Disabled" extensions (1) andclick "Enable" (2):

PHP 21

Open the configuration file php.ini:

PHP 22

Replace the lineextension=php_opcache.dll with zend_extension=php_opcache.dll:

PHP 23

Change the following options to the values below:

Name Wert Kommentar
date.timezone "Europe/Berlin" Select the appropriate time zone for you.
Uncomment the entry
max_execution_time 600
post_max_size 1024M
upload_max_filesize 1024M
opcache.enable 1 Uncomment the entry
opcache.enable_cli 0 Uncomment the entry
opcache.memory_consumption 512 Uncomment the entry
opcache.max_accelerated_files 1000000 Uncomment the entry
opcache.validate_timestamps 1 Uncomment the entry
opcache.revalidate_freq 2 Uncomment the entry
opcache.optimization_level 0x7FFF9FFF Uncomment the entry
opcache.blacklist_filename C:\bluespice\etc\opcache.blacklist Uncomment the entry
zlib.output_compression On
zlib.output_compression_level 9 Uncomment the entry


Save and close the file.

Create the folder C:\bluespice\etc .

Create a text file named opcache.blacklist content C:\bluespice\var\www\w\extensions\BlueSpiceFoundation\config\*

Expand the tree in the left pane of the IIS Manager until the "Default Web Site" becomes visible:

PHP 24

Right-click (1) and then click "Remove" (2):

PHP 25

Confirm the following dialog with "Yes":

PHP 26

Right-click "Sites" (1) and click "Add Website" (2):

PHP 27

Enter the site name "BlueSpice" (1) and select the path on your server where your BlueSpice installation will be located later (2).

Click "OK" (3):

PHP 28


The site is now listed in the IIS overview page:

PHP 29

Next step

If you have successfully completed all of the above steps, proceed to the next step: MariaDB.



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