Posts

Showing posts from May, 2020

Your requirements could not be resolved to an installable set of packages. Composer Yii2 PHP extension - FIXED

Image
This is the output of error on the terminal when we are installing Yii2 on Ubuntu 20.04 LTS. vetechno@ubuntu:~$ composer create-project --prefer-dist yiisoft/yii2-app-basic test_demo1 Creating a "yiisoft/yii2-app-basic" project at "./test_demo1" Installing yiisoft/yii2-app-basic (2.0.35) - Installing yiisoft/yii2-app-basic (2.0.35): Loading from cache Created project in /home/vetechno/test_demo1 Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages. Problem 1 - codeception/codeception 4.1.5 requires ext-curl * -> the requested PHP extension curl is missing from your system. - codeception/codeception 4.1.4 requires ext-curl * -> the requested PHP extension curl is missing from your system. - codeception/codeception 4.1.3 requires ext-curl * -> the requested PHP extension curl is missing from your system. - codeception/co

How to Install MySQL 8.0 on Ubuntu 16.04 LTS | vetechno

Image
How to Install MySQL 8.0 on Ubuntu 16.04 LTS This tutorial will help you how to install MySQL 8.0 on Ubuntu 16.04 LTS. MySql 8.0 is a free open source relational database server. It supports both SQL and NoSql. 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 × So first you have to  download .deb package of MySQL 8 . Then simply follow the below commands to install MySQL 8.0 on Ubuntu. wget https://dev.mysql.com/get/mysql-apt-config_0.8.10-1_all.deb   sudo dpkg -i mysql-apt-config_0.8.10-1_all.deb sudo apt-get update   sudo apt-get install mysql-server sudo mysql --verson Done!! You have successfully installed MySql 8.0 on Ubuntu 16.04. This method will also work on Ubuntu 18.04 LTS and Ubuntu 20.04 LTS. If you have any doubt let me know in this comment box. Enable Ginger Cannot connect to Ginger Check your internet connection or reload the browser Disable in this text field Ed

How to reset forgotten password on Ubuntu/Linux Operating System.

Image
How to reset forgotten password  on Ubuntu In this tutorial post, we are going to reset the forgotten password on Ubuntu 20.04 LTS. This same method will also work on other Debian distro too.   All you need to restart your Ubuntu system and press/hold 'ESC' or 'Shift' key to open GNU GRUB menu. Then select Advanced option of Ubuntu . After that select 'Recovery Option' and hit 'Enter' . Now you need to select 'Root' and hit 'Enter' to get into terminal. Below are the following commands to reset the Ubuntu password Step1. mount -o remount,rw / Step2. ls /home Step3. passwd <your_username> Step4. reboot 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 × Enable Ginger Cannot connect to Ginger Check your internet connection or reload the browser Disable in this text field Edit Edit in Ginger Ed

XAMPP - Replacing MariaDB with MySQL 8 on Windows 10

Image
 How can we change MariaDB to MySQL in XAMPP  on Windows 10 Hello friends, In tutorial post, we are going to How can we change MariaDB to MySQL in XAMPP  server in Windows 10 Operating system. By default when you install Xampp web server, it installs MariaDB. But MariaDB is not 100% compatible with MySQL and can be replaced with the “original” MySQL server. Also Read:- Download Windows 10 May 2020 Latest ISO images 32-bit and 64-bit Edition Download, install and activate Microsoft Office 2019 for FREE legally To replace the MariaDB with MySQL 8 on Windows 10 we have to follow some basic steps. To do that I have mention step by step instructions for integrating MySQL into Xampp server on Windows 10. We have also  successfully tested on both MySQL 8.0 and MySQL 5.7  with Windows 10 . Prerequisites:- 1. Windows 10 with Admin rights. 2. Xampp for windows  Backups:- First we make backup of old database into a different folder named as mariadb. 1. Stop the MariaDB service from Xampp control

Changing and Resetting MySQL Root Password on Ubuntu 18.04 and Ubuntu 20.04

Step1. First Login to Mysql ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'yourPasswordHere'; where :- root is user and yourPasswordHere is password For eg. ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'R0oT#'; That's it. Thank You.

How to Create a Bootable Windows 10 USB on Ubuntu or Linux | vetechno

Image
How to Create a Bootable Windows 10 USB on Ubuntu or Linux It is little bit more difficult to create bootable pen drive of windows 10 on Ubuntu as compared to Windows 10 Operating System. Today I will tell you how to create a bootable Windows 10 USB (pendrive) on Ubuntu in just three steps. All you need to have the following prerequisites 1. UNetbootin Software 2. USB flash drive (4GB minimum) 3. Windows 10 iso file Also Read:- * Download Windows 10 May 2020 Latest ISO images 32-bit and 64-bit Edition * Download, install and activate Microsoft Office 2019 Find the below Steps to Create bootable pendrive:- Step1: Install UNetbootin on Ubuntu / Linux sudo add-apt-repository ppa:gezakovacs/ppa sudo apt-get update sudo apt-get install unetbootin Step2: Run UNetbootin Step3: Select windows 10 ISO file   Step4: Click on Ok button Conclusion Great if you have followed the same steps then you have successfully created windows 10 bootable USB(pendrive) on Ubuntu operating system. Please let

phpMyAdmin ERROR: mysqli_real_connect(): (HY000/1045): Access denied for user 'pma'@'localhost' (using password: NO)

Image
Access denied for user 'pma'@'localhost' (using password: NO) In this short blog post, I have shown you how to fix Access denied for user 'pma'@'localhost' (using password: NO) on Windows 10 Operating System.  Below I have given the practical video to solve this problem easily. I hope you fix your issue.  Error   MySQL said:   #1045 - Access denied for user 'root'@'localhost' (using password: NO)   mysqli_real_connect(): (HY000/1045): Access denied for user 'pma'@'localhost' (using password: NO)   Connection for controluser as defined in your configuration failed.   mysqli_real_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: NO)   phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of