Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        frontend
5
 * @package         account
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id: signup.php 1673 2012-04-18 21:08:25Z Luisehahne $
14
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/account/signup.php $
15
 * @lastmodified    $Date: 2012-04-18 23:08:25 +0200 (Wed, 18 Apr 2012) $
16
 *
17
 */
18

    
19
require_once('../config.php');
20
ini_set('display_errors','0');
21

    
22
if(!( intval(FRONTEND_SIGNUP) && (  0 == (isset($_SESSION['USER_ID']) ? intval($_SESSION['USER_ID']) : 0) )))
23
{
24
	if(INTRO_PAGE) {
25
		header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php');
26
		exit(0);
27
	} else {
28
		header('Location: '.WB_URL.'/index.php');
29
		exit(0);
30
	}
31
}
32

    
33
if(ENABLED_ASP && isset($_POST['username']) && ( // form faked? Check the honeypot-fields.
34
	(!isset($_POST['submitted_when']) OR !isset($_SESSION['submitted_when'])) OR 
35
	($_POST['submitted_when'] != $_SESSION['submitted_when']) OR
36
	(!isset($_POST['email-address']) OR $_POST['email-address']) OR
37
	(!isset($_POST['name']) OR $_POST['name']) OR
38
	(!isset($_POST['full_name']) OR $_POST['full_name'])
39
)) {
40
	exit(header("Location: ".WB_URL.PAGES_DIRECTORY.""));
41
}
42

    
43
// Load the language file
44
if(!file_exists(WB_PATH.'/languages/'.DEFAULT_LANGUAGE.'.php')) {
45
	exit('Error loading language file '.DEFAULT_LANGUAGE.', please check configuration');
46
} else {
47
	require_once(WB_PATH.'/languages/'.DEFAULT_LANGUAGE.'.php');
48
	$load_language = false;
49
}
50

    
51
$page_id = (isset($_SESSION['PAGE_ID']) && ($_SESSION['PAGE_ID']!='') ? $_SESSION['PAGE_ID'] : 0);
52
$_SESSION['display_form'] = true;
53

    
54
// Required page details
55
// $page_id = 0;
56
$page_description = '';
57
$page_keywords = '';
58
define('PAGE_ID', $page_id);
59
define('ROOT_PARENT', 0);
60
define('PARENT', 0);
61
define('LEVEL', 0);
62
define('PAGE_TITLE', $TEXT['SIGNUP']);
63
define('MENU_TITLE', $TEXT['SIGNUP']);
64
define('MODULE', '');
65
define('VISIBILITY', 'public');
66

    
67
define('PAGE_CONTENT', WB_PATH.'/account/signup_form.php');
68
/*
69
// Set the page content include file
70
if(isset($_POST['username'])) {
71
	define('PAGE_CONTENT', WB_PATH.'/account/signup2.php');
72
} else {
73
	define('PAGE_CONTENT', WB_PATH.'/account/signup_form.php');
74
}
75
*/
76
// Set auto authentication to false
77
$auto_auth = false;
78

    
79
// Include the index (wrapper) file
80
require(WB_PATH.'/index.php');
(15-15/17)