b2evolution

Multilingual multiuser multiblog engine

b2evolution Technical Documentation (Version 2.4) [ 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.213.2.1 2009/09/26 14:27:57 tblue246 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. ifdefined'E_DEPRECATED' ) )
  38. {
  39.     error_reportingE_ALL );
  40. }
  41. else
  42. {    // Hopefully temporary fix for PHP >= v5.3 (Assigning the return value of new by reference is deprecated)
  43.     // Tblue> This doesn't work properly on PHP 5.3... For some reason, you have to set error_reporting to
  44.     // the desired value in php.ini -- error_reporting() and even ini_set() fail.
  45.     error_reportingE_ALL ~E_DEPRECATED );
  46. }
  47.  
  48. // To help debugging severe errors, you'll probably want PHP to display the errors on screen.
  49. // In this case, uncomment the following line:
  50. // ini_set( 'display_errors', 'on' );
  51.  
  52. // If you get blank pages, PHP may be crashing because it doesn't have enough memory.
  53. // The default is 8 MB (in PHP < 5.2) and 128 MB (in PHP > 5.2)
  54. // Try uncommmenting the following line:
  55. // ini_set( 'memory_limit', '32M' );
  56.  
  57.  
  58. /**
  59.  * Log application errors through {@link error_log() PHP's logging facilities}?
  60.  *
  61.  * This means that they will get logged according to PHP's error_log configuration directive.
  62.  *
  63.  * Experimental! This may be changed to use regular files instead/optionally.
  64.  *
  65.  * @todo Provide logging into normal file instead (more useful for backtraces/multiline error messages)
  66.  *
  67.  * @global integer 0: off; 1: log errors; 2: include function backtraces (Default: 1)
  68.  */
  69. $log_app_errors 1;
  70.  
  71.  
  72. /**
  73.  * Demo mode
  74.  *  - Do not allow update of files in the file manager
  75.  *  - Do not allow changes to the 'demouser' and 'admin' account/group
  76.  *  - Blog media directories can only be configured to be inside of {@link $media_path}
  77.  * @global boolean Default: false
  78.  */
  79. $demo_mode false;
  80.  
  81.  
  82. /**
  83.  * URL of the Home link at the top left.
  84.  *
  85.  * By default this is the base url. And unless you do a complex installation, there is no need to change this.
  86.  */
  87. $home_url $baseurl;
  88.  
  89.  
  90. /**
  91.  * Comments: Set this to 1 to require e-mail and name, or 0 to allow comments
  92.  * without e-mail/name.
  93.  * @global boolean $require_name_email 
  94.  */
  95. $require_name_email 1;
  96.  
  97. /**
  98.  * Minimum interval (in seconds) between consecutive comments from same IP.
  99.  * @global int $minimum_comment_interval 
  100.  */
  101. $minimum_comment_interval 30;
  102.  
  103.  
  104. /**
  105.  * Check antispam blacklist for private messages.
  106.  *
  107.  * Do you want to check the antispam blocklist when a message form is submitted?
  108.  *
  109.  * @global boolean $antispam_on_message_form 
  110.  */
  111. $antispam_on_message_form 1;
  112.  
  113.  
  114. /**
  115.  * Set the length of the online session time out (in seconds).
  116.  *
  117.  * This is for the Who's Online block. Default: 5 minutes (300s).
  118.  *
  119.  * @global integer 
  120.  */
  121. $timeout_online_user 300// Default: 5 minutes (300s).
  122.  
  123.  
  124. // Get hostname out of baseurl
  125. // YOU SHOULD NOT EDIT THIS unless you know what you're doing
  126. ifpreg_match'#^(https?://(.+?)(:(.+?))?)(/.*)$#'$baseurl$matches ) )
  127. {
  128.     $baseurlroot $matches[1]// no ending slash!
  129.     // echo "baseurlroot=$baseurlroot <br />";
  130.     $basehost $matches[2];
  131.     // echo "basehost=$basehost <br />";
  132.     $baseport =  $matches[4];
  133.     // echo "baseport=$baseport <br />";
  134.     $basesubpath =  $matches[5];
  135.     // echo "basesubpath=$basesubpath <br />";
  136. }
  137. else
  138. {
  139.     die'Your baseurl ('.$baseurl.') set in _basic_config.php seems invalid. You probably missed the "http://" prefix or the trailing slash. Please correct that.' );
  140. }
  141.  
  142.  
  143. /**
  144.  * Base domain of b2evolution.
  145.  *
  146.  * By default we try to extract it automagically from $basehost (itself extracted from $abaseurl)
  147.  * But you may need to adjust this manually.
  148.  *
  149.  * @todo does anyone have a clean way of handling stuff like .co.uk ?
  150.  *
  151.  * @global string 
  152.  */
  153. $basedomain preg_replace'/^( .* \. )? (.+? \. .+? )$/xi''$2'$basehost );
  154.  
  155.  
  156. /**
  157.  * Short name of this system (will be used for cookies and notification emails).
  158.  *
  159.  * Change this only if you install mutliple b2evolutions on the same website.
  160.  *
  161.  * WARNING: don't play with this or you'll have tons of cookies sent away and your
  162.  * readers surely will complain about it!
  163.  *
  164.  * You can change the notification email address alone a few lines below.
  165.  *
  166.  * @todo generate a random instance name at install and have it saved in the global params in the DB
  167.  *
  168.  * @global string Default: 'b2evo'
  169.  */
  170. $instance_name 'b2evo'// MUST BE A SINGLE WORD! NO SPACES!!
  171.  
  172.  
  173. /**
  174.  * Default email address for sending notifications (comments, trackbacks,
  175.  * user registrations...).
  176.  *
  177.  * Set a custom address like this:
  178.  * <code>$notify_from = 'b2evolution@your_server.com';</code>
  179.  *
  180.  * Alternatively you can use this automated address generation (which removes "www." from
  181.  * the beginning of $basehost):
  182.  * <code>$notify_from = $instance_name.'@'.preg_replace( '/^www\./i', '', $basehost );</code>
  183.  *
  184.  * @global string Default: $instance_name.'@'.$basehost;
  185.  */
  186. $notify_from $instance_name.'@'.preg_replace'/^www\./i'''$basehost );
  187.  
  188.  
  189. // ** DB options **
  190.  
  191. /**
  192.  * Show MySQL errors? (default: true)
  193.  *
  194.  * This is recommended on production environments.
  195.  */
  196. $db_config['show_errors'true;
  197.  
  198.  
  199. /**
  200.  * Halt on MySQL errors? (default: true)
  201.  *
  202.  * Setting this to false is not recommended,
  203.  */
  204. $db_config['halt_on_error'true;
  205.  
  206.  
  207. /**
  208.  * Aliases for table names:
  209.  *
  210.  * (You should not need to change them.
  211.  *  If you want to have multiple b2evo installations in a single database you should
  212.  *  change {@link $tableprefix} in _basic_config.php)
  213.  */
  214. $db_config['aliases'array(
  215.         'T_antispam'            => $tableprefix.'antispam',
  216.         'T_basedomains'         => $tableprefix.'basedomains',
  217.         'T_blogs'               => $tableprefix.'blogs',
  218.         'T_categories'          => $tableprefix.'categories',
  219.         'T_coll_group_perms'    => $tableprefix.'bloggroups',
  220.         'T_coll_user_perms'     => $tableprefix.'blogusers',
  221.         'T_coll_settings'       => $tableprefix.'coll_settings',
  222.         'T_comments'            => $tableprefix.'comments',
  223.         'T_cron__log'           => $tableprefix.'cron__log',
  224.         'T_cron__task'          => $tableprefix.'cron__task',
  225.         'T_files'               => $tableprefix.'files',
  226.         'T_filetypes'           => $tableprefix.'filetypes',
  227.         'T_groups'              => $tableprefix.'groups',
  228.         'T_global__cache'       => $tableprefix.'global__cache',
  229.         'T_hitlog'              => $tableprefix.'hitlog',
  230.         'T_items__item'         => $tableprefix.'items__item',
  231.         'T_items__itemtag'      => $tableprefix.'items__itemtag',
  232.         'T_items__prerendering' => $tableprefix.'items__prerendering',
  233.         'T_items__status'       => $tableprefix.'items__status',
  234.         'T_items__tag'          => $tableprefix.'items__tag',
  235.         'T_items__type'         => $tableprefix.'items__type',
  236.         'T_links'               => $tableprefix.'links',
  237.         'T_locales'             => $tableprefix.'locales',
  238.         'T_plugins'             => $tableprefix.'plugins',
  239.         'T_pluginevents'        => $tableprefix.'pluginevents',
  240.         'T_pluginsettings'      => $tableprefix.'pluginsettings',
  241.         'T_pluginusersettings'  => $tableprefix.'pluginusersettings',
  242.         'T_postcats'            => $tableprefix.'postcats',
  243.         'T_sessions'            => $tableprefix.'sessions',
  244.         'T_settings'            => $tableprefix.'settings',
  245.         'T_skins__container'    => $tableprefix.'skins__container',
  246.         'T_skins__skin'         => $tableprefix.'skins__skin',
  247.         'T_subscriptions'       => $tableprefix.'subscriptions',
  248.         'T_users'               => $tableprefix.'users',
  249.         'T_useragents'          => $tableprefix.'useragents',
  250.         'T_usersettings'        => $tableprefix.'usersettings',
  251.         'T_widget'              => $tableprefix.'widget',
  252.     );
  253.  
  254.  
  255. /**
  256.  * CREATE TABLE options.
  257.  *
  258.  * Edit those if you have control over you MySQL server and want a more professional
  259.  * database than what is commonly offered by popular hosting providers.
  260.  */
  261. $db_config['table_options''';     // Low ranking MySQL hosting compatibility Default
  262. // Recommended settings:
  263. # $db_config['table_options'] = ' ENGINE=InnoDB ';
  264. // Development settings:
  265. # $db_config['table_options'] = ' ENGINE=InnoDB DEFAULT CHARSET=utf8 ';
  266.  
  267.  
  268. /**
  269.  * Use transactions in DB?
  270.  *
  271.  * You need to use InnoDB in order to enable this. See the {@link $db_config "table_options" key}.
  272.  */
  273. $db_config['use_transactions'false;
  274. // Recommended settings:
  275. # $db_config['use_transactions'] = true;
  276.  
  277.  
  278. /**
  279.  * Foreign key options.
  280.  *
  281.  * Set this to true if your MySQL supports Foreign keys.
  282.  * Recommended for professional use and DEVELOPMENT only.
  283.  * As of today, upgrading is not guaranteed when foreign keys are enabled.
  284.  *
  285.  * Typically requires InnoDB to be set in $db_config['table_options'].
  286.  *
  287.  * This is used during table CREATION only.
  288.  *
  289.  * @todo provide an advanced install menu allowing to install/remove the foreign keys on an already installed db.
  290.  * @global boolean $db_use_fkeys 
  291.  */
  292. $db_use_fkeys false;
  293.  
  294.  
  295. /**
  296.  * Display elements that are different on each request (Page processing time, ..)
  297.  *
  298.  * Set this to true to prevent displaying minor changing elements (like time) in order not to have artificial content changes
  299.  *
  300.  * @global boolean Default: false
  301.  */
  302. $obhandler_debug false;
  303.  
  304.  
  305. // ** Cookies **
  306.  
  307. /**
  308.  * This is the path that will be associated to cookies.
  309.  *
  310.  * That means cookies set by this b2evo install won't be seen outside of this path on the domain below.
  311.  *
  312.  * @global string Default: preg_replace( '#https?://[^/]+#', '', $baseurl )
  313.  */
  314. $cookie_path preg_replace'#https?://[^/]+#'''$baseurl );
  315.  
  316. /**
  317.  * Cookie domain.
  318.  *
  319.  * That means cookies set by this b2evo install won't be seen outside of this domain.
  320.  *
  321.  * We'll take {@link $basehost} by default (the leading dot includes subdomains), but
  322.  * when there's no dot in it, at least Firefox will not set the cookie. The best
  323.  * example for having no dot in the host name is 'localhost', but it's the case for
  324.  * host names in an intranet also.
  325.  *
  326.  * Note: ".domain.com" cookies will be sent to sub.domain.com too.
  327.  * But, see http://www.faqs.org/rfcs/rfc2965:
  328.  *    "If multiple cookies satisfy the criteria above, they are ordered in
  329.  *    the Cookie header such that those with more specific Path attributes
  330.  *    precede those with less specific.  Ordering with respect to other
  331.  *    attributes (e.g., Domain) is unspecified."
  332.  *
  333.  * @global string Default: ( strpos($basehost, '.') ) ? '.'. $basehost : '';
  334.  */
  335. ifstrpos($basehost'.'=== false )
  336. {    // localhost or windows machine name:
  337.     $cookie_domain '';
  338. }
  339. elseifpreg_match'~^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$~i'$basehost ) )
  340. {    // Use the basehost as it is:
  341.     $cookie_domain $basehost;
  342. }
  343. else
  344. {
  345.     $cookie_domain preg_replace'/^(www\. )? (.+)$/xi''.$2'$basehost );
  346.  
  347.     // When hosting multiple domains (not just subdomains) on a single instance of b2evo,
  348.     // you may want to try this:
  349.     // $cookie_domain = '.'.$_SERVER['HTTP_HOST'];
  350.     // or this: -- Have a cookie domain of 2 levels only, base on current basehost.
  351.     // $cookie_domain = preg_replace( '/^( .* \. )? (.+? \. .+? )$/xi', '.$2', $basehost );
  352.     // fp> pb with domains like .co.uk !?
  353. }
  354.  
  355. // echo $cookie_domain;
  356.  
  357. /**#@+
  358.  * Names for cookies.
  359.  */
  360. // The following remember the comment meta data for non registered users:
  361. $cookie_name    'cookie'.$instance_name.'name';
  362. $cookie_email   'cookie'.$instance_name.'email';
  363. $cookie_url     'cookie'.$instance_name.'url';
  364. // The following handles the session:
  365. $cookie_session 'cookie'.$instance_name.'session';
  366. /**#@-*/
  367.  
  368. /**
  369.  * Expiration for cookies.
  370.  *
  371.  * Value in seconds, set this to 0 if you wish to use non permanent cookies (erased when browser is closed).
  372.  *
  373.  * @global int Default: time() + 31536000; // One year from now
  374.  */
  375. $cookie_expires time(31536000;
  376.  
  377. /**
  378.  * Expired-time used to erase cookies.
  379.  *
  380.  * @global int time() - 86400;    // 24 hours ago
  381.  */
  382. $cookie_expired time(86400;
  383.  
  384.  
  385. // ** Location of the b2evolution subdirectories **
  386.  
  387. /*
  388.     - You should only move these around if you really need to.
  389.     - You should keep everything as subdirectories of the base folder
  390.         ($baseurl which is set in _basic_config.php, default is the /blogs/ folder)
  391.     - Remember you can set the baseurl to your website root (-> _basic_config.php).
  392.  
  393.     NOTE: All paths must have a trailing slash!
  394.  
  395.     Example of a possible setting:
  396.         $conf_subdir = 'settings/b2evo/';   // Subdirectory relative to base
  397.         $conf_subdir = '../../';            // Relative path to go back to base
  398. */
  399. /**
  400.  * Location of the configuration files.
  401.  *
  402.  * Note: This folder NEEDS to by accessible by PHP only.
  403.  *
  404.  * @global string $conf_subdir 
  405.  */
  406. $conf_subdir 'conf/';                  // Subdirectory relative to base
  407. $conf_path str_replace'\\''/'dirname(__FILE__) ).'/';
  408.  
  409. /**
  410.  * @global string Path of the base.
  411.  *                 fp> made [i]nsensitive to case because of Windows URL oddities)
  412.  */
  413. $basepath preg_replace'#/'.$conf_subdir.'$#i'''$conf_path ).'/';
  414. // echo '<br/>basepath='.$basepath;
  415.  
  416. /**
  417.  * Location of the include folder.
  418.  *
  419.  * Note: This folder NEEDS to by accessible by PHP only.
  420.  *
  421.  * @global string $inc_subdir 
  422.  */
  423. $inc_subdir 'inc/';                            // Subdirectory relative to base
  424. $inc_path $basepath.$inc_subdir;                // You should not need to change this
  425. $misc_inc_path $inc_path.'_misc/';           // You should not need to change this
  426.  
  427. /**
  428.  * Location of the HTml SeRVices folder.
  429.  *
  430.  * Note: This folder NEEDS to by accessible through HTTP.
  431.  *
  432.  * @global string $htsrv_subdir 
  433.  */
  434. $htsrv_subdir 'htsrv/';                // Subdirectory relative to base
  435. $htsrv_path $basepath.$htsrv_subdir;   // You should not need to change this
  436. $htsrv_url $baseurl.$htsrv_subdir;     // You should not need to change this
  437.  
  438. /**
  439.  * Sensitivee URL to the htsrv folder.
  440.  *
  441.  * Set this separately (based on {@link $htsrv_url}), if you want to use
  442.  * SSL for login, registration and profile updates (where passwords are
  443.  * involved), but not for the whole htsrv scripts.
  444.  *
  445.  * @global string 
  446.  */
  447. $htsrv_url_sensitive $htsrv_url;
  448.  
  449. /**
  450.  * Location of the XML SeRVices folder.
  451.  * @global string $xmlsrv_subdir 
  452.  */
  453. $xmlsrv_subdir 'xmlsrv/';              // Subdirectory relative to base
  454. $xmlsrv_url $baseurl.$xmlsrv_subdir;   // You should not need to change this
  455.  
  456. /**
  457.  * Location of the RSC folder.
  458.  *
  459.  * Note: This folder NEEDS to by accessible through HTTP.
  460.  *
  461.  * @global string $rsc_subdir 
  462.  */
  463. $rsc_subdir 'rsc/';                    // Subdirectory relative to base
  464. $rsc_path $basepath.$rsc_subdir;       // You should not need to change this
  465. $rsc_url $baseurl.$rsc_subdir;         // You should not need to change this
  466.  
  467. /**
  468.  * Location of the skins folder.
  469.  * @global string $skins_subdir 
  470.  */
  471. $skins_subdir 'skins/';                // Subdirectory relative to base
  472. $skins_path $basepath.$skins_subdir;   // You should not need to change this
  473. $skins_url $baseurl.$skins_subdir;     // You should not need to change this
  474.  
  475.  
  476. /**
  477.  * Location of the admin interface dispatcher
  478.  */
  479. $dispatcher 'admin.php';
  480. $admin_url $baseurl.$dispatcher;
  481.  
  482.  
  483. /**
  484.  * Location of the admin skins folder.
  485.  *
  486.  * Note: This folder NEEDS to by accessible by both PHP AND through HTTP.
  487.  *
  488.  * @global string $adminskins_subdir 
  489.  */
  490. $adminskins_subdir 'skins_adm/';         // Subdirectory relative to ADMIN
  491. $adminskins_path $basepath.$adminskins_subdir// You should not need to change this
  492. $adminskins_url $baseurl.$adminskins_subdir;   // You should not need to change this
  493.  
  494. /**
  495.  * Location of the locales folder.
  496.  *
  497.  * Note: This folder NEEDS to by accessible by PHP AND MAY NEED to be accessible through HTTP.
  498.  * Exact requirements depend on future uses like localized icons.
  499.  *
  500.  * @global string $locales_subdir 
  501.  */
  502. $locales_subdir 'locales/';            // Subdirectory relative to base
  503. $locales_path $basepath.$locales_subdir;  // You should not need to change this
  504.  
  505. /**
  506.  * Location of the plugins.
  507.  *
  508.  * Note: This folder NEEDS to by accessible by PHP AND MAY NEED to be accessible through HTTP.
  509.  * Exact requirements depend on installed plugins.
  510.  *
  511.  * @global string $plugins_subdir 
  512.  */
  513. $plugins_subdir 'plugins/';            // Subdirectory relative to base
  514. $plugins_path $basepath.$plugins_subdir;  // You should not need to change this
  515. $plugins_url $baseurl.$plugins_subdir;    // You should not need to change this
  516.  
  517. /**
  518.  * Location of the cron folder.
  519.  *
  520.  * Note: Depebding on how you will set up cron execution, this folder may or may not NEED to be accessible by PHP through HTTP.
  521.  *
  522.  * @global string $cron_subdir 
  523.  */
  524. $cron_subdir 'cron/';                            // Subdirectory relative to base
  525. $cron_url $baseurl.$cron_subdir;    // You should not need to change this
  526.  
  527. /**
  528.  * Location of the install folder.
  529.  * @global string $install_subdir 
  530.  */
  531. $install_subdir 'install/';            // Subdirectory relative to base
  532.  
  533. /**
  534.  * Location of the root media folder.
  535.  *
  536.  * Note: This folder MAY or MAY NOT NEED to be accessible by PHP AND/OR through HTTP.
  537.  * Exact requirements depend on $public_access_to_media .
  538.  *
  539.  * @global string $media_subdir 
  540.  */
  541. $media_subdir 'media/';                // Subdirectory relative to base
  542. $media_path $basepath.$media_subdir;   // You should not need to change this
  543. $media_url $baseurl.$media_subdir;     // You should not need to change this
  544.  
  545.  
  546. /**
  547.  * Do you want to allow public access to the media dir?
  548.  *
  549.  * WARNING: If you set this to false, evocore will use /htsrv/getfile.php as a stub
  550.  * to access files and getfile.php will check the User permisssion to view files.
  551.  * HOWEVER this will not prevent users from hitting directly into the media folder
  552.  * with their web browser. You still need to restrict access to the media folder
  553.  * from your webserver.
  554.  *
  555.  * @global boolean 
  556.  */
  557. $public_access_to_media true;
  558.  
  559. /**
  560.  * File extensions that the admin will not be able to enable in the Settings
  561.  */
  562. $force_upload_forbiddenext array'cgi''exe''htaccess''htpasswd''php''php3''php4''php5''php6''phtml''pl''vbs' );
  563.  
  564. /**
  565.  * Admin can configure max file upload size, but he won't be able to set it higher than this "max max" value.
  566.  */
  567. $upload_maxmaxkb 10000;
  568.  
  569. /**
  570.  * The admin can configure the regexp for valid file names in the Settings interface
  571.  * However if the following values are set to non empty, the admin will not be able to customize these values.
  572.  */
  573. $force_regexp_filename '';
  574. $force_regexp_dirname '';
  575.  
  576.  
  577. /**
  578.  * Set this to 1 to disable using PHP's {@link register_shutdown_function()},
  579.  * but not everywhere.
  580.  *
  581.  * This is NOT recommened, because it affects things that should be done after delivering the page.
  582.  *
  583.  * Currently, it disables using register_shutdown_function() for double checking referers
  584.  * ({@link basic_antispam_plugin::AppendHitLog()}), but not for {@link Session::dbsave()}.
  585.  *
  586.  * It's probably only useful for debugging to disable this feature.
  587.  * @global int $debug_no_register_shutdown 
  588.  */
  589. $debug_no_register_shutdown 0;
  590.  
  591.  
  592. /**
  593.  * XMLRPC logging. Set this to 1 to log XMLRPC calls received by this server (into /xmlsrv/xmlrpc.log).
  594.  *
  595.  * @global int $debug_xmlrpc_logging Default: 0
  596.  */
  597. $debug_xmlrpc_logging 0;
  598.  
  599.  
  600. /**
  601.  * Seconds after which a scheduled task is considered to be timed out.
  602.  */
  603. $cron_timeout_delay 1800// 30 minutes
  604.  
  605.  
  606. // ----- CHANGE THE FOLLOWING ONLY IF YOU KNOW WHAT YOU'RE DOING! -----
  607. $evonetsrv_host 'rpc.b2evolution.net';
  608. $evonetsrv_port 80;
  609. $evonetsrv_uri '/evonetsrv/xmlrpc.php';
  610.  
  611. $antispamsrv_host 'antispam.b2evolution.net';
  612. $antispamsrv_port 80;
  613. $antispamsrv_uri '/evonetsrv/xmlrpc.php';
  614. ?>

Documentation generated on Sat, 06 Mar 2010 03:26:54 +0100 by phpDocumentor 1.4.2. This site is hosted and maintained by Daniel HAHLER (Contact).