{"id":1394,"date":"2020-10-07T15:52:31","date_gmt":"2020-10-07T20:52:31","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1394"},"modified":"2021-01-20T07:34:14","modified_gmt":"2021-01-20T13:34:14","slug":"how-to-install-zikula-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/","title":{"rendered":"How to Install Zikula on Ubuntu 18.04"},"content":{"rendered":"\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" width=\"120\" height=\"43\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/configure-zikula-cms-platform-on-ubuntu-18-04-cloud-vps.jpg\" alt=\"installation zikula cms apache php ubuntu 18.04\" class=\"wp-image-1399\"\/><\/figure><\/div>\n\n\n\n<p>Zikula is Free Open Source Software (FOSS) that allows users to build anything from simple one-page websites to complex and powerful web applications. Zikula is pretty easy to install and use. <\/p>\n\n\n\n<p>In this tutorial we will show you how to install Zikula and all necessary dependencies on an <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Ubuntu 18.04 Cloud VPS<\/a>.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Prerequisites<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>a Cloud VPS with Ubuntu 18.04 and a user with root privileges (or the root user itself)<\/li><li>PHP version 5.5.9 or higher with <code>mod_php<\/code> enabled. It is recommended to use the latest PHP release<\/li><li>The following PHP extensions have to be installed: Ctype, JSON, iconv, PCRE, Session, SimpleXML, Tokenizer<\/li><li>Apache web server version 2.0 or higher, with <code>mod_rewrite<\/code> module enabled and the AllowOverride directive set to \u2018All\u2019<\/li><li>MySQL or MariaDB database server version 5 or higher<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Login and Update the System<\/strong><\/h3>\n\n\n\n<p>As usual, login to your Ubuntu 18.04 server via SSH as the root user, or as your admin account:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh root@IP_address -p Port_number<\/pre>\n\n\n\n<p>replace &#8216;<code>IP_address<\/code>&#8216; and &#8216;<code>Port_number<\/code>&#8216; with the actual IP address and SSH port number of your server.<\/p>\n\n\n\n<p>Once you are logged in, run the following commands to update all installed packages on your server<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt update &amp;&amp; apt upgrade<\/pre>\n\n\n\n<p>For security reasons it is recommended to always keep your services and scripts up to date. You can also restart your server to ensure that all configurations used are the latest ones.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Install Apache Web Server<\/strong><\/h3>\n\n\n\n<p>As listed in the prerequisites section of this tutorial, Zikula requires a web server. We will install and use the Apache web server which serves more than 40% of all websites in the world. It can be easily installed using the default Ubuntu package manager:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt -y install apache2<\/pre>\n\n\n\n<p>Once it is installed, you can start the web server and enable it to automatically start after a server reboot<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start apache2\nsystemctl enable apache2<\/pre>\n\n\n\n<p>Enable the <code>rewrite<\/code> module in Apache<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">a2enmod rewrite<\/pre>\n\n\n\n<p>Output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Enabling module rewrite.\nTo activate the new configuration, you need to run:\n  systemctl restart apache2<\/pre>\n\n\n\n<p>As suggested, restart the web server to activate the module:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart apache2<\/pre>\n\n\n\n<p>You can easily test if the web server is properly installed by visiting <code>http:\/\/IP_Address<\/code> with your favorite web browser. You should get the default Apache web page. That&#8217;s all we need to do with Apache for now.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Install PHP<\/strong><\/h3>\n\n\n\n<p>Zikula is a PHP-based application, so we have to to install PHP and several PHP extensions required by the application:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt install php libapache2-mod-php php-gd php-mbstring php-mysql php-curl php-xmlrpc php-xml<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Install Database Server<\/strong><\/h3>\n\n\n\n<p>Zikula needs an empty SQL database, so for this purpose we will install the MariaDB server, which is an open-source version of MySQL.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt -y install mariadb-server<\/pre>\n\n\n\n<p>Start the MariaDB database server and enable it to be able to start itself after a reboot:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start mariadb\nsystemctl enable mariadb<\/pre>\n\n\n\n<p>You can execute the <code>mysql_secure_installation<\/code> script provided by MariaDB to set a password for the root user and additionally strengthen the security of the database server. You can use the following details:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Set root password? [Y\/n] Y\nRemove anonymous users? [Y\/n] Y\nDisallow root login remotely? [Y\/n] Y\nRemove test database and access to it? [Y\/n] Y\nReload privilege tables now? [Y\/n] Y<\/pre>\n\n\n\n<p>Once everything is set up, you can go ahead and create a new database that can be used by Zikula. Additionally, create a user with full privileges over that database.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql -u root -p\n\nMariaDB [(none)]&gt; CREATE DATABASE zikula;\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON zikula.* TO &#039;zikula_user&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;&lt;strong&gt;PASSWORD&lt;\/strong&gt;&#039;;\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\nMariaDB [(none)]&gt; exit;<\/pre>\n\n\n\n<p>Don&#8217;t forget to replace &#8216;<code><strong>PASSWORD<\/strong><\/code>&#8216; with an actual strong password.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Download and Install Zikula<\/strong><\/h3>\n\n\n\n<p>Now that everything is in place, go to Zikula&#8217;s official website and download the latest stable release of the application, which currently is version 2.0.12.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">wget https:\/\/github.com\/zikula\/core\/releases\/download\/2.0.12\/2.0.zip<\/pre>\n\n\n\n<p>unpack the downloaded ZIP archive to the document root directory of your server, which usually is <code>\/var\/www\/html<\/code>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">unzip 2.0.zip -d \/var\/www\/html\/<\/pre>\n\n\n\n<p>All Zikula files will be stored in a new &#8216;2.0&#8217; directory. We will rename the directory to <code>zikula<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mv 2.0 zikula<\/pre>\n\n\n\n<p>All files and directories have to be readable by the web server user, <code>www-data<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">chown -R www-data:www-data \/var\/www\/html\/zikula<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Create Apache Virtual host<\/strong><\/h3>\n\n\n\n<p>In order to be able to access Zikula with your domain name instead of the IP address, you have to create an Apache virtual host directive for the domain. We will use <code>domain.tld<\/code> as our domain name. Don&#8217;t forget to replace it with your actual domain.<\/p>\n\n\n\n<p>Create virtual host directive with the following content<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/apache2\/sites-available\/zikula.conf\n\n\n ServerName &lt;strong&gt;domain.tld&lt;\/strong&gt;\n ServerAlias www.&lt;strong&gt;domain.tld&lt;\/strong&gt;\n ServerAdmin admin@&lt;strong&gt;domain.tld&lt;\/strong&gt;\n DocumentRoot \/var\/www\/html\/zikula\/\n \n\n \tOptions FollowSymLinks\n \tAllowOverride All\n \tOrder allow,deny\n \tallow from all\n \n\n ErrorLog \/var\/log\/apache2\/&lt;strong&gt;domain.tld&lt;\/strong&gt;-error_log\n CustomLog \/var\/log\/apache2\/&lt;strong&gt;domain.tld&lt;\/strong&gt;-access_log common\n\n<\/pre>\n\n\n\n<p>Save the changes and enable the Apache virtual host using the following command<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">a2ensite zikula.conf<\/pre>\n\n\n\n<p>output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Enabling site zikula.\nTo activate the new configuration, you need to run:\n  systemctl reload apache2<\/pre>\n\n\n\n<p>Reload the web server for the changes to take effect<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl reload apache2<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Complete the Installation<\/strong><\/h3>\n\n\n\n<p>Finally, open your favorite web browser and navigate it to <span style=\"color: #000000;\"><em><strong>http:\/\/domain.tld<\/strong><\/em><\/span> to complete Zikula&#8217;s installation. You will get the following screen:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1211\" height=\"484\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikula1.png\" alt=\"\" class=\"wp-image-1395\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikula1.png 1211w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikula1-470x188.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikula1-970x388.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikula1-768x307.png 768w\" sizes=\"(max-width: 1211px) 100vw, 1211px\" \/><\/figure>\n\n\n\n<p>Proceed with the installation and enter the information of the MariaDB database that we created earlier in this tutorial. After that, create your Zikula Administrative account. Before completing the installation, you will also be able to install some Zikula modules and helpers, as shown below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1333\" height=\"949\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikulafinish.png\" alt=\"\" class=\"wp-image-1396\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikulafinish.png 1333w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikulafinish-421x300.png 421w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikulafinish-970x691.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/zikulafinish-768x547.png 768w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" \/><\/figure>\n\n\n\n<p>That&#8217;s everything! You now have Zikula on your Ubuntu 18.04 Cloud VPS. For more details on how to configure and use Zikula, you can check their <a href=\"https:\/\/ziku.la\/en\/documentation.html\" target=\"_blank\" rel=\"noopener noreferrer\">official documentation<\/a>.<\/p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\"\/>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft size-large\"><img decoding=\"async\" width=\"120\" height=\"43\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/managed-zikula-support-help-by-experts-for-ubuntu-cloud-server.jpg\" alt=\"configure zikula cms web server managed ubuntu\" class=\"wp-image-1400\"\/><\/figure><\/div>\n\n\n\n<p>Of course you don\u2019t have to Install Zikula on Ubuntu 18.04 if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Cloud VPS Hosting<\/a> services &#8211; you can simply ask our expert Linux admins to install Zikula on Ubuntu 18.04 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n\n\n\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you enjoyed reading this post on how to Install Zikula on Ubuntu 18.04, feel free to share it on social networks by using the share shortcuts, or simply leave a comment. Thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Zikula is Free Open Source Software (FOSS) that allows users to build anything from simple one-page websites to complex and powerful web applications. Zikula is pretty easy to install and use. In this tutorial we will show you how to install Zikula and all necessary dependencies on an Ubuntu 18.04 Cloud VPS.<\/p>\n","protected":false},"author":2,"featured_media":1398,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[47,195,194],"class_list":["post-1394","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-ubuntu","tag-websites","tag-zikula"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Zikula on Ubuntu 18.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Zikula is Free Open Source Software (FOSS) that allows users to build anything from simple one-page websites to complex and powerful web applications.\" \/>\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-zikula-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 Zikula on Ubuntu 18.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Zikula is Free Open Source Software (FOSS) that allows users to build anything from simple one-page websites to complex and powerful web applications.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-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-10-07T20:52:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-20T13:34:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/how-to-install-zikula-on-ubuntu-18-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=\"5 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-zikula-on-ubuntu-18-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Zikula on Ubuntu 18.04\",\"datePublished\":\"2020-10-07T20:52:31+00:00\",\"dateModified\":\"2021-01-20T13:34:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/\"},\"wordCount\":809,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/how-to-install-zikula-on-ubuntu-18-04.jpg\",\"keywords\":[\"ubuntu\",\"websites\",\"zikula\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/\",\"name\":\"How to Install Zikula on Ubuntu 18.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/how-to-install-zikula-on-ubuntu-18-04.jpg\",\"datePublished\":\"2020-10-07T20:52:31+00:00\",\"dateModified\":\"2021-01-20T13:34:14+00:00\",\"description\":\"Zikula is Free Open Source Software (FOSS) that allows users to build anything from simple one-page websites to complex and powerful web applications.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-on-ubuntu-18-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/how-to-install-zikula-on-ubuntu-18-04.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/how-to-install-zikula-on-ubuntu-18-04.jpg\",\"width\":750,\"height\":360,\"caption\":\"install zikula cms ubuntu 18.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-zikula-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 Zikula 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 Zikula on Ubuntu 18.04 | LinuxCloudVPS Blog","description":"Zikula is Free Open Source Software (FOSS) that allows users to build anything from simple one-page websites to complex and powerful web applications.","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-zikula-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Zikula on Ubuntu 18.04 | LinuxCloudVPS Blog","og_description":"Zikula is Free Open Source Software (FOSS) that allows users to build anything from simple one-page websites to complex and powerful web applications.","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2020-10-07T20:52:31+00:00","article_modified_time":"2021-01-20T13:34:14+00:00","og_image":[{"width":750,"height":360,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/how-to-install-zikula-on-ubuntu-18-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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Zikula on Ubuntu 18.04","datePublished":"2020-10-07T20:52:31+00:00","dateModified":"2021-01-20T13:34:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/"},"wordCount":809,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/how-to-install-zikula-on-ubuntu-18-04.jpg","keywords":["ubuntu","websites","zikula"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/","name":"How to Install Zikula on Ubuntu 18.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/how-to-install-zikula-on-ubuntu-18-04.jpg","datePublished":"2020-10-07T20:52:31+00:00","dateModified":"2021-01-20T13:34:14+00:00","description":"Zikula is Free Open Source Software (FOSS) that allows users to build anything from simple one-page websites to complex and powerful web applications.","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/how-to-install-zikula-on-ubuntu-18-04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/10\/how-to-install-zikula-on-ubuntu-18-04.jpg","width":750,"height":360,"caption":"install zikula cms ubuntu 18.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-zikula-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 Zikula 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\/1394","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=1394"}],"version-history":[{"count":4,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1394\/revisions"}],"predecessor-version":[{"id":1403,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1394\/revisions\/1403"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1398"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1394"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1394"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1394"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}