{"id":4568,"date":"2014-10-30T12:19:59","date_gmt":"2014-10-30T12:19:59","guid":{"rendered":"https:\/\/bodhost.com\/kb\/?p=4568"},"modified":"2026-02-26T14:04:31","modified_gmt":"2026-02-26T14:04:31","slug":"upgrading-to-php-5-5","status":"publish","type":"post","link":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/","title":{"rendered":"Upgrading to PHP 5.5"},"content":{"rendered":"\r\n<p class=\"wp-block-paragraph\">Today we will see how to upgrade PHP to the latest version. FYI, PHP 5.5.8 was released on 9<sup>th<\/sup> January 2014. Here, we will perform the operations on CentOS 6 and Debian 7 with the stable version of PHP 5.4.4. Version stable is the version that we find by default when we install PHP without changing the deposits anyway.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Attention, it is very important to take a full backup of the server or a snapshot if it is a virtual machine before performing the process of upgrade. Note: it is possible to quickly see the version of PHP installed on your machine through the following command line.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">php \u2013v<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">When you use the standard version, you will see the following type of result on the CentOS<\/p>\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"540\" height=\"97\" class=\"wp-image-4571\" src=\"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2014\/10\/php-suhosin-version.png\" alt=\"php-suhosin-version\" srcset=\"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2014\/10\/php-suhosin-version.png 540w, https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2014\/10\/php-suhosin-version-300x53.png 300w\" sizes=\"auto, (max-width: 540px) 100vw, 540px\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Through this command, you will clearly see which version is currently installed on the machine. However, make sure the PHP CLI package is installed. If it\u2019s not installed then you can install it via the command line. For example:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">sudo apt-get install php5-cli<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">It is necessary to have a CLI package because the PHP binary requires being included in your path. When you run php \u2013v command and get not output, then it\u2019s certain that it\u2019s not in your path.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">You can also check the path with \u201cecho $PATH\u201d. If the directory where the PHP binary is installed is not in your path, then you can set it with export; for example PATH=$PATH:\/path\/to\/php.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong>Uninstalling PHP<\/strong><\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">First, uninstall the current PHP version so it will not conflict with the newer version\u2019s packages. Note: you must save your precautionary configuration files in a directory. We will see now how to create that directory.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">mkdir \/root\/configphp\r\ncp -Rf \/etc\/php* \/root\/configphp\r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong>Then delete the version of PHP on your machine by using the below command in CentOS:<\/strong><\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">yum remove php php-cli php-common &amp;&amp; yum clean all<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong>To uninstall PHP under Debian:<\/strong><\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">apt-get remove --purge php5<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong>Download deposits<\/strong><\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Now download and install the latest version of deposit containers from PHP.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Download and process deposits under CentOS<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">Yum that is able to download and install via its deposits option<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">How to download Debian repositories<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Under Debian, include two lines of deposits which are simple URLs containing the deposits file (\/etc\/apt\/source.list)<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">echo \u201cdeb http:\/\/packages.dotdeb.org wheezy-php55 all\u201d &gt;&gt; \/etc\/apt\/source.list\r\necho \u201cdeb-src http:\/\/packages.dotdeb.org wheezy-php55 all\u201d &gt;&gt; \/etc\/apt\/source.list\r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Now download and then install the signing key deposit which avoids errors during installation and updates:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">wget http:\/\/www.dotdeb.org\/dotdeb.gpg\r\napt-key add dotdeb.gpg\r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">And now update the deposits in question:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">apt-get update<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong>Installing PHP 5.5.x<\/strong><\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">To install the PHP 5.5.8 packages, here is the command line in CentOS; we have moved here many extensions and modules that are not necessarily helpful, you can remove them from the command line if you don\u2019t need them as well:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">yum install \u2013y php55u php55u-soap php55u-process php55u-pear \\\r\nphp55u-mysql php55u-mcrypt php55u-mbstring php55u-gd php55u-devel php55u-json\r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">It will show you all the packages that will be installed and their version (5.5.8 in this case under CentOS):<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">And the command line in Debian, we moved many extensions and modules that are not necessarily helpful; you can remove them from the command line if you don\u2019t need them:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">apt-get install php5 php5-mysql php5-common php5-mcrypt php5-dev php5-gd<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">You can then ensure that the version of PHP is very good with the following command:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">php \u2013v<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">You must then restore the configuration (\/etc\/php.ini) because it was removed when uninstalling PHP. It is best not back up the old configuration but rather to rewrite the new configuration values that changed.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Finally, restart the web service Apache2 which is the service most used coupling with PHP for CentOS:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">service httpd restart<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong>For Debian:<\/strong><\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">service apache2 restart<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Note: Do a test on all types of web hosting services (CMS such as WordPress, Web Applications, Hand coded websites, etc\u2026) to make sure there is no shortage of PHP modules or particular extensions. And conversely, do not install unnecessary extensions as above indicated. So check the extensions used on your system before updating.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">And don\u2019t forget to check your logs when using web services after the update to see if any extensions are missing or if problems arise.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong>Remember, take a full backup before upgrading PHP versions.<\/strong><\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong>Incoming searches related to upgrading to php 5.5<\/strong><\/p>\r\n\r\n\r\n\r\n<ol class=\"wp-block-list\">\r\n<li>upgrade php 5.3 to 5.5 centos<\/li>\r\n\r\n\r\n\r\n<li>centos 6 upgrade php<\/li>\r\n\r\n\r\n\r\n<li>install php 5.5 centos<\/li>\r\n\r\n\r\n\r\n<li>debian upgrade php version<\/li>\r\n\r\n\r\n\r\n<li>upgrade php debian lenny<\/li>\r\n\r\n\r\n\r\n<li>linux upgrade php<\/li>\r\n\r\n\r\n\r\n<li>centos upgrade php<\/li>\r\n<\/ol>\r\n","protected":false},"excerpt":{"rendered":"<p>Today we will see how to upgrade PHP to the latest version. FYI, PHP 5.5.8 was released on 9th January 2014. Here, we will perform the operations on CentOS 6&hellip;<\/p>\n<p><a href=\"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/\" class=\"more-link\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[607,608,606],"class_list":["post-4568","post","type-post","status-publish","format-standard","hentry","category-dedicated-server-hosting","tag-centos-upgrade-php","tag-debian-upgrade-php","tag-linux-upgrade-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Step-by-Step Guide to Upgrading to PHP 5.5 | bodHOST<\/title>\n<meta name=\"description\" content=\"Upgrade to PHP 5.5 for improved security and performance. New features include password hashing API and optimized for each loop.\" \/>\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.bodhost.com\/kb\/upgrading-to-php-5-5\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Step-by-Step Guide to Upgrading to PHP 5.5 | bodHOST\" \/>\n<meta property=\"og:description\" content=\"Upgrade to PHP 5.5 for improved security and performance. New features include password hashing API and optimized for each loop.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - bodHOST\" \/>\n<meta property=\"article:published_time\" content=\"2014-10-30T12:19:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T14:04:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2014\/10\/php-suhosin-version.png\" \/>\n\t<meta property=\"og:image:width\" content=\"540\" \/>\n\t<meta property=\"og:image:height\" content=\"97\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter: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:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/c48414ad1536cea20e85282b0737a9f9\"},\"headline\":\"Upgrading to PHP 5.5\",\"datePublished\":\"2014-10-30T12:19:59+00:00\",\"dateModified\":\"2026-02-26T14:04:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/\"},\"wordCount\":649,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2014\\\/10\\\/php-suhosin-version.png\",\"keywords\":[\"centos upgrade php\",\"debian upgrade php\",\"linux upgrade php\"],\"articleSection\":[\"Dedicated Server Hosting\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/\",\"name\":\"Step-by-Step Guide to Upgrading to PHP 5.5 | bodHOST\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2014\\\/10\\\/php-suhosin-version.png\",\"datePublished\":\"2014-10-30T12:19:59+00:00\",\"dateModified\":\"2026-02-26T14:04:31+00:00\",\"description\":\"Upgrade to PHP 5.5 for improved security and performance. New features include password hashing API and optimized for each loop.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2014\\\/10\\\/php-suhosin-version.png\",\"contentUrl\":\"https:\\\/\\\/bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2014\\\/10\\\/php-suhosin-version.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/upgrading-to-php-5-5\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Dedicated Server Hosting\",\"item\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/category\\\/dedicated-server-hosting\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Upgrading to PHP 5.5\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"alternateName\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"width\":240,\"height\":240,\"caption\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/c48414ad1536cea20e85282b0737a9f9\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Step-by-Step Guide to Upgrading to PHP 5.5 | bodHOST","description":"Upgrade to PHP 5.5 for improved security and performance. New features include password hashing API and optimized for each loop.","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.bodhost.com\/kb\/upgrading-to-php-5-5\/","og_locale":"en_US","og_type":"article","og_title":"Step-by-Step Guide to Upgrading to PHP 5.5 | bodHOST","og_description":"Upgrade to PHP 5.5 for improved security and performance. New features include password hashing API and optimized for each loop.","og_url":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/","og_site_name":"Knowledge Base - bodHOST","article_published_time":"2014-10-30T12:19:59+00:00","article_modified_time":"2026-02-26T14:04:31+00:00","og_image":[{"width":540,"height":97,"url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2014\/10\/php-suhosin-version.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/#article","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/"},"author":{"name":"admin","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/c48414ad1536cea20e85282b0737a9f9"},"headline":"Upgrading to PHP 5.5","datePublished":"2014-10-30T12:19:59+00:00","dateModified":"2026-02-26T14:04:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/"},"wordCount":649,"publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/#primaryimage"},"thumbnailUrl":"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2014\/10\/php-suhosin-version.png","keywords":["centos upgrade php","debian upgrade php","linux upgrade php"],"articleSection":["Dedicated Server Hosting"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/","url":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/","name":"Step-by-Step Guide to Upgrading to PHP 5.5 | bodHOST","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/#primaryimage"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/#primaryimage"},"thumbnailUrl":"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2014\/10\/php-suhosin-version.png","datePublished":"2014-10-30T12:19:59+00:00","dateModified":"2026-02-26T14:04:31+00:00","description":"Upgrade to PHP 5.5 for improved security and performance. New features include password hashing API and optimized for each loop.","breadcrumb":{"@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/#primaryimage","url":"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2014\/10\/php-suhosin-version.png","contentUrl":"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2014\/10\/php-suhosin-version.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.bodhost.com\/kb\/upgrading-to-php-5-5\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Dedicated Server Hosting","item":"https:\/\/www.bodhost.com\/kb\/category\/dedicated-server-hosting\/"},{"@type":"ListItem","position":2,"name":"Upgrading to PHP 5.5"}]},{"@type":"WebSite","@id":"https:\/\/www.bodhost.com\/kb\/#website","url":"https:\/\/www.bodhost.com\/kb\/","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","description":"","publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"alternateName":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bodhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bodhost.com\/kb\/#organization","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","url":"https:\/\/www.bodhost.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","width":240,"height":240,"caption":"Web Hosting Knowledge Base | bodHOST Hosting FAQ"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/c48414ad1536cea20e85282b0737a9f9","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/www.bodhost.com\/kb\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/4568","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/comments?post=4568"}],"version-history":[{"count":21,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/4568\/revisions"}],"predecessor-version":[{"id":12185,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/4568\/revisions\/12185"}],"wp:attachment":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/media?parent=4568"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/categories?post=4568"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/tags?post=4568"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}