Make WordPress Core

Changeset 39 for trunk/b2config.php


Ignore:
Timestamp:
05/22/2003 12:18:13 PM (22 years ago)
Author:
saxmatt
Message:

Cleaned up a few misc. things, added ini_set fix for new admin location.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/b2config.php

    r18 r39  
    22
    33/* *
    4  * b2's config file *
    5                   * */
     4 * WordPress's config file *
     5                         * */
    66
    77
     
    2020
    2121
    22 # fill these only if you have a Cafelog ID,
    23 # this enables your blog to be in the Recently Updated b2 blogs list.
    24 # to obtain this ID, e-mail update@tidakada.com with these details:
    25 #  name of the weblog, weblog's URL, your e-mail address, and a password
    26 # in the future, the password will allow you to change these details online
    27 
    28 $cafelogID = '';
    29 $use_cafelogping = 0;    # set this to 1 if you do have a Cafelog ID
    30 
    3122
    3223# $pathserver is where you have uploaded b2: for example, 'http://mydomain.com' (no ending slash !)
     
    3627
    3728
    38 # your email (obvious uh ?)
     29# your email (obvious eh ?)
    3930$admin_email = 'you@example.com';
    4031
    4132
    4233# set this to 0 or 1, whether you want new users to be able to post entries once they registered
    43 $new_users_can_blog = 1;
     34$new_users_can_blog = 0;
    4435
    4536
     
    5748# fill with your database details
    5849$dbname = 'b2';         // the name of the database
    59 $dbhost = 'localhost';      // 99% chances you won't need to change this value
    6050$dbusername = 'user';           // your MySQL username
    6151$dbpassword = 'pass';       // ...and password
     52$dbhost = 'localhost';      // 99% chances you won't need to change this value
    6253
    6354# database tables' names (change them if you want to have multiple b2's in a single database)
     
    8071
    8172# set this to 0 to disable the spell checker, or 1 to enable it
    82 $use_spellchecker = 1;
     73$use_spellchecker = 0;
    8374
    8475
     
    9788# this could help balance your HTML code. if it gives bad results, set it to 0
    9889$use_balanceTags = 1;
    99 
    100 # this would convert quotes into smart/curly quotes, set it to 1 to enable it
    101 $use_smartquotes = 0;
    10290
    10391
     
    179167# set this to 0 or 1, whether you want to allow your posts to be trackback'able or not
    180168# note: setting it to zero would also disable sending trackbacks
    181 $use_trackback = 0;
     169$use_trackback = 1;
    182170
    183171# set this to 0 or 1, whether you want to allow your posts to be pingback'able or not
    184172# note: setting it to zero would also disable sending pingbacks
    185 $use_pingback = 0;
     173$use_pingback = 1;
    186174
    187175
     
    199187
    200188# set this to 1 to let every author be notified about comments on their posts
    201 $comments_notify = 0;
     189$comments_notify = 1;
    202190
    203191
     
    291279# $b2inc is where the included b2 files are: that's generally the directory b2-include,
    292280#  so you shouldn't have to change that setting
    293 $b2inc = './b2-include';
     281$b2inc = 'b2-include';
    294282
    295283
     
    351339$base = $dbname;
    352340
     341// This is so the new admin location works
     342ini_set('include_path', ".:../:../$b2inc");
     343
    353344?>
Note: See TracChangeset for help on using the changeset viewer.