{"id":19067,"date":"2016-04-27T08:02:33","date_gmt":"2016-04-27T13:02:33","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=19067"},"modified":"2022-06-03T03:43:37","modified_gmt":"2022-06-03T08:43:37","slug":"install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","title":{"rendered":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft wp-image-19068 size-full\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png\" alt=\"prosper202\" width=\"225\" height=\"200\" \/>In this tutorial we are going to show you how to install Prosper202. Made by Tracking202, Prosper202 is a self-hosted application that lets you track and optimize all your marketing campaigns. It&#8217;s open source and easy to install on a<a href=\"https:\/\/www.rosehosting.com\/\"> Linux VPS<\/a>. Follow the steps below to <strong>install Prosper202 on Ubuntu 14.04<\/strong>.<\/p>\n<p><!--more--><\/p>\n<p>The following are the minimum system requirements for Prosper202:<\/p>\n<p>&#8211; PHP version 5.4 or greater.<br \/>\n&#8211; MySQL version 5.6 or greater.<br \/>\n&#8211; MySQLi extension enabled in PHP<\/p>\n<p>Go ahead and <a href=\"https:\/\/www.rosehosting.com\/blog\/connect-to-your-linux-vps-via-ssh\/\">connect to your server via SSH<\/a>. The first thing you need to do is to upgrade all your system software to the latest version available: Run the following command:<\/p>\n<pre># apt-get update &amp;&amp; apt-get -y upgrade<\/pre>\n<p>We are going to use Nginx as a web server in this tutorial. Once the update process is completed you can <strong>install Nginx<\/strong> on your <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\">Ubuntu VPS<\/a> using the following command:<\/p>\n<pre># apt-get install nginx<\/pre>\n<p>Start Nginx and enable it on system boot:<\/p>\n<pre># service nginx start\r\n# update-rc.d nginx enable<\/pre>\n<p>The next thing you need to do is to<strong> install MySQL 5.6<\/strong> on your server. Use the following command:<\/p>\n<pre># apt-get install mysql-server-5.6 mysql-client-5.6<\/pre>\n<p>Proceed with the MySQL secure installation:<\/p>\n<pre># mysql_secure_installation<\/pre>\n<p>Follow the on-screen messages to configure MySQL:<\/p>\n<pre>Enter current password for root (enter for none):\r\nOK, successfully used password, moving on...\r\n\r\nSet root password? [Y\/n] y\r\nNew password:\r\nRe-enter new password:\r\nPassword updated successfully!\r\nReloading privilege tables..\r\n ... Success!\r\n\r\nRemove anonymous users? [Y\/n] y\r\n ... Success!\r\n\r\nDisallow root login remotely? [Y\/n] y\r\n ... Success!\r\n\r\nRemove test database and access to it? [Y\/n] y\r\n - Dropping test database...\r\nERROR 1008 (HY000) at line 1: Can't drop database 'test'; database doesn't exist\r\n ... Failed!  Not critical, keep moving...\r\n - Removing privileges on test database...\r\n ... Success!\r\n\r\nReload privilege tables now? [Y\/n] y\r\n ... Success!<\/pre>\n<p>Start the MySQL service and enable it on system boot:<\/p>\n<pre># service mysql start\r\n# update-rc.d mysql enable<\/pre>\n<p>If you have MySQL server already installed on your server, you can check its version using the following command:<\/p>\n<pre># mysql --version<\/pre>\n<p>You should see something like the following on your screen:<\/p>\n<pre># mysql --version\r\nmysql  Ver 14.14 Distrib 5.6.28, for debian-linux-gnu (x86_64) using  EditLine wrapper\r\n<\/pre>\n<p>The next component that needs to be installed is PHP-FPM. <strong>Install PHP-FPM<\/strong> using the command below:<\/p>\n<pre># apt-get install php5-fpm php5-mysql<\/pre>\n<p>Create a directory for Prosper202:<\/p>\n<pre># mkdir \/var\/www\/prosper202<\/pre>\n<p>Now, download the latest release of Prosper202 from http:\/\/prosper.tracking202.com\/download and unzip the downloaded file in the &#8216;\/var\/www\/prosper202\/&#8217; directory on your server. Or, use the following command to download and unzip the Prosper202 installation in the &#8216;\/var\/www\/prosper202\/&#8217; directory:<\/p>\n<pre># cd \/var\/www\/prosper202\/ &amp;&amp; wget http:\/\/my.tracking202.com\/clickserver\/download\/latest &amp;&amp; unzip latest<\/pre>\n<p>Once you do that, change the ownership of the files:<\/p>\n<pre># chown www-data: -R \/var\/www\/prosper202<\/pre>\n<p>Create an Nginx configuration file for Prosper202:<\/p>\n<pre>nano \/etc\/nginx\/sites-available\/yourdomain.com<\/pre>\n<p>Enter the following content:<\/p>\n<pre>server {\r\n    #listen   80; ## listen for ipv4; this line is default and implied\r\n    #listen   [::]:80 default ipv6only=on; ## listen for ipv6\r\n\r\n    root \/var\/www\/prosper202;\r\n    index index.php index.html;\r\n\r\n    # Make site accessible from http:\/\/localhost\/\r\n    server_name www.yourdomain.com yourdomain.com;\r\n\r\n    location \/ {\r\n        # First attempt to serve request as file, then\r\n        # as directory, then fall back to index.html\r\n        try_files $uri $uri\/ \/index.html;\r\n    }\r\n\r\n    error_page 404 \/404.html;\r\n\r\n    # redirect server error pages to the static page \/50x.html\r\n    error_page 500 502 503 504 \/50x.html;\r\n    location = \/50x.html {\r\n        root \/usr\/share\/nginx\/www;\r\n    }\r\n\r\n    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000\r\n    location ~ \\.php$ {\r\n        fastcgi_split_path_info ^(.+\\.php)(\/.+)$;\r\n        # NOTE: You should have \"cgi.fix_pathinfo = 0;\" in php.ini\r\n\r\n        # With php5-cgi alone:\r\n        # fastcgi_pass 127.0.0.1:9000;\r\n        # With php5-fpm:\r\n        fastcgi_pass unix:\/var\/run\/php5-fpm.sock;\r\n        fastcgi_index index.php;\r\n        include fastcgi_params;\r\n    }\r\n}<\/pre>\n<p>Make sure that you replace yourdomain.com with your actual domain name.<br \/>\nEnable the configuration and restart the Nginx service:<\/p>\n<pre># ln -s \/etc\/nginx\/sites-available\/yourdomain.com \/etc\/nginx\/sites-enabled\/yourdomain.com\r\n# service nginx restart<\/pre>\n<p>Since Prosper202 stores its data into a MySQL database, you need to create a database for it. Log into MySQL as root:<\/p>\n<pre># mysql -u root -p<\/pre>\n<p>Create a new database for Prosper202, a database user and set up a password using the commands below:<\/p>\n<pre>mysql&gt; CREATE DATABASE prosper202DB;\r\nmysql&gt; GRANT ALL PRIVILEGES ON prosper202DB.* TO 'prosper202'@'localhost' IDENTIFIED BY 'YoUrPaSsWoRd';\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; \\q\r\n<\/pre>\n<p>The final step is to open your favorite web browser and enter your domain name into the search bar. You should follow the on-screen instructions to complete the Prosper202 installation.<\/p>\n<hr \/>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\">Linux VPS hosting <\/a>services, in which case you can simply ask our expert Linux admins to install Prosper202 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p>PS. 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 show you how to install Prosper202. Made by Tracking202, Prosper202 is a self-hosted &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#more-19067\" aria-label=\"Read more about Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":19068,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702,13,1698,1712,1707],"tags":[39,49,51,1222,601],"class_list":["post-19067","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","category-tutorials","category-ubuntu","category-web-frameworks","category-web-servers","tag-mysql","tag-nginx","tag-php-fpm","tag-prosper202","tag-ubuntu-14-04","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.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Install Prosper202 on a Ubuntu VPS<\/title>\n<meta name=\"description\" content=\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu | 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\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu\" \/>\n<meta property=\"og:description\" content=\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/\" \/>\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=\"2016-04-27T13:02:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:43:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png\" \/>\n\t<meta property=\"og:image:width\" content=\"225\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\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\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu\",\"datePublished\":\"2016-04-27T13:02:33+00:00\",\"dateModified\":\"2022-06-03T08:43:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/\"},\"wordCount\":481,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/04\\\/prosper202.png\",\"keywords\":[\"mysql\",\"nginx\",\"php-fpm\",\"prosper202\",\"ubuntu 14.04\"],\"articleSection\":[\"Databases\",\"Tutorials\",\"Ubuntu\",\"Web Frameworks\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/\",\"name\":\"How To Install Prosper202 on a Ubuntu VPS\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/04\\\/prosper202.png\",\"datePublished\":\"2016-04-27T13:02:33+00:00\",\"dateModified\":\"2022-06-03T08:43:37+00:00\",\"description\":\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/04\\\/prosper202.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/04\\\/prosper202.png\",\"width\":225,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu\"}]},{\"@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 Prosper202 on a Ubuntu VPS","description":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu | 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\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu","og_description":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-04-27T13:02:33+00:00","article_modified_time":"2022-06-03T08:43:37+00:00","og_image":[{"width":225,"height":200,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.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\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu","datePublished":"2016-04-27T13:02:33+00:00","dateModified":"2022-06-03T08:43:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/"},"wordCount":481,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png","keywords":["mysql","nginx","php-fpm","prosper202","ubuntu 14.04"],"articleSection":["Databases","Tutorials","Ubuntu","Web Frameworks","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","url":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","name":"How To Install Prosper202 on a Ubuntu VPS","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png","datePublished":"2016-04-27T13:02:33+00:00","dateModified":"2022-06-03T08:43:37+00:00","description":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png","width":225,"height":200},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu"}]},{"@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\/19067","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=19067"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19067\/revisions"}],"predecessor-version":[{"id":41978,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19067\/revisions\/41978"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/19068"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=19067"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=19067"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=19067"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}