Changeset 39 for trunk/b2config.php
- Timestamp:
- 05/22/2003 12:18:13 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/b2config.php
r18 r39 2 2 3 3 /* * 4 * b2's config file *5 * */4 * WordPress's config file * 5 * */ 6 6 7 7 … … 20 20 21 21 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 password26 # in the future, the password will allow you to change these details online27 28 $cafelogID = '';29 $use_cafelogping = 0; # set this to 1 if you do have a Cafelog ID30 31 22 32 23 # $pathserver is where you have uploaded b2: for example, 'http://mydomain.com' (no ending slash !) … … 36 27 37 28 38 # your email (obvious uh ?)29 # your email (obvious eh ?) 39 30 $admin_email = 'you@example.com'; 40 31 41 32 42 33 # 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; 44 35 45 36 … … 57 48 # fill with your database details 58 49 $dbname = 'b2'; // the name of the database 59 $dbhost = 'localhost'; // 99% chances you won't need to change this value60 50 $dbusername = 'user'; // your MySQL username 61 51 $dbpassword = 'pass'; // ...and password 52 $dbhost = 'localhost'; // 99% chances you won't need to change this value 62 53 63 54 # database tables' names (change them if you want to have multiple b2's in a single database) … … 80 71 81 72 # set this to 0 to disable the spell checker, or 1 to enable it 82 $use_spellchecker = 1;73 $use_spellchecker = 0; 83 74 84 75 … … 97 88 # this could help balance your HTML code. if it gives bad results, set it to 0 98 89 $use_balanceTags = 1; 99 100 # this would convert quotes into smart/curly quotes, set it to 1 to enable it101 $use_smartquotes = 0;102 90 103 91 … … 179 167 # set this to 0 or 1, whether you want to allow your posts to be trackback'able or not 180 168 # note: setting it to zero would also disable sending trackbacks 181 $use_trackback = 0;169 $use_trackback = 1; 182 170 183 171 # set this to 0 or 1, whether you want to allow your posts to be pingback'able or not 184 172 # note: setting it to zero would also disable sending pingbacks 185 $use_pingback = 0;173 $use_pingback = 1; 186 174 187 175 … … 199 187 200 188 # set this to 1 to let every author be notified about comments on their posts 201 $comments_notify = 0;189 $comments_notify = 1; 202 190 203 191 … … 291 279 # $b2inc is where the included b2 files are: that's generally the directory b2-include, 292 280 # so you shouldn't have to change that setting 293 $b2inc = ' ./b2-include';281 $b2inc = 'b2-include'; 294 282 295 283 … … 351 339 $base = $dbname; 352 340 341 // This is so the new admin location works 342 ini_set('include_path', ".:../:../$b2inc"); 343 353 344 ?>
Note: See TracChangeset
for help on using the changeset viewer.