File: save.php

package info (click to toggle)
frontaccounting 2.2.10-3.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,252 kB
  • sloc: php: 64,938; sql: 3,014; sh: 390; makefile: 38
file content (392 lines) | stat: -rw-r--r-- 10,980 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<?php
/**********************************************************************
	This installer is based on code from the	
 	Website Baker Project <http://www.websitebaker.org/>
 	Copyright (C) 2004-2007, Ryan Djurovich.
 	The code is released under GPLv3
 	modified by FrontAcounting, LLC.
***********************************************************************/
error_reporting(E_ALL);
ini_set("display_errors", "On");
ini_set("max_execution_time", "180");

// Start a session
if(!defined('SESSION_STARTED'))
{
	session_name('ba_session_id');
	session_start();
	define('SESSION_STARTED', true);
}

if (!function_exists("_")) {
	function _($msg) {
		return $msg;
	}
}
// Installer version of display_error function.
//
function display_error($message)
{
	global $_POST, $path_to_root;

	if(isset($message) AND $message != '')
	{
		// Copy values entered into session so user doesn't have to re-enter everything
		if(isset($_POST['company_name']))
		{
			$_SESSION['ba_url'] = $_POST['ba_url'];
			$_SESSION['operating_system'] = isset($_POST['operating_system']);
			$_SESSION['world_writeable'] = isset($_POST['world_writeable']);
			$_SESSION['database_host'] = $_POST['database_host'];
			$_SESSION['database_username'] = $_POST['database_username'];
			$_SESSION['database_password'] = $_POST['database_password'];
			$_SESSION['database_name'] = $_POST['database_name'];
			$_SESSION['demo_data'] = isset($_POST['demo_data']);
			$_SESSION['table_prefix'] = isset($_POST['table_prefix']);
			$_SESSION['install_tables'] = isset($_POST['install_tables']);
			$_SESSION['company_name'] = $_POST['company_name'];
			$_SESSION['admin_email'] = $_POST['admin_email'];
			$_SESSION['admin_password'] = $_POST['admin_password'];

		}
		// Set the message
		$_SESSION['message'] = $message;
		// Specify that session support is enabled
		$_SESSION['session_support'] = '<font class="good">Enabled</font>';
		// Redirect to first page again and exit
		@unlink($path_to_root."/config.php"); // remove just created config file
		header('Location: index.php?sessions_checked=true');
		exit();
	}
}

// Function to workout what the default permissions are for files created by the webserver
function default_file_mode($temp_dir)
{
	$v = explode(".",PHP_VERSION);
	$v = $v[0].$v[1];
	if($v > 41 && is_writable($temp_dir))
	{
		$filename = $temp_dir.'/test_permissions.txt';
		$handle = fopen($filename, 'w');
		fwrite($handle, 'This file is to get the default file permissions');
		fclose($handle);
		$default_file_mode = '0'.substr(sprintf('%o', fileperms($filename)), -3);
		unlink($filename);
	}
	else
	{
		$default_file_mode = '0777';
	}
	return $default_file_mode;
}

// Function to workout what the default permissions are for directories created by the webserver
function default_dir_mode($temp_dir)
{
	$v = explode(".",PHP_VERSION);
	$v = $v[0].$v[1];
	if ($v > 41 && is_writable($temp_dir))
	{
		$dirname = $temp_dir.'/test_permissions/';
		mkdir($dirname);
		$default_dir_mode = '0'.substr(sprintf('%o', fileperms($dirname)), -3);
		rmdir($dirname);
	}
	else
	{
		$default_dir_mode = '0777';
	}
	return $default_dir_mode;
}

function add_slashes($input)
{
	if (get_magic_quotes_gpc() || (!is_string($input)))
	{
		return $input;
	}
	$output = addslashes($input);
	return $output;
}
function check_db_error($err_msg, $sql)
{
	return true;
}

if (isset($_POST['path_to_root']))
	$path_to_root = $_POST['path_to_root'];
else
	$path_to_root = "..";

// Begin check to see if form was even submitted
// Set error if no post vars found
if (!isset($_POST['company_name']))
{
	display_error('Please fill-in the form below');
}
// End check to see if form was even submitted

// Begin path and timezone details code

// Check if user has entered the installation url
if (!isset($_POST['ba_url']) || $_POST['ba_url'] == '')
{
	display_error('Please enter an absolute URL');
}
else
{
	$ba_url = $_POST['ba_url'];
}

// Remove any slashes at the end of the URL
if(substr($ba_url, strlen($ba_url) - 1, 1) == "/")
{
	$ba_url = substr($ba_url, 0, strlen($ba_url) - 1);
}
if(substr($ba_url, strlen($ba_url) - 1, 1) == "\\")
{
	$ba_url = substr($ba_url, 0, strlen($ba_url) - 1);
}
if(substr($ba_url, strlen($ba_url) - 1, 1) == "/")
{
	$ba_url = substr($ba_url, 0, strlen($ba_url) - 1);
}
if(substr($ba_url, strlen($ba_url) - 1, 1) == "\\")
{
	$ba_url = substr($ba_url, 0, strlen($ba_url) - 1);
}
// End path

// Begin operating system specific code
// Get operating system
if (!isset($_POST['operating_system']) || $_POST['operating_system'] != 'linux' && $_POST['operating_system'] != 'windows')
{
	display_error('Please select a valid operating system');
}
else
{
	$operating_system = $_POST['operating_system'];
}
// Work-out file permissions
if($operating_system == 'windows')
{
	$file_mode = '0777';
	$dir_mode = '0777';
}
elseif (isset($_POST['world_writeable']) && $_POST['world_writeable'] == 'true')
{
	$file_mode = '0777';
	$dir_mode = '0777';
}
else
{
	$file_mode = default_file_mode('../includes');
	$dir_mode = default_dir_mode('../includes');
}
// End operating system specific code

// Begin database details code
// Check if user has entered a database host
if (!isset($_POST['database_host']) || $_POST['database_host'] == '')
{
	display_error('Please enter a database host name');
}
else
{
	$database_host = $_POST['database_host'];
}
// Check if user has entered a database username
if (!isset($_POST['database_username']) || $_POST['database_username'] == '')
{
	display_error('Please enter a database username');
}
else
{
	$database_username = $_POST['database_username'];
}
// Check if user has entered a database password
if (!isset($_POST['database_password']))
{
	display_error('Please enter a database password');
}
else
{
	$database_password = $_POST['database_password'];
}
// Check if user has entered a database name
if (!isset($_POST['database_name']) || $_POST['database_name'] == '')
{
	display_error('Please enter a database name');
}
else
{
	$database_name = $_POST['database_name'];
}
// Get table prefix
if (isset($_POST['table_prefix']) && $_POST['table_prefix'] == 'true')
	$table_prefix = "0_";
else
	$table_prefix = "";

// Find out if the user wants to install tables and data
if (isset($_POST['install_tables']) && $_POST['install_tables'] == 'true')
{
	$install_tables = true;
}
else
{
	$install_tables = false;
}
// End database details code

// Begin company name code
// Get company name
if (!isset($_POST['company_name']) || $_POST['company_name'] == '')
{
	display_error('Please enter a company name');
}
else
{
	$company_name = add_slashes($_POST['company_name']);
}
// End website company name

// Check if the user has entered a correct path
if (!file_exists($path_to_root.'/sql/en_US-'.(isset($_POST['demo_data']) ? 'demo':'new').'.sql'))
{
	display_error('It appears the Absolute path that you entered is incorrect');
}

// Get admin email and validate it
if (!isset($_POST['admin_email']) || $_POST['admin_email'] == '')
{
	display_error('Please enter an email for the Administrator account');
}
else
{
	if (preg_match("/^([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}$/i", $_POST['admin_email']))
	{
		$admin_email = $_POST['admin_email'];
	}
	else
	{
		display_error('Please enter a valid email address for the Administrator account');
	}
}
// Get the two admin passwords entered, and check that they match
if (!isset($_POST['admin_password']) || $_POST['admin_password'] == '')
{
	display_error('Please enter a password for the Administrator account');
}
else
{
	$admin_password = $_POST['admin_password'];
}
if (!isset($_POST['admin_repassword']) || $_POST['admin_repassword'] == '')
{
	display_error('Please make sure you re-enter the password for the Administrator account');
}
else
{
	$admin_repassword = $_POST['admin_repassword'];
}
if ($admin_password != $admin_repassword)
{
	display_error('Sorry, the two Administrator account passwords you entered do not match');
}
// End admin user details code

copy($path_to_root. "/config.default.php", $path_to_root. "/config.php");

include_once($path_to_root . "/includes/db/connect_db.inc");
include_once($path_to_root . "/admin/db/maintenance_db.inc");

if (!file_exists($path_to_root . "/installed_extensions.php")) {
	$next_extension_id = 1;
	write_extensions(array());
	write_extensions(array(),0);
}
if (!file_exists($path_to_root . "/lang/installed_languages.inc")) {
	$installed_languages = array (
		0 => array ('code' => 'en_GB', 'name' => 'English', 'encoding' => 'iso-8859-1'));
	$dflt_lang = 'en_GB';
	write_lang();
}

if (file_exists($path_to_root . "/config_db.php"))
	include_once($path_to_root . "/config_db.php");
 else
{
	$def_coy = 0;
	$tb_pref_counter = 0;
	$db_connections = array ();
}

$id = count($db_connections);
if ($table_prefix != "" && $id > 0)
	$table_prefix = $tb_pref_counter . "_";
$db_connections[$id]['name'] = $company_name;
$db_connections[$id]['host'] = $database_host;
$db_connections[$id]['dbuser'] = $database_username;
$db_connections[$id]['dbpassword'] = $database_password;
$db_connections[$id]['dbname'] = $database_name;
$db_connections[$id]['tbpref'] = $table_prefix;

$def_coy = $id;

$config_filename = $path_to_root . '/config_db.php';

// Try connecting to database

$db = mysql_connect($database_host, $database_username, $database_password);
if (!$db)
{
	display_error('Database host name, username and/or password incorrect. MySQL Error:<br />'.mysql_error());
} else {
	$result = true;
	if($install_tables == true)
	{
   		if (!mysql_select_db($database_name, $db))
   		{
			// Try to create the database
			if (!($result = mysql_query('CREATE DATABASE '.$database_name))) {
				display_error(_("Cannot create database").
					" '$database_name'");
			} else
				$result = mysql_select_db($database_name, $db);
		}
		if($result) {
			$import_filename = $path_to_root.'/sql/en_US-'.(isset($_POST['demo_data']) ? 'demo':'new').'.sql';
			db_import($import_filename, $db_connections[$id]);
		}
	}
	else
	{
		$result = mysql_select_db($database_name, $db);
	}
	if ($result) {
		$sql = "UPDATE ".$table_prefix."users SET password = '" . md5($admin_password) . "', email = ".db_escape($admin_email)." WHERE user_id = 'admin'";
		db_query($sql, "could not update admin account");
		$sql = "UPDATE ".$table_prefix."company SET coy_name = ".db_escape($company_name)." WHERE coy_code = 1";
		db_query($sql, "could not update company name. Do it manually later in Setup");
	
		$err = write_config_db($table_prefix != "");
		if ($err == -1)
			display_error("Cannot open the configuration file ($config_filename)");
		else if ($err == -2)
			display_error("Cannot write to the configuration file ($config_filename)");
		else if ($err == -3)
			display_error("The configuration file $config_filename is not writable. Change its permissions so it is, then re-run step 4.");
	}
}

session_unset();
session_regenerate_id();
session_destroy();
$_SESSION = array();

header("Location: ".$path_to_root."/index.php");
exit();

?>