blogs

How to Create Child-theme in WordPress Step by Step very easy

Video for who doesn’t like to read ;). And if you like the video then subscribe my channel and share this with others who has the same issue. Step – 1: Select any theme ( For ex. 2020 ). This will be called a parent theme. Step – 2: Create folder for child-theme at ​”wp-content/themes/parent_theme_folder_name-child“ […]

How to Create Child-theme in WordPress Step by Step very easy Read More »

How to have ActiveCampaign Sandbox account

ActiveCampaign provides 14 days trial period account. But when it comes to development, the developer needs to have a sandbox account which should be free and never expire. So for that AC provides a sandbox account for developers. How you can get Sandbox account? You can read more and request a sandbox account here: https://developers.activecampaign.com/page/developer-sandbox-accounts.

How to have ActiveCampaign Sandbox account Read More »

Asking authentication when we try to access homepage on WP Engine

Recently, I migrated a site from the flywheel to WP Engine using Migrate Guru plugin. After migration, I was asked to add browser authentication when I try to access the homepage. It was not asking the authentication when I try to access wp-admin. Below is the screenshot what I was getting. So I connected WP

Asking authentication when we try to access homepage on WP Engine Read More »

Fix – svn: error: The subversion command line tools are no longer provided by Xcode.

Recently I got the following error on my Mac Terminal when I tried svn command. svn: error: The subversion command line tools are no longer provided by Xcode.   To fix this, run following commands: sudo rm -rf /Library/Developer/CommandLineTools xcode-select –install   Wait for the software to be installed. And you are done. Ref.:https://stackoverflow.com/questions/60869347/mac-command-line-tools-11-4-no-longer-has-svn  

Fix – svn: error: The subversion command line tools are no longer provided by Xcode. Read More »

Download folder/files from server using ssh terminal

You will need SCP installed on your system. Run the following command from your terminal scp -r username@host:/path/to/folder /Destination/path/of/local/machine/ If you access the server via pem key, then command will be scp -r -i /path/to/pemkey.pem username@host:/path/to/folder /Destination/path/of/local/machine/ That’s it.

Download folder/files from server using ssh terminal Read More »

Fix – ERROR 2006 (HY000) while importing database in MySQL

While importing big database in MySQL, you might get the error as shown below: ERROR 2006 (HY000) at line 3387 in file: ‘path_to_the_db_dump.sql’: MySQL server has gone away Step 1: Open a terminal and find a config file for MySQL by command locate my.cnf. You will get the list of files. Open your responsible file.

Fix – ERROR 2006 (HY000) while importing database in MySQL Read More »

Fix – ERROR 1031 Table storage engine for ‘table_name’ doesn’t have this option

Sometimes you get the below error while importing the database. ERROR 1031 (HY000) at line 5643 in file: ‘/Users/username/Downloads/database.sql’: Table storage engine for ‘table_name’ doesn’t have this option Now let’s fix this. Step – 1 Open your sql file in your favourite editor and go to SQL query of that table. You will see ROW_FORMAT=FIXED

Fix – ERROR 1031 Table storage engine for ‘table_name’ doesn’t have this option Read More »