Problem Statement On searching the wrong address in the HubBox popup, there is no error message. When checked on the console, you are getting an error like “_messageErrorTemplate is not a function“. Solution The error: “_messageErrorTemplate is not a function” is coming because this function is not declared as function in the HubBox library. To […]
Tips
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
Step by Step Guide 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 your chain file. Note: Make them readable by root only to increase security. 2. Find the Apache configuration file (httpd.conf) you need […]
20 Best Rental Business Ideas You Can Start With
The rental business has gained huge popularity. The growth in the rental sector in the past few years has opened a vast opportunity for small businesses to start offering rental services. Today, people prefer to book any service or product on rent rather than purchase it, the reason being renting is affordable. The following factor opens […]
How to delete products from the ePrice marketplace
Objective of the blog This blog will help you out to know the way to delete products from the ePrice marketplace. Methods to delete Products from the ePrice marketplace There are two methods to delete products from the ePrice marketplace: Manually Deletion from seller central By uploading the Offer Feed 1.0 Manually Deletion from seller […]
Copy to clipboard in JavaScript
Objectives of the blog After the reading of this blog, you will be able to know how data can be copy to clipboard with help of java script. Benefit of copy to clipboard functionality In the current web world, it’s all about the user experienced from your site. During our work on any site we […]
How to set Cookie using JavaScript
Objective: To learn about how to create and read the cookie using JavaScript. Cookie is small piece of data which is saved on user device by website. It is helpful in storing any data to identify the user or to track the user. When user again visits the website, stored data can be read easily. […]
HubBox Error: Bad Response Code
Problem Statement: Error coming in the response of Authentication API of HubBox ie. “HubBox Api Error: Bad Response Code” Solution: If you are facing issue as shown below while you are checking Authentication API, it may be because of Authentication API is verifying SSL certificate for connection. For this, you can turn off the SSL […]