Файл: system/config.php
Строк: 32
<?php
////////////////////////////////////////
// //
// Core for site //
// Ядро для сайта //
// Author: UndeX //
// Автор: UndeX //
// Contacts/Контакты: //
// Mail: undex.project@gmail.com //
// ICQ: 676768169 //
// //
////////////////////////////////////////
////////////////////////////////////////
// //
// For FREE use //
// Для бесплатного использования //
// //
////////////////////////////////////////
$sys = array();
error_reporting(0); // Show Error reporting, 0 - off, E_ALL - on
// General configs
$sys['saved_cookie_days'] = 7; // cookies to store, days
$sys['forbiden_nicks'] = 'admin|moder|support'; // forbiden nicks to registration, delimiter |
// End General configs
// Capcha config
$sys['captcha_width'] = 150; // Width capcha image, pixels
$sys['captcha_heigth'] = 50; // Heigth capcha image, pixels
$sys['captcha_sign'] = 5; // Characters for capcha image
$sys['captcha_letters'] = array('A','B','C','D','E','F','G','H','J','K','M','N',
'P','Q','R','S','T','U','V','W','X','Y','Z',
'0','1','2','3','4','5','6','7','8','9'); // Capcha letters
$sys["captcha_rgb"] = array(44,66,88,111,133,155,177,199); // Components used in the creation of the RGB-color
$sys['captcha_fontname'] = "veranda"; // Capcha font name
// End Capcha config
global $sys;
?>