Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Kelly

    (@kelly)

    Yeah. I’m hosted. So what should the config.php look like?

    Thread Starter Kelly

    (@kelly)

    I checked again and then I edited it like you guys did it, but it went back to the first original error.. 🙁 It’s driving me crazy!!
    <?php
    /** WordPress’s config file **/
    /** http://wordpress.org/ **/
    // ** MySQL settings ** //
    define(‘DB_NAME’, ‘wp’); // The name of the database
    define(‘DB_USER’, ‘Kelly’); // Your MySQL username
    define(‘DB_PASSWORD’, ‘*******’); // …and password
    define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
    // Change the prefix if you want to have multiple blogs in a single database.
    $table_prefix = ‘wp_’; // example: ‘wp_’ or ‘b2’ or ‘mylogin_’
    /* Stop editing */
    $server = DB_HOST;
    $loginsql = DB_USER;
    $passsql = DB_PASSWORD;
    $base = DB_NAME;
    define(‘ABSPATH’, dirname(__FILE__).’/’);
    // Get everything else
    require_once(ABSPATH.’wp-settings.php’);
    ?>

    Thread Starter Kelly

    (@kelly)

    I did what you told me, but when I go to the install.php page there are errors:
    “Parse error: parse error in /home/somewhe/public_html/kelly/wp/wp-config.php on line 20
    WordPress
    Fatal error: Call to a member function on a non-object in /home/somewhe/public_html/kelly/wp/wp-admin/install.php on line 47″

    Thread Starter Kelly

    (@kelly)

    Is this right?
    <?php
    /** WordPress’s config file **/
    /** http://wordpress.org/ **/
    // ** MySQL settings ** //
    define(‘wp’, ‘wordpress’); // The name of the database
    define(‘Kelly’, ‘username’); // Your MySQL username
    define(‘********’, ‘password’); // …and password
    define(‘www.somewhere-else.net/kelly’, ‘localhost’); // 99% chance you won’t need to change this value
    // Change the prefix if you want to have multiple blogs in a single database.
    $table_prefix = ‘wp_’; // example: ‘wp_’ or ‘b2’ or ‘mylogin_’
    /* Stop editing */
    $server = DB_HOST;
    $loginsql = DB_USER;
    $passsql = DB_PASSWORD;
    $base = DB_NAME;
    define(‘ABSPATH’, dirname(__FILE__).’/’);
    // Get everything else
    require_once(ABSPATH.’wp-settings.php’);
    ?>

Viewing 4 replies - 1 through 4 (of 4 total)