{"id":3434,"date":"2019-01-20T14:39:20","date_gmt":"2019-01-20T09:09:20","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=3434"},"modified":"2019-01-20T22:31:39","modified_gmt":"2019-01-20T17:01:39","slug":"how-to-install-zen-cart-on-centos-7","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/","title":{"rendered":"HOW TO INSTALL ZEN CART  ON CENTOS \u2013 7."},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">HOW TO INSTALL ZEN CART ON CENTOS \u2013 7.<\/h3>\n\n\n\n<p><strong>DATE POSTED : 20 \/01\/2019<\/strong><\/p>\n\n\n\n<p>This topic will cover the step by step installation process of&nbsp;<strong>Zen Cart<\/strong>&nbsp;open source e-commerce platform in&nbsp;&nbsp;<strong>CentOS<\/strong>&nbsp;Linux operating systems.<\/p>\n\n\n\n<p><strong>Zen Cart<\/strong>&nbsp;is an easy to manage and popular shopping CMS platform, written in PHP server-side programming language <\/p>\n\n\n\n<p>It is Deployed on top of&nbsp;<strong>LAMP<\/strong>&nbsp;stack that is mainly used to create online stores for advertising products and merchandises in today&#8217;s  business life style.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Requirements<\/h3>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>You should have a&nbsp;Linux, Apache, MySQL, PHP (LAMP) stack On CentOS 7.<\/strong><\/li><li><strong>This recommended below link will help you in Installing Lamp Setup and Open cart &nbsp;<\/strong><a href=\"https:\/\/blog.pheonixsolutions.com\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/\">https:\/\/blog.pheonixsolutions.com\/how-to-install-and-configure-opencart-3-0-2-on-centos-7&nbsp;<\/a><\/li><\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install System Pre-Requirements for Zen Cart<\/h3>\n\n\n\n<p><strong>1.<\/strong>&nbsp;On the first step, log in to your server console and issue the following commands in order to install&nbsp;<strong>unzip<\/strong>&nbsp;and&nbsp;<strong>curl<\/strong>&nbsp;utilities in your system.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># yum install unzip zip curl    [On CentOS\/RHEL] <\/pre>\n\n\n\n<p><strong>2.<\/strong>you should also make sure you install the following PHP extensions required by Zen Cart e-commerce application by issuing the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>------------------ On CentOS\/RHEL ----------------<\/strong> <br> # yum install epel-release<br> # yum install php-curl php-xml php-gd php-mbstring    <\/pre>\n\n\n\n<p>3 . After all required PHP modules and installed in your system, open default PHP configuration file specific to your Linux distribution and update the below PHP settings.<\/p>\n\n\n\n<p>Issue the below command according to your distribution to open and edit PHP configuration file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nano \/etc\/php.ini                      [On CentOS\/RHEL]<br><\/pre>\n\n\n\n<p>Search and replace the following PHP settings as shown in the below excerpt: <br>Visit the official&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/php.net\/manual\/en\/timezones.php\" target=\"_blank\">PHP time zone list<\/a>&nbsp;in order to find the correct timezone according to your server geographical location. <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">file_uploads = On <br>allow_url_fopen = On<br>memory_limit = 64M <br>upload_max_file_size = 64M <br>date.timezone = Indian<\/pre>\n\n\n\n<p><strong>4.<\/strong>&nbsp;Restart Apache service<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl restart httpd      [On CentOS\/RHEL] <\/pre>\n\n\n\n<p><strong>5.<\/strong>&nbsp;Zen Cart e-commerce platform needs a RDBMS database to store application data. To create a&nbsp;<strong>Zen Cart<\/strong>database, log to MySQL server console and issue the below command to create Zen Cart database and the credentials needed to access the database.<\/p>\n\n\n\n<p>Replace the database name, user and password variables with your own settings.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># mysql -u root -p<br> <strong>MariaDB [(none)]&gt;<\/strong> create database zencart_shop; <br><strong>MariaDB [(none)]&gt;<\/strong> grant all privileges on zencart_shop.* to 'your_user'@'localhost' identified by 'your_password'; <br><strong>MariaDB [(none)]&gt;<\/strong> flush privileges;   <br> <strong>MariaDB [(none)]&gt;<\/strong> exit <\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install Zen Cart in CentOS 7 <\/h3>\n\n\n\n<p><strong>6.<\/strong>&nbsp;In order to install Zen Cart e-commerce application, first&nbsp;<a href=\"https:\/\/sourceforge.net\/projects\/zencart\/files\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"download (opens in a new tab)\">download<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/www.zen-cart.com\/content.php?19-download\" target=\"_blank\"> the latest Zen Cart<\/a>&nbsp;zip archive file in your system by issuing the below command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># wget https:\/\/sourceforge.net\/projects\/zencart\/files\/CURRENT%20-%20Zen%20Cart%201.5.x%20Series\/zen-cart-v1.5.5e-03082017.zip \n<\/pre>\n\n\n\n<p><strong>7.<\/strong>&nbsp;After Zen Cart zip file download finishes, issue the following commands to extract the zip archive and copy the installation files to web server document root path.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># unzip zen-cart-v1.5.5e-03082017.zip\n# cp -rf zen-cart-v1.5.5e-03082017\/* \/var\/www\/html\/\n<\/pre>\n\n\n\n<p><strong>8.<\/strong>&nbsp;Next, issue the following command to grant Apache HTTP server full write permission to Zen Cart installation files from server\u2019s document root path.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># chown -R apache:apache \/var\/www\/html\/        [On CentOS\/RHEL] <\/pre>\n\n\n\n<p><strong>9.<\/strong>&nbsp;Next, open a browser and navigate to your server IP address or domain name via HTTP protocol and hit  in order to start the installation process of Zen Cart.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">http:\/\/your_domain.tld\/\n<\/pre>\n\n\n\n<p>Thank you! for using PHEONIX SOLUTIONS.<\/p>\n\n\n\n<p>You find this tutorial helpful? Share with your friends to keep it alive. Be the first to comment, we value your suggestions. For further queries please comment below. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>HOW TO INSTALL ZEN CART ON CENTOS \u2013 7. DATE POSTED : 20 \/01\/2019 This topic will cover the step by step installation process of&nbsp;Zen Cart&nbsp;open source e-commerce platform in&nbsp;&nbsp;CentOS&nbsp;Linux operating systems. Zen Cart&nbsp;is an easy to manage and popular shopping CMS platform, written in PHP server-side programming language It&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">HOW TO INSTALL ZEN CART  ON CENTOS \u2013 7.<\/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":[284,303,225,1],"tags":[538,539],"class_list":{"0":"post-3434","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-centos","7":"category-devops","8":"category-linux","9":"category-uncategorized","10":"tag-zen-cart","11":"tag-zen-cart-install","12":"h-entry","14":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - 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\/how-to-install-zen-cart-on-centos-7\/\" \/>\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=\"HOW TO INSTALL ZEN CART ON CENTOS \u2013 7. DATE POSTED : 20 \/01\/2019 This topic will cover the step by step installation process of&nbsp;Zen Cart&nbsp;open source e-commerce platform in&nbsp;&nbsp;CentOS&nbsp;Linux operating systems. Zen Cart&nbsp;is an easy to manage and popular shopping CMS platform, written in PHP server-side programming language It&hellip; Continue Reading HOW TO INSTALL ZEN CART ON CENTOS \u2013 7.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/\" \/>\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=\"2019-01-20T09:09:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-01-20T17:01:39+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\\\/how-to-install-zen-cart-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-zen-cart-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"HOW TO INSTALL ZEN CART ON CENTOS \u2013 7.\",\"datePublished\":\"2019-01-20T09:09:20+00:00\",\"dateModified\":\"2019-01-20T17:01:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-zen-cart-on-centos-7\\\/\"},\"wordCount\":473,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"zen cart\",\"zen cart install\"],\"articleSection\":[\"Centos\",\"Devops\",\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-zen-cart-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-zen-cart-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-zen-cart-on-centos-7\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2019-01-20T09:09:20+00:00\",\"dateModified\":\"2019-01-20T17:01:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-zen-cart-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-zen-cart-on-centos-7\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-zen-cart-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HOW TO INSTALL ZEN CART ON CENTOS \u2013 7.\"}]},{\"@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\/how-to-install-zen-cart-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"HOW TO INSTALL ZEN CART ON CENTOS \u2013 7. DATE POSTED : 20 \/01\/2019 This topic will cover the step by step installation process of&nbsp;Zen Cart&nbsp;open source e-commerce platform in&nbsp;&nbsp;CentOS&nbsp;Linux operating systems. Zen Cart&nbsp;is an easy to manage and popular shopping CMS platform, written in PHP server-side programming language It&hellip; Continue Reading HOW TO INSTALL ZEN CART ON CENTOS \u2013 7.","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2019-01-20T09:09:20+00:00","article_modified_time":"2019-01-20T17:01:39+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\/how-to-install-zen-cart-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"HOW TO INSTALL ZEN CART ON CENTOS \u2013 7.","datePublished":"2019-01-20T09:09:20+00:00","dateModified":"2019-01-20T17:01:39+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/"},"wordCount":473,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["zen cart","zen cart install"],"articleSection":["Centos","Devops","Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2019-01-20T09:09:20+00:00","dateModified":"2019-01-20T17:01:39+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-zen-cart-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"HOW TO INSTALL ZEN CART ON CENTOS \u2013 7."}]},{"@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-To","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3434","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=3434"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3434\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=3434"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=3434"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=3434"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}