{"id":477,"date":"2017-01-04T13:47:52","date_gmt":"2017-01-04T13:47:52","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=477"},"modified":"2018-01-31T08:56:23","modified_gmt":"2018-01-31T14:56:23","slug":"install-esotalk-on-an-ubuntu-cloud-vps","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/","title":{"rendered":"Install esoTalk on an Ubuntu Cloud VPS"},"content":{"rendered":"<p>Today we will go through the process of installing esoTalk on an Ubuntu VPS with Nginx and MariaDB. esoTalk is a free, open-source forum software, written in PHP, designed to be simple, fast, and fully featured. Despite its simplicity, a good number of plugins and themes are available to extend the functionality of esoTalk. This should work on other Linux Cloud VPS systems as well but was tested and written for <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\" target=\"_blank\">Ubuntu 16.04<\/a>.<br \/>\n<!--more--><\/p>\n<h2>Update the system and install necessary packages.<\/h2>\n<pre>root@vps:~# apt-get -y update &amp;&amp; apt-get -y upgrade\r\nroot@vps:~# apt-get install software-properties-common python-software-properties curl git<\/pre>\n<h2>Install PHP and Nginx<\/h2>\n<pre>apt-get install nginx php5-fpm php5-cli php5-gd php5-mysql php5-curl<\/pre>\n<h2>Clone the git repository and enable friendly URLs<\/h2>\n<p>Create a root directory for your web site and clone the git repository from github<\/p>\n<pre>root@vps:~# mkdir -p \/var\/www\/yourwebsite.com\/{public_html,logs}\r\nroot@vps:~# git clone git:\/\/github.com\/esoTalk\/esoTalk.git \/var\/www\/yourwebsite.com\/public_html\r\nroot@vps:~# cd \/var\/www\/yourwebsite.com\/public_html<\/pre>\n<p>Copy and edit the configuration file<\/p>\n<pre> root@vps:~# cp core\/config.defaults.php config\/config.php\r\nroot@vps:~# sed -i &#039;s\/\\(^.*config\\[&quot;esoTalk.urls.friendly&quot;\\] =\\) false\/\\1 true\/&#039; config\/config.php\r\nroot@vps:~# sed -i &#039;s\/\\(^.*config\\[&quot;esoTalk.urls.rewrite&quot;\\] =\\) false\/\\1 true\/&#039; config\/config.php<\/pre>\n<h2>Install MariaDB and create a database.<\/h2>\n<pre>root@vps:~#  apt-key adv --recv-keys --keyserver hkp:\/\/keyserver.ubuntu.com:80 0xcbcb082a1bb943db\r\nroot@vps:~# add-apt-repository &#039;deb http:\/\/ftp.osuosl.org\/pub\/mariadb\/repo\/10.0\/ubuntu trusty main&#039;\r\nroot@vps:~# apt-get -y update\r\nroot@vps:~# echo -e &quot;Package: *\\nPin: origin ftp.osuosl.org\\nPin-Priority: 1000&quot; | tee \/etc\/apt\/preferences.d\/mariadb\r\nroot@vps:~# apt-get install mariadb-server\r\nroot@vps:~# mysql -uroot -p\r\nMariaDB [(none)]&gt; create database esoTalk;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON esoTalk.* TO &#039;esoTalk&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;esoTalk_password&#039;;\r\nMariaDB [(none)]&gt; flush privileges;\r\nMariaDB [(none)]&gt; \\q<\/pre>\n<h2>Nginx configuration<\/h2>\n<p>Create a new Nginx server block with the following content<\/p>\n<pre>root@vps:~# cat &lt;&lt;&#039;EOF&#039; &gt; \/etc\/nginx\/sites-available\/yourwebsite.com\r\nserver {\r\n    server_name yourwebsite.com;\r\n    listen 80;\r\n    root \/var\/www\/yourwebsite.com\/public_html;\r\n    access_log \/var\/www\/yourwebsite.com\/logs\/access.log;\r\n    error_log \/var\/www\/yourwebsite.com\/logs\/error.log;\r\n    index index.php;\r\n \r\n    location \/ {\r\n        try_files $uri $uri\/ \/index.php\/$args;\r\n    }\r\n \r\n    location ~* \\.(?:ico|css|js|gif|jpe?g|png|ttf|woff)$ {\r\n        access_log off;\r\n        expires 30d;\r\n        add_header Pragma public;\r\n        add_header Cache-Control &quot;public, mustrevalidate, proxy-revalidate&quot;;\r\n    }\r\n \r\n    location ~ \\.php$ {\r\n        fastcgi_index index.php;\r\n        fastcgi_split_path_info ^(.+\\.php)(.*)$;\r\n        fastcgi_keep_conn on;\r\n        include \/etc\/nginx\/fastcgi_params;\r\n        fastcgi_pass unix:\/var\/run\/php5-fpm.sock;\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n    }\r\n \r\n    location ~ \/\\.ht {\r\n        deny all;\r\n    }\r\n \r\n}\r\nEOF<\/pre>\n<p>Symlink it and restart the server<\/p>\n<pre>root@vps:~# ln -s \/etc\/nginx\/sites-available\/yourwebsite.com \/etc\/nginx\/sites-enabled\/yourwebsite.com\r\nroot@vps:~# \/etc\/init.d\/nginx restart<\/pre>\n<p>Set the correct permissions<\/p>\n<pre>root@vps:~# chown -R www-data: \/var\/www\/yourwebsite.com\/public_html\/<\/pre>\n<p>Open your browser and run the esoTalk installation process.<\/p>\n<pre>http:\/\/yourwebsite.com\/<\/pre>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-479\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/01\/esotalk-install.jpg\" alt=\"esotalk \" width=\"586\" height=\"641\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/01\/esotalk-install.jpg 586w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/01\/esotalk-install-274x300.jpg 274w\" sizes=\"(max-width: 586px) 100vw, 586px\" \/><\/p>\n<p>Once you enter the database\/admin information, click &#8216;Install esoTalk \u203a&#8217;.<br \/>\nThat&#8217;s it. You have installed esoTalk on your server.<\/p>\n<p>For more information about how to configure and manage your esoTalk installation, please refer to the <a href=\"http:\/\/esoTalk.org\/\" target=\"_blank\">esoTalk <\/a>website.<\/p>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\">Linux 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&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span><\/strong> If you liked this post 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>Today we will go through the process of installing esoTalk on an Ubuntu VPS with Nginx and MariaDB. esoTalk is a free, open-source forum software, written in PHP, designed to be simple, fast, and fully featured. Despite its simplicity, a good number of plugins and themes are available to extend the functionality of esoTalk. This &#8230; <a title=\"Install esoTalk on an Ubuntu Cloud VPS\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/\" aria-label=\"More on Install esoTalk on an Ubuntu Cloud VPS\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":478,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[90,91,132,47],"class_list":["post-477","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-esotalk","tag-forum","tag-linuxcloudvps","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install esoTalk on an Ubuntu Cloud VPS | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Today we will go through the process of installing esoTalk on an Ubuntu VPS with Nginx and MariaDB. esoTalk is a free, open-source forum software, written\" \/>\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\/install-esotalk-on-an-ubuntu-cloud-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install esoTalk on an Ubuntu Cloud VPS | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Today we will go through the process of installing esoTalk on an Ubuntu VPS with Nginx and MariaDB. esoTalk is a free, open-source forum software, written\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/\" \/>\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=\"2017-01-04T13:47:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-31T14:56:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/01\/logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"136\" \/>\n\t<meta property=\"og:image:height\" content=\"120\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"Install esoTalk on an Ubuntu Cloud VPS\",\"datePublished\":\"2017-01-04T13:47:52+00:00\",\"dateModified\":\"2018-01-31T14:56:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/\"},\"wordCount\":273,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/01\\\/logo.png\",\"keywords\":[\"esotalk\",\"forum\",\"linuxcloudvps\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/\",\"name\":\"Install esoTalk on an Ubuntu Cloud VPS | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/01\\\/logo.png\",\"datePublished\":\"2017-01-04T13:47:52+00:00\",\"dateModified\":\"2018-01-31T14:56:23+00:00\",\"description\":\"Today we will go through the process of installing esoTalk on an Ubuntu VPS with Nginx and MariaDB. esoTalk is a free, open-source forum software, written\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/01\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/01\\\/logo.png\",\"width\":136,\"height\":120},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-esotalk-on-an-ubuntu-cloud-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install esoTalk on an Ubuntu Cloud VPS\"}]},{\"@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":"Install esoTalk on an Ubuntu Cloud VPS | LinuxCloudVPS Blog","description":"Today we will go through the process of installing esoTalk on an Ubuntu VPS with Nginx and MariaDB. esoTalk is a free, open-source forum software, written","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\/install-esotalk-on-an-ubuntu-cloud-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install esoTalk on an Ubuntu Cloud VPS | LinuxCloudVPS Blog","og_description":"Today we will go through the process of installing esoTalk on an Ubuntu VPS with Nginx and MariaDB. esoTalk is a free, open-source forum software, written","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2017-01-04T13:47:52+00:00","article_modified_time":"2018-01-31T14:56:23+00:00","og_image":[{"width":136,"height":120,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/01\/logo.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"Install esoTalk on an Ubuntu Cloud VPS","datePublished":"2017-01-04T13:47:52+00:00","dateModified":"2018-01-31T14:56:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/"},"wordCount":273,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/01\/logo.png","keywords":["esotalk","forum","linuxcloudvps","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/","name":"Install esoTalk on an Ubuntu Cloud VPS | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/01\/logo.png","datePublished":"2017-01-04T13:47:52+00:00","dateModified":"2018-01-31T14:56:23+00:00","description":"Today we will go through the process of installing esoTalk on an Ubuntu VPS with Nginx and MariaDB. esoTalk is a free, open-source forum software, written","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/01\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/01\/logo.png","width":136,"height":120},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-esotalk-on-an-ubuntu-cloud-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install esoTalk on an Ubuntu Cloud VPS"}]},{"@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\/477","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=477"}],"version-history":[{"count":1,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/477\/revisions"}],"predecessor-version":[{"id":480,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/477\/revisions\/480"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/478"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=477"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=477"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=477"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}