Sorry but the link is broken for me: can't see what you wanted to show me...
Basicly the steps to install PhpMyAdmin are:
0/ Check your mysql daemon is running on your MSS (see my post above)
1/ Download and extract the tarball from
http://www.phpmyadmin.net/ into the Public folder of your MSS drive (you can do it under Windows: there's no rights issue at this point). Let us say you name this folder "phpmyadmin".
2/ There you have to configure your access to the mysql database engine. You have a setup.php file in scripts/ folder but it's very easy to do it by hand. For a beginning you should create a text file named
config.inc.php with the following line inside:
- Code: Select all
<?php
/*
* Generated configuration file
* Generated by: phpMyAdmin 2.8.2.1 setup script by Michal Čihař <michal@cihar.com>
* Version: $Id: setup.php,v 1.23.2.10.2.1 2006/08/01 14:01:37 lem9 Exp $
* Date: Mon, 14 Aug 2006 18:17:13 GMT
*/
/* Servers configuration */
$i = 0;
/* Server localhost (config:root) [1] */
$i++;
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
/* End of servers configuration */
?>
3/ Now it's not yet over since you can't run phpmyadmin (actually it refuses to load thus) with config.inc.php world-writable (I assume you'll create this file with windows so it will be the case). Telnet or SSH your MSS and change permissions. It'll look like:
- Code: Select all
chmod o-w /shares/mss-hdd/Public/phpmyadmin/config.inc.php
(adapt the path to your config).
then you're done:
http://myMSSdriveDNSorIP:myMSSport/phpmyadmin/
Does it help?