{"id":340,"date":"2018-01-10T02:25:39","date_gmt":"2018-01-10T08:25:39","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=340"},"modified":"2020-08-02T11:52:01","modified_gmt":"2020-08-02T16:52:01","slug":"how-to-install-collabtive-3-1-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/","title":{"rendered":"How to install Collabtive 3.1 on Ubuntu 16.04"},"content":{"rendered":"<div id=\"linux-332531360\" 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>In this tutorial, we will show <strong>how to install Collabtive 3.1 on Ubuntu 16.04<\/strong>. Collabtive is an open source web-based project management software written in PHP, that let you keep track of your projects. The main features of Collabtive are: task lists, milestones, time tracking, messaging \/ instant messaging, file management, role-based user permissions, reporting, exporting, calendaring and multilingual interface. This tutorial was tested and written for Ubuntu 16.04, but it should work on any Linux distribution. The entire process of installing Collabtive 3.1 on Ubuntu 16.04, should not take more than 10 minutes.<\/p>\n<p><!--more--><\/p>\n<h2>1. Install Apache, PHP and MySQL<\/h2>\n<p>This install guide assumes that Apache, PHP and MySQL are already installed and configured on your Collabtive virtual server. At the time of writing this tutorial, the latest stable version of <strong>Collabtive 3.1<\/strong> and it requires:<\/p>\n<ul>\n<li>PHP 5.5 or PHP 7 with the mbstring and mysql (or sqlite) PHP extensions enabled.<\/li>\n<li>Apache Web Server &gt;= 2.0 compiled with mod_rewrite module and with the following directives allowed: DirectoryIndex, Deny, Allow, Options, Order, AddHandler, RewriteEngine, RewriteBase, RewriteCond and RewriteRule.<\/li>\n<li>MySQL, MariaDB or <span class=\"st\">SQLite<\/span> installed on your server.<\/li>\n<\/ul>\n<h2>2. Install Collabtive<\/h2>\n<p>Download the latest version of Collabtive , then extract it using the following commands:<\/p>\n<pre>cd \/opt\r\nwget https:\/\/sourceforge.net\/projects\/collabtive\/files\/latest\/download -O collabtive.zip\r\nunzip collabtive.zip -d \/var\/www\/html\/collabtive\/<\/pre>\n<h2>3. Set up file ownership<\/h2>\n<p>The web server user (www-data) needs to be able to write to &#8216;config.php&#8217; file, &#8216;files&#8217; and &#8216;templates_c&#8217; directories. It can easily be accomplished by executing the following commands:<\/p>\n<pre>sudo chown www-data:www-data -R \/var\/www\/html\/collabtive\/\r\nsudo chmod +w  \/var\/www\/html\/collabtive\/config\/standard\/config.php\r\nsudo chmod +w  \/var\/www\/html\/collabtive\/files\r\nsudo chmod +w  \/var\/www\/html\/collabtive\/templates_c<\/pre>\n<h2>4. Create virtual host<\/h2>\n<p>Create a new virtual host directive in Apache. For example, create a new Apache configuration file named &#8216;collabtive.conf&#8217; on your virtual server:<\/p>\n<pre>touch \/etc\/apache2\/sites-available\/collabtive.conf<\/pre>\n<h2>5. Create a symbolic link<\/h2>\n<pre>ln -s \/etc\/apache2\/sites-available\/collabtive.conf \/etc\/apache2\/sites-enabled\/collabtive.conf<\/pre>\n<p>Or, use the a2ensite to enable the &#8216;collabtive.conf&#8217; configuration in Apache:<\/p>\n<pre>sudo a2ensite collabtive.conf<\/pre>\n<h2>6. Configure\u00a0collabtive.conf file<\/h2>\n<p>Edit the &#8216;collabtive.conf&#8217; Apache configuration file:<\/p>\n<pre>vi \/etc\/apache2\/sites-available\/collabtive.conf<\/pre>\n<p>add the following lines:<\/p>\n<p>&lt;VirtualHost *:80&gt;<br \/>\nServerAdmin admin@your-domain.com<br \/>\nDocumentRoot \/var\/www\/html\/collabtive\/<br \/>\nServerName your-domain.com<br \/>\nServerAlias www.your-domain.com<br \/>\n&lt;Directory \/var\/www\/html\/collabtive\/&gt;<br \/>\nOptions FollowSymLinks<br \/>\nAllowOverride All<br \/>\n&lt;\/Directory&gt;<br \/>\nErrorLog \/var\/log\/apache2\/your-domain.com-error_log<br \/>\nCustomLog \/var\/log\/apache2\/your-domain.com-access_log common<br \/>\n&lt;\/VirtualHost&gt;<\/p>\n<h2>7. Restart Apache web server<\/h2>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>service apache2 restart<\/pre>\n<h2>8. Create new database and assign user with permissions<\/h2>\n<p>Create a new MySQL database for Collabtive to use and assign a user to it with full permissions:<\/p>\n<pre>mysql -u root -p\r\nmysql&gt; CREATE DATABASE collabtivedb;\r\nmysql&gt; GRANT ALL PRIVILEGES ON collabtivedb.* TO 'collabtiveuser'@'localhost' IDENTIFIED BY 'your-password' WITH GRANT OPTION;\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; quit<\/pre>\n<h2>9. Continue with the installation via web installer<\/h2>\n<p>Open your favorite web browser and navigate to http:\/\/your-domain.com\/install.php page. Once you do that, you will be taken to the first page of the Collabtive web installer. Choose the installer language, check if all of the system requirements are met, select MySQL as database driver, set MySQL database host, database name, database username and database password, then click to pursue the installation. On the next page, create an administrator user and set its password.<\/p>\n<p>For security reason, it is recommended to delete &#8216;install.php&#8217; and &#8216;update.php&#8217; files from the server:<\/p>\n<pre>rm \/var\/www\/html\/collabtive\/install.php\r\nrm \/var\/www\/html\/collabtive\/update.php<\/pre>\n<p>That is it. The Collabtive installation is now complete.<\/p>\n<p>Log in to the Administrator back-end area at http:\/\/your-domain.com to configure Collabtive according to your needs, extend the functionality of your installation with plugins etc.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-343\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/installing-Collabtive-3.1-on-Ubuntu-16.04.png\" alt=\"installing Collabtive 3.1 on Ubuntu 16.04\" width=\"644\" height=\"401\" \/><\/p>\n<p>Of course you don&#8217;t have to install Collabtive 3.1 on Ubuntu 16.04, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\/outsourced-hosting-support.html\">Linux server support services,<\/a> in which case you can simply ask our expert Linux admins to install Collabtive 3.1 on Ubuntu 16.04,\u00a0for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post, on how to install Collabtive 3.1 on Ubuntu 16.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><div id=\"linux-2973100627\" 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>In this tutorial, we will show how to install Collabtive 3.1 on Ubuntu 16.04. Collabtive is an open source web-based project management software written in PHP, that let you keep track of your projects. The main features of Collabtive are: task lists, milestones, time tracking, messaging \/ instant messaging, file management, role-based user permissions, reporting, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":342,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[73,56,79,20],"class_list":["post-340","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-collabtive-3-1","tag-how-to","tag-linux-host-support","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 Collabtive 3.1 on Ubuntu 16.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will show how to install Collabtive 3.1 on Ubuntu 16.04. Collabtive is an open source web-based project management 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:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-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 Collabtive 3.1 on Ubuntu 16.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will show how to install Collabtive 3.1 on Ubuntu 16.04. Collabtive is an open source web-based project management software written\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-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=\"2018-01-10T08:25:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-02T16:52:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\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=\"4 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-collabtive-3-1-on-ubuntu-16-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to install Collabtive 3.1 on Ubuntu 16.04\",\"datePublished\":\"2018-01-10T08:25:39+00:00\",\"dateModified\":\"2020-08-02T16:52:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/\"},\"wordCount\":603,\"commentCount\":5,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.jpg\",\"keywords\":[\"Collabtive 3.1\",\"how to\",\"Linux host support\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/\",\"name\":\"How to install Collabtive 3.1 on Ubuntu 16.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.jpg\",\"datePublished\":\"2018-01-10T08:25:39+00:00\",\"dateModified\":\"2020-08-02T16:52:01+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this tutorial, we will show how to install Collabtive 3.1 on Ubuntu 16.04. Collabtive is an open source web-based project management software written\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.jpg\",\"width\":1200,\"height\":600,\"caption\":\"How to install Collabtive 3.1 on Ubuntu 16.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-collabtive-3-1-on-ubuntu-16-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Collabtive 3.1 on Ubuntu 16.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 Collabtive 3.1 on Ubuntu 16.04 | LinuxHostSupport","description":"In this tutorial, we will show how to install Collabtive 3.1 on Ubuntu 16.04. Collabtive is an open source web-based project management 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:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How to install Collabtive 3.1 on Ubuntu 16.04 | LinuxHostSupport","og_description":"In this tutorial, we will show how to install Collabtive 3.1 on Ubuntu 16.04. Collabtive is an open source web-based project management software written","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-01-10T08:25:39+00:00","article_modified_time":"2020-08-02T16:52:01+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to install Collabtive 3.1 on Ubuntu 16.04","datePublished":"2018-01-10T08:25:39+00:00","dateModified":"2020-08-02T16:52:01+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/"},"wordCount":603,"commentCount":5,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.jpg","keywords":["Collabtive 3.1","how to","Linux host support","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/","name":"How to install Collabtive 3.1 on Ubuntu 16.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.jpg","datePublished":"2018-01-10T08:25:39+00:00","dateModified":"2020-08-02T16:52:01+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this tutorial, we will show how to install Collabtive 3.1 on Ubuntu 16.04. Collabtive is an open source web-based project management software written","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-install-Collabtive-3.1-on-Ubuntu-16.04.jpg","width":1200,"height":600,"caption":"How to install Collabtive 3.1 on Ubuntu 16.04"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-collabtive-3-1-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Collabtive 3.1 on Ubuntu 16.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\/340","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=340"}],"version-history":[{"count":4,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/340\/revisions"}],"predecessor-version":[{"id":1234,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/340\/revisions\/1234"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/342"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=340"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=340"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}