{"id":1407,"date":"2021-05-28T07:24:34","date_gmt":"2021-05-28T12:24:34","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1407"},"modified":"2021-05-28T07:24:43","modified_gmt":"2021-05-28T12:24:43","slug":"how-to-install-thelia-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/","title":{"rendered":"How to Install Thelia on Ubuntu 18.04"},"content":{"rendered":"<div id=\"linux-988530674\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>We will show you how to install Thelia 2 on Ubuntu 18.04 using Apache web-server and a MySQL database. Thelia is an open-source tool for creating e-business websites and managing online content. It is written in PHP and it is published under a free license. Developed in accordance to web development standards and based on Symfony 2, Thelia meets the following objectives: performance and scalability. It is fairly easy to install Thelia 2 on an Ubuntu 18.04 VPS. The installation process should take about 10 minutes if you follow the very easy steps described below.<\/p>\n<p><!--more--><\/p>\n<h2>Requirements<\/h2>\n<p>At the time of writing this tutorial, the latest stable version of Thelia is 2.3.4 and it requires:<\/p>\n<ul>\n<li>PHP 5.5 or greater (preferably PHP 7.1), with\u00a0openssl, GD, DOM, cURL, calendar, PDO_MySQL, and intl\u00a0PHP extensions enabled. The memory_limit value set in PHP should be at least 128 megabytes,\u00a0preferably 256 megabytes. Safe_mode should be disabled, and the date.timezone value in PHP should be set, so it can be used by all\u00a0date\/time functions in Thelia;<\/li>\n<li>MySQL 5.6 or greater, or MariaDB installed on the Ubuntu server;<\/li>\n<li>Apache web server 2.0 or higher compiled with mod_rewrite module. Alternatively, we can use\u00a0Nginx as a web server.<\/li>\n<\/ul>\n<h2><span id=\"Log-in-to-the-server-update-your-server-OS-Packages\" class=\"ez-toc-section\"><\/span>Log in to the server update your server OS Packages<\/h2>\n<p>Log in to your Ubuntu 18.04 VPS with SSH as the root user:<\/p>\n<pre>ssh root@IP_Address -p Port_number<\/pre>\n<p>Before we can start with the Thelia installation, we have to make sure that all Ubuntu OS packages installed on the server are up to date. We can do this by running the following commands:<\/p>\n<pre>sudo apt-get update\r\nsudo apt-get upgrade<\/pre>\n<h2><span id=\"Install-Apache-web-server\" class=\"ez-toc-section\"><\/span>Install Apache web server<\/h2>\n<p>Check whether Apache is already installed and running on your server:<\/p>\n<pre>ps aux | grep apache2<\/pre>\n<p>We can also check if there are Apache2 packages installed on the server:<\/p>\n<pre>dpkg -l | grep apache2<\/pre>\n<p>If Apache is already installed on the server, we can skip the Apache installation steps and proceed with PHP\u00a0installation.<br \/>\nIf Apache is not installed, we can install it using:<\/p>\n<pre>apt-get install apache2<\/pre>\n<p>Once installed, start the Apache server and enable it to start on server boot:<\/p>\n<pre>systemctl start apache2\r\nsystemctl enable apache2<\/pre>\n<h2><span id=\"Install-the-required-PHP-extensions\" class=\"ez-toc-section\"><\/span>Install the required PHP extensions<\/h2>\n<p>The default PHP version available from the official Ubuntu 18.04 repository is PHP 7.2. Remove PHP 7.2 and install PHP 7.1 and all the required PHP extensions:<\/p>\n<pre>sudo apt-get remove php7.2*\r\nsudo add-apt-repository ppa:ondrej\/php\r\nsudo apt-get update\r\nsudo apt-get install php7.1 php7.1-common php7.1-curl php7.1-gd php7.1-curl php7.1-dom php7.1-mysql php7.1-intl\r\nsudo a2dismod php7.2\r\nsudo a2enmod php7.1<\/pre>\n<h2><span id=\"Configure-PHP\" class=\"ez-toc-section\"><\/span>Configure PHP<\/h2>\n<p>Locate the PHP configuration file:<\/p>\n<pre>php -c \/etc\/php\/7.1\/apache2\/ -i |grep \"Loaded Configuration File\"<\/pre>\n<p>The output should be something like this:<\/p>\n<pre>Loaded Configuration File =&gt; \/etc\/php\/7.1\/apache2\/php.ini<\/pre>\n<p>Edit the php.ini configuration file:<\/p>\n<pre>vi \/etc\/php\/7.1\/apache2\/php.ini<\/pre>\n<p>Add\/modify the following options:<\/p>\n<pre>memory_limit = 256M \r\nfile_uploads = On\t\r\nallow_url_fopen = On\r\nallow_url_include = Off\r\npost_max_size 32M\r\nupload_max_filesize = 8M\t\r\nmax_execution_time = 300\r\ndefault_charset = \"UTF-8\"\r\ndate.timezone = \"America\/Chicago\"<\/pre>\n<h2><span id=\"Enable-Apache-Rewrite-Module\" class=\"ez-toc-section\"><\/span>Enable Apache Rewrite Module<\/h2>\n<p>Enable Apache rewrite module if it is not already done so:<\/p>\n<pre>a2enmod rewrite<\/pre>\n<p>Restart the Apache service for the changes to take effect:<\/p>\n<pre>systemctl restart apache2<\/pre>\n<h2><span id=\"Install-MariaDB\" class=\"ez-toc-section\"><\/span>Install MariaDB<\/h2>\n<p>We will use MariaDB as a database engine. We can install MariaDB server from the Ubuntu base repository using the following commands:<\/p>\n<pre>sudo apt-get install mariadb-server-10.1 mariadb-server-core-10.1<\/pre>\n<h2><span id=\"Install-Thelia\" class=\"ez-toc-section\"><\/span>Install\u00a0Thelia<\/h2>\n<p>Download and extract the latest version of\u00a0Thelia\u00a0in the document root directory of your website ( e.g \/var\/www\/html\/your-domain.com).<\/p>\n<pre>cd \/opt\/\r\nwget https:\/\/thelia.net\/download\/thelia.zip\r\nunzip thelia.zip\r\nmkdir -p \/var\/www\/html\/your-domain.com\r\nmv \/opt\/thelia_*\/* \/var\/www\/html\/your-domain.com\/\r\nchown -R www-data:www-data \/var\/www\/html\/your-domain.com\r\nrm thelia.zip<\/pre>\n<h2><span id=\"Create-a-Database-for-Thelia\" class=\"ez-toc-section\"><\/span>Create a Database for Thelia<\/h2>\n<p>Create a MySQL database for the Thelia website:<\/p>\n<pre>mysql -u root -p<\/pre>\n<pre>MariaDB [(none)]&gt; CREATE DATABASE thelia;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON thelia.* TO 'thelia'@'localhost' IDENTIFIED BY 'Str0ngPa55w0rd';\r\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\r\nMariaDB [(none)]&gt; exit;<\/pre>\n<p>Don\u2019t forget to replace \u2018Str0ngPa55w0rd\u2019 with an actual strong password.<\/p>\n<h2><span id=\"Create-a-Virtual-Host-in-Apache\" class=\"ez-toc-section\"><\/span>Create a Virtual Host in Apache<\/h2>\n<p>Create a virtual host in Apache for your domain:<\/p>\n<pre>vi \/etc\/apache2\/sites-available\/your-domain.com.conf<\/pre>\n<p>And add the following content to the file:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\n\r\nServerAdmin admin@your-domain.com\r\nServerName <code>your-domain.com<\/code> ServerAlias <code>www.your-domain.com<\/code> DocumentRoot \/var\/www\/html\/your-domain.com &lt;Directory \/var\/www\/html\/your-domain.com&gt; Options Indexes FollowSymLinks AllowOverride All Require all granted &lt;\/Directory&gt; ErrorLog ${APACHE_LOG_DIR}\/your-domain.com_error.log CustomLog ${APACHE_LOG_DIR}\/your-domain.com_access.log combined &lt;\/VirtualHost&gt;<\/pre>\n<p>Replace \u2018your-domain.com\u2019 with your actual domain.<\/p>\n<p>To enable the virtual host we have just created, run the following command:<\/p>\n<pre>a2ensite your-domain.com.conf<\/pre>\n<p>Then, disable the default Apache configuration:<\/p>\n<pre>a2dissite 000-default.conf<\/pre>\n<p>Restart Apache service for the changes to take effect:<\/p>\n<pre>systemctl restart apache2<\/pre>\n<p>Open <code>http:\/\/your-domain.com<\/code> in a web browser and follow the on-screen instructions: Select the language you want to use, check the PHP version, required PHP extensions and file permissions, and if everything is OK, click on the \u2018Continue\u2019 button.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-1409 size-full\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/install-thelia-on-ubuntu-18.04.png\" alt=\"install thelia on ubuntu 18.04\" width=\"1024\" height=\"964\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/install-thelia-on-ubuntu-18.04.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/install-thelia-on-ubuntu-18.04-300x282.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/install-thelia-on-ubuntu-18.04-768x723.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>On the next page, enter the database settings:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-1410 size-full\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/installing-thelia-on-ubuntu-18.04.png\" alt=\"installing thelia on ubuntu 18.04\" width=\"1024\" height=\"571\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/installing-thelia-on-ubuntu-18.04.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/installing-thelia-on-ubuntu-18.04-300x167.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/installing-thelia-on-ubuntu-18.04-768x428.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Click \u2018Continue\u2019 and choose \u2018thelia\u2019 as database. On the next page, create a new admin account.<\/p>\n<p>Don\u2019t forget to delete the web\/install directory:<\/p>\n<pre>rm -rf \/var\/www\/html\/your-domain.com\/web\/install\/<\/pre>\n<p>That\u2019s it. If you followed all of the instructions properly you can now access the Thelia back-office at\u00a0<code>http:\/\/your-domain.com\/web\/admin\/login<\/code><\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-1411 size-full\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/install-thelia-ubuntu-18.04.png\" alt=\"install thelia ubuntu 18.04\" width=\"1024\" height=\"385\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/install-thelia-ubuntu-18.04.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/install-thelia-ubuntu-18.04-300x113.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/install-thelia-ubuntu-18.04-768x289.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Of course, you don\u2019t have to install Thelia on Ubuntu 18.04, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\/\">Server Support Services<\/a> solutions, in which case you can simply ask our expert Linux admins to set up Thelia on Ubuntu 18.04 for you. They are available 24\u00d77 and will take care of your request immediately.<br \/>\n<strong>PS<\/strong>. If you liked this post on <strong>how to install Thelia on an Ubuntu 18.04 VPS<\/strong>, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-172067782\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>We will show you how to install Thelia 2 on Ubuntu 18.04 using Apache web-server and a MySQL database. Thelia is an open-source tool for creating e-business websites and managing online content. It is written in PHP and it is published under a free license. Developed in accordance to web development standards and based on [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1421,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[188,20],"class_list":["post-1407","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-thelia","tag-ubuntu"],"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 Thelia on Ubuntu 18.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"We will show you how to install Thelia 2 on Ubuntu 18.04 using Apache web-server and a MySQL database. Thelia is an open-source tool for creating\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-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 Thelia on Ubuntu 18.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"We will show you how to install Thelia 2 on Ubuntu 18.04 using Apache web-server and a MySQL database. Thelia is an open-source tool for creating\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-28T12:24:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-28T12:24:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/how-to-install-thelia-on-ubuntu-18.04-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\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=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\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:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Thelia on Ubuntu 18.04\",\"datePublished\":\"2021-05-28T12:24:34+00:00\",\"dateModified\":\"2021-05-28T12:24:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/\"},\"wordCount\":720,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/how-to-install-thelia-on-ubuntu-18.04-1.jpg\",\"keywords\":[\"thelia\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/\",\"name\":\"How to Install Thelia on Ubuntu 18.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/how-to-install-thelia-on-ubuntu-18.04-1.jpg\",\"datePublished\":\"2021-05-28T12:24:34+00:00\",\"dateModified\":\"2021-05-28T12:24:43+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"We will show you how to install Thelia 2 on Ubuntu 18.04 using Apache web-server and a MySQL database. Thelia is an open-source tool for creating\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/how-to-install-thelia-on-ubuntu-18.04-1.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/how-to-install-thelia-on-ubuntu-18.04-1.jpg\",\"width\":742,\"height\":372,\"caption\":\"how to install thelia on ubuntu 18.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-thelia-on-ubuntu-18-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Thelia on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Thelia on Ubuntu 18.04 | LinuxHostSupport","description":"We will show you how to install Thelia 2 on Ubuntu 18.04 using Apache web-server and a MySQL database. Thelia is an open-source tool for creating","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:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Thelia on Ubuntu 18.04 | LinuxHostSupport","og_description":"We will show you how to install Thelia 2 on Ubuntu 18.04 using Apache web-server and a MySQL database. Thelia is an open-source tool for creating","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2021-05-28T12:24:34+00:00","article_modified_time":"2021-05-28T12:24:43+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/how-to-install-thelia-on-ubuntu-18.04-1.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Thelia on Ubuntu 18.04","datePublished":"2021-05-28T12:24:34+00:00","dateModified":"2021-05-28T12:24:43+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/"},"wordCount":720,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/how-to-install-thelia-on-ubuntu-18.04-1.jpg","keywords":["thelia","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/","name":"How to Install Thelia on Ubuntu 18.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/how-to-install-thelia-on-ubuntu-18.04-1.jpg","datePublished":"2021-05-28T12:24:34+00:00","dateModified":"2021-05-28T12:24:43+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"We will show you how to install Thelia 2 on Ubuntu 18.04 using Apache web-server and a MySQL database. Thelia is an open-source tool for creating","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/how-to-install-thelia-on-ubuntu-18.04-1.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/04\/how-to-install-thelia-on-ubuntu-18.04-1.jpg","width":742,"height":372,"caption":"how to install thelia on ubuntu 18.04"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-thelia-on-ubuntu-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Thelia on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1407","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1407"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1407\/revisions"}],"predecessor-version":[{"id":1450,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1407\/revisions\/1450"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1421"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1407"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1407"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1407"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}