Posts

Showing posts from June, 2023

SME DB Import Issue

 1)Open the SQL Dump file  and replace these character utf8mb4_0900_ai_ci  ===>  utf8mb4_unicode_ci 2)Run these two commands in Phpmyadmin Without restarting the server setting  SET GLOBAL innodb_strict_mode = 0;  and  SET innodb_strict_mode = 0;   worked for me  

Process to Push Code

1) Check in which files we made changes  git status 2)Add changed files from the working directory to the staging area. git add. 3)Move your Stage files to the local repository git commit -m "Fetch Default Brand Category Images" 4)Create a new branch from Existing Branch git checkout -b FeatureBrandImages 5) Move your local repository content to a remote repository. git push --set-upstream origin FeatureBrandImages