no, my database user is just i5d-stud_Nuke. Here is my newinstall.php file do you have to modify it? In the tutorial I read it didn't say anything about changing it. Here it is:
PHP Code:
<?php
// File: $Id: newinstall.php 17444 2006-01-02 12:20:51Z hammerhead $
// ----------------------------------------------------------------------
// PostNuke Content Management System
// Copyright (C) 2001 by the PostNuke Development Team.
// http://www.postnuke.com/
// ----------------------------------------------------------------------
// Based on:
// PHP-NUKE Web Portal System - http://phpnuke.org/
// Thatware - http://thatware.org/
// ----------------------------------------------------------------------
// LICENSE
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------
// Original Author of file: Gregor J. Rothfuss
// Purpose of file: Provide functions for a new install.
// ----------------------------------------------------------------------
/**
* This function creates the DB on new installs
*/
function make_db($dbhost, $dbuname, $dbpass, $dbname, $prefix, $dbtype, $dbmake, $dbtabletype)
{
global $dbconn;
echo "<center><br /><br />";
if ($dbmake) {
mysql_pconnect($dbhost, $dbuname, $dbpass);
$result = mysql_query("CREATE DATABASE $dbname") or die (_MAKE_DB_1);
$message = "<br /><br /><span class=\"pn-failed\">$dbname " . _MAKE_DB_2 . "</span>";
echo $message;
} else {
echo "<span class=\"pn-failed\">" . _MAKE_DB_3 . "</span>";
}
include("install/newtables.php");
}
/**
* This function inserts the default data on new installs
*/
function input_data($dbhost, $dbuname, $dbpass, $dbname, $prefix, $dbtype, $aid, $name, $pwd, $repeatpwd, $email, $url)
{
global $currentlang;
if ($pwd != $repeatpwd) {
echo _PWBADMATCH;
exit;
} else {
echo "<center>";
echo "<span class=\"pn-title\">" . _INPUT_DATA_1 . "</span>";
global $inst_dbconn;
mysql_connect($dbhost, $dbuname, $dbpass);
mysql_select_db("$dbname") or die ("<br /><span class=\"pn-sub\">" . _NOTSELECT . "</span>");
// Put basic information in first
include("install/newdata.php");
// new installs will use md5 hashing - compatible on windows and *nix variants.
$pwd = md5($pwd);
$result = $inst_dbconn->Execute("INSERT INTO " . $prefix . "_users VALUES ( NULL, '$name', '$aid', '$email', '', '$url', 'blank.gif', " . time() . ", '', '', '', '', '', 0, 0, '', '', '', '$pwd', 10, '', 0, 0, 0, '', 0, '', '', 4096, 0, '12.0')") or die ("<strong>" . _NOTUPDATED . $prefix . "_users</strong>");
echo "<br /><span class=\"pn-sub\">" . $prefix . "_users" . _UPDATED . "</span>";
// We know that the above user is UID 2 and that the admin group is GID 2 from the install/newdata
$result = $inst_dbconn->Execute("INSERT INTO " . $prefix . "_group_membership VALUES (2, 2)") or die ("<strong>" . _NOTUPDATED . $prefix . "_group_membership</strong>");
echo "<br /><span class=\"pn-sub\">" . $prefix . "_group_membership" . _UPDATED . "</span>";
}
}
?>