PDA

View Full Version : MySql Help


new
10-08-2006, 09:52 AM
During insatll WordPress

define('DB_NAME', '1680_vinu'); // The name of the database
define('DB_USER', '1680_vinu'); // Your MySQL username
define('DB_PASSWORD', '******'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = '1680_'; // Only numbers, letters, and underscores please!


i create account with user name with vinu .After creation i can see 1680_vinu.Which is i put in during install.If i want give $table_prefix = '1680_';

guru
10-08-2006, 12:43 PM
define('DB_HOST', 'localhost');

You should remove the localhost with mysql

define('DB_HOST','mysql');

new
10-08-2006, 03:50 PM
i create account with user name with vinu .After creation i can see 1680_vinu.Which is i put in during install.If i want give $table_prefix = '1680_';

UnlimitedMB
10-08-2006, 06:10 PM
You can put in whatever you want for table prefix.

arenlor
10-09-2006, 02:46 AM
The 1680_vinu is your database, inside you have tables your table prefix isn't really necessary, since you aren't restricted to only one database you can just create a database just for that.