11

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!

MatthewS
  • 455
  • 2
  • 7
  • 22
  • It worked for me. I just extracted phpMyAdmin files directly inside a folder `{LARAGON_DIR}\etc\apps\phpMyAdmin`. Now the `Database` icons opens phpMyAdmin, instead of Adminer. I followed the steps on [Laragon forum](https://forum.laragon.org/topic/98/how-to-update-phpmyadmin). – Alex May 28 '17 at 00:42
  • Personally, I prefer Adminer to PhpMyAdmin, but maybe that's just me. I find the PhpMyAdmin interface clunky. – TRiG Sep 04 '20 at 13:44

5 Answers5

12

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

artgb
  • 3,177
  • 6
  • 19
  • 36
ztvmark
  • 1,319
  • 15
  • 11
2

so you are askin how to access phpmyadmin right? after install (placing the phpmyadmin to install directory c:/laragon/etc/apps)

dont forget to reload apache and start mariadb(or mysql if you prefer mysql) through laragon

and then just access it as usual, type on your browser url address bar localhost/phpmyadmin

wirandhika
  • 36
  • 2
1

First of Download and Install Laragon. After installtion of Laragon You can see following screen.

enter image description here

Right Click on the Database Button You see following screen.

Database > Tools > Quick Add > Phpmyadmin.

enter image description here

After this it download and install phpmyadmin in Laragon automatically.

Hamza Zafeer
  • 2,360
  • 13
  • 30
  • 42
0

Follow the simple steps

  • Download the phpMyAdmin
  • Extract it to laragon_install_path/etc/apps/phpMyAdmin
  • Restart laragon and browser http://localhost/phpmyadmin

Resource: https://laravelarticle.com/laragon

Akash khan
  • 861
  • 13
  • 25
0

In fact, there is two possibilities to add phpMyAdmin to Laragon.

First :

Like previous dev said before, it is possible to take the last zip on phpmyadmin website, unzip it and put the extracted folder in laragon/etc/apps. Take care to rename your unzip folder with this exact name : "phpMyAdmin"

Second :

You can simply use Laragon QuickAdd functionnality. But by default it installs the 4.X version of phpMyAdmin. Hopefully, you can configure wich version of phpMyAdmin QuickAdd will use. To do that go to Menu > Tools > QuickAdd > Configuration... and under the line :

# phpMyAdmin
*phpmyadmin=https://files.phpmyadmin.net/phpMyAdmin/4.8.5/phpMyAdmin-4.8.5-english.zip

You can add the last link available for phpMyAdmin (you can find it here) :

# phpMyAdmin
*phpmyadmin=https://files.phpmyadmin.net/phpMyAdmin/4.8.5/phpMyAdmin-4.8.5-english.zip
phpmyadmin5=https://files.phpmyadmin.net/phpMyAdmin/5.0.4/phpMyAdmin-5.0.4-all-languages.zip  

And now when you'll go in QuickAdd, you will see that. So you can now install it. When it's done, Laragon open up automatically your default browser with phpmyadmin at this url http://localhost/phpmyadmin

For the french community, I add a video on this subject.

Dharman
  • 30,962
  • 25
  • 85
  • 135
HappyToDev
  • 94
  • 6