Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: PhpMyAdmin Installation Process On Windows server  (Read 7772 times)

0 Members and 1 Guest are viewing this topic.

sachinj

  • Guest
PhpMyAdmin Installation Process On Windows server
« on: December 30, 2017, 09:32:57 am »
=========================================================================================================
PHPMyAdmin is a web-based open source tool written in PHP designed to help manage MySQL database through the Web browser. Because of this PhpMyAdmin facilitates the management and maintenance of the MySQL database. PhpMyAdmin provides an easy way to use graphic interface to write and execute queries, manage users and databases, to export and import data, etc. It should be noted that user does not need to know SQL commands and use them directly. Most web hosting providers use phpMyAdmin to access their clients to MySQL databases.

First of all you have to download the latest version of phpMyAdmin. You can do this from the link below:

Code: [Select]
http://www.phpmyadmin.net/home_page/downloads.php
>> Double click on their phpMyAdmin Zip file which is already saved on their desktop and they have to extract it to:

C:\inetpub\wwwroot\phpmyadmin

>> Navigate the same directory & rename the file config.sample.inc.php to config.inc.php

>> Open the file in Notepad & get the following :

Code: [Select]
$cfg[‘blowfish_secret’] = ‘ ’;
>> You have to fill in this line with anything that you want but it needs to be a value.

Code: [Select]
$cfg[‘blowfish_secret’] = ‘example123’;
>> Save the file. Note that the file name should be config.inc.php

>> In your browser, go to:

localhost/phpmyadmin

And that’s it  ;) , login with the credentials you provided during the MySQL. 8)
==========================================================================================================