yshua Posted October 13, 2011 Share Posted October 13, 2011 Hello readers! Need help setting up PHPmyadmin for secure downloads, i.e., must avoid XAMPP. Have good help with a consultant when necessary, but would truly like to know a recommended (hopefully free) dwonload source for PHPmyadmin. Anyone have package to recommend? Thanks for your time, Yshua :-\ Quote Link to comment https://forums.phpfreaks.com/topic/249004-need-to-download-and-install-phpmyadmin/ Share on other sites More sharing options...
trq Posted October 13, 2011 Share Posted October 13, 2011 Have you looked at the actual phpMyAdmin site? http://www.phpmyadmin.net Quote Link to comment https://forums.phpfreaks.com/topic/249004-need-to-download-and-install-phpmyadmin/#findComment-1278818 Share on other sites More sharing options...
yshua Posted October 13, 2011 Author Share Posted October 13, 2011 Tried looking at that sight yesterday. What am I missing. Tried downloading the second option in the upper right green box to download. Actually might have missed the right thing to download. Do I download the "Try PHPmyadmin" option? Thanks for input, Yshua Quote Link to comment https://forums.phpfreaks.com/topic/249004-need-to-download-and-install-phpmyadmin/#findComment-1278833 Share on other sites More sharing options...
yshua Posted October 13, 2011 Author Share Posted October 13, 2011 OK, it worked, downloading from PHPmyadmin.net! Thanks for the push in the right direction. I still need to know what to do to integrate it with my Apache web server now! Am a true beginner, having only used it on Yahoo previously.... Quote Link to comment https://forums.phpfreaks.com/topic/249004-need-to-download-and-install-phpmyadmin/#findComment-1278837 Share on other sites More sharing options...
gizmola Posted October 13, 2011 Share Posted October 13, 2011 phpMyAdmin is a set of php scripts. You simply need to put it into your webroot at some location, edit the configuration file and it is ready to use. Quote Link to comment https://forums.phpfreaks.com/topic/249004-need-to-download-and-install-phpmyadmin/#findComment-1278838 Share on other sites More sharing options...
yshua Posted October 13, 2011 Author Share Posted October 13, 2011 OK. With regards to editing the configuration file, Can I have a suggestion? Is it DocumentRoot, ScriptAlias, Supplemental configuration, etc. DocumentRoot is currently "..../Apache2.2/htdocs." Should that be changed to ".../ PHPmyadmin/....?" New to this part of configuring, Quote Link to comment https://forums.phpfreaks.com/topic/249004-need-to-download-and-install-phpmyadmin/#findComment-1278841 Share on other sites More sharing options...
gizmola Posted October 13, 2011 Share Posted October 13, 2011 It comes with a config.sample.inc.php file. You can use that as the basis for a config by making a copy and naming it config.inc.php. Probably you will want to go with the cookie auth type, that prompts you for a pw and saves it as an encrypted cookie. This is most likely what you want to have in the config file: $cfg['blowfish_secret'] = 'some_phrase_here'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */ //$cfg['ForceSSL'] = TRUE; /* * Servers configuration */ $i = 0; $i++; /* * First server */ $cfg['Servers'][$i]['verbose'] = 'servername'; $cfg['Servers'][$i]['host'] = 'localhost'; $cfg['Servers'][$i]['port'] = ''; $cfg['Servers'][$i]['socket'] = ''; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['extension'] = 'mysqli'; $cfg['Servers'][$i]['auth_type'] = 'cookie'; $cfg['Servers'][$i]['user'] = 'username'; $cfg['Servers'][$i]['password'] = 'userpw'; For security purposes I use the forcessl and host this under https but that may be beyond your abilities to setup. I commented out the relevant config line. You can use any mysql user you want, but I personally use the root user. The important thing is to have a valid username + password configured for this to work. Quote Link to comment https://forums.phpfreaks.com/topic/249004-need-to-download-and-install-phpmyadmin/#findComment-1278898 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.