Hi, this is my first time installing PHPnuke so I'm not sure if I did something wrong, or if its a bug in the program...
I've already set up my MySQL table and added the "nuke" user to it, so that part is done- I think. Unless I messed up inside the config to the database, how does this look?
$dbhost = "localhost";
$dbuname = "nuke";
$dbpass = "(this was edited out for mzanime.com's security)";
$dbname = "nuke";
$prefix = "mzanime";
$user_prefix = "mzanime";
$dbtype = "MySQL";
$sitekey = "mzanime";
Here is the current directory with the PHPnuke files in it:
http://www.mzanime.com/erate/
Inside the /html/ folder is all the files which should display PHPnuke. When you click on that folder it logically goes to index.php but I get a
[b]Fatal error:[/b] Call to undefined function: message_die() in /home/mzanime/public_html/erate/html/db/db.php on line 88
When I view it. I also tried going to the config.php file inside that folder but quickly redirects back to the index.php
The only thing down there on line 88 is:
$db = new sql_db($dbhost, $dbuname, $dbpass, $dbname, false);
if(!$db->db_connect_id) {
message_die(CRITICAL_ERROR, "Could not connect to the database");
}
And this is the message it gives me, so I dunno what I did wrong! v_v It was all going so well too, for a PHP newbie.