{"id":8091,"date":"2024-07-21T23:16:59","date_gmt":"2024-07-21T17:46:59","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=8091"},"modified":"2024-07-21T23:19:22","modified_gmt":"2024-07-21T17:49:22","slug":"goals-of-setting-up-of-apachephpmysql-on-macos","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/","title":{"rendered":"Goals of setting up of Apache,PHP,MySQL and Magento on macOS"},"content":{"rendered":"\n<p><strong>Overview of MAGENTO:<\/strong><\/p>\n\n\n\n<p>1.Magento is an open source e-commerce software.<\/p>\n\n\n\n<p>2.Useful for online business requirements.<\/p>\n\n\n\n<p>3.This has flexibility and scalability so it used for both user-friendly and search engine friendly websites.<\/p>\n\n\n\n<p>4.Magento is a Content Management System (CMS).<\/p>\n\n\n\n<p><strong>System Requirements:<\/strong><\/p>\n\n\n\n<p>The system requires,<\/p>\n\n\n\n<p>Web services requirements:<\/p>\n\n\n\n<p>=&gt;Apache2<\/p>\n\n\n\n<p>=&gt;Nginx<\/p>\n\n\n\n<p>Database Engine Requirements:<\/p>\n\n\n\n<p>=&gt;MySQL8.0.33<\/p>\n\n\n\n<p>=&gt;MariaDB<\/p>\n\n\n\n<p>PHP Requirements:<\/p>\n\n\n\n<p>=&gt;PHP and PHP extensions<\/p>\n\n\n\n<p>Check the need version and supported version to your system requires.<\/p>\n\n\n\n<p>1.Setup MAMP:<\/p>\n\n\n\n<p>\u2014&gt;MAMP is to provide a Web Server Environment .<\/p>\n\n\n\n<p>\u2014&gt;MAMP stands for M(Mac OS),A(Apache),M(MySQL),P(PHP,Perl or Python).<\/p>\n\n\n\n<p>i)Download latest version<\/p>\n\n\n\n<p>ii)Open and install MAMP applications&nbsp;<\/p>\n\n\n\n<p>iii)setup port for apache and mysql<\/p>\n\n\n\n<p>iv)choose apache or Nginx as a web server<\/p>\n\n\n\n<p>2.Setup Apache:<\/p>\n\n\n\n<p>Install Apache:<\/p>\n\n\n\n<p><em>brew install httpd<\/em><\/p>\n\n\n\n<p>To install apache:<\/p>\n\n\n\n<p><em>sudo nano \/usr\/local\/etc\/httpd\/httpd.conf<\/em><\/p>\n\n\n\n<p>Check the apache configuration after installation and modify some lines ,<\/p>\n\n\n\n<p>-Change port 8080 to 80<\/p>\n\n\n\n<p>-Uncomment \u201cLoadModule rewrite_module lib\/httpd\/modules\/mod_rewrite.so\u201d&nbsp;<\/p>\n\n\n\n<p>-Update document&nbsp; root \u201c\/usr\/local\/var\/www\/\u201d<\/p>\n\n\n\n<p>Run the apache:<\/p>\n\n\n\n<p><em>sudo brew services start httpd<\/em><\/p>\n\n\n\n<p>After start the apache move to browser and visit : \u201chttp:\/\/localhost\u201d<\/p>\n\n\n\n<p>3.Setup MySQL:<\/p>\n\n\n\n<p><em>brew install mysql<\/em><\/p>\n\n\n\n<p>To install mysql in Mac.<\/p>\n\n\n\n<p><em>nano \/Applications\/MAMP\/conf\/my.cnf<\/em><\/p>\n\n\n\n<p>By using this , we need to change the configuration to run the mysql<\/p>\n\n\n\n<p><em>lsof -I :3306<\/em><\/p>\n\n\n\n<p>To check the mysql port number.<\/p>\n\n\n\n<p><em>mysql -u root -p<\/em><\/p>\n\n\n\n<p>This will help us to check the mysql connection with the mysql version.While this indicates that mysql server is running successfully.<\/p>\n\n\n\n<p><em>CREATE DATABASE magento:<\/em><\/p>\n\n\n\n<p>Need to create a database for magento.<\/p>\n\n\n\n<p><em>CREATE USER \u2018magento\u2019@\u2018127.0.0.1\u2019 IDENTIFIES BY \u2018your_password\u2019<\/em><\/p>\n\n\n\n<p>For magento user need to create a username and require password. Have to change \u2018your_password\u2019 to set our own password.<\/p>\n\n\n\n<p><em>GRANT ALL PRIVILEGES ON *.* TO \u2018magento\u2019@\u2018127.0.0.1\u2019;<\/em><\/p>\n\n\n\n<p><em>mysql -u magento -p magento<\/em><\/p>\n\n\n\n<p><em>CREATE USER \u2018localmagento\u2019@\u2018localhost\u2019 IDENTIFIED BY \u2018your_password\u2019;<\/em><\/p>\n\n\n\n<p><em>GRANT ALL PRIVILEGES ON *.* TO&nbsp; \u2018localmagento\u2019@\u2018locahost\u2019;<\/em><\/p>\n\n\n\n<p>Here, creating a password for localmagento setup.<\/p>\n\n\n\n<p><em>mysql -u localmagento -p magento<\/em><\/p>\n\n\n\n<p>4.Setup PHP:<\/p>\n\n\n\n<p><em>brew update<\/em><\/p>\n\n\n\n<p>This command is used of updating homebrew and packages to manage the latest version available from repository.<\/p>\n\n\n\n<p><em>brew upgrade<\/em><\/p>\n\n\n\n<p>It will upgrade PHP to the latest version.<\/p>\n\n\n\n<p><em>brew install php@8.2<\/em><\/p>\n\n\n\n<p><em>brew reinstall php@8.2<\/em><\/p>\n\n\n\n<p>This command specifically install the PHP version.<\/p>\n\n\n\n<p><em>brew services restart php@8.2<\/em><\/p>\n\n\n\n<p>It will help to restart the php services after making specific changes . So need to restart the service.<\/p>\n\n\n\n<p><em>php -v<\/em><\/p>\n\n\n\n<p>To view the version of php.<\/p>\n\n\n\n<p>5.SetUp Composer and Magento:<\/p>\n\n\n\n<p><em>composer install<\/em><\/p>\n\n\n\n<p>This will install the require composer files, libraries and packages need to run the project.<\/p>\n\n\n\n<p><em>composer -v<\/em><\/p>\n\n\n\n<p>It is used to check the version of composer.<\/p>\n\n\n\n<p><em>COMPOSER_MEMORY_LIMIT = -1 composer install<\/em><\/p>\n\n\n\n<p>Changing the memory limit of composer to not get stack with the memory and install the php dependencies&nbsp; for a project.<\/p>\n\n\n\n<p><em>brew tap opensearch-project\/homebrew-tap<\/em><\/p>\n\n\n\n<p>Opensearch will make a new software package to make the process easier and update via homebrew tab.<\/p>\n\n\n\n<p><em>brew install java<\/em><\/p>\n\n\n\n<p>This will install the needed JDK to run the magento applications.<\/p>\n\n\n\n<p><em>brew install wget<\/em><\/p>\n\n\n\n<p><em>wget https:\/\/artifacts.opensearch.org\/releases\/bundle\/opensearch\/1.0.0\/opensearch-1.0.0-darwin-x64.tar.gz<\/em><\/p>\n\n\n\n<p>It is used to receive an Internet via homebrew to download files.<\/p>\n\n\n\n<p><em>brew install opensearch<\/em><\/p>\n\n\n\n<p>For installing opensearch via homebrew.<\/p>\n\n\n\n<p><em>COMPOSER_MEMORY_LIMIT =-1 php bin\/magentosetup:install<\/em><\/p>\n\n\n\n<p>This installs the magento using php setup and the installation will done with all specified settings.<\/p>\n\n\n\n<p>After this , in browser using https:\/\/admin, it will show the magento login page will be displayed.<\/p>\n\n\n\n<p><strong>Save and exit buttons in macOS terminal:<\/strong><\/p>\n\n\n\n<p>To edit: I(Insert)<\/p>\n\n\n\n<p>Save : control + o , Enter<\/p>\n\n\n\n<p>Exit : control + x<\/p>\n\n\n\n<p>Save and exit: :wq, enter<\/p>\n\n\n\n<p>Force quit : :q!, enter<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Overview of MAGENTO: 1.Magento is an open source e-commerce software. 2.Useful for online business requirements. 3.This has flexibility and scalability so it used for both user-friendly and search engine friendly websites. 4.Magento is a Content Management System (CMS). System Requirements: The system requires, Web services requirements: =&gt;Apache2 =&gt;Nginx Database Engine&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Goals of setting up of Apache,PHP,MySQL and Magento on macOS<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":513,"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-8091","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.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\/goals-of-setting-up-of-apachephpmysql-on-macos\/\" \/>\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=\"Overview of MAGENTO: 1.Magento is an open source e-commerce software. 2.Useful for online business requirements. 3.This has flexibility and scalability so it used for both user-friendly and search engine friendly websites. 4.Magento is a Content Management System (CMS). System Requirements: The system requires, Web services requirements: =&gt;Apache2 =&gt;Nginx Database Engine&hellip; Continue Reading Goals of setting up of Apache,PHP,MySQL and Magento on macOS\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/\" \/>\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=\"2024-07-21T17:46:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-21T17:49:22+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=\"kani durai\" \/>\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=\"kani durai\" \/>\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\\\/goals-of-setting-up-of-apachephpmysql-on-macos\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/goals-of-setting-up-of-apachephpmysql-on-macos\\\/\"},\"author\":{\"name\":\"kani durai\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/5e3c6de2cb4dfdbde00eeacd405b8d98\"},\"headline\":\"Goals of setting up of Apache,PHP,MySQL and Magento on macOS\",\"datePublished\":\"2024-07-21T17:46:59+00:00\",\"dateModified\":\"2024-07-21T17:49:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/goals-of-setting-up-of-apachephpmysql-on-macos\\\/\"},\"wordCount\":622,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/goals-of-setting-up-of-apachephpmysql-on-macos\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/goals-of-setting-up-of-apachephpmysql-on-macos\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/goals-of-setting-up-of-apachephpmysql-on-macos\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-07-21T17:46:59+00:00\",\"dateModified\":\"2024-07-21T17:49:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/goals-of-setting-up-of-apachephpmysql-on-macos\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/goals-of-setting-up-of-apachephpmysql-on-macos\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/goals-of-setting-up-of-apachephpmysql-on-macos\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Goals of setting up of Apache,PHP,MySQL and Magento on macOS\"}]},{\"@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\\\/5e3c6de2cb4dfdbde00eeacd405b8d98\",\"name\":\"kani durai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3700db5283341ffbf422ad1f3813dfe67e2680a8b491638b90535b3aa24bd0b2?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3700db5283341ffbf422ad1f3813dfe67e2680a8b491638b90535b3aa24bd0b2?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3700db5283341ffbf422ad1f3813dfe67e2680a8b491638b90535b3aa24bd0b2?s=96&r=g\",\"caption\":\"kani durai\"},\"sameAs\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-admin\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/kanimozhi\\\/\"}]}<\/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\/goals-of-setting-up-of-apachephpmysql-on-macos\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Overview of MAGENTO: 1.Magento is an open source e-commerce software. 2.Useful for online business requirements. 3.This has flexibility and scalability so it used for both user-friendly and search engine friendly websites. 4.Magento is a Content Management System (CMS). System Requirements: The system requires, Web services requirements: =&gt;Apache2 =&gt;Nginx Database Engine&hellip; Continue Reading Goals of setting up of Apache,PHP,MySQL and Magento on macOS","og_url":"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2024-07-21T17:46:59+00:00","article_modified_time":"2024-07-21T17:49:22+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"kani durai","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"kani durai","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/"},"author":{"name":"kani durai","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/5e3c6de2cb4dfdbde00eeacd405b8d98"},"headline":"Goals of setting up of Apache,PHP,MySQL and Magento on macOS","datePublished":"2024-07-21T17:46:59+00:00","dateModified":"2024-07-21T17:49:22+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/"},"wordCount":622,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/","url":"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2024-07-21T17:46:59+00:00","dateModified":"2024-07-21T17:49:22+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/goals-of-setting-up-of-apachephpmysql-on-macos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Goals of setting up of Apache,PHP,MySQL and Magento on macOS"}]},{"@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\/5e3c6de2cb4dfdbde00eeacd405b8d98","name":"kani durai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3700db5283341ffbf422ad1f3813dfe67e2680a8b491638b90535b3aa24bd0b2?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3700db5283341ffbf422ad1f3813dfe67e2680a8b491638b90535b3aa24bd0b2?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3700db5283341ffbf422ad1f3813dfe67e2680a8b491638b90535b3aa24bd0b2?s=96&r=g","caption":"kani durai"},"sameAs":["https:\/\/pheonixsolutions.com\/blog\/wp-admin"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/kanimozhi\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-26v","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8091","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\/513"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=8091"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8091\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=8091"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=8091"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=8091"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}