{"id":1406,"date":"2017-05-03T22:29:58","date_gmt":"2017-05-03T16:59:58","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=1406"},"modified":"2017-05-03T22:32:17","modified_gmt":"2017-05-03T17:02:17","slug":"install-apache-php-fpm-ubuntu-16","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/","title":{"rendered":"Install Apache with php-fpm on Ubuntu 16"},"content":{"rendered":"<h3>Install Apache with php-fpm on Ubuntu 16<\/h3>\n<p><strong>Date Posted:03-05-2016<\/strong><\/p>\n<p>Php-fpm is a FastCGI Process Manager which is faster to serve php when compared to mod_php. In this post, we will explain on how to install Apache with php-fpm on Ubuntu 16 host.<\/p>\n<h4>Implementation:<\/h4>\n<p>Let&#8217;s Start with apache2 installation.<\/p>\n<p><code><\/code><code><\/code><code>apt-get install apache2<\/code><\/p>\n<p>By default, <em>ServerName <\/em> might not be added. We may get warning when we try to restart the apache. To fix the error, we will add ServerName to avoid warning. Open the file <em>\/etc\/apache2\/apache2.conf <\/em> and add the following line<\/p>\n<p><code>vi \/etc\/apache2\/apache2.conf<\/code><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">ServerName 127.0.0.1<\/pre>\n<p>If the server has hostname, we can add the same.<\/p>\n<p>Check for syntax error.<\/p>\n<p><code>apachectl -t<\/code><\/p>\n<p>Enable the service on reboot safe and start the apache service.<\/p>\n<p><code>systemctl enable apache2<\/code><\/p>\n<p><code>systemctl restart apache2<\/code><\/p>\n<h4>Install php-fpm on Ubuntu:<\/h4>\n<p>Install php and libapache2-mode-fastcgi.<\/p>\n<p><code>apt-get -y install libapache2-mod-fastcgi php7.0-fpm php7.0<\/code><\/p>\n<p>Enable the modules.<\/p>\n<p><code>a2enmod actions fastcgi alias<\/code><\/p>\n<p>Update the file\u00a0<em>\/etc\/apache2\/conf-enabled\/php7.0-fpm.conf<\/em><\/p>\n<p><code>vi\u00a0\/etc\/apache2\/conf-enabled\/php7.0-fpm.conf<\/code><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;IfModule mod_fastcgi.c&gt;\r\n                AddHandler php7-fcgi .php\r\n                Action php7-fcgi \/php7-fcgi\r\n                Alias \/php7-fcgi \/usr\/lib\/cgi-bin\/php7-fcgi\r\n                FastCgiExternalServer \/usr\/lib\/cgi-bin\/php7-fcgi -socket \/var\/run\/php\/php7.0-fpm.sock -idle-timeout 900 -pass-header Authorization\r\n                &lt;Directory \/usr\/lib\/cgi-bin&gt;\r\n                        Require all granted\r\n                &lt;\/Directory&gt;\r\n&lt;\/IfModule&gt;\r\n<\/pre>\n<p>We can add the same configuration on each virtual host if we dont want to specify globally. The above lines should be placed between\u00a0<em>&lt;virtualhost&gt; &lt;\/virtualhost&gt;.\u00a0<\/em>Default configuration will be\u00a0<em>\/etc\/apache2\/sites-enabled\/00-default.conf.<\/em><\/p>\n<p>Verify the syntax error on apache configurations<\/p>\n<p><code>apachectl -t<\/code><\/p>\n<p>Restart the apache service.<\/p>\n<p><code>systemctl restart apache2<\/code><\/p>\n<p>Restart php-fpm service for the changes into effect.<\/p>\n<p><code>systemctl restart php7.0-fpm<\/code><\/p>\n<p>Create a phpinfo page on the document root\u00a0<em>\/var\/www\/html\/phpinfo\u00a0<\/em>and check the page on info page.<\/p>\n<p><code>vi \/var\/www\/html\/info.php<\/code><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php\r\nphpinfo();\r\n?&gt;<\/pre>\n<p>Change the permission of the file<\/p>\n<p><code>chown www-data.www-data \/var\/www\/html\/info.php<\/code><\/p>\n<p>Access the page on phpinfo page on browser. It can be <strong>http:\/\/IPaddress\/info.php.\u00a0<\/strong>Look for the parameter\u00a0<span style=\"color: #ff6600;\"><em>Server API<\/em> \u00a0<span style=\"color: #000000;\">We will see FPM\/FastCGI.<\/span><\/span><\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/05\/Server_api.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-1414\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/05\/Server_api.png\" alt=\"\" width=\"1192\" height=\"374\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/05\/Server_api.png 1192w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/05\/Server_api-300x94.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/05\/Server_api-768x241.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/05\/Server_api-1024x321.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/05\/Server_api-50x16.png 50w\" sizes=\"auto, (max-width: 1192px) 100vw, 1192px\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Install Apache with php-fpm on Ubuntu 16 Date Posted:03-05-2016 Php-fpm is a FastCGI Process Manager which is faster to serve php when compared to mod_php. In this post, we will explain on how to install Apache with php-fpm on Ubuntu 16 host. Implementation: Let&#8217;s Start with apache2 installation. apt-get install&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Install Apache with php-fpm on Ubuntu 16<\/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":[313,225,221,282,220],"tags":[278,328,327,274],"class_list":{"0":"post-1406","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-apache","7":"category-linux","8":"category-php","9":"category-ubuntu","10":"category-web-server","11":"tag-apache","12":"tag-fastcgi","13":"tag-fpm","14":"tag-ubuntu","15":"h-entry","17":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\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\/install-apache-php-fpm-ubuntu-16\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Install Apache with php-fpm on Ubuntu 16 Date Posted:03-05-2016 Php-fpm is a FastCGI Process Manager which is faster to serve php when compared to mod_php. In this post, we will explain on how to install Apache with php-fpm on Ubuntu 16 host. Implementation: Let&#8217;s Start with apache2 installation. apt-get install&hellip; Continue Reading Install Apache with php-fpm on Ubuntu 16\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/\" \/>\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=\"2017-05-03T16:59:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-05-03T17:02:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/05\/Server_api.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Install Apache with php-fpm on Ubuntu 16\",\"datePublished\":\"2017-05-03T16:59:58+00:00\",\"dateModified\":\"2017-05-03T17:02:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/\"},\"wordCount\":251,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/Server_api.png\",\"keywords\":[\"Apache\",\"fastcgi\",\"fpm\",\"ubuntu\"],\"articleSection\":[\"Apache\",\"Linux\",\"PHP\",\"Ubuntu\",\"Web Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/Server_api.png\",\"datePublished\":\"2017-05-03T16:59:58+00:00\",\"dateModified\":\"2017-05-03T17:02:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/Server_api.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/Server_api.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-apache-php-fpm-ubuntu-16\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Apache with php-fpm on Ubuntu 16\"}]},{\"@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:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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\/install-apache-php-fpm-ubuntu-16\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Install Apache with php-fpm on Ubuntu 16 Date Posted:03-05-2016 Php-fpm is a FastCGI Process Manager which is faster to serve php when compared to mod_php. In this post, we will explain on how to install Apache with php-fpm on Ubuntu 16 host. Implementation: Let&#8217;s Start with apache2 installation. apt-get install&hellip; Continue Reading Install Apache with php-fpm on Ubuntu 16","og_url":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2017-05-03T16:59:58+00:00","article_modified_time":"2017-05-03T17:02:17+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/05\/Server_api.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Install Apache with php-fpm on Ubuntu 16","datePublished":"2017-05-03T16:59:58+00:00","dateModified":"2017-05-03T17:02:17+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/"},"wordCount":251,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/05\/Server_api.png","keywords":["Apache","fastcgi","fpm","ubuntu"],"articleSection":["Apache","Linux","PHP","Ubuntu","Web Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/","url":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/05\/Server_api.png","datePublished":"2017-05-03T16:59:58+00:00","dateModified":"2017-05-03T17:02:17+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/05\/Server_api.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/05\/Server_api.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/install-apache-php-fpm-ubuntu-16\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Apache with php-fpm on Ubuntu 16"}]},{"@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:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-mG","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1406","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=1406"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1406\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=1406"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=1406"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=1406"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}