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