{"id":191,"date":"2011-09-19T11:57:00","date_gmt":"2011-09-19T11:57:00","guid":{"rendered":"http:\/\/pheonixsolutions.com\/?p=191"},"modified":"2026-04-27T16:40:24","modified_gmt":"2026-04-27T11:10:24","slug":"downgrade-php-5-3-to-5-2-in-centos-6","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/","title":{"rendered":"Downgrade PHP 5.3 to 5.2 in centos 6"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<br><\/h2>\n\n\n\n<p>PHP is a widely used server-side scripting language for building dynamic web applications. On older systems such as CentOS 6, different PHP versions may be required for legacy applications to function correctly. While PHP 5.3 introduced several improvements over PHP 5.2, some older web applications are not compatible with PHP 5.3 due to deprecated functions or syntax changes.<\/p>\n\n\n\n<p>In such cases, administrators may need to downgrade PHP from version 5.3 to 5.2 to maintain application compatibility. However, this process must be handled carefully because both CentOS 6 and these PHP versions are end-of-life (EOL) and no longer receive security updates.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before proceeding with the downgrade, ensure the following requirements are met:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You must have root privileges or sudo access to the server.<\/li>\n\n\n\n<li>Backup of Server and Applications<\/li>\n\n\n\n<li>Current PHP Version Check<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">IMPLEMENTATION<\/h2>\n\n\n<p>CentOS 6 is the latest release of centOS organization. The centos 6 normally comes with php 5.3. There are some issues with php 5.3 in the centOS 6. Some of us like to downgrade the centOS PHP version from 5.3 to 5.2. You can do the following procedures to downgrade the php version to 5.2.<\/p>\n<p><strong>1. Take the copy of the previous installed rpm to any one of the folder.<\/strong><\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8211;<br \/>[root@cronline ~]# rpm -qa|grep php &gt;&gt;\/root\/php_modules\/php_module.txt<br \/>[root@cronline ~]# cat \/root\/php_modules\/php_module.txt<br \/>php-mysql-5.3.2-6.el6_0.1.x86_64<br \/>php-pear-1.9.0-2.el6.noarch<br \/>php-cli-5.3.2-6.el6_0.1.x86_64<br \/>php-pdo-5.3.2-6.el6_0.1.x86_64<br \/>php-pecl-memcache-3.0.4-3.2.el6.2.x86_64<br \/>php-5.3.2-6.el6_0.1.x86_64<br \/>php-devel-5.3.2-6.el6_0.1.x86_64<br \/>php-imap-5.3.2-6.el6_0.1.x86_64<br \/>php-common-5.3.2-6.el6_0.1.x86_64<br \/>[root@cronline ~]#<br \/>&#8212;&#8212;&#8212;&#8212;&#8211;<\/p>\n<p><strong>2. Remove the existing PHP 5.3 RPM in the server.<\/strong><\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>[root@cronline ~]# rpm -e &#8211;nodeps php-pecl-memcache-3.0.4-3.2.el6.2.x86_64 php-5.3.2-6.el6_0.1.x86_64 php-devel-5.3.2-6.el6_0.1.x86_64 php-imap-5.3.2-6.el6_0.1.x86_64 php-common-5.3.2-6.el6_0.1.x86_64<br \/>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<\/p>\n<p><strong>3. Download the corresponding PHP 5.2 version from the &#8220;http:\/\/www6.atomicorp.com\/&#8221; webiste.<\/strong><\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br \/>[root@cronline ~]# wget http:\/\/www6.atomicorp.com\/channels\/atomic\/centos\/6\/x86_64\/RPMS\/php-mysql-5.2.17-1.el6.art.x86_64.rpm<br \/>[root@cronline ~]# wget http:\/\/www6.atomicorp.com\/channels\/atomic\/centos\/6\/x86_64\/RPMS\/php-cli-5.2.17-1.el6.art.x86_64.rpm<br \/>[root@cronline ~]# wget http:\/\/www6.atomicorp.com\/channels\/atomic\/centos\/6\/x86_64\/RPMS\/php-pdo-5.2.17-1.el6.art.x86_64.rpm<br \/>[root@cronline ~]# wget http:\/\/www6.atomicorp.com\/channels\/atomic\/centos\/6\/x86_64\/RPMS\/php-5.2.17-1.el6.art.x86_64.rpm<br \/>[root@cronline ~]# wget http:\/\/www6.atomicorp.com\/channels\/atomic\/centos\/6\/x86_64\/RPMS\/php-devel-5.2.17-1.el6.art.x86_64.rpm<br \/>[root@cronline ~]# wget http:\/\/www6.atomicorp.com\/channels\/atomic\/centos\/6\/x86_64\/RPMS\/php-imap-5.2.17-1.el6.art.x86_64.rpm<br \/>[root@cronline ~]# wget http:\/\/www6.atomicorp.com\/channels\/atomic\/centos\/6\/x86_64\/RPMS\/php-common-5.2.17-1.el6.art.x86_64.rpm<br \/>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<\/p>\n<p><strong>4. Install the downloaded PHP 5.2 RPM .<\/strong><\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br \/>[root@cronline ~]# rpm -ivh &#8211;nodeps php-devel-5.2.17-1.el6.art.x86_64.rpm php-pdo-5.2.17-1.el6.art.x86_64.rpm php-cli-5.2.17-1.el6.art.x86_64.rpm php-mysql-5.2.17-1.el6.art.x86_64.rpm php-imap-5.2.17-1.el6.art.x86_64.rpm php-common-5.2.17-1.el6.art.x86_64.rpm<br \/>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<\/p>\n<p><strong>5. Finally restart the webserver.<\/strong><\/p>\n<p>&#8212;&#8212;&#8212;&#8212;-<br \/>[root@cronline ~]#\/etc\/init.d\/httpd restart<br \/>Stopping httpd: [ OK ]<br \/>Startinging httpd: [ OK ]<br \/>&#8212;&#8212;&#8212;&#8212;-<\/p>\n<p>6. The next important think is to exclude the php in yum.conf. If you are not excluding this line PHP will be upgraded if we enter yum update command in the server.<\/p>\n<hr \/>\n<h3>Conclusion<\/h3>\n<p data-start=\"1823\" data-end=\"2119\">Downgrading PHP from 5.3 to 5.2 on CentOS 6 is primarily required for legacy application compatibility. However, this process is not recommended for production environments due to the outdated and unsupported nature of both PHP 5.2 and CentOS 6, which exposes systems to security vulnerabilities.<\/p>\n<p data-start=\"2121\" data-end=\"2361\">Instead, it is advisable to upgrade applications to support newer PHP versions whenever possible. If downgrading is unavoidable, it should be performed in a controlled environment with proper backups and testing to avoid service disruption.<\/p>","protected":false},"excerpt":{"rendered":"<p>Introduction PHP is a widely used server-side scripting language for building dynamic web applications. On older systems such as CentOS 6, different PHP versions may be required for legacy applications to function correctly. While PHP 5.3 introduced several improvements over PHP 5.2, some older web applications are not compatible with&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Downgrade PHP 5.3 to 5.2 in centos 6<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-191","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>downgrade php 5.3 to 5.2 centos 6 | downgrade php<\/title>\n<meta name=\"description\" content=\"The centos 6 normally comes with php 5.3. There are some issues with php 5.3 in the centos6. Downgrade centOS 6 PHP version from 5.3 to 5.2.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"downgrade php 5.3 to 5.2 centos 6 | downgrade php\" \/>\n<meta property=\"og:description\" content=\"The centos 6 normally comes with php 5.3. There are some issues with php 5.3 in the centos6. Downgrade centOS 6 PHP version from 5.3 to 5.2.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2011-09-19T11:57:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-27T11:10:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\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:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/downgrade-php-5-3-to-5-2-in-centos-6\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/downgrade-php-5-3-to-5-2-in-centos-6\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Downgrade PHP 5.3 to 5.2 in centos 6\",\"datePublished\":\"2011-09-19T11:57:00+00:00\",\"dateModified\":\"2026-04-27T11:10:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/downgrade-php-5-3-to-5-2-in-centos-6\\\/\"},\"wordCount\":601,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/downgrade-php-5-3-to-5-2-in-centos-6\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/downgrade-php-5-3-to-5-2-in-centos-6\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/downgrade-php-5-3-to-5-2-in-centos-6\\\/\",\"name\":\"downgrade php 5.3 to 5.2 centos 6 | downgrade php\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2011-09-19T11:57:00+00:00\",\"dateModified\":\"2026-04-27T11:10:24+00:00\",\"description\":\"The centos 6 normally comes with php 5.3. There are some issues with php 5.3 in the centos6. Downgrade centOS 6 PHP version from 5.3 to 5.2.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/downgrade-php-5-3-to-5-2-in-centos-6\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/downgrade-php-5-3-to-5-2-in-centos-6\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/downgrade-php-5-3-to-5-2-in-centos-6\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Downgrade PHP 5.3 to 5.2 in centos 6\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"downgrade php 5.3 to 5.2 centos 6 | downgrade php","description":"The centos 6 normally comes with php 5.3. There are some issues with php 5.3 in the centos6. Downgrade centOS 6 PHP version from 5.3 to 5.2.","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:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/","og_locale":"en_US","og_type":"article","og_title":"downgrade php 5.3 to 5.2 centos 6 | downgrade php","og_description":"The centos 6 normally comes with php 5.3. There are some issues with php 5.3 in the centos6. Downgrade centOS 6 PHP version from 5.3 to 5.2.","og_url":"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2011-09-19T11:57:00+00:00","article_modified_time":"2026-04-27T11:10:24+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Downgrade PHP 5.3 to 5.2 in centos 6","datePublished":"2011-09-19T11:57:00+00:00","dateModified":"2026-04-27T11:10:24+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/"},"wordCount":601,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/","url":"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/","name":"downgrade php 5.3 to 5.2 centos 6 | downgrade php","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2011-09-19T11:57:00+00:00","dateModified":"2026-04-27T11:10:24+00:00","description":"The centos 6 normally comes with php 5.3. There are some issues with php 5.3 in the centos6. Downgrade centOS 6 PHP version from 5.3 to 5.2.","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/downgrade-php-5-3-to-5-2-in-centos-6\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Downgrade PHP 5.3 to 5.2 in centos 6"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-35","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/191","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=191"}],"version-history":[{"count":2,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/191\/revisions"}],"predecessor-version":[{"id":10051,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/191\/revisions\/10051"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=191"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=191"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=191"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}