Project

General

Profile

1 1634 Luisehahne
WebsiteBaker 2.8.3 Developing Instructions/Informations
2
=======================================================
3
4 1655 Luisehahne
$Id$
5 1634 Luisehahne
6
7 1655 Luisehahne
01 Apr-2012 Build 1655
8
----------------------
9
handling replyto in form module
10
You can directly answer to the recipient, sending by a authenticated user
11
then in from the recipient name is shown
12 1635 Luisehahne
13 1654 Luisehahne
22 Mar-2012 Build 1639
14
----------------------
15
Refer: new structure in config.php set by new installation
16
backwards compability is given, so const can be defined in /framework/initialize.php
17
add const DEBUG to config.php (default = false)
18
add const ADMIN_DIRECTORY to config.php (default = admin)
19
[code]
20
define('DEBUG', false);
21
define('DB_TYPE', 'mysql');
22
define('DB_HOST', 'localhost');
23
define('DB_NAME', 'xxxxxx');
24
define('DB_USERNAME', 'xxxxxx');
25
define('DB_PASSWORD', 'xxxxxx');
26
define('TABLE_PREFIX', 'wb_');
27
28
define('WB_URL', 'http://xxxxxxxx.xx');
29
define('ADMIN_DIRECTORY', 'admin'); // no leading/trailing slash or backslash!! A simple directory only!!
30
31
require_once(dirname(__FILE__).'/framework/initialize.php');
32
[/code]
33
34
35 1635 Luisehahne
09 Mar-2012 Build 1634
36
----------------------
37
If using the $MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] in your module, please add
38 1654 Luisehahne
following code to your script,
39
requires: include_once (WB_PATH.'/framework/functions.php');
40 1634 Luisehahne
[code]
41 1654 Luisehahne
$aServerEmail = (defined('SERVER_EMAIL') && SERVER_EMAIL != '' ? SERVER_EMAIL : $_SERVER['SERVER_NAME']);
42
$replace = array('SERVER_EMAIL' => $aServerEmail );
43
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = replace_vars($MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'], $replace);
44 1634 Luisehahne
[/code]
45