• Resolved larry_luckham

    (@larry_luckham)


    // Change the prefix if you want to have multiple blogs in a single database.
    $table_prefix = ‘wp_’; // example: ‘wp_’ or ‘b2’ or ‘mylogin_’
    I have only 1 blog, so can this be left as is, or should it be commented out?

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

    If English is this left as is, or commented out?

    /* Stop editing */

    define(‘ABSPATH’, dirname(__FILE__).’/’);
    require_once(ABSPATH.’wp-settings.php’);

    What should be in this define variable? Example?

    As far as I can find, these are not explained in the docs or codex.

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • $table_prefix = 'wp_';
    Enables more than one install per database.

    The rest is not explanatory ?

    $table_prefix = ‘wp_’; // example: ‘wp_’ or ‘b2’ or ‘mylogin_’
    Leave as it is for one blog.. it defines the prefix in your tables.

    define (‘WPLANG’, ”);
    leave as is for english…

    /* Stop editing */
    means dont edit after that ??

    Thread Starter larry_luckham

    (@larry_luckham)

    ?? OK, I guess I’m a bit dense. Will give it a try. Thanks.

    not a problem. I wouldnt say dense… Everyone tends to overlook things. Let us know how it turned out! ??

    Thread Starter larry_luckham

    (@larry_luckham)

    Thanks. I think I’m past that set of problems, but into another that should probably be the topic of a new post.

    Oh no! LOL it is a never ending learning curve ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘What are these extra configuration variables>’ is closed to new replies.