Source for file _admin.php
Documentation is available at _admin.php
* This is b2evolution's admin config file
* This sets how the back-office works
* Last significant changes to this file: version 0.9.0.10
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
if( !defined('DB_USER') ) die( 'Please, do not access this page directly.' );
* - 0 if you want users to post to a single category only
* - 1 if you want to be able to cross-post among multiple categories
* - 2 if you want to be able to cross-post among multiple blogs/categories
* - 3 if you want to be able to change main cat among blogs (which will move the
* posts from one blog to another; use with caution)
* @global int $allow_cross_posting
$allow_cross_posting =
1;
* Moving chapters between blogs?
* @global bool $allow_moving_chapters
$allow_moving_chapters =
false;
* Default status for new posts:
* Possible values: 'published', 'deprecated', 'protected', 'private', 'draft'
* @global string $default_post_status
$default_post_status =
'published';
* set this to 1 if you want to use the 'preview' function
* @global boolean $use_preview
* set this to 0 to disable the spell checker, or 1 to enable it
* @global boolean $use_spellchecker
* Do you want to be able to link each post to an URL ?
* @global boolean $use_post_url
$use_post_url =
1; // 1 to enable, 0 to disable
* When banning referrers/comment URLs, do you want to remove
* any referrers and comments containing the banned domain?
* (you will be asked to confirm the ban if you enable this)
* @global boolean $deluxe_ban
$deluxe_ban =
1; // 1 to enable, 0 to disable
* When banning, do you want to report abuse to the
* centralized ban list at b2evolution.net?
* @global boolean $report_abuse
* Set this to 0 to disable file upload, or 1 to enable it
* @global boolean $use_fileupload
* Enter the real path of the directory where you'll upload the pictures.
* If you're unsure about what your real path is, please ask your host's support staff.
* Note that the directory must be writable by the webserver (ChMod 766).
* Note for windows-servers users: use forwardslashes instead of backslashes.
* Example: $fileupload_realpath = '/home/example/public_html/media';
* Alternatively you may want to use a path relative to $basepath.
* @global string $fileupload_realpath
$fileupload_realpath =
$basepath.
'/media';
* Enter the URL of that directory
* This is used to generate the links to the pictures
* Example: $fileupload_url = 'http://example.com/media';
* Alternatively you may want to use an URL relatibe to $baseurl
* @global string $fileupload_url
$fileupload_url =
$baseurl.
'/media';
* Accepted file types, you can add to that list if you want.
* Note: add a space before and after each file type.
* Example: $fileupload_allowedtypes = ' jpg gif png ';
* @global string $fileupload_allowedtypes
$fileupload_allowedtypes =
' jpg gif png ';
* by default, most servers limit the size of uploads to 2048 KB
* if you want to set it to a lower value, here it is (you cannot set a higher value)
* @global int $fileupload_maxk
$fileupload_maxk =
'96'; // in kilo bytes
* you may not want all users to upload pictures/files, so you can set a minimum level for this
* @global int $fileupload_minlevel
$fileupload_minlevel =
1;
* You may want to authorize only some users to upload. Enter their logins here, separated by space.
* if you leave that variable blank, all users who have the minimum level are authorized to upload.
* note: add a space before and after each login name.
* example: $fileupload_allowedusers = ' barbara anne ';
* @global string $fileupload_allowedusers
$fileupload_allowedusers =
'';