Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpMyAdmin and Laragon

How do Laragon and phpMyAdmin work with one another? I've downloaded phpMyAdmin and extracted it to laragon\etc\apps, but whenever I click on the Database button of Laragon, I get sent to something called Adminer instead of phpMySQL. I have tried deleting Adminer, but that doesn't work. Please help. Thanks!

like image 433
user3727648 Avatar asked May 15 '17 21:05

user3727648


People also ask

Does Laragon have phpMyAdmin?

It does comes with HeidiSQL tool which is pretty handy but i also like to have phpMyAdmin available. How to install phpMyAdmin on to Laragon? It is very simple. Go to https://www.phpmyadmin.net/downloads/ ad download phpMyAdmin in version that your server will support.

How do I run phpMyAdmin in Laragon?

In the menu, select Tools → Quick add → *phpMyAdmin. After installing phpMyAdmin, http://localhost/phpmyadmin will be opened in a new browser tab or window. In a fresh Laragon installation, the default user is root and the password is not set. Select your preferred language.

How do I start mysql in Laragon?

Go to laragon dashboard, and you will find the mysql 8 menu click on it to select the version and start the mysql server as you usually do. And it will start and run normal.

How do you open administer in Laragon?

First of Download and Install Laragon. After installtion of Laragon You can see following screen. Right Click on the Database Button You see following screen. Database > Tools > Quick Add > Phpmyadmin.


1 Answers

well , hi Hossein : first download the phpmyadmin from here : https://www.phpmyadmin.net/downloads/

then extract the downloaded (rar,zip) to :

{INSTILLATION_PATH }\laragon\etc\apps

rename the folder to phpmyadmin .

now go to http://localhost/phpmyadmin

and your there :) .

if you want to login to the phpmyadmin you need to search in the phpmyadmin folder for a file called config.sample.inc and duplicate it and rename it to config.inc open the file and search for :

$cfg['Servers'][$i]['AllowNoPassword'] = false;

and set it to true :

$cfg['Servers'][$i]['AllowNoPassword'] = true;

save the file and DONE you can login using username of : root

https://forum.laragon.org/topic/420/i-can-t-access-to-phpmyadmin/3

like image 97
ztvmark Avatar answered Sep 28 '22 08:09

ztvmark