1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
<?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/}
*
* @package conf
*/
if( !defined('DB_USER') ) die( 'Please, do not access this page directly.' );
/**
* Cross posting
*
* Possible values:
* - 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
*/
$use_preview = 1;
/**
* set this to 0 to disable the spell checker, or 1 to enable it
* @global boolean $use_spellchecker
*/
$use_spellchecker = 1;
/**
* 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
*/
$report_abuse = 1;
// ** Image upload **
/**
* Set this to 0 to disable file upload, or 1 to enable it
* @global boolean $use_fileupload
*/
$use_fileupload = 1;
/**
* 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 = '';
?>
|