View Full Version : Wordpress instalation problems
mg_
Jan 25th 2008, 8:30 am
Hello! I'm trying to install wordpress, but when I try to open install.php via my site I get this error
Parse error: syntax error, unexpected T_STRING in /mounted-storage/home84b/sub007/sc46029-YVGC/car-insurance-dot.com/wp-config.php on line 5
webwurks
Jan 25th 2008, 9:21 am
Hello! I'm trying to install wordpress, but when I try to open install.php via my site I get this error
Can you PM me your wp-config.php file? It appears that you made a small error when setting up the config file for your installation.
I can fix it for you.
Or you could open the wp-config file and got to line 5. It might be obvious to you.
mg_
Jan 25th 2008, 9:49 am
Well the wp-config file looks like this:
<?php
// ** MySQL settings ** //
define('DB_NAME', 'MYSQLNAME'); // The name of the database
define('DB_USER', 'MYSQLUSER'); // Your MySQL username
define('DB_PASSWORD'MYSQLPASWORD'); // ...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');
?>
Al that I have change is db_name, db_user, db_password, and used the mysql one
webwurks
Jan 25th 2008, 2:56 pm
This line :
define('DB_PASSWORD'MYSQLPASWORD'); // ...and password
Should be more like this :
define('DB_PASSWORD','MYSQLPASWORD'); // ...and password
mg_
Jan 25th 2008, 3:50 pm
now work, tnx man ;)
vBulletin® v3.6.8, Copyright ©2000-2008, Jelsoft Enterprises Ltd.