{"id":17452,"date":"2015-10-03T13:17:07","date_gmt":"2015-10-03T18:17:07","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17452"},"modified":"2022-12-08T08:57:31","modified_gmt":"2022-12-08T14:57:31","slug":"how-to-install-boonex-dolphin-7-on-an-ubuntu-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/","title":{"rendered":"How to Install Boonex Dolphin 7 on an Ubuntu VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft size-full wp-image-17460\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps.png\" alt=\"boonex dolphin vps\" width=\"160\" height=\"60\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps.png 160w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps-50x19.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps-75x28.png 75w\" sizes=\"(max-width: 160px) 100vw, 160px\" \/>In this tutorial we are going to provide you with step-by-step instructions on <strong>how to install Boonex\u00a0Dolphin 7 on an <a title=\"Ubuntu VPS\" href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu VPS<\/a><\/strong>.<br \/>\nBoonex Dolphin is a popular social networking platform used by many webmasters. It allows them to build easy to use community and social media oriented websites.<br \/>\n<!--more--><br \/>\nThis install guide assumes that Apache, MySQL, PHP and a fully functional mail server are already installed and configured on your server. At the time of this writing, the latest version of Dolphin is 7.1.6 and it requires:<\/p>\n<ul>\n<li>PHP &gt;= 5.3.0 (PHP 5.5 or later is recommended) with the following PHP extensions enabled: curl, fileinfo, ftp, GD Graphics Library version 2.0.x+ compiled with FreeType\u00a0fonts (or ImageMagick), JSON, mbstring, mysql, \u00a0openssl, xsl and zip.<\/li>\n<li>Apache Web Server &gt;= 2.0 compiled with mod_rewrite module<\/li>\n<li>A mail server for sending emails (Sendmail, Postfix etc.)<\/li>\n<li>MySQL &gt;= 4.1.2 installed on your <a href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux virtual server<\/a>\u00a0(MySQL 5.5 or later is recommended)<\/li>\n<li>Java 1.6 or higher (some of Dolphin&#8217;s features require media streaming capabilities)<\/li>\n<li>Ability to create \u200bcron-jobs and execute files.<\/li>\n<\/ul>\n<p>Download the latest version of Dolphin available at \u2018http:\/\/www.boonex.com\/downloads?product=Dolphin-v.7.1\u2019 to the server and extract it using the following commands:<\/p>\n<pre>cd \/opt\r\nwget http:\/\/get.boonex.com\/Dolphin-v.7.1 -O dolphin-v.7.1.6.zip\r\nunzip dolphin-v.7.1.6.zip<\/pre>\n<p>Move the unpacked Dolphin files to the document root of your website:<\/p>\n<pre>mv Dolphin-v.7.1.6 \/var\/www\/html\/dolphin<\/pre>\n<p>Set the proper file permissions for the Apache web server to write to certain files and directories:<\/p>\n<pre>chown www-data:www-data -R \/var\/www\/html\/dolphin<\/pre>\n<p>Also, run the following command to make the &#8216;ffmpeg.exe&#8217; file executable:<\/p>\n<pre>chmod 755 \/var\/www\/html\/dolphin\/flash\/modules\/global\/app\/ffmpeg.exe<\/pre>\n<p>Install Java and\u00a0ImageMagick:<\/p>\n<pre>apt-get install openjdk-7-jdk\r\napt-get install ImageMagick<\/pre>\n<p>Create a new database for Dolphin and assign a MySQL user with privileges for accessing and modifying the Dolphin database:<\/p>\n<pre>mysql -u root -p\r\nmysql&gt; CREATE DATABASE dolphindb;\r\nmysql&gt; GRANT ALL PRIVILEGES ON dolphindb.* TO 'dolphinuser'@'localhost' IDENTIFIED BY 'your-password' WITH GRANT OPTION;\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; quit<\/pre>\n<p>Create a new virtual host directive in Apache. For example, create a new Apache configuration file named \u2018dolphin.conf\u2019 on your virtual server:<\/p>\n<pre>touch \/etc\/apache2\/sites-available\/dolphin.conf\r\nln -s \/etc\/apache2\/sites-available\/dolphin.conf \/etc\/apache2\/sites-enabled\/dolphin.conf\r\nvi \/etc\/apache2\/sites-available\/dolphin.conf<\/pre>\n<p>then, add the following lines to it:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerAdmin admin@yourdomain.com\r\nDocumentRoot \/var\/www\/html\/dolphin\/\r\nServerName your-domain.com\r\nServerAlias www.your-domain.com\r\n&lt;Directory \/var\/www\/html\/dolphin\/&gt;\r\nOptions FollowSymLinks\r\nAllowOverride All\r\n&lt;\/Directory&gt;\r\nErrorLog \/var\/log\/apache2\/your-domain.com-error_log\r\nCustomLog \/var\/log\/apache2\/your-domain.com-access_log common\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p>Edit the php.ini configuration file and add\/modify the following lines:<\/p>\n<pre>vi \/etc\/php5\/apache2\/php.ini<\/pre>\n<pre>memory_limit = 128M \r\nfile_uploads = On\t\r\nallow_url_fopen = On\r\nallow_url_include = Off\r\nregister_globals = Off\t\r\nsafe_mode = Off\r\nshort_open_tag = On\r\nmagic_quotes_gpc = Off\t\r\ndefault_charset = \"UTF-8\"<\/pre>\n<p>Make sure that &#8216;exec&#8217; PHP function is allowed (i.e. it is not listed in disable_functions) and &#8216;open_basedir&#8217; is not set:<\/p>\n<pre>#php -i | grep -i disable_functions\r\ndisable_functions =&gt; no value =&gt; no value\r\n#php -i | grep -i open_basedir\r\nopen_basedir =&gt; no value =&gt; no value<\/pre>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>service apache2 restart<\/pre>\n<p>Open http:\/\/your-domain.com\/install\/index.php in\u00a0your favorite web browser and follow the easy instructions: Check if the file and directory permissions are set correctly, check the paths to website&#8217;s document root and scripts, enter 3306 as database host port number, then enter database name, database user and password, enter site title, site description and create a new administrator user.<br \/>\nTo keep your website secure, remove the write flag from the &#8216;inc&#8217; directory:<\/p>\n<pre>chmod -w \/var\/www\/html\/dolphin\/inc\/<\/pre>\n<p>Set a new cron job. For example, run the following command:<\/p>\n<pre>crontab -e<\/pre>\n<p>and add the following lines:<\/p>\n<pre>MAILTO=admin@emailaddress.com\r\n* * * * * cd \/var\/www\/html\/dolphin\/periodic; \/usr\/bin\/php -q cron.php<\/pre>\n<p>Do not forget to change \u2018admin@emailaddress.com\u2019 with your actual email address, then run:<\/p>\n<pre>service cron restart<\/pre>\n<p>After finishing the installation, it is recommended to delete all files and subdirectories from the install directory located to your Dolphin website document root as a security precaution, so run the following command:<\/p>\n<pre>rm -rf \/var\/www\/html\/dolphin\/install\/<\/pre>\n<p>That is it. The Dolphin installation is now complete. Proceed to the admin panel to configure Dolphin according to your needs, install additional modules etc.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-medium wp-image-17461\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-back-end-300x246.png\" alt=\"boonex dolphin back-end\" width=\"300\" height=\"246\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-back-end-300x246.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-back-end-1024x840.png 1024w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-back-end-122x100.png 122w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-back-end-50x41.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-back-end-75x62.png 75w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-back-end.png 1126w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><br \/>\nOf course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to <strong>install Boonex Dolphin<\/strong> for you. They are available 24\u00d77 and will take care of your request immediately.<br \/>\n<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>In this tutorial we are going to provide you with step-by-step instructions on how to install Boonex\u00a0Dolphin 7 on an &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Install Boonex Dolphin 7 on an Ubuntu VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/#more-17452\" aria-label=\"Read more about How to Install Boonex Dolphin 7 on an Ubuntu VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17460,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698,1712],"tags":[870,868,869],"class_list":["post-17452","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-ubuntu","category-web-frameworks","tag-install-boonex-dolphin-7","tag-install-boonex-dolphin-7-on-ubuntu","tag-install-dolphin-7-on-ubuntu","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Boonex Dolphin 7 on an Ubuntu VPS\" \/>\n<meta property=\"og:description\" content=\"How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2015-10-03T18:17:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-08T14:57:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"160\" \/>\n\t<meta property=\"og:image:height\" content=\"60\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install Boonex Dolphin 7 on an Ubuntu VPS\",\"datePublished\":\"2015-10-03T18:17:07+00:00\",\"dateModified\":\"2022-12-08T14:57:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/\"},\"wordCount\":586,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/boonex-dolphin-vps.png\",\"keywords\":[\"Install Boonex Dolphin 7\",\"Install Boonex Dolphin 7 on Ubuntu\",\"Install Dolphin 7 on Ubuntu\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\",\"Web Frameworks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/\",\"name\":\"How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/boonex-dolphin-vps.png\",\"datePublished\":\"2015-10-03T18:17:07+00:00\",\"dateModified\":\"2022-12-08T14:57:31+00:00\",\"description\":\"How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/boonex-dolphin-vps.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/boonex-dolphin-vps.png\",\"width\":160,\"height\":60,\"caption\":\"boonex dolphin vps\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Boonex Dolphin 7 on an Ubuntu VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting","description":"How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting","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.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Boonex Dolphin 7 on an Ubuntu VPS","og_description":"How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-10-03T18:17:07+00:00","article_modified_time":"2022-12-08T14:57:31+00:00","og_image":[{"width":160,"height":60,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install Boonex Dolphin 7 on an Ubuntu VPS","datePublished":"2015-10-03T18:17:07+00:00","dateModified":"2022-12-08T14:57:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/"},"wordCount":586,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps.png","keywords":["Install Boonex Dolphin 7","Install Boonex Dolphin 7 on Ubuntu","Install Dolphin 7 on Ubuntu"],"articleSection":["Tutorials","Ubuntu","Web Frameworks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/","name":"How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps.png","datePublished":"2015-10-03T18:17:07+00:00","dateModified":"2022-12-08T14:57:31+00:00","description":"How to Install Boonex Dolphin 7 on an Ubuntu VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/07\/boonex-dolphin-vps.png","width":160,"height":60,"caption":"boonex dolphin vps"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-boonex-dolphin-7-on-an-ubuntu-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Boonex Dolphin 7 on an Ubuntu VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17452","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=17452"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17452\/revisions"}],"predecessor-version":[{"id":43836,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17452\/revisions\/43836"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17460"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17452"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17452"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17452"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}