is a widely used GUI administration tool for
Installing . Being browser based you don't need any client side software to use it and depending on how you set it up you could also access if from anywhere on the internet. and on my MacBook Pro is where I spent many hours. Hopefully the tips in this section will save you some grief. Once is set up and running it works great.Before you do anything, check to see if
is installed and enabled on your Mac as follows:<?php phpinfo() ?>
If you need to enable PHP do the following from the command line:
#LoadModule php5_module
#LoadModule php4_module
#AddModule mod_php4.c
On WinXP you will need to install/enable web server software on their computer. You can only run your computer as a web server if you have WinXP Pro. Afer installing and setting up your computer as a web server type in http://localhost/ in your browser to test whether or not it is working.
Once you have your WinXP computer working as a web server you are ready to install PHP.
Google for Download PHP for WinXP and then download and install the latest version of PHP following the directions provided.is easy to install, but I had a tough time getting the config file sorted out so that it would work on my MacBook Pro.
$cfg['blowfish_secret'] = 'ae85mh04wq23'; // Enter a random string to be used for blowfish encryption
// Server(s) configuration
$i = 0;
$i++;
$cfg['Servers'][$i]['host'] = '127.0.0.1'; // 'localhost' did NOT work!
$cfg['Servers'][$i]['connect_type'] = 'socket'; // 'tcp' did NOT work!
$cfg['Servers'][$i]['auth_type'] = 'cookie'; // Using cookies is easiest and safest setup.
$cfg['Servers'][$i]['user'] = ''; // MySQL user - empty for cookies
$cfg['Servers'][$i]['password'] = ''; // MySQL password - empty for cookies
?>