PDA

View Full Version : MySQL Databases


use4free
12-4-02, 12:43 PM
Hi...
How can I make another php nuke databases into my general MySQL Databases?

I mean thats I want to make another php nuke databases under my same databases for tests?

thanks

Jade Dragon
12-4-02, 03:50 PM
find the nuke.sql

you will have change the database table names to something other than nuke.

nuke_access

to

nuke2_access


then find

the config.php

$dbhost = "severname";

$dbuname = "username";

$dbpass = "password";

$dbname = "databasename";

$prefix = "nuke2";

$user_prefix = "nuke2"; (Note if you want to share users leave this as nuke)

$dbtype = "MySQL";


when you run setup this will create the secondary tables. Also depending on install MySQL may need to be mysql.

good luck!

JD

Edit: forgot to add....you'll have to load up nuke2 into a new directory.