Sounds good to me.
Parse error: parse error in ./config.inc.php3 on line 1
The first part of the code is as follows:
<?php
/ $Id: config.inc.php3,v 1.33 2001/08/28 17:50:53 loic1 Exp $ /
/**
phpMyAdmin Configuration File
All directives are explained in Documentation.html
/
/**
Bookmark Table Structure
CREATE TABLE bookmark (
id int(11) DEFAULT '0' NOT NULL auto_increment,
dbase varchar(255) NOT NULL,
user varchar(255) NOT NULL,
label varchar(255) NOT NULL,
query text NOT NULL,
PRIMARY KEY (id)
);
/
/**
Your phpMyAdmin url
Complete the variable below with the full url ie
http://www.your_web.net/path_to_your_phpMyAdmin_directory/
*/
$cfgPmaAbsoluteUri = 'http://www.dixondigital.com/myad/';
/**
Server(s) configuration
/
// The $cfgServers array starts with $cfgServers[1]. Do not use $cfgServers[0].
// You can disable a server config entry by setting host to ''.
$cfgServers[1]['host'] = 'mysql1'; // MySQL hostname
$cfgServers[1]['port'] = '8 ='; // MySQL port - leave blank for default port
$cfgServers[1]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfgServers[1]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfgServers[1]['adv_auth'] = FALSE; // Use advanced authentication?
$cfgServers[1]['stduser'] = ''; // MySQL standard user (only needed with advanced auth)
$cfgServers[1]['stdpass'] = ''; // MySQL standard password (only needed with advanced auth)
$cfgServers[1]['user'] = 'myname'; // MySQL user (only needed with basic auth)
$cfgServers[1]['password'] = 'mypass'; // MySQL password (only needed with basic auth)
$cfgServers[1]['only_db'] = 'dixondigital.com'; // If set to a db-name, only this db is accessible
// It may also be an array of db-names
$cfgServers[1]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostname
$cfgServers[1]['bookmarkdb'] = ''; // Bookmark db - leave blank for no bookmark support
$cfgServers[1]['bookmarktable'] = ''; // Bookmark table - leave blank for no bookmark support
Any Ideas?
Thanks abunch Darren