Web Hosting Talk







View Full Version : databases with ensim


RackFive
08-25-2002, 03:16 PM
how can i make more than 1 database for the same domain?

MikeM
08-25-2002, 03:41 PM
Windows or unix??? if windows just map the dsn...

unix?? i have no idea

RackFive
08-25-2002, 03:55 PM
its linux :(

RackNine
08-28-2002, 12:52 AM
Create the database using phpMyAdmin or directly via mySQL console...

create database <dbname>;
grant all on <dbname>.* to <user>@localhost identified by '<password>';

-Matt