How to Install phpMyAdmin on hosting account?

Discussion in 'Databases' started by ignite, Apr 8, 2011.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Is there a simple procedure or instructions for how to install phpMyAdmin on our discountasp control panel? MySQL database has already been purchased, but we need the phpMyAdmin tool to access it and import data easily.

    Thanks for any help.
     
  2. mjp

    mjp

    Just upload the files to a subdirectory, put your server hostname (you can find that here, on the MySQL Server Name line) into the config file (config.inc.php) and it should work.
    $cfg['Servers'][$i]['host'] = 'MySQL Server Name';
    You might also want to add a value to this line to enable cookie authentication:
    $cfg['blowfish_secret'] = 'something';
    It should work with just those two changes to config.inc.php.
     
  3. That worked, thanks!
     
  4. mjp

    mjp

    Great! My pleasure.
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page