Posts

Showing posts from June, 2020

Visual Studio Code Black Screen Windows 7, 8.1 and 10

Image
Enable Ginger Cannot connect to Ginger Check your internet connection or reload the browser Disable in this text field Edit Edit in Ginger Edit in Ginger × Visual Studio Code Black Screen Windows 10 Due to compatibility issue of Visual Studio Code with Windows Operating system this type of errors generally comes. In this guide we will fix Visual Studio Code Black Screen on Windows 7, 8.1 and 10. Please follow the below steps: Also Read:-  How to Download and install Windows 11 on Virtual Box | VMware | Laptop How to Fix Visual Studio Code Black Screen Step1. Right-click on VS Code Shortcut ---> go to properties ---> add     --disable-gpu to Target: (Shown in screenshot below)      "C:\Program Files\Microsoft VS Code\Code.exe" --disable-gpu   Put same as shown in the above screenshot. Step2 . Now go to compatibility tab and in compatibility mode, tick the box "Run this program in compatibility mode for ". 1. For windows 7 :- Select windows Vista 2. For w

PhpMyAdmin error requested authentication method unknown to the client [caching_sha2_password]

Image
PhpMyAdmin error requested authentication method unknown to the client [caching_sha2_password] This error comes due to authentication problem. When you  try to login into MySQL by terminal, you  get the success . But when you try to login with PhpMyAdmin this error comes. To fix this issue you have to do ALTER user in table and provide complex password. Below is the two line of command that you have to enter into MySQL database. Replace your user and user_password with your own. mysql> ALTER USER 'user'@'localhost' IDENTIFIED WITH   mysql_native_password BY 'user_password'; mysql> FLUSH PRIVILEGES; mysql> exit If above is not fixed your error/issue then create a new user with grant privileges and login with new credentials. mysql> create user 'vetechno'@'localhost' identified by 'vetechno@@1234'; mysql> grant all privileges on . to 'vetechno'@'localhost'; mysql> ALTER USER 'vetechno'@'loc

How to Downgrade PHP 7.4 to PHP 7.3 in Ubuntu 20.04 LTS?

Image
Downgrade PHP 7.4 to PHP 7.3 in Ubuntu 20.04 LTS In this blog we will learn how to downgrade PHP 7.4 to PHP 7.3 . Before we start make sure you have root access of the terminal. What we will do is simply disable PHP 7.4 and install or enable PHP 7.3 from the terminal. Following are the below steps to how to switch PHP 7.4 to PHP 7.3 :- Step1. First, Adding PPA repository sudo add-apt-repository ppa:ondrej/php Step2. Update the repository sudo apt-get update Step3. Install php 7.3 sudo apt-get install php7.3 Step4. Lastly Installing php 7.3 extension sudo apt-get install php7.3-cli php7.3-common php7.3-json php7.3-opcache php7.3-mysql php7.3-mbstring  php7.3-zip php7.3-fpm php7.3-intl php7.3-simplexml Step5. Disabling php 7.4 sudo a2dismod php7.4 Step6. Enabling php 7.3 sudo a2enmod php7.3 Step7. Restart Apache2 sudo service apache2 restart Now check  php version by typing php -v in the terminal vikash.ekka@vetechno:~/Desktop$ php -v PHP 7.3.2 (cli) (built: Oct 6 2020 15:47:56) ( NTS