PHP-nuke / php-donations help

This is used for general discussion that is not necessarily server-related.
Post Reply
User avatar
ReV|Donatello
This is my homepage
This is my homepage
Posts: 103
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Thu Nov 11, 2004 4:25 pm
Location: Upland, California
Contact:

PHP-nuke / php-donations help

Post by ReV|Donatello »

I get the message No Database selected. can someone help me this is what my config.php looks like.
my php nuke is located at http://nba1341.nuclearfallout.net/phpnuke
my config looks like this:
/* Database configuration */
$hostname_ipnppd = "XXXX";
$database_ipnppd = "ipnppd";
$username_ipnppd = "XXXX";
$password_ipnppd = "XXXX";
what did i do wrong for that database_ipnppd what should i add there?

im trying to add the donation-meter but get that problem.
User avatar
Nick|NFo
Former staff
Former staff
Posts: 2252
Joined: Sun Mar 30, 2003 1:56 pm
Location: 127.0.0.1

Post by Nick|NFo »

Code: Select all

$hostname_ipnppd = "XXXX";
that should be localhost

Code: Select all

$database_ipnppd = "ipnppd";
that should be your identifier (?.nuclearfallout.net, ? part only)

Code: Select all

$username_ipnppd = "XXXX";
that should be your identifier (?.nuclearfallout.net, ? part only)

Code: Select all

$password_ipnppd = "XXXX"; 
that would be your webspace password
-Nick
User avatar
ReV|Donatello
This is my homepage
This is my homepage
Posts: 103
Joined: Thu Nov 11, 2004 4:25 pm
Location: Upland, California
Contact:

Post by ReV|Donatello »

/* Database configuration */
$hostname_ipnppd = "localhost";
$database_ipnppd = "ipnppd";
$username_ipnppd = "XXXX";
$password_ipnppd = "XXXX

i tried rev1341 for database and it just said rev1341.treasury not found or soiimething i think its trying to have me point to a sql file there or someting
User avatar
Nick|NFo
Former staff
Former staff
Posts: 2252
Joined: Sun Mar 30, 2003 1:56 pm
Location: 127.0.0.1

Post by Nick|NFo »

you need to insert that sql file into your database using phpmyadmin (http://www.phpmyadmin.net)

that sql file will create the tables necesarry to contain the data for the donation meter
-Nick
Post Reply