Posted by admin | Posted in Network administrator | Posted on 11-06-2009
- First of all, get yourself a copy of the MySQL Server 5.1 ZIP Setup from http://dev.mysql.com/get/Downloads/MySQL-5.1/mysql-5.1.22-rc-win32.zip/from/pick#mirrors
- Extract all the files from the archive and launch Setup.exe
- I’ve chosen to use the Typical Setup but feel free to customize the installation to suit your needs.
- Once the installation is completed, leave the checkbox Configure the MySQL Server now checked and go through the Detailed Configuration.
- I’ve selected Server Machine as the server type and Multifunctional Database usage but again set this as you prefer.
- I’ve also left all the default settings until the Windows Options window where I’ve checked Include BIN directory in Windows Path.
- Set the root password and you’re done.
Your MySQL Server should now be running. If you want to manage it, you can download and install the MySQL GUI Tools.
Configuring PHP5 to Access MySQL Server
- Open c:\php\php.ini with your favorite text editor.
- Uncomment the following lines by removing the semi-colon:extension=php_mysqli.dll
extension=php_mbstring.dll
extension=php_mcrypt.dll - Restart the IIS service: Start => Programs => Administrative Tools => Services => World Wide Web Publishing Service => Restart
If all went well, you should see the mysqli section on the PHP information page created earlier (http://your-server/phpinfo.php).


That’s Really Good Help