This guide will explain how to get up and running with DokuWiki on LiteSpeed Web Server with CentOS 7.
The easiest way to install PHP for LiteSpeed is through our CentOS repository. If the LiteSpeed Repository was not installed and enabled during the web server installation, follow this guide to install and enable the LiteSpeed Repository.
You can install some of the most commonly used PHP 7.1 packages and modules for LiteSpeed. Use the following command:
sudo yum install lsphp71 lsphp71-mysqlnd lsphp71-common lsphp71-gd lsphp71-pdo lsphp71-process lsphp71-mbstring lsphp71-mcrypt lsphp71-opcache lsphp71-bcmath lsphp71-xml lsphp71-soap lsphp71-json -y
Visit http://your_server_IP:7080
. Navigate to Server Configuration > External app, then click the second icon Edit on the right hand side in order to edit this application.
Modify:
lsphp71
$SERVER_ROOT/lsphp71/bin/lsphp
When you are finished, click the Save icon to save your changes, then click the Graceful Restart button.
Visit http://your_server_IP/phpinfo.php
and make sure PHP Version shows 7.1.x
.
To illustrate setting up DokuWiki on a vhost we'll use the default virtual host, “Example”. You can download DokuWiki from their official latest version
wget -P /usr/local/lsws/Example/html https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz tar xvf /usr/local/lsws/Example/html/dokuwiki-stable.tgz chown -R nobody /usr/local/lsws/Example/html/dokuwiki* # Change file name dokuwiki-$date to dokuwiki will be easier to read
Please note that the document root of “Example” virtual host is /usr/local/lsws/DEFAULT/http/