{"id":1215,"date":"2020-04-16T11:58:59","date_gmt":"2020-04-16T16:58:59","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1215"},"modified":"2020-04-16T11:58:59","modified_gmt":"2020-04-16T16:58:59","slug":"how-to-install-dokuwiki-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/","title":{"rendered":"How to Install DokuWiki on Ubuntu 18.04"},"content":{"rendered":"<p>In this tutorial, we will show you how to install DokuWiki on an <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Ubuntu 18.04 Cloud VPS<\/a> with Apache and PHP.<\/p>\n<p><img decoding=\"async\" class=\"size-full wp-image-1219 alignright\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/install-configure-dokuwiki-wiki-platform-on-ubuntu18.04-cloud-vps.jpg\" alt=\"\" width=\"110\" height=\"111\" \/>DokuWiki is a free and open source lightweight wiki software platform. What makes it different from other similar wiki applications is that DokuWiki works without the need for a database. Instead, it stores its data in PHP data-files, which makes it pretty fast and simpler to set up. The installation is pretty easy and it should take no longer than 10 minutes, so let&#8217;s get started.<\/p>\n<p><!--more--><\/p>\n<p>DokuWiki has a lot of handy features that will ease our usage and enhance our user experience:<\/p>\n<ul>\n<li>Simple syntax which makes the datafiles as readable as possible<\/li>\n<li>You can easily embed raw HTML or PHP code<\/li>\n<li>Unlimited page revisions that can be compared with the diff tool<\/li>\n<li>Uploading and embedding of images and other media<\/li>\n<li>Easily configurable through different config options including the Configuration Manager<\/li>\n<li>Easy navigation through breadcrumbs<\/li>\n<li>Content can be categorized in\u00a0namespaces that can be easily browsable through an automatic\u00a0index<\/li>\n<li>Automatic save to avoid content lost during editing<\/li>\n<li>Simple support for read only pages<\/li>\n<li>Spam blacklist<\/li>\n<li>Delayed Indexing<br \/>\nand many more useful features&#8230;<\/li>\n<\/ul>\n<h2><strong>Prerequisites<\/strong><\/h2>\n<ul>\n<li>Ubuntu 18.04 Server &#8211; for the purposes of this tutorial we will use our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">LC VPS-2<\/a> plan.<\/li>\n<li>System user with root privileges &#8211; all our VPS hosting plans come with full root access<\/li>\n<li>It supports almost all of the major web servers such as Apache, IIS, nginx and LiteSpeed web server<\/li>\n<li>PHP version 5.6 or newer &#8211; In this tutorial we will use PHP version 7.2<\/li>\n<\/ul>\n<h2><strong>Step 1. Log in and Update the Server Packages<\/strong><\/h2>\n<p>Login to your Ubuntu 18.04 server via SSH as user root<\/p>\n<pre>ssh root@IP_Address -p Port_number<\/pre>\n<p>where <em><strong>IP_Address<\/strong><\/em> and <em><strong>Port_number<\/strong><\/em> are your server&#8217;s actual IP address and SSH port number.<\/p>\n<p>and run the following commands to ensure that all installed packages are updated to the latest available version.<\/p>\n<pre>apt update &amp;&amp; apt upgrade<\/pre>\n<h2><strong>Step 2. Install Apache web server<\/strong><\/h2>\n<p>As we already mentioned, DokuWiki can run on almost all of the popular web servers that support PHP, but in this tutorial we will install and use the Apache web server instead. It is available in the official Ubuntu repository and it can be easily installed using the following command:<\/p>\n<pre>apt install apache2 -y<\/pre>\n<p>Once the web server is installed, start it and enable it to automatically start upon a reboot<\/p>\n<pre>systemctl start apache2\r\nsystemctl enable apache2<\/pre>\n<p>To check if Apache is up and running use the following command<\/p>\n<pre>systemctl status apache2<\/pre>\n<p>Output:<\/p>\n<pre>apache2.service - The Apache HTTP Server\r\n   Loaded: loaded (\/lib\/systemd\/system\/apache2.service; enabled; vendor preset: enabled)\r\n  Drop-In: \/lib\/systemd\/system\/apache2.service.d\r\n           \u00e2\u00e2apache2-systemd.conf\r\n   Active: active (running)\r\n Main PID: 13784 (apache2)\r\n    Tasks: 55 (limit: 2321)\r\n   CGroup: \/system.slice\/apache2.service\r\n           \u00e2\u00e213784 \/usr\/sbin\/apache2 -k start\r\n<\/pre>\n<p>Enable Apache&#8217;s rewrite module:<\/p>\n<pre>a2enmod rewrite<\/pre>\n<p>Output:<\/p>\n<pre>Enabling module rewrite.\r\nTo activate the new configuration, you need to run:\r\n  systemctl restart apache2<\/pre>\n<p>As suggested, restart Apache to activate the new configuration<\/p>\n<pre>systemctl restart apache2<\/pre>\n<h2><strong>Step 3. Install PHP<\/strong><\/h2>\n<p>DokuWiki is PHP based application, so the next step will be to install PHP on the server. We will install PHP version 7.2 and several PHP modules required by DokuWiki.<\/p>\n<pre>apt install php7.2 php7.2-cli libapache2-mod-php7.2 php7.2-gd  php7.2-curl php7.2-json php7.2-xml<\/pre>\n<p>Verify that PHP is properly installed<\/p>\n<pre>php -v<\/pre>\n<p>Output:<\/p>\n<pre>PHP 7.2.15-0ubuntu0.18.04.1 (cli) (built: Feb  8 2019 14:54:22) ( NTS )\r\nCopyright (c) 1997-2018 The PHP Group\r\nZend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies\r\n    with Zend OPcache v7.2.15-0ubuntu0.18.04.1, Copyright (c) 1999-2018, by Zend Technologies<\/pre>\n<h2><strong>Step 4. Download DokuWiki<\/strong><\/h2>\n<p>Go to DokuWiki&#8217;s download page and download the latest stable release of the wiki to your server. You may need to use a different download link, as it may stop working as DokuWiki updates their software.<\/p>\n<pre>wget https:\/\/download.dokuwiki.org\/out\/dokuwiki-8a269cc015a64b40e4c918699f1e1142.tgz<\/pre>\n<p>Unpack the downloaded tarball to the document root directory for your web server. Usually, it is the &#8216;<code>\/var\/www\/html<\/code>&#8216; directory.<\/p>\n<pre>tar xvf dokuwiki-8a269cc015a64b40e4c918699f1e1142.tgz -C \/var\/www\/html\/<\/pre>\n<p>All of DokuWiki&#8217;s files will be stored in a new &#8216;dokuwiki&#8217; directory inside the document root. This directory needs to be accessible by the web server user, so we have to set the proper ownership<\/p>\n<pre>chown -R www-data:www-data \/var\/www\/html\/dokuwiki\/<\/pre>\n<p>The DokuWiki installation has its own distribution copy of the .htaccess file named <code>.htaccess.dist<\/code>. Rename this file<\/p>\n<pre>cd \/var\/www\/html\/dokuwiki &amp;&amp; mv .htaccess.dist .htaccess<\/pre>\n<p>and run the following command to uncomment the &#8216;RewriteEngine on&#8217; line in the .htaccess file<\/p>\n<pre>sed -i s\/&quot;# RewriteEngine on&quot;\/&quot;RewriteEngine on&quot;\/g .htaccess<\/pre>\n<h2><strong>Step 5. Create an Apache Virtual Host<\/strong><\/h2>\n<p>Next, we will create Apache virtual host, so you can access DokuWiki with a domain name or subdomain instead of an IP address. For example, we will use &#8216;<span style=\"color: #ff0000;\">mydomain.com<\/span>&#8216;. Please make sure to\u00a0<strong>replace<\/strong> that domain name with your actual registered domain name.<\/p>\n<p>Create a virtual host directive with the following content:<\/p>\n<pre>nano \/etc\/apache2\/sites-available\/dokuwiki.conf<\/pre>\n<pre>VirtualHost *:80\r\n    ServerName mydomain.com\r\n    ServerAlias www.mydomain.com\r\n    ServerAdmin wikiadmin@mydomain.com\r\n    DocumentRoot \/var\/www\/html\/dokuwiki\/\r\nDirectory \/var\/www\/html\/dokuwiki\/\r\n    Options FollowSymLinks\r\n    AllowOverride All\r\n    Order allow,deny\r\n    allow from all\r\n\/Directory\r\n    ErrorLog \/var\/log\/apache2\/mydomain.com-error_log\r\n    CustomLog \/var\/log\/apache2\/mydomain.com-access_log common\r\n\/VirtualHost<\/pre>\n<p>Activate the virtual host by creating a symbolic link to Apache&#8217;s &#8216;sites-enabled&#8217; directory<\/p>\n<pre>ln -s \/etc\/apache2\/sites-available\/dokuwiki.conf \/etc\/apache2\/sites-enabled\/<\/pre>\n<p>Check the Apache configuration files for errors:<\/p>\n<pre>apachectl configtest\r\nSyntax OK<\/pre>\n<p>If the syntax is OK, restart the web server for the changes to take effect.<\/p>\n<pre>systemctl restart apache2<\/pre>\n<h2><strong>Step 6. Complete the Installation<\/strong><\/h2>\n<p>Now, that we have everything installed and configured on our Ubuntu 18.04 server, we can proceed with DokuWiki&#8217;s web installation. To do that, open a web browser and navigate to http:\/\/<span style=\"color: #ff0000;\">mydomain.com<\/span>\/install.php . This installation script will help you with the initial DokuWiki configuration and it will check if all server requirements are met.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1216\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/dokuwii.png\" alt=\"\" width=\"1806\" height=\"912\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/dokuwii.png 1806w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/dokuwii-470x237.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/dokuwii-970x490.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/dokuwii-768x388.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/dokuwii-1536x776.png 1536w\" sizes=\"(max-width: 1806px) 100vw, 1806px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>That&#8217;s it! You now have a functioning DokuWiki set up to use for whatever you need. For more information on how to configure and use DokuWiki you can check their official documentation.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1220\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/expert-support-online-from-experienced-admins-for-ubuntu-cloud-vps-dokuwiki-assist.jpg\" alt=\"\" width=\"110\" height=\"111\" \/>Of course, you don\u2019t have to install DokuWiki on Ubuntu 18.04 if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu Cloud VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to setup this for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post on how to install DokuWiki on Ubuntu 18.04, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to install DokuWiki on an Ubuntu 18.04 Cloud VPS with Apache and PHP. DokuWiki is a free and open source lightweight wiki software platform. What makes it different from other similar wiki applications is that DokuWiki works without the need for a database. Instead, it stores its &#8230; <a title=\"How to Install DokuWiki on Ubuntu 18.04\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/\" aria-label=\"More on How to Install DokuWiki on Ubuntu 18.04\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1218,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[],"class_list":["post-1215","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install DokuWiki on Ubuntu 18.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will show you how to install DokuWiki on an Ubuntu 18.04 Cloud VPS with Apache and PHP. DokuWiki is a free and open source\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install DokuWiki on Ubuntu 18.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will show you how to install DokuWiki on an Ubuntu 18.04 Cloud VPS with Apache and PHP. DokuWiki is a free and open source\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-16T16:58:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-dokuwiki-on-ubuntu18.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install DokuWiki on Ubuntu 18.04\",\"datePublished\":\"2020-04-16T16:58:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/\"},\"wordCount\":854,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-dokuwiki-on-ubuntu18.04.jpg\",\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/\",\"name\":\"How to Install DokuWiki on Ubuntu 18.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-dokuwiki-on-ubuntu18.04.jpg\",\"datePublished\":\"2020-04-16T16:58:59+00:00\",\"description\":\"In this tutorial, we will show you how to install DokuWiki on an Ubuntu 18.04 Cloud VPS with Apache and PHP. DokuWiki is a free and open source\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-dokuwiki-on-ubuntu18.04.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-dokuwiki-on-ubuntu18.04.jpg\",\"width\":750,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dokuwiki-on-ubuntu-18-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install DokuWiki on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install DokuWiki on Ubuntu 18.04 | LinuxCloudVPS Blog","description":"In this tutorial, we will show you how to install DokuWiki on an Ubuntu 18.04 Cloud VPS with Apache and PHP. DokuWiki is a free and open source","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install DokuWiki on Ubuntu 18.04 | LinuxCloudVPS Blog","og_description":"In this tutorial, we will show you how to install DokuWiki on an Ubuntu 18.04 Cloud VPS with Apache and PHP. DokuWiki is a free and open source","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2020-04-16T16:58:59+00:00","og_image":[{"width":750,"height":360,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-dokuwiki-on-ubuntu18.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install DokuWiki on Ubuntu 18.04","datePublished":"2020-04-16T16:58:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/"},"wordCount":854,"commentCount":3,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-dokuwiki-on-ubuntu18.04.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/","name":"How to Install DokuWiki on Ubuntu 18.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-dokuwiki-on-ubuntu18.04.jpg","datePublished":"2020-04-16T16:58:59+00:00","description":"In this tutorial, we will show you how to install DokuWiki on an Ubuntu 18.04 Cloud VPS with Apache and PHP. DokuWiki is a free and open source","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-dokuwiki-on-ubuntu18.04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-dokuwiki-on-ubuntu18.04.jpg","width":750,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dokuwiki-on-ubuntu-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install DokuWiki on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1215","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1215"}],"version-history":[{"count":5,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1215\/revisions"}],"predecessor-version":[{"id":1227,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1215\/revisions\/1227"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1218"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1215"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1215"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1215"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}