{"id":2759,"date":"2018-10-22T21:29:34","date_gmt":"2018-10-22T15:59:34","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2759"},"modified":"2018-12-21T10:48:04","modified_gmt":"2018-12-21T05:18:04","slug":"how-to-install-and-configure-opencart-3-0-2-on-centos-7","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/","title":{"rendered":"How to install and configure Opencart \u2013 3.0.2 On CentOS \u2013 7."},"content":{"rendered":"<h3><strong>How to install and configure Opencart \u2013 3.0.2 On CentOS \u2013 7.<\/strong><\/h3>\n<h4>DATE POSTED: 19-10-2018<\/h4>\n<h3>What is Opencart and its <span style=\"font-size: 18.72px;\">real-time<\/span>\u00a0purpose in this world ?<\/h3>\n<p>OpenCart is a free and open source\u00a0 online e-commerce web application. It is written in PHP and uses MySQL to store its database.<\/p>\n<p>It has multi-store feature that means you can easily manage multiple stores from a single admin interface. It is multilingual translated into more than 30 languages and supports multi-currency. It is used to create and run your own online business by creating an online store and much more powerful, user friendly and free online shopping cart platform.<\/p>\n<h3 id=\"before-you-begin\">Initial Steps Must Followed Before Begin To Install Opencart:<\/h3>\n<p><strong>1.Install the Extra Packages for Enterprise Linux (EPEL) repository\u00a0.<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo yum install epel-release<\/pre>\n<p><strong>2.Make sure your server packages are up to date.<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo yum update<\/pre>\n<p><strong>3.Install the unzip utility.<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">\u00a0\u00a0 sudo yum install unzip<\/pre>\n<p><strong>4.You should Install\u00a0 a\u00a0Linux, Apache, MySQL, PHP (LAMP) stack On CentOS 7.<\/strong><\/p>\n<p><strong>4.1\u00a0 Install\u00a0 Apache Setup:<\/strong><\/p>\n<p>Install\u00a0 Apache httpd Package.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">yum -y install httpd<\/pre>\n<p>Now configure your system to start Apache at boot time..<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">systemctl start httpd.service\r\nsystemctl\u00a0enable\u00a0httpd.service<\/pre>\n<p>To be able to access the web server from outside, we have to open the HTTP (80) and HTTPS (443) ports in the firewall.\u00a0The default firewall on CentOS is firewalld which can be configured with the firewalld-cmd command.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">firewall-cmd --permanent --zone=public --add-service=http \r\nfirewall-cmd --permanent --zone=public --add-service=https\r\nfirewall-cmd --reload<\/pre>\n<p>Now direct your browser to the IP address of your server, in my case\u00a0<span class=\"system\">http:\/\/Your domain name or use your ip address(10.1.1.1)\u00a0<\/span>and you should see the Apache placeholder page:<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/apache-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2773\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/apache-1.png\" alt=\"\" width=\"1192\" height=\"649\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/apache-1.png 1192w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/apache-1-300x163.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/apache-1-768x418.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/apache-1-1024x558.png 1024w\" sizes=\"auto, (max-width: 1192px) 100vw, 1192px\" \/><\/a><\/p>\n<p><strong>4.2 Install\u00a0 MYSQL\/ mariaDB Setup:<\/strong><\/p>\n<p>Enable the MySQL 5.7 repository with the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo yum localinstall https:\/\/dev.mysql.com\/get\/mysql57-community-release-el7-11.noarch<\/pre>\n<p>Install MySQL as any other package using yum:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo yum install mysql-community-server<\/pre>\n<p>Sections bellow are relevant for both MySQL 8.0 and MySQL 5.7<\/p>\n<p>Starting MySQL<br \/>\nOnce the installation is completed, start the MySQL service and enable it to automatically start on boot with:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo systemctl enable mysqld\r\nsudo systemctl start mysqld\r\n<\/pre>\n<p>We can check the MySQL service status by typing:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo systemctl status mysqld<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">mysqld.service - MySQL Server\r\nLoaded: loaded (\/usr\/lib\/systemd\/system\/mysqld.service; enabled; vendor preset: disabled)\r\nActive: active (running) since Wed 2018-10-18 11:02:43 UTC; 12min ago\r\nDocs: man:mysqld(8)\r\nhttp:\/\/dev.mysql.com\/doc\/refman\/en\/using-systemd.html\r\nProcess: 4293 ExecStartPre=\/usr\/bin\/mysqld_pre_systemd (code=exited, status=0\/SUCCESS)\r\nMain PID: 4310 (mysqld)\r\nStatus: \"SERVER_OPERATING\"\r\nCGroup: \/system.slice\/mysqld.service\r\n\u2514\u25004310 \/usr\/sbin\/mysqld\r\n<\/pre>\n<p><strong>Note :\u00a0In Mysql(create database and user and give privileges to that user ).<\/strong><\/p>\n<p><strong>4.3 Install Latest Version\u00a0 PHP 7.2:<\/strong><\/p>\n<p>Add the Remi CentOS repository.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">yum-config-manager --enable remi-php72<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">yum -y install php php-opcache<\/pre>\n<p>In this example and in the downloadable virtual machine, I&#8217;ll use PHP 7.2.<\/p>\n<p>We must restart Apache to apply the changes,<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">systemctl restart httpd.service<\/pre>\n<p><strong>Testing PHP \/ Getting Details About Your PHP Installation:<\/strong><\/p>\n<p>The document root of the default website is \/var\/www\/html. We will create a small PHP file (info.php) in that directory and call it in a browser to test the PHP installation. The file will display lots of useful details about our PHP installation, such as the installed PHP version.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">nano \/var\/www\/html\/info.php<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;?php\r\nphpinfo();<\/pre>\n<p>Now we call that file in a browser (e.g.\u00a0<span class=\"system\">http:\/\/Your domain name or use your ip address(10.1.1.1)\/info.php<\/span>):<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/php1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2772\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/php1.png\" alt=\"\" width=\"1091\" height=\"677\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/php1.png 1091w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/php1-300x186.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/php1-768x477.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/php1-1024x635.png 1024w\" sizes=\"auto, (max-width: 1091px) 100vw, 1091px\" \/><\/a><\/p>\n<p>The perfect LAMP setup has installed in our virtual machine. Now Focus on Installation of Opencart setup.<\/p>\n<p><strong>Installing\u00a0Opencart 3.0.2:<\/strong><\/p>\n<p>Here, we will give you a simpler steps , follow it to launch your opencart web application.<\/p>\n<p><strong>Step 1:<\/strong>Make a directory\u00a0 named downloads.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# mkdir downloads\r\n<\/pre>\n<p><strong>Step2:<\/strong><\/p>\n<p>change your directory to downloads.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# cd \/root\/downloads<\/pre>\n<p>Then , use wget command to download<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">wget https:\/\/github.com\/opencart\/opencart\/releases\/download\/3.0.2.0\/3.0.2.0-OpenCart.zip\r\n                                                                                                            \r\n<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# cd \/root\/downloads\r\n\r\n[root@sms downloads]# wget https:\/\/github.com\/opencart\/opencart\/releases\/downloa                                                                                                          d\/3.0.2.0\/3.0.2.0-OpenCart.zip\r\n--2018-10-19 07:45:45--  https:\/\/github.com\/opencart\/opencart\/releases\/download\/                                                                                                             3.0.2.0\/3.0.2.0-OpenCart.zip\r\nResolving github.com (github.com)... 192.30.253.112, 192.30.253.113\r\nConnecting to github.com (github.com)|192.30.253.112|:443... connected.\r\nHTTP request sent, awaiting response... 302 Found\r\nLocation: https:\/\/github-production-release-asset-2e65be.s3.amazonaws.com\/214118                                                                                                             6\/35472250-6b2b-11e7-9682-7433c2747bde?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Cr                                                                                                             edential=AKIAIWNJYAX4CSVEH53A%2F20181019%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-D                                                                                                             ate=20181019T074545Z&amp;X-Amz-Expires=300&amp;X-Amz-Signature=fe0366f6118d8f13053d68b2c                                                                                                             ddd9e4914c3902b8f1f95a51c02f58b9429e10c&amp;X-Amz-SignedHeaders=host&amp;actor_id=0&amp;resp                                                                                                             onse-content-disposition=attachment%3B%20filename%3D3.0.2.0-OpenCart.zip&amp;respons                                                                                                             e-content-type=application%2Foctet-stream [following]\r\n--2018-10-19 07:45:45--  https:\/\/github-production-release-asset-2e65be.s3.amazo                                                                                                             naws.com\/2141186\/35472250-6b2b-11e7-9682-7433c2747bde?X-Amz-Algorithm=AWS4-HMAC-                                                                                                             SHA256&amp;X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20181019%2Fus-east-1%2Fs3%2Faws4_                                                                                                             request&amp;X-Amz-Date=20181019T074545Z&amp;X-Amz-Expires=300&amp;X-Amz-Signature=fe0366f611                                                                                                             8d8f13053d68b2cddd9e4914c3902b8f1f95a51c02f58b9429e10c&amp;X-Amz-SignedHeaders=host&amp;                                                                                                             actor_id=0&amp;response-content-disposition=attachment%3B%20filename%3D3.0.2.0-OpenC                                                                                                             art.zip&amp;response-content-type=application%2Foctet-stream\r\nResolving github-production-release-asset-2e65be.s3.amazonaws.com (github-produc                                                                                                             tion-release-asset-2e65be.s3.amazonaws.com)... 52.216.162.99\r\nConnecting to github-production-release-asset-2e65be.s3.amazonaws.com (github-pr                                                                                                             oduction-release-asset-2e65be.s3.amazonaws.com)|52.216.162.99|:443... connected.\r\nHTTP request sent, awaiting response... 200 OK\r\nLength: 16544198 (16M) [application\/octet-stream]\r\nSaving to: '3.0.2.0-OpenCart.zip'\r\n\r\n100%[======================================&gt;] 16,544,198  24.2MB\/s   in 0.7s\r\n\r\n2018-10-19 07:45:46 (24.2 MB\/s) - '3.0.2.0-OpenCart.zip' saved [16544198\/1654419                                                                                                             8]\r\n<\/pre>\n<p>After downloading you need to Unzip\u00a0the package.<\/p>\n<p><strong>STEP 3<\/strong>:Using <strong>unzip 3.0.2.0 &#8211; opencart.zip<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms\u00a0~]# unzip 3.0.2.0-OpenCart.zip \r\n  \r\n Archive:  3.0.2.0-OpenCart.zip\r\n  inflating: build.xml               \r\n  inflating: CHANGELOG.md            \r\n  inflating: CHANGELOG_AUTO.md       \r\n  inflating: composer.json           \r\n  inflating: composer.lock\r\n.\r\n.\r\n  inflating: upload\/system\/storage\/vendor\/zoujingli\/wechat-php-sdk\/Wechat\/WechatOauth.php  \r\n  inflating: upload\/system\/storage\/vendor\/zoujingli\/wechat-php-sdk\/Wechat\/WechatPay.php  \r\n  inflating: upload\/system\/storage\/vendor\/zoujingli\/wechat-php-sdk\/Wechat\/WechatPoi.php  \r\n  inflating: upload\/system\/storage\/vendor\/zoujingli\/wechat-php-sdk\/Wechat\/WechatReceive.php  \r\n  inflating: upload\/system\/storage\/vendor\/zoujingli\/wechat-php-sdk\/Wechat\/WechatScript.php  \r\n  inflating: upload\/system\/storage\/vendor\/zoujingli\/wechat-php-sdk\/Wechat\/WechatService.php  \r\n  inflating: upload\/system\/storage\/vendor\/zoujingli\/wechat-php-sdk\/Wechat\/WechatUser.php<\/pre>\n<p><strong>STEP 4:<\/strong>Now, move the unzipped directory into the following path.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms downloads]#  mv opencart \/var\/www\/html<\/pre>\n<p><strong>STEP 5:<\/strong>Then, Switch to the corresponding directory,<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms downloads]#cd \/var\/www\/html<\/pre>\n<p><strong>STEP 6:<\/strong>Next, you have to\u00a0change the ownership and permission of the Opencart directory.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms html]# chown -R apache.apache opencart\r\n[root@sms html]# chmod -R 775 opencart\r\n\r\n<\/pre>\n<p><strong>STEP 7:<\/strong>After changing permission create the new virtual host configuration for accessing the Opencart application.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms html]# nano \/etc\/httpd\/conf.d\/opencart.conf\r\n<\/pre>\n<p><strong>STEP 8:<\/strong>After creating the virtual host need to restart the httpd service.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms html]# systemctl restart httpd\r\n<\/pre>\n<p>Now you can further proceed to view on your\u00a0 browser by navigating to the following URL:\u00a0<span class=\"code_sectcolor6\">http:\/\/local IP<\/span>\u00a0(or)\u00a0<span class=\"code_sectcolor6\">domain name(10.1.1.1).<\/span><\/p>\n<p><strong>Step By Step Configuration Of Opencart:<\/strong><\/p>\n<p><strong>Step 1:<\/strong>First, you need to accept the license terms to continue.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2779\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op1.png\" alt=\"\" width=\"1219\" height=\"469\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op1.png 1219w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op1-300x115.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op1-768x295.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op1-1024x394.png 1024w\" sizes=\"auto, (max-width: 1219px) 100vw, 1219px\" \/><\/a><\/p>\n<p><strong>Step 2:<\/strong>\u00a0Then it will verify the server setup configuration. once the requirements are met you can click continue to proceed.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2781\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op2.png\" alt=\"\" width=\"1232\" height=\"516\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op2.png 1232w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op2-300x126.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op2-768x322.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op2-1024x429.png 1024w\" sizes=\"auto, (max-width: 1232px) 100vw, 1232px\" \/><\/a><\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-3.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2786\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-3.png\" alt=\"\" width=\"1223\" height=\"453\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-3.png 1223w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-3-300x111.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-3-768x284.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-3-1024x379.png 1024w\" sizes=\"auto, (max-width: 1223px) 100vw, 1223px\" \/><\/a><\/p>\n<p><strong>step\u00a0 3:<\/strong>\u00a0Next, you need to configure the database configuration as follows.<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-5.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2789\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-5.png\" alt=\"\" width=\"1223\" height=\"448\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-5.png 1223w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-5-300x110.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-5-768x281.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-5-1024x375.png 1024w\" sizes=\"auto, (max-width: 1223px) 100vw, 1223px\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Step 4:<\/strong>\u00a0Now the installation setup is complete and to access opencart admin panel click on login as admin.<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-6.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2790\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-6.png\" alt=\"\" width=\"1211\" height=\"507\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-6.png 1211w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-6-300x126.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-6-768x322.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-6-1024x429.png 1024w\" sizes=\"auto, (max-width: 1211px) 100vw, 1211px\" \/><\/a><\/p>\n<p><strong>Step 5:<\/strong>\u00a0Now login with\u00a0Admin user credential.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-7.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2791\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-7.png\" alt=\"\" width=\"1216\" height=\"518\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-7.png 1216w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-7-300x128.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-7-768x327.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-7-1024x436.png 1024w\" sizes=\"auto, (max-width: 1216px) 100vw, 1216px\" \/><\/a><\/p>\n<p><strong>Step 6:<\/strong>\u00a0After successful login, you will see the admin dashboard of opencart.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-8.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2792\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-8.png\" alt=\"\" width=\"1227\" height=\"377\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-8.png 1227w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-8-300x92.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-8-768x236.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-8-1024x315.png 1024w\" sizes=\"auto, (max-width: 1227px) 100vw, 1227px\" \/><\/a><\/p>\n<p><strong>Step 7:<\/strong>Then you can choose the Admin user profile and click on\u00a0<strong><span class=\"code_sectcolor6\">your store<\/span>\u00a0<\/strong>option, and it will redirect to your site.<a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-9.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2793\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-9.png\" alt=\"\" width=\"1220\" height=\"384\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-9.png 1220w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-9-300x94.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-9-768x242.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-9-1024x322.png 1024w\" sizes=\"auto, (max-width: 1220px) 100vw, 1220px\" \/><\/a><\/p>\n<p><strong>Step 8:\u00a0<\/strong> Thus by this\u00a0 method to install\u00a0Opencart \u00a03.0.2 on CentOS 7 comes to an end and launched successfully.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-10.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2794\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/op-10.png\" alt=\"\" width=\"1228\" height=\"474\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-10.png 1228w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-10-300x116.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-10-768x296.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/10\/op-10-1024x395.png 1024w\" sizes=\"auto, (max-width: 1228px) 100vw, 1228px\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p class=\"thanks_text\">Thank you! for using PHEONIX SOLUTIONS<b>.<\/b><\/p>\n<p class=\"thanks_undertext\">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 and configure Opencart \u2013 3.0.2 On CentOS \u2013 7. DATE POSTED: 19-10-2018 What is Opencart and its real-time\u00a0purpose in this world ? OpenCart is a free and open source\u00a0 online e-commerce web application. It is written in PHP and uses MySQL to store its database. It has&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to install and configure Opencart \u2013 3.0.2 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":[313,356,387,221,357,220],"tags":[278,456,457,454,179,455,273],"class_list":{"0":"post-2759","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-apache","7":"category-mysql","8":"category-mysql-database","9":"category-php","10":"category-php-windows-server","11":"category-web-server","12":"tag-apache","13":"tag-install-lamp","14":"tag-install-opencart","15":"tag-lamp","16":"tag-mysql-2","17":"tag-opencart","18":"tag-php","19":"h-entry","21":"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-and-configure-opencart-3-0-2-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 and configure Opencart \u2013 3.0.2 On CentOS \u2013 7. DATE POSTED: 19-10-2018 What is Opencart and its real-time\u00a0purpose in this world ? OpenCart is a free and open source\u00a0 online e-commerce web application. It is written in PHP and uses MySQL to store its database. It has&hellip; Continue Reading How to install and configure Opencart \u2013 3.0.2 On CentOS \u2013 7.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-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=\"2018-10-22T15:59:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-12-21T05:18:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/apache-1.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=\"6 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-and-configure-opencart-3-0-2-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to install and configure Opencart \u2013 3.0.2 On CentOS \u2013 7.\",\"datePublished\":\"2018-10-22T15:59:34+00:00\",\"dateModified\":\"2018-12-21T05:18:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/\"},\"wordCount\":727,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/apache-1.png\",\"keywords\":[\"Apache\",\"install LAMP\",\"install opencart\",\"LAMP\",\"mysql\",\"opencart\",\"php\"],\"articleSection\":[\"Apache\",\"MySQL\",\"Mysql\",\"PHP\",\"PHP\",\"Web Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/apache-1.png\",\"datePublished\":\"2018-10-22T15:59:34+00:00\",\"dateModified\":\"2018-12-21T05:18:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/apache-1.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/apache-1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install and configure Opencart \u2013 3.0.2 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-and-configure-opencart-3-0-2-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"How to install and configure Opencart \u2013 3.0.2 On CentOS \u2013 7. DATE POSTED: 19-10-2018 What is Opencart and its real-time\u00a0purpose in this world ? OpenCart is a free and open source\u00a0 online e-commerce web application. It is written in PHP and uses MySQL to store its database. It has&hellip; Continue Reading How to install and configure Opencart \u2013 3.0.2 On CentOS \u2013 7.","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-10-22T15:59:34+00:00","article_modified_time":"2018-12-21T05:18:04+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/apache-1.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to install and configure Opencart \u2013 3.0.2 On CentOS \u2013 7.","datePublished":"2018-10-22T15:59:34+00:00","dateModified":"2018-12-21T05:18:04+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/"},"wordCount":727,"commentCount":1,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/apache-1.png","keywords":["Apache","install LAMP","install opencart","LAMP","mysql","opencart","php"],"articleSection":["Apache","MySQL","Mysql","PHP","PHP","Web Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/apache-1.png","datePublished":"2018-10-22T15:59:34+00:00","dateModified":"2018-12-21T05:18:04+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/apache-1.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/10\/apache-1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-configure-opencart-3-0-2-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install and configure Opencart \u2013 3.0.2 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-Iv","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2759","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=2759"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2759\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2759"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2759"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2759"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}