b2evolution

Multilingual multiuser multiblog engine

b2evolution Technical Documentation (Version 1.9) [ class tree: conf ] [ index: conf ] [ all elements ]

Source for file _advanced.php

Documentation is available at _advanced.php

  1. <?php
  2. /**
  3.  * This file includes advanced settings for the evoCore framework.
  4.  *
  5.  * Please NOTE: You should not comment variables out to prevent
  6.  * URL overrides.
  7.  *
  8.  * @package conf
  9.  *
  10.  * @version $Id: _advanced.php,v 1.170.2.11 2007/03/10 18:37:31 fplanque Exp $
  11.  */
  12. if!defined('EVO_CONFIG_LOADED') ) die'Please, do not access this page directly.' );
  13.  
  14. /**
  15.  * No Translation. Does nothing.
  16.  *
  17.  * Nevertheless, the string will be extracted by the gettext tools
  18.  */
  19. function NT_$string )
  20. {
  21.     return $string;
  22. }
  23.  
  24. /**
  25.  * Display debugging informations?
  26.  *
  27.  * 0 = no
  28.  * 1 = yes
  29.  * 2 = yes and potentially die() to display debug info (needed before redirects, e-g message_send.php)
  30.  *
  31.  * @global integer 
  32.  */
  33. $debug 0;
  34.  
  35. // Most of the time you'll want to see all errors, including notices:
  36. // b2evo should run notice free! (plugins too!)
  37. error_reportingE_ALL );
  38.  
  39. // To help debugging severe errors, you'll probably want PHP to display the errors on screen.
  40. // In this case, uncomment the following line:
  41. // ini_set( 'display_errors', 'on' );
  42.  
  43. // If you get blank pages, PHP may be crashing because it doesn't have enough memory.
  44. // The default is 8 MB (set in php.ini)
  45. // Try uncommmenting the following line:
  46. // ini_set( 'memory_limit', '16M' );
  47.  
  48.  
  49. /**
  50.  * Log application errors through {@link error_log() PHP's logging facilities}?
  51.  *
  52.  * This means that they will get logged according to PHP's error_log configuration directive.
  53.  *
  54.  * Experimental! This may be changed to use regular files instead/optionally.
  55.  *
  56.  * @global boolean Default: true
  57.  */
  58. $log_app_errors 1;
  59.  
  60.  
  61. /**
  62.  * Demo mode: don't allow changes to the 'demouser' and 'admin' account.
  63.  * @global boolean Default: false
  64.  */
  65. $demo_mode false;
  66.  
  67.  
  68. /**
  69.  * Comments: Set this to 1 to require e-mail and name, or 0 to allow comments
  70.  * without e-mail/name.
  71.  * @global boolean $require_name_email 
  72.  */
  73. $require_name_email 1;
  74.  
  75. /**
  76.  * Minimum interval (in seconds) between consecutive comments from same IP.
  77.  * @global int $minimum_comment_interval 
  78.  */
  79. $minimum_comment_interval 30;
  80.  
  81.  
  82. if!isset($default_to_blog) )
  83. /**
  84.      * Set the blog number to be used when not otherwise specified.
  85.      * 2 is the default setting, since it is the first user blog created by b2evo.
  86.      * 1 is also a popular choice, since it is a special blog aggregating all the others.
  87.      * @global int $default_to_blog 
  88.      * @todo move to {@link $Settings}
  89.      */
  90.     $default_to_blog 2;
  91. }
  92.  
  93.  
  94. /**
  95.  * Set the length of the online session time out (in seconds).
  96.  *
  97.  * This is for the Who's Online block. Default: 5 minutes (300s).
  98.  *
  99.  * @global integer 
  100.  */
  101. $timeout_online_user 300// Default: 5 minutes (300s).
  102.  
  103.  
  104. // Get hostname out of baseurl
  105. // YOU SHOULD NOT EDIT THIS unless you know what you're doing
  106. ifpreg_match'#^(https?://(.+?)(:.+?)?)/#'$baseurl$matches ) )
  107. {
  108.     $baseurlroot $matches[1]// no ending slash!
  109.     // echo "baseurlroot=$baseurlroot <br />";
  110.     $basehost $matches[2];
  111.     // echo "basehost=$basehost <br />";
  112. }
  113. else
  114. {
  115.     die'Your baseurl ('.$baseurl.') set in _basic_config.php seems invalid. You probably missed the "http://" prefix or the trailing slash. Please correct that.' );
  116. }
  117.  
  118. /**
  119.  * Short name of this system (will be used for cookies and notification emails).
  120.  *
  121.  * Change this only if you install mutliple b2evolutions on the same website.
  122.  *
  123.  * WARNING: don't play with this or you'll have tons of cookies sent away and your
  124.  * readers surely will complain about it!
  125.  *
  126.  * You can change the notification email address alone a few lines below.
  127.  *
  128.  * @global string Default: 'b2evo'
  129.  */
  130. $instance_name 'b2evo'// MUST BE A SINGLE WORD! NO SPACES!!
  131.  
  132.  
  133. /**
  134.  * Default email address for sending notifications (comments, trackbacks,
  135.  * user registrations...).
  136.  *
  137.  * Set a custom address like this:
  138.  * <code>$notify_from = 'b2evolution@your_server.com';</code>
  139.  *
  140.  * Alternatively you can use this automated address generation (which removes "www." from
  141.  * the beginning of $basehost):
  142.  * <code>$notify_from = $instance_name.'@'.preg_replace( '/^www\./i', '', $basehost );</code>
  143.  *
  144.  * @global string Default: $instance_name.'@'.$basehost;
  145.  */
  146. $notify_from $instance_name.'@'.preg_replace'/^www\./i'''$basehost );
  147.  
  148.  
  149. /**
  150.  * If a particular post is requested (by id or title) but on the wrong blog,
  151.  * do you want to automatically redirect to the right blog?
  152.  *
  153.  * This is overly useful if you move posts or categories from one blog to another
  154.  *
  155.  * If this is disabled, there are 2 possible situations:
  156.  * - Either the post is no longer part of the requested blog, and you get a "Sorry, nothing to display"
  157.  * - Or the post is still cross categorized into the requested blog and it will be displayed in that (somewhat wrong) blog template.
  158.  *
  159.  * @var boolean Default: false
  160.  */
  161. $redirect_to_postblog false;
  162.  
  163.  
  164. // ** DB options **
  165.  
  166. /**
  167.  * Show MySQL errors? (default: true)
  168.  *
  169.  * This is recommended on production environments.
  170.  */
  171. $db_config['show_errors'true;
  172.  
  173.  
  174. /**
  175.  * Halt on MySQL errors? (default: true)
  176.  *
  177.  * Setting this to false is not recommended,
  178.  */
  179. $db_config['halt_on_error'true;
  180.  
  181.  
  182. /**
  183.  * Aliases for table names:
  184.  *
  185.  * (You should not need to change them.
  186.  *  If you want to have multiple b2evo installations in a single database you should
  187.  *  change {@link $tableprefix} in _basic_config.php)
  188.  */
  189. $db_config['aliases'array(
  190.         'T_antispam'           => $tableprefix.'antispam',
  191.         'T_basedomains'        => $tableprefix.'basedomains',
  192.         'T_blogs'              => $tableprefix.'blogs',
  193.         'T_categories'         => $tableprefix.'categories',
  194.         'T_coll_group_perms'   => $tableprefix.'bloggroups',
  195.         'T_coll_user_perms'    => $tableprefix.'blogusers',
  196.         'T_coll_settings'      => $tableprefix.'coll_settings',
  197.         'T_comments'           => $tableprefix.'comments',
  198.         'T_cron__log'          => $tableprefix.'cron__log',
  199.         'T_cron__task'         => $tableprefix.'cron__task',
  200.         'T_files'              => $tableprefix.'files',
  201.         'T_filetypes'          => $tableprefix.'filetypes',
  202.         'T_groups'             => $tableprefix.'groups',
  203.         'T_hitlog'             => $tableprefix.'hitlog',
  204.         'T_itemstatuses'       => $tableprefix.'poststatuses',
  205.         'T_itemtypes'          => $tableprefix.'posttypes',
  206.         'T_item__prerendering' => $tableprefix.'item__prerendering',
  207.         'T_links'              => $tableprefix.'links',
  208.         'T_locales'            => $tableprefix.'locales',
  209.         'T_plugins'            => $tableprefix.'plugins',
  210.         'T_pluginevents'       => $tableprefix.'pluginevents',
  211.         'T_pluginsettings'     => $tableprefix.'pluginsettings',
  212.         'T_pluginusersettings' => $tableprefix.'pluginusersettings',
  213.         'T_postcats'           => $tableprefix.'postcats',
  214.         'T_posts'              => $tableprefix.'posts',
  215.         'T_sessions'           => $tableprefix.'sessions',
  216.         'T_settings'           => $tableprefix.'settings',
  217.         'T_subscriptions'      => $tableprefix.'subscriptions',
  218.         'T_users'              => $tableprefix.'users',
  219.         'T_useragents'         => $tableprefix.'useragents',
  220.         'T_usersettings'       => $tableprefix.'usersettings',
  221.     );
  222.  
  223.  
  224. /**
  225.  * CREATE TABLE options.
  226.  *
  227.  * Edit those if you have control over you MySQL server and want a more professional
  228.  * database than what is commonly offered by popular hosting providers.
  229.  */
  230. $db_config['table_options''';     // Low ranking MySQL hosting compatibility Default
  231. // Recommended settings:
  232. # $db_config['table_options'] = ' ENGINE=InnoDB ';
  233. // Development settings:
  234. # $db_config['table_options'] = ' ENGINE=InnoDB DEFAULT CHARSET=utf8 ';
  235.  
  236.  
  237. /**
  238.  * Use transactions in DB?
  239.  *
  240.  * You need to use InnoDB in order to enable this. See the {@link $db_config "table_options" key}.
  241.  */
  242. $db_config['use_transactions'false;
  243. // Recommended settings:
  244. # $db_config['use_transactions'] = true;
  245.  
  246.  
  247. /**
  248.  * Foreign key options.
  249.  *
  250.  * Set this to true if your MySQL supports Foreign keys.
  251.  * Recommended for professional use and DEVELOPMENT only.
  252.  * As of today, upgrading is not guaranteed when foreign keys are enabled.
  253.  *
  254.  * Typically requires InnoDB to be set in $db_config['table_options'].
  255.  *
  256.  * This is used during table CREATION only.
  257.  *
  258.  * @todo provide an advanced install menu allowing to install/remove the foreign keys on an already installed db.
  259.  * @global boolean $db_use_fkeys 
  260.  */
  261. $db_use_fkeys false;
  262.  
  263.  
  264. /**
  265.  * Display elements that are different on each request (Page processing time, ..)
  266.  *
  267.  * Set this to true to prevent displaying minor changing elements (like time) in order not to have artificial content changes
  268.  *
  269.  * @global boolean Default: false
  270.  */
  271. $obhandler_debug false;
  272.  
  273.  
  274. // ** Cookies **
  275.  
  276. /*
  277. blueyed>>TODO:
  278. - Cookie needs hash of domain name in its name, eg:
  279.     $cookie_session = 'cookie'.small_hash($Cookies->domain).$instancename.'user'
  280.     (Because: cookies for .domain.tld have higher priority over .sub.domain.tld, with the same cookie name,
  281.         the hash would put that into the name)
  282.     [ Related to PHP bug #32802 (http://bugs.php.net/bug.php?id=32802 - fixed in 5.0.5 (also backported)), but which only affects paths.
  283.         Also see http://www.faqs.org/rfcs/rfc2965:
  284.         "If multiple cookies satisfy the criteria above, they are ordered in
  285.         the Cookie header such that those with more specific Path attributes
  286.         precede those with less specific.  Ordering with respect to other
  287.         attributes (e.g., Domain) is unspecified."
  288.     ]
  289.     - Transform: catch existing cookies, transform to new format
  290.  
  291. fplanque>>What's a real world scenario where this is a problem?
  292. blueyed>> e.g. demo.b2evolution.net and b2evolution.net; or example.com and private.example.com (both running (different) b2evo instances (but with same $instancename)
  293. fplanque>>that's what I thought. This is exactly why we have instance names in the first place. So we won't add a second mecanism. We can however use one of these two enhancements: 1) have the default conf use a $baseurl hash for instance name instead of 'b2evo' or 2) generate a random instance name at install and have it saved in the global params in the DB. NOTE: we also need to check if this can be broken when using b2evo in multiple domain mode.
  294. - Use object to handle cookies
  295.     - We need to know for example if a cookie is about to be sent (because then we don't want to send a 304 response).
  296.  
  297. fplanque>>What's a real world scenario where this is a problem?
  298. blueyed>>When we detect that the content hasn't changed and are about to send a 304 response code we won't do it if we now that (login) cookies should be sent.
  299. fplanque>>ok. If you do it, please do it in a generic $Response object which will not only handle cookies but also stuff like charset translations, format_to_output(), etc.
  300. */
  301.  
  302. /**
  303.  * This is the path that will be associated to cookies.
  304.  *
  305.  * That means cookies set by this b2evo install won't be seen outside of this path on the domain below.
  306.  *
  307.  * @global string Default: preg_replace( '#https?://[^/]+#', '', $baseurl )
  308.  */
  309. $cookie_path preg_replace'#https?://[^/]+#'''$baseurl );
  310.  
  311. /**
  312.  * Cookie domain.
  313.  *
  314.  * That means cookies set by this b2evo install won't be seen outside of this domain.
  315.  *
  316.  * We'll take {@link $basehost} by default (the leading dot includes subdomains), but
  317.  * when there's no dot in it, at least Firefox will not set the cookie. The best
  318.  * example for having no dot in the host name is 'localhost', but it's the case for
  319.  * host names in an intranet also.
  320.  *
  321.  * @global string Default: ( strpos($basehost, '.') ) ? '.'. $basehost : '';
  322.  */
  323. $cookie_domain strpos($basehost'.''.'$basehost '' );
  324. //echo 'cookie_domain='. $cookie_domain. ' cookie_path='. $cookie_path;
  325.  
  326. /**#@+
  327.  * Names for cookies.
  328.  */
  329. // This is mainly used for storing the prefered skin:
  330. // Note: This is not a SESSION variable. It is a user pref that works even for non registered users.
  331. $cookie_state   'cookie'.$instance_name.'state';
  332. // The following remember the comment meta data for non registered users:
  333. $cookie_name    'cookie'.$instance_name.'name';
  334. $cookie_email   'cookie'.$instance_name.'email';
  335. $cookie_url     'cookie'.$instance_name.'url';
  336. // The following handles the session:
  337. $cookie_session 'cookie'.$instance_name.'session';
  338. /**#@-*/
  339.  
  340. /**
  341.  * Expiration for cookies.
  342.  *
  343.  * Value in seconds, set this to 0 if you wish to use non permanent cookies (erased when browser is closed).
  344.  *
  345.  * @global int Default: time() + 31536000; // One year from now
  346.  */
  347. $cookie_expires time(31536000;
  348.  
  349. /**
  350.  * Expired-time used to erase cookies.
  351.  *
  352.  * @global int time() - 86400;    // 24 hours ago
  353.  */
  354. $cookie_expired time(86400;
  355.  
  356.  
  357. // ** Location of the b2evolution subdirectories **
  358.  
  359. /*
  360.     - You should only move these around if you really need to.
  361.     - You should keep everything as subdirectories of the base folder
  362.         ($baseurl which is set in _basic_config.php, default is the /blogs/ folder)
  363.     - Remember you can set the baseurl to your website root (-> _basic_config.php).
  364.  
  365.     NOTE: All paths must have a trailing slash!
  366.  
  367.     Example of a possible setting:
  368.         $conf_subdir = 'settings/b2evo/';   // Subdirectory relative to base
  369.         $conf_subdir = '../../';            // Relative path to go back to base
  370. */
  371. /**
  372.  * Location of the configuration files.
  373.  *
  374.  * Note: This folder NEEDS to by accessible by PHP only.
  375.  *
  376.  * @global string $conf_subdir 
  377.  */
  378. $conf_subdir 'conf/';                  // Subdirectory relative to base
  379. $conf_path str_replace'\\''/'dirname(__FILE__) ).'/';
  380. // echo ' conf_path='.$conf_path;
  381.  
  382. $basepath preg_replace'#/'.$conf_subdir.'$#i'''$conf_path ).'/'// Remove this file's subpath (fp>made [i]nsensitive to case because of Windows URL oddities)
  383. // echo '<br/>basepath='.$basepath;
  384.  
  385. /**
  386.  * Location of the include folder.
  387.  *
  388.  * Note: This folder NEEDS to by accessible by PHP only.
  389.  *
  390.  * @global string $inc_subdir 
  391.  */
  392. $inc_subdir 'inc/';                            // Subdirectory relative to base
  393. $inc_path $basepath.$inc_subdir;                // You should not need to change this
  394. $misc_inc_path $inc_path.'_misc/';           // You should not need to change this
  395. $model_path $inc_path.'MODEL/';                   // You should not need to change this
  396. $view_path $inc_path.'VIEW/';                        // You should not need to change this
  397. $control_path $inc_path.'CONTROL/';            // You should not need to change this
  398.  
  399. /**
  400.  * Location of the HTml SeRVices folder.
  401.  *
  402.  * Note: This folder NEEDS to by accessible through HTTP.
  403.  *
  404.  * @global string $htsrv_subdir 
  405.  */
  406. $htsrv_subdir 'htsrv/';                // Subdirectory relative to base
  407. $htsrv_path $basepath.$htsrv_subdir;   // You should not need to change this
  408. $htsrv_url $baseurl.$htsrv_subdir;     // You should not need to change this
  409.  
  410. /**
  411.  * Sensitivee URL to the htsrv folder.
  412.  *
  413.  * Set this separately (based on {@link $htsrv_url}), if you want to use
  414.  * SSL for login, registration and profile updates (where passwords are
  415.  * involved), but not for the whole htsrv scripts.
  416.  *
  417.  * @global string 
  418.  */
  419. $htsrv_url_sensitive $htsrv_url;
  420.  
  421. /**
  422.  * Location of the XML SeRVices folder.
  423.  * @global string $xmlsrv_subdir 
  424.  */
  425. $xmlsrv_subdir 'xmlsrv/';              // Subdirectory relative to base
  426. $xmlsrv_url $baseurl.$xmlsrv_subdir;   // You should not need to change this
  427.  
  428. /**
  429.  * Location of the RSC folder.
  430.  *
  431.  * Note: This folder NEEDS to by accessible through HTTP.
  432.  *
  433.  * @global string $rsc_subdir 
  434.  */
  435. $rsc_subdir 'rsc/';                    // Subdirectory relative to base
  436. $rsc_path $basepath.$rsc_subdir;       // You should not need to change this
  437. $rsc_url $baseurl.$rsc_subdir;         // You should not need to change this
  438.  
  439. /**
  440.  * Location of the skins folder.
  441.  * @global string $skins_subdir 
  442.  */
  443. $skins_subdir 'skins/';                // Subdirectory relative to base
  444. $skins_path $basepath.$skins_subdir;   // You should not need to change this
  445. $skins_url $baseurl.$skins_subdir;     // You should not need to change this
  446.  
  447.  
  448. /**
  449.  * Location of the admin interface dispatcher
  450.  */
  451. $dispatcher 'admin.php';
  452. $admin_url $baseurl.$dispatcher;
  453.  
  454.  
  455. /**
  456.  * Location of the admin skins folder.
  457.  *
  458.  * Note: This folder NEEDS to by accessible by both PHP AND through HTTP.
  459.  *
  460.  * @global string $adminskins_subdir 
  461.  */
  462. $adminskins_subdir 'skins_adm/';         // Subdirectory relative to ADMIN
  463. $adminskins_path $basepath.$adminskins_subdir// You should not need to change this
  464. $adminskins_url $baseurl.$adminskins_subdir;   // You should not need to change this
  465.  
  466. /**
  467.  * Location of the locales folder.
  468.  *
  469.  * Note: This folder NEEDS to by accessible by PHP AND MAY NEED to be accessible through HTTP.
  470.  * Exact requirements depend on future uses like localized icons.
  471.  *
  472.  * @global string $locales_subdir 
  473.  */
  474. $locales_subdir 'locales/';            // Subdirectory relative to base
  475. $locales_path $basepath.$locales_subdir;  // You should not need to change this
  476.  
  477. /**
  478.  * Location of the plugins.
  479.  *
  480.  * Note: This folder NEEDS to by accessible by PHP AND MAY NEED to be accessible through HTTP.
  481.  * Exact requirements depend on installed plugins.
  482.  *
  483.  * @global string $plugins_subdir 
  484.  */
  485. $plugins_subdir 'plugins/';            // Subdirectory relative to base
  486. $plugins_path $basepath.$plugins_subdir;  // You should not need to change this
  487. $plugins_url $baseurl.$plugins_subdir;    // You should not need to change this
  488.  
  489. /**
  490.  * Location of the cron folder.
  491.  *
  492.  * Note: Depebding on how you will set up cron execution, this folder may or may not NEED to be accessible by PHP through HTTP.
  493.  *
  494.  * @global string $cron_subdir 
  495.  */
  496. $cron_subdir 'cron/';                            // Subdirectory relative to base
  497. $cron_url $baseurl.$cron_subdir;    // You should not need to change this
  498.  
  499. /**
  500.  * Location of the install folder.
  501.  * @global string $install_subdir 
  502.  */
  503. $install_subdir 'install/';            // Subdirectory relative to base
  504.  
  505. /**
  506.  * Location of the root media folder.
  507.  *
  508.  * Note: This folder MAY or MAY NOT NEED to be accessible by PHP AND/OR through HTTP.
  509.  * Exact requirements depend on $public_access_to_media .
  510.  *
  511.  * @global string $media_subdir 
  512.  */
  513. $media_subdir 'media/';                // Subdirectory relative to base
  514. $media_url $baseurl.$media_subdir;     // You should not need to change this
  515.  
  516.  
  517. /**
  518.  * Do you want to allow public access to the media dir?
  519.  *
  520.  * WARNING: If you set this to false, evocore will use /htsrv/getfile.php as a stub
  521.  * to access files and getfile.php will check the User permisssion to view files.
  522.  * HOWEVER this will not prevent users from hitting directly into the media folder
  523.  * with their web browser. You still need to restrict access to the media folder
  524.  * from your webserver.
  525.  *
  526.  * @global boolean 
  527.  */
  528. $public_access_to_media true;
  529.  
  530. /**
  531.  * File extensions that the admin will not be able to enable in the Settings
  532.  */
  533. $force_upload_forbiddenext array'cgi''exe''htaccess''htpasswd''php''php3''php4''php5''php6''phtml''pl''vbs' );
  534.  
  535. /**
  536.  * Admin can configure max file upload size, but he won't be able to set it higher than this "max max" value.
  537.  */
  538. $upload_maxmaxkb 2048;
  539.  
  540. /**
  541.  * The admin can configure the regexp for valid file names in the Settings interface
  542.  * However if the following values are set to non empty, the admin will not be able to customize these values.
  543.  */
  544. $force_regexp_filename '';
  545. $force_regexp_dirname '';
  546.  
  547.  
  548. /**
  549.  * Here you can give credit where credit is due ;)
  550.  * These will appear in the footer of all skins (if the skins are compatible)
  551.  * You can also add site sponsors here.
  552.  *
  553.  * If you can add your own credits without removing the samples below, you'll be very cool :))
  554.  * Please leave the credits at the bottom of your pages to make sure your blog gets listed on b2evolution.net
  555.  *
  556.  * Note: some plugins may add their own credit at the end of this array.
  557.  * (Not recommended for plugins with potential security weaknesses)
  558.  */
  559. $credit_links array(
  560.     array'http://b2evolution.net/''blog software' ),
  561.     array'http://b2evolution.net/about/recommended-hosting-lamp-best-choices.php''web hosting' ),
  562.     array'http://b2evolution.net/about/monetize-blog-money.php''monetize' ),
  563. );
  564.  
  565.  
  566. /**
  567.  * Set this to 1 to disable using PHP's {@link register_shutdown_function()},
  568.  * but not everywhere.
  569.  *
  570.  * This is NOT recommened, because it affects things that should be done after delivering the page.
  571.  *
  572.  * Currently, it disables using register_shutdown_function() for double checking referers
  573.  * ({@link basic_antispam_plugin::AppendHitLog()}), but not for {@link Session::dbsave()}.
  574.  *
  575.  * It's probably only useful for debugging to disable this feature.
  576.  * @global int $debug_no_register_shutdown 
  577.  */
  578. $debug_no_register_shutdown 0;
  579.  
  580.  
  581. /**
  582.  * XMLRPC logging. Set this to 1 to log XMLRPC calls/responses (into /xmlsrv/xmlrpc.log).
  583.  *
  584.  * @global int $debug_xmlrpc_logging Default: 0
  585.  */
  586. $debug_xmlrpc_logging 0;
  587.  
  588.  
  589. /**
  590.  * Seconds after which a scheduled task is considered to be timed out.
  591.  */
  592. $cron_timeout_delay 1800// 30 minutes
  593.  
  594.  
  595. // ----- CHANGE THE FOLLOWING ONLY IF YOU KNOW WHAT YOU'RE DOING! -----
  596. $evonetsrv_host 'b2evolution.net';
  597. $evonetsrv_port 80;
  598. $evonetsrv_uri '/evonetsrv/xmlrpc.php';
  599.  
  600. $antispamsrv_host 'antispam.b2evolution.net';
  601. $antispamsrv_port 80;
  602. $antispamsrv_uri '/evonetsrv/xmlrpc.php';
  603. ?>

Documentation generated on Tue, 18 Dec 2007 19:10:13 +0100 by phpDocumentor 1.4.0