{"id":27996,"date":"2018-09-06T02:36:25","date_gmt":"2018-09-06T07:36:25","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=27996"},"modified":"2022-12-12T07:12:22","modified_gmt":"2022-12-12T13:12:22","slug":"how-to-install-php-7-2-on-debian-9","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/","title":{"rendered":"How to Install PHP 7.2 on Debian 9"},"content":{"rendered":"
<\/div>\r\n
\"How<\/figure>\r\n\r\n\r\n\r\n

We will show you how to install PHP 7.2 on a Linux server running Debian 9 as an operating system. PHP is a server-side scripting language commonly used for Web development, but it is also used as a general-purpose programming language. PHP powers WordPress<\/a>, the most popular content management system used for blogging and building websites as well as may other e-commerce websites, customer relationship management software, enterprise resource planning software and much more.<\/p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n

Why do you want to install PHP 7.2 on your Debian 9 VPS?<\/h3>\r\n\r\n\r\n\r\n

PHP 7 offers much better performances than PHP 5.6 and older PHP versions. Compared with PHP 5.6, PHP 7.2 could execute as much as three times more requests. If you have installed WordPress on your Linux VPS<\/a>, this means much lower server load, thus you should expect your website to run faster with PHP 7.2.<\/p>\r\n\r\n\r\n\r\n

In addition, PHP 7.2 offers some security improvements.<\/p>\r\n\r\n\r\n\r\n

There are some deprecations <\/a>though that you may want to check before you consider upgrading to PHP 7.2.<\/p>\r\n\r\n\r\n\r\n

Prerequisites<\/h3>\r\n\r\n\r\n\r\n

Before you start with the installation of PHP 7.2 on your Debian VPS<\/a>, make sure that you have full root access to it. Connect to the server via SSH<\/a> and upgrade all the system software to the latest version available. You can do this by running the following commands in the terminal:<\/p>\r\n\r\n\r\n\r\n

sudo apt-get update \r\nsudo apt-get upgrade<\/pre>\r\n\r\n\r\n\r\n

This will update the package index and will update the software currently installed on the server to the latest version.<\/p>\r\n\r\n\r\n\r\n

Once your system is fully up to date, you can proceed to the next step, which is installing PHP 7.2.<\/p>\r\n\r\n\r\n\r\n

Install PHP 7.2 on Debian 9 VPS<\/h3>\r\n\r\n\r\n\r\n

Import the signing key and enable the PPA for PHP 7.2 by using the following commands:<\/p>\r\n\r\n\r\n\r\n

wget -q https:\/\/packages.sury.org\/php\/apt.gpg -O- | sudo apt-key add -\r\necho \"deb https:\/\/packages.sury.org\/php\/ stretch main\" | sudo tee \/etc\/apt\/sources.list.d\/php.list<\/pre>\r\n\r\n\r\n\r\n

Once you are done with this, run the package index update once again using the command below:<\/p>\r\n\r\n\r\n\r\n

sudo apt-get update<\/pre>\r\n\r\n\r\n\r\n

In case you get an error like the one below:<\/p>\r\n\r\n\r\n\r\n

Reading package lists... Done\r\nE: The method driver \/usr\/lib\/apt\/methods\/https could not be found.\r\nN: Is the package apt-transport-https installed?\r\nE: Failed to fetch https:\/\/packages.sury.org\/php\/dists\/stretch\/InRelease\r\nE: Some index files failed to download. They have been ignored, or old ones used instead.\r\n<\/pre>\r\n\r\n\r\n\r\n

It means there are some missing packages that you need to install first. Install the required packages by running the following command:<\/p>\r\n\r\n\r\n\r\n

sudo apt-get install ca-certificates apt-transport-https<\/pre>\r\n\r\n\r\n\r\n

Then, run the update command again.<\/p>\r\n\r\n\r\n\r\n

Finally, install PHP 7.2 on your Debian 9 VPS<\/a> including some of the commonly used extensions using the command below:<\/p>\r\n\r\n\r\n\r\n

sudo apt-get install php7.2 php7.2-cli php7.2-common php7.2-opcache php7.2-curl php7.2-mbstring php7.2-mysql php7.2-zip php7.2-xml\r\n<\/pre>\r\n\r\n\r\n\r\n

To verify the installation is completed run the following command:<\/p>\r\n\r\n\r\n\r\n

php -v<\/pre>\r\n\r\n\r\n\r\n

The output should be very similar to the one below:<\/p>\r\n\r\n\r\n\r\n

# php -v\r\nPHP 7.2.9-1+0~20180901081133.4+stretch~1.gbpdaac35 (cli) (built: Sep  1 2018 08:11:34) ( NTS )\r\nCopyright (c) 1997-2018 The PHP Group\r\nZend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies\r\n    with Zend OPcache v7.2.9-1+0~20180901081133.4+stretch~1.gbpdaac35, Copyright (c) 1999-2018, by Zend Technologies\r\n<\/pre>\r\n\r\n\r\n\r\n

Change\/Customize PHP 7.2 settings on a Debian VPS<\/h3>\r\n\r\n\r\n\r\n

The next thing you may want to complete is to customize the PHP 7.2 settings to meet your requirements. You can do so by editing the php.ini<\/code> file. To find the path to this file, you can use the command below:<\/p>\r\n\r\n\r\n\r\n

php --ini | grep \"Loaded Configuration File\"<\/pre>\r\n\r\n\r\n\r\n

It will return the path to the php.ini<\/code> file which is currently loaded.<\/p>\r\n\r\n\r\n\r\n

# php --ini | grep \"Loaded Configuration File\"\r\nLoaded Configuration File:         \/etc\/php\/7.2\/cli\/php.ini<\/pre>\r\n\r\n\r\n\r\n

Edit the file using a text editor of your choice. We will use nano<\/code> in this example.<\/p>\r\n\r\n\r\n\r\n

nano \/etc\/php\/7.2\/cli\/php.ini<\/pre>\r\n\r\n\r\n\r\n

Once you change the settings, save and close the file. If you are using Apache<\/a> as a web server, you need to restart it for the new configuration to be loaded and for the changes to take effect. If you are using Nginx<\/a> and PHP-FPM, you should restart the PHP-FPM service.<\/p>\r\n\r\n\r\n\r\n

You can also create a sample info.php<\/code> and see if the PHP files and executed on the server.<\/p>\r\n\r\n\r\n\r\n

To create the file:<\/p>\r\n\r\n\r\n\r\n

nano \/var\/www\/html\/info.php<\/pre>\r\n\r\n\r\n\r\n

and paste the following:<\/p>\r\n\r\n\r\n\r\n

<?php phpinfo(); ?>\r\n<\/pre>\r\n\r\n\r\n\r\n

Save and close the file, then open your favorite web browser and access the file by using your server IP address in the URL followed by the name of the file.<\/p>\r\n\r\n\r\n\r\n

http:\/\/IP-ADDRESS\/info.php\r\n\r\nWith the completion of this tutorial you have learned how to install PHP 7.2 on your Debian 9 based server. \r\nFor the installation guide of PHP 7.2 on Ubuntu 16.04 please follow this tutorial on how to install PHP 7.2 on Ubuntu 16.04<\/a>.<\/pre>\r\n\r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\"install<\/figure><\/div>\r\n\r\n\r\n\r\n

Our fully managed PHP Hosting<\/a> is already installed with the latest release of PHP 7.2, so you don’t have to install it by yourself. If you need any other PHP version to be installed on your server, just let our system administrators know via live chat or support ticket, and it will be taken care of it immediately. They are available 24\/7. For more updates, you can also check our guide on How to Install PHP 7.3 on Debian 9<\/a>.<\/p>\r\n\r\n\r\n\r\n

PS. If you liked this post on how to install PHP 7.2 on Debian 9, please share it with your friends on the social networks or simply leave a reply below with your question or comment. Thanks.<\/p>\r\n","protected":false},"excerpt":{"rendered":"

We will show you how to install PHP 7.2 on a Linux server running Debian 9 as an operating system. … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":28014,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1700,13,1712],"tags":[48,1577,1625],"yoast_head":"\nHow to Install PHP 7.2 on Debian 9 | Rosehosting<\/title>\n<meta name=\"description\" content=\"In this tutorial, you will learn how to install PHP 7.2 on Debian 9, one step at a time. Set up and configure PHP on Debian easily.\" \/>\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-php-7-2-on-debian-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install PHP 7.2 on Debian 9 | Rosehosting\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, you will learn how to install PHP 7.2 on Debian 9, one step at a time. Set up and configure PHP on Debian easily.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/\" \/>\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=\"2018-09-06T07:36:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-12T13:12:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"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=\"5 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-php-7-2-on-debian-9\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install PHP 7.2 on Debian 9\",\"datePublished\":\"2018-09-06T07:36:25+00:00\",\"dateModified\":\"2022-12-12T13:12:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/\"},\"wordCount\":660,\"commentCount\":10,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg\",\"keywords\":[\"debian\",\"debian 9\",\"PHP 7.2\"],\"articleSection\":[\"Debian\",\"Tutorials\",\"Web Frameworks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/\",\"name\":\"How to Install PHP 7.2 on Debian 9 | Rosehosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg\",\"datePublished\":\"2018-09-06T07:36:25+00:00\",\"dateModified\":\"2022-12-12T13:12:22+00:00\",\"description\":\"In this tutorial, you will learn how to install PHP 7.2 on Debian 9, one step at a time. Set up and configure PHP on Debian easily.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg\",\"width\":742,\"height\":372,\"caption\":\"How to Install PHP 7.2 on Debian 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install PHP 7.2 on Debian 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"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\":\"required name=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\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?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 plugin. -->","yoast_head_json":{"title":"How to Install PHP 7.2 on Debian 9 | Rosehosting","description":"In this tutorial, you will learn how to install PHP 7.2 on Debian 9, one step at a time. Set up and configure PHP on Debian easily.","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-php-7-2-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install PHP 7.2 on Debian 9 | Rosehosting","og_description":"In this tutorial, you will learn how to install PHP 7.2 on Debian 9, one step at a time. Set up and configure PHP on Debian easily.","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-09-06T07:36:25+00:00","article_modified_time":"2022-12-12T13:12:22+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install PHP 7.2 on Debian 9","datePublished":"2018-09-06T07:36:25+00:00","dateModified":"2022-12-12T13:12:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/"},"wordCount":660,"commentCount":10,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg","keywords":["debian","debian 9","PHP 7.2"],"articleSection":["Debian","Tutorials","Web Frameworks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/","name":"How to Install PHP 7.2 on Debian 9 | Rosehosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg","datePublished":"2018-09-06T07:36:25+00:00","dateModified":"2022-12-12T13:12:22+00:00","description":"In this tutorial, you will learn how to install PHP 7.2 on Debian 9, one step at a time. Set up and configure PHP on Debian easily.","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-PHP-7.2-on-Debian-9.jpg","width":742,"height":372,"caption":"How to Install PHP 7.2 on Debian 9"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-php-7-2-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install PHP 7.2 on Debian 9"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","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":"required name=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\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?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\/27996"}],"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=27996"}],"version-history":[{"count":5,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27996\/revisions"}],"predecessor-version":[{"id":44147,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27996\/revisions\/44147"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/28014"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=27996"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=27996"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=27996"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}