QR code is a type of two dimensional barcode which is abbreviated from Quick Response Code. It is an optical label which contains information about the item. It is simply attached to the item. It contains black squares which are arranged in a squares grid with white background. In this blog we will learn how […]
Tips
How to see the code of ‘.ctp’ file as colorful as ‘.php’ file in NetBeans
NetBeans is one of the best and powerful IDE for any WebDevelopment specially best for PHP frameworks such as ZenCart, OpenCart, CakePhp etc. CakePhp use their own custom file extension for its View files i.e. *.ctp. NetBeans doesn’t know about this file by default. So there are no color coding will be shown when these […]
How to get Amazon Orders using API
Objective of the blog After reading this blog, you will be able to understand how seller can get the Amazon orders using API. Let’s know about the order’s API Amazon orders API helps the sellers to get the order’s details and synchronized the Amazon orders on their custom application. This is very helpful for retrieving […]
How to change the default order status on WooCommerce
Sometimes, while developing an e-commerce website, you’ll need to automatically check the payment status and mark the order status as “Completed”, “Pending” or as per your requirement. A default order status is set on the basis of payment done. The Front-end users can check their order’s status in their Account History page. In this blog […]
Export PHP data to .xls file
Data is any set of characters that is translated for some purpose, like for analysis. It can be any character or value, including text and numbers, pictures, sound, or video. If data is not put into context then it does not do anything to a human being or machine. We generally export data from the websites to […]
HubBox Error: Failed to open stream /sample/../../vendor/autoload.php
Problem Statement While using the library provided by HubBox, there is an error occurring- require(C:\wamp64\www\HubBox\sample\src\public/../../vendor/autoload.php): failed to open stream: No such file or directory in C:\wamp64\www\HubBox\sample\src\public\index.php on line 14 Solution This error occurred because of dependencies on files that are missed. You need to solve this issue by using below steps: Step1: Delete the file sample/composer.lock from the library. Step2: Make a folder with the name “vendor” under /sample/ Step3: Run the command “composer install” in command prompt at /sample/ It will download all the dependency files which are required. After successfully downloading all the dependencies, you will able to use the HubBox library.
How to add the get parameters in the pagination on CakePHP version 2.0
Problem Statement There is no default functionality to persist the GET parameters while using “Paginator” helper in CakePHP. As per default functionality of CakePHP paginatior helper, the GET parameters will remove from the URL if you navigate to the next page. So in this blog we will learn how to add the GET parameters in the […]
SSL Certificate Installation on IIS
Get the zip file of the certificates. Convert Certificate file to *.pfx file from SSL conversion site 1. Upload *.crt file to Certificate File to convert 2. Choose Type of Current Certificate to “Standard PEM” 3. Choose Type to Convert to “PFX/PKCS#12” 4. Upload *.key file to Private Key File 5. Upload *.ca file to […]
Setup SSL on the site on Linux Server
1. Copy the certificate files to the server There should be 3 SSL files: your_domain_name.crt your_private.key DigiCertCA.crt – This will be you chain file. Note: Make them readable by root only to increase security. 2. Find the Apache configuration file (httpd.conf) you need to edit. The name and location and name of the configuration file can […]