September 28, 2020 in Tips and Tricks
Hi there, if you are using any kind of modification which affects the header file you need to refresh modifications first. Log in to the backend (administration) and go to Extension > Modification and hit the refresh button in the right top corner.
September 24, 2020 in Digital Marketing, Tips and Tricks
Refine web searches You can use symbols or words in your search to make your search results more precise. Google Search usually ignores punctuation that isn’t part of a search operator. Don’t put spaces between the symbol or word and your search term. A search for site:nytimes.com will work, but site: nytimes.com won’t. Refine image searches Overall Advanced Search […]
September 12, 2020 in MySql, Php, Tips and Tricks
After wasting a lot of time with character variables and mysql configurations, I fixed the problem with a simple solution that is base64_encode.Passing the input string through base64_encode and later using base64_decode to show them worked in this case. However the strings take up more space than earlier but this solution is really simple and worthy.I just posted this question […]
August 30, 2020 in MySql, Tips and Tricks
The most commonly used storage engine in MySQL are MyISAM and InnoDB. With these storage engine there are some advantages and disadvantages according to application needs. As you all know, the default storage engine chosen by MySQL database is MyISAM. The main difference between MyISAM and INNODB are : MyISAM does not support transactions by […]
August 22, 2020 in MySql, Tips and Tricks
If you run into this error with MySQL: It’s likely because you have the ONLY_FULL_GROUP_BY function enabled. To fix this, you have to disable it. Run this command: Another way to turn it off is that to find and modify the config file my.cnf. Usually it’s in /etc/my.cnf or /etc/mysql/my.cnf. First, check the sql_mode by running this query: The result should be something […]
August 11, 2020 in Php, Technology, Tips and Tricks
Integrating Opencart with ShipRocket Following are the ways to integrate Opencart with ShipRocket. Before you proceed with these steps, make sure that you have installed the Shiprocket plugin on your Opencart account. Supported Version : 2.3.*,2.2.0.0,2.1.0.1, 2.1.0.2,2.0.0.0, 2.0.1.0, 2.0.1.1, 2.0.2.0, 2.0.3.1 (Link to Download Extension) Step I – Configuration at Opencart Extension Login to your […]
August 9, 2020 in Php, Tips and Tricks, Ubuntu
In case that you have Ubuntu in your machine, the following steps will help you: Check first in your php testing file if you have soap (client / server)or not by using phpinfo(); and check results in the browser. In case that you have it, it will seems like the following image ( If not […]
August 6, 2020 in Tips and Tricks
Configuring DNS for your cPanel domain cPanel (both shared and on servers) lets you host a website and email for your domain names. To establish the connection between the domain name and your cPanel account, you need to change the domain name’s DNS (What is DNS?). For shared hosting customers with domains in the same […]
August 6, 2020 in Tips and Tricks
Add an SPF record An SPF (Sender Policy Framework) record is a type of TXT record in your DNS zone file. SPF records help identify which mail servers are permitted to send email on behalf of your domain. Adding an SPF record can help detect and prevent spammers from sending email messages with forged From addresses on your domain. Log in […]