2006-08-19 07:04:45 +00:00
< ? php
2007-03-05 09:04:55 +00:00
require_once " functions.php " ;
2007-11-17 08:40:37 +00:00
define ( 'EXPECTED_CONFIG_VERSION' , 12 );
2007-11-15 05:41:53 +00:00
define ( 'SCHEMA_VERSION' , 26 );
2006-03-28 07:56:56 +00:00
2005-11-23 17:20:17 +00:00
if ( ! file_exists ( " config.php " )) {
2007-03-05 08:45:38 +00:00
print __ ( " <b>Fatal Error</b>: You forgot to copy
2006-12-21 17:08:19 +00:00
< b > config . php - dist </ b > to < b > config . php </ b > and edit it . \n " );
2005-11-23 17:20:17 +00:00
exit ;
}
2006-03-28 15:44:51 +00:00
require_once " config.php " ;
2006-03-28 07:56:56 +00:00
if ( CONFIG_VERSION != EXPECTED_CONFIG_VERSION ) {
2007-03-05 09:24:13 +00:00
$err_msg = __ ( " config: your config file version is incorrect. See config.php-dist. \n " );
2006-07-04 05:51:05 +00:00
}
2006-12-25 08:00:41 +00:00
if ( defined ( 'RSS_BACKEND_TYPE' )) {
2007-03-05 08:45:38 +00:00
print __ ( " <b>Fatal error</b>: RSS_BACKEND_TYPE is deprecated. Please remove this
2006-12-25 08:00:41 +00:00
option from config . php\n " );
2006-07-04 05:51:05 +00:00
exit ;
}
2006-02-12 10:15:24 +00:00
if ( file_exists ( " xml-export.php " ) || file_exists ( " xml-import.php " )) {
2007-03-05 08:45:38 +00:00
print __ ( " <b>Fatal Error</b>: XML Import/Export tools (<b>xml-export.php</b>
2006-02-12 10:15:24 +00:00
and < b > xml - import . php </ b > ) could be used maliciously . Please remove them
2006-12-21 17:08:19 +00:00
from your TT - RSS instance . \n " );
2006-02-12 10:15:24 +00:00
exit ;
}
2006-07-31 06:44:28 +00:00
2006-08-07 12:22:39 +00:00
if ( SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0 ) {
2007-03-05 08:45:38 +00:00
print __ ( " <b>Fatal Error</b>: Please set DAEMON_UPDATE_LOGIN_LIMIT
2006-12-21 17:08:19 +00:00
to 0 in single user mode . \n " );
2006-08-07 12:22:39 +00:00
exit ;
}
2006-08-20 10:27:25 +00:00
if ( USE_CURL_FOR_ICONS && ! function_exists ( " curl_init " )) {
2007-03-05 08:45:38 +00:00
print __ ( " <b>Fatal Error</b>: You have enabled USE_CURL_FOR_ICONS, but your PHP
2006-12-21 17:08:19 +00:00
doesn ' t seem to support CURL functions . " );
2006-08-20 10:27:25 +00:00
exit ;
}
2006-10-01 10:05:20 +00:00
if ( ! defined ( 'SESSION_EXPIRE_TIME' )) {
2007-03-05 08:45:38 +00:00
$err_msg = __ ( " config: SESSION_EXPIRE_TIME is undefined " );
2006-10-01 10:05:20 +00:00
}
if ( SESSION_EXPIRE_TIME < 60 ) {
2007-03-05 08:45:38 +00:00
$err_msg = __ ( " config: SESSION_EXPIRE_TIME is too low (less than 60) " );
2006-10-01 10:05:20 +00:00
}
2007-03-02 11:12:04 +00:00
if ( SESSION_EXPIRE_TIME < SESSION_COOKIE_LIFETIME ) {
2007-03-05 08:45:38 +00:00
$err_msg = __ ( " config: SESSION_EXPIRE_TIME should be greater or equal to " .
2007-03-02 11:12:04 +00:00
" SESSION_COOKIE_LIFETIME " );
2006-10-01 10:05:20 +00:00
}
2006-10-01 11:47:34 +00:00
/* if ( defined ( 'DISABLE_SESSIONS' )) {
2006-10-01 10:05:20 +00:00
$err_msg = " config: you have enabled DISABLE_SESSIONS. Please disable this option. " ;
2006-10-01 11:47:34 +00:00
} */
2006-10-01 10:05:20 +00:00
if ( DATABASE_BACKED_SESSIONS && SINGLE_USER_MODE ) {
2007-03-05 08:45:38 +00:00
$err_msg = __ ( " config: DATABASE_BACKED_SESSIONS is incompatible with SINGLE_USER_MODE " );
2006-10-01 10:05:20 +00:00
}
2006-12-08 05:36:10 +00:00
if ( DATABASE_BACKED_SESSIONS && DB_TYPE == " mysql " ) {
2007-03-05 08:45:38 +00:00
$err_msg = __ ( " config: DATABASE_BACKED_SESSIONS are currently broken with MySQL " );
2006-12-08 05:36:10 +00:00
}
2007-08-26 10:32:48 +00:00
if ( defined ( 'MAIL_FROM' )) {
$err_msg = __ ( " config: MAIL_FROM has been split into DIGEST_FROM_NAME and DIGEST_FROM_ADDRESS " );
}
2007-09-20 03:00:19 +00:00
if ( ! defined ( 'COUNTERS_MAX_AGE' )) {
$err_msg = __ ( " config: option COUNTERS_MAX_AGE expected, but not defined " );
}
2007-09-25 04:08:29 +00:00
if ( defined ( 'DAEMON_REFRESH_ONLY' )) {
2007-09-25 04:06:21 +00:00
$err_msg = __ ( " config: option DAEMON_REFRESH_ONLY is obsolete. Please remove this option and read about other ways to update feeds on the <a href='http://tt-rss.spb.ru/trac/wiki/UpdatingFeeds'>wiki</a>. " );
}
2006-10-01 10:05:20 +00:00
if ( $err_msg ) {
2007-03-05 08:45:38 +00:00
print " <b> " . __ ( " Fatal Error " ) . " </b>: $err_msg\n " ;
2006-10-01 10:05:20 +00:00
exit ;
}
2005-11-23 17:20:17 +00:00
?>