[HELP] problem msql for wordpress

leslieom

New Member
Messages
1
Reaction score
0
Points
0
I did search information like db name, db host, etc..i can't find it so which wrong information? can u fix this it for me look code below. thx
Code:
<?php
// ** MySQL settings ** //
define('DB_NAME', 'leslieom_mysql');    // The name of the database
define('DB_USER', 'leslieom_lom');     // Your MySQL username
define('DB_PASSWORD', '************'); // ...and password
define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');

// You can have multiple installations in one database if you give each a unique prefix
$table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!

// Change this to localize WordPress.  A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');

/* That's all, stop editing! Happy blogging. */

define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
 

halohalo

New Member
Messages
54
Reaction score
0
Points
0
Without more information, I'm taking a wild guess as to your problem... this is the most typical situation if your install isn't working:

When you made your database and user, you also have to grant permissions to the user account so that you can create,insert,update and delete database tables. Make sure that your user account: leslieom_lom is granted full permissions to your database.
 

enixidfrag

New Member
Messages
26
Reaction score
0
Points
0
1. Go to Cpanel and Actualy make a database and username i will use the following for example:

Username: wordp_x10
Database: wordp_x10wp

2. Now At the Bottom of the SQL Databasses Page where you made the Username and Database there should be a title that says Add User To Database Click it then make sure to click ALL PRIVELAGES Button

3. Now All you need to do is change it so you have the following:

define('DB_NAME', 'wordp_x10wp'); // The name of the database
define('DB_USER', 'wordp_x10'); // Your MySQL username
 
Top