PHP-Nuke Setup

Status
Not open for further replies.

Starskey

New Member
Messages
130
Reaction score
0
Points
0
Hello, I'm trying to set up PHP-Nuke on my account, but I'm stuck on the config.php file. It asks for:

$dbhost = "localhost";
$dbuname = "nuke";
$dbpass = "";
$dbname = "nuke";
$prefix = "nuke";
$user_prefix = "nuke";
$dbtype = "MySQL";
$sitekey = "S·kQSd5%W@Y62-dm29-.-39.3a8sUf+W9";
$gfx_chk = 0;
$subscription_url = "";
$admin_file = "admin";
$advanced_editor = 0;

But I'm not sure what to put in there. I've tried some stuff, but I either get the "Problem with MySQL" error message, or just a blank white page that says "My Own WebSite."

The database is named "nuke" with the "starskey_" in front of it. The same goes for the use account for the database.
 
N

Nathan

Guest
PHP:
$dbhost = "localhost";
$dbuname = "nuke";
$dbpass = "";
$dbname = "starskey_nuke";
$prefix = "starskey";
$user_prefix = "starskey";
$dbtype = "MySQL";
$sitekey = "S·kQSd5%W@Y62-dm29-.-39.3a8sUf+W9";
$gfx_chk = 0;
$subscription_url = "";
$admin_file = "admin";
$advanced_editor = 0;

Try that, if that isn't it I will try to get it sorted out for you.
 
N

Nathan

Guest
Yeah, you can install through Fantastico, very easy.

PHP:
$dbpass = ""; cpanel password goes here

It should be:

PHP:
$dbpass = "cpanel password goes here";

Just so you don't get confused.
 

Starskey

New Member
Messages
130
Reaction score
0
Points
0
Dewayne said:
Yeah, you can install through Fantastico, very easy.

PHP:
$dbpass = ""; cpanel password goes here

It should be:

PHP:
$dbpass = "cpanel password goes here";

Just so you don't get confused.

:p I didn't see it there before. Thanks, I'll use that one instead.
 
Status
Not open for further replies.
Top