Update from usntable branch.
[fa-stable.git] / install / index.php
1 <?php
2 /**********************************************************************
3         This installer is based on code from the        
4         Website Baker Project <http://www.websitebaker.org/>
5         Copyright (C) 2004-2007, Ryan Djurovich.
6         The code is released under GPLv3
7         modified by FrontAcounting, LLC.
8 ***********************************************************************/
9 error_reporting(E_ALL);
10 ini_set("display_errors", "On");
11 // Start a session
12 if(!defined('SESSION_STARTED'))
13 {
14         session_name('ba_session_id');
15         session_start();
16         define('SESSION_STARTED', true);
17 }
18
19 // Check if the page has been reloaded
20 if(!isset($_GET['sessions_checked']) || $_GET['sessions_checked'] != 'true')
21 {
22         // Set session variable
23         $_SESSION['session_support'] = '<font class="good">Enabled</font>';
24         $_SESSION['message'] = '';
25         // Reload page
26         header('Location: index.php?sessions_checked=true');
27         exit(0);
28 }
29 else
30 {
31         // Check if session variable has been saved after reload
32         if(isset($_SESSION['session_support']))
33         {
34                 $session_support = $_SESSION['session_support'];
35         }
36         else
37         {
38                 $session_support = '<font class="bad">Disabled</font>';
39         }
40 }
41 $path_to_root = "..";
42 //include_once($path_to_root.'/config.php');
43 $comp_path = $path_to_root."/company";
44
45 ?>
46 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
47 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
48 <head>
49 <title>FrontAccounting Installation Wizard</title>
50 <link href="stylesheet.css" rel="stylesheet" type="text/css">
51 <script language="javascript" type="text/javascript">
52
53 function change_os(type) {
54         if(type == 'linux') {
55                 document.getElementById('operating_system_linux').checked = true;
56                 document.getElementById('operating_system_windows').checked = false;
57                 document.getElementById('file_perms_box').style.display = 'block';
58         } else if(type == 'windows') {
59                 document.getElementById('operating_system_linux').checked = false;
60                 document.getElementById('operating_system_windows').checked = true;
61                 document.getElementById('file_perms_box').style.display = 'none';
62         }
63 }
64
65 </script>
66 </head>
67 <body>
68
69 <table cellpadding="0" cellspacing="0" border="0" width="750" align="center">
70 <tr>
71         <td width="100%" align="center" style="font-size: 20px;">
72                 <font style="color: #FFFFFF;">FrontAccounting</font>
73                 <font style="color: #DDDDDD;">Installation Wizard</font>
74         </td>
75 </tr>
76 </table>
77
78 <form name="frontaccounting_installation_wizard" action="save.php" method="post">
79 <input type="hidden" name="url" value="" />
80 <input type="hidden" name="password_fieldname" value="admin_password" />
81 <input type="hidden" name="remember" id="remember" value="true" />
82 <input type="hidden" name="path_to_root" value="<?php echo $path_to_root; ?>" />
83
84 <table cellpadding="0" cellspacing="0" border="0" width="750" align="center" style="margin-top: 10px;">
85 <tr>
86         <td class="content">
87                         <h2>Welcome to the FrontAccounting Installation Wizard.</h2>
88                 <center>
89                         <img src="<?php echo $path_to_root; ?>/themes/default/images/logo_frontaccounting.png" width="250" height="50" alt="Logo" />
90                 </center>
91 <?php
92  if(file_exists($path_to_root.'/config.php')) { 
93 ?><div style="width: 700px; padding: 10px; margin-bottom: 5px; border: 1px solid #FF0000; background-color: #FFDBDB;"><b>Error:</b> Seems you have FrontAccounting application already installed.<BR>
94 After logging as an admin to first installed company you can:
95 <ul>
96 <li> Add more companies using Add/Update Companies under Setup tab;</li>
97 <li> Upgrade FA version using Upgrade Software under Setup tab.</li>
98 </ul></div>
99 <?php exit; } ?>
100                 <?php
101                 if(isset($_SESSION['message']) AND $_SESSION['message'] != '') {
102                         ?><div style="width: 700px; padding: 10px; margin-bottom: 5px; border: 1px solid #FF0000; background-color: #FFDBDB;"><b>Error:</b> <?php echo $_SESSION['message']; ?></div><?php
103                 }
104                 ?>
105                 <table cellpadding="3" cellspacing="0" width="100%" align="center">
106                 <tr>
107                         <td colspan="8"><h1>Step 1</h1>Please check the following requirements are met before continuing...</td>
108                 </tr>
109                 <?php if($session_support != '<font class="good">Enabled</font>') { ?>
110                 <tr>
111                         <td colspan="8" style="font-size: 10px;" class="bad">Please note: PHP Session Support may appear disabled if your browser does not support cookies.</td>
112                 </tr>
113                 <?php } ?>
114                 <tr>
115                         <td width="140" style="color: #666666;">PHP Version > 4.1.0</td>
116                         <td width="35">
117                                 <?php
118                                 $phpversion = substr(PHP_VERSION, 0, 6);
119                                 if($phpversion > 4.1) {
120                                         ?><font class="good">Yes</font><?php
121                                 } else {
122                                         ?><font class="bad">No</font><?php
123                                 }
124                                 ?>
125                         </td>
126                         <td width="140" style="color: #666666;">PHP Session Support</td>
127                         <td width="115"><?php echo $session_support; ?></td>
128                         <td width="105" style="color: #666666;">PHP Safe Mode</td>
129                         <td>
130                                 <?php
131                                 if(ini_get('safe_mode')) {
132                                         ?><font class="bad">Enabled</font><?php
133                                 } else {
134                                         ?><font class="good">Disabled</font><?php
135                                 }
136                                 ?>
137                         </td>
138                 </tr>
139                 <?php if (substr(php_sapi_name(), 0, 3) == 'cgi') {     ?>
140                 <tr>
141                         <td width="140" style="color: #666666;">Magic Quotes GPC</td>
142                         <td width="35">
143                                 <?php
144                                 if(ini_get('magic_quotes_gpc')) {
145                                         echo '<font class="bad">Enabled</font>';
146                                 } else {
147                                         echo '<font class="good">Disabled</font>';
148                                 }
149                                 ?>
150                         </td>
151                         <td width="140" style="color: #666666;">Register Globals</td>
152                         <td width="35">
153                                 <?php
154                                 if (ini_get('register_globals')) {
155                                         echo '<font class="bad">Enabled</font>';
156                                 } else {
157                                         echo '<font class="good">Disabled</font>';
158                                 }
159                                 ?>
160                         </td>
161                 </tr>
162                 <?php } ?>
163                 </table>
164                 <table cellpadding="3" cellspacing="0" width="100%" align="center">
165                 <tr>
166                         <td colspan="8"><h1>Step 2</h1>Please check the following files/folders are writeable before continuing...</td>
167                 </tr>
168                 <tr>
169                         <td style="color: #666666;">config_db.php</td>
170                         <td><?php if(is_writable($path_to_root)) { echo '<font class="good">Writeable</font>'; } elseif(file_exists($path_to_root.'/config_db.php')) { echo '<font class="bad">File Exists</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
171                         <td style="color: #666666;">modules/</td>
172                         <td><?php if(is_writable($path_to_root.'/modules/')) { echo '<font class="good">Writeable</font>'; } elseif(!file_exists($path_to_root.'/modules/')) { echo '<font class="bad">Directory Not Found</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
173                 </tr>
174                 <tr>
175                         <td style="color: #666666;">lang/</td>
176                         <td><?php if(is_writable($path_to_root.'/lang/')) { echo '<font class="good">Writeable</font>'; } elseif(!file_exists($path_to_root.'/lang/')) { echo '<font class="bad">Directory Not Found</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
177                         <td style="color: #666666;"><?php echo 'Company data dirs ('.  $comp_path. '/*)'; ?></td>
178                         <td><?php if(is_writable($comp_path) && is_writable($comp_path.'/0') && is_writable($comp_path.'/0/images'))
179                         { echo '<font class="good">Writeable</font>'; } elseif(!file_exists($comp_path)) {
180                          echo '<font class="bad">Directory Not Found</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
181                 </tr>
182                 </table>
183                 <table cellpadding="3" cellspacing="0" width="100%" align="center">
184                 <tr>
185                         <td colspan="2"><h1>Step 3</h1>Please check your path settings...</td>
186                 </tr>
187                 <tr>
188                         <td width="125" style="color: #666666;">
189                                 Absolute URL:
190                         </td>
191                         <td>
192                                 <?php
193                                 // Try to guess installation URL
194                                 $guessed_url = 'http://'.$_SERVER["SERVER_NAME"].$_SERVER["SCRIPT_NAME"];
195                                 $guessed_url = rtrim(dirname($guessed_url), 'install');
196                                 ?>
197                                 <input type="text" tabindex="1" name="ba_url" style="width: 99%;" value="<?php if(isset($_SESSION['ba_url'])) { echo $_SESSION['ba_url']; } else { echo $guessed_url; } ?>" />
198                         </td>
199                 </tr>
200                 </table>
201                 <table cellpadding="5" cellspacing="0" width="100%" align="center">
202                 <tr>
203                         <td colspan="3"><h1>Step 4</h1>Please specify your operating system information below...</td>
204                 </tr>
205                 <tr height="50">
206                         <td width="170">
207                                 Server Operating System:
208                         </td>
209                         <td width="180">
210                                 <input type="radio" tabindex="4" name="operating_system" id="operating_system_linux" onclick="document.getElementById('file_perms_box').style.display = 'block';" value="linux"<?php if(!isset($_SESSION['operating_system']) OR $_SESSION['operating_system'] == 'linux') { echo ' checked'; } ?> />
211                                 <font style="cursor: pointer;" onclick="javascript: change_os('linux');">Linux/Unix based</font>
212                                 <br />
213                                 <input type="radio" tabindex="5" name="operating_system" id="operating_system_windows" onclick="document.getElementById('file_perms_box').style.display = 'none';" value="windows"<?php if(isset($_SESSION['operating_system']) AND $_SESSION['operating_system'] == 'windows') { echo ' checked'; } ?> />
214                                 <font style="cursor: pointer;" onclick="javascript: change_os('windows');">Windows</font>
215                         </td>
216                         <td>
217                                 <div name="file_perms_box" id="file_perms_box" style="margin: 0; padding: 0; display: <?php if(isset($_SESSION['operating_system']) AND $_SESSION['operating_system'] == 'windows') { echo 'none'; } else { echo 'block'; } ?>;">
218                                         <input type="checkbox" tabindex="6" name="world_writeable" id="world_writeable" value="true"<?php if(isset($_SESSION['world_writeable']) AND $_SESSION['world_writeable'] == true) { echo 'checked'; } ?> />
219                                         <label for="world_writeable">
220                                                 World-writeable file permissions (777)
221                                         </label>
222                                         <br />
223                                         <font class="note">(Please note: this is only recommended for testing environments)</font>
224                                 </div>
225                         </td>
226                 </tr>
227                 </table>
228                 <table cellpadding="5" cellspacing="0" width="100%" align="center">
229                 <tr>
230                         <td colspan="5">Please enter your MySQL database server details below...</td>
231                 </tr>
232                 <tr>
233                         <td width="150" style="color: #666666;">Host Name:</td>
234                         <td width="230">
235                                 <input type="text" tabindex="7" name="database_host" style="width: 98%;" value="<?php if(isset($_SESSION['database_host'])) { echo $_SESSION['database_host']; } else { echo 'localhost'; } ?>" />
236                         </td>
237                         <td width="7">&nbsp;</td>
238                         <td width="70" style="color: #666666;">Username:</td>
239                         <td>
240                                 <input type="text" tabindex="9" name="database_username" style="width: 98%;" value="<?php if(isset($_SESSION['database_username'])) { echo $_SESSION['database_username']; } else { echo 'root'; } ?>" />
241                         </td>
242                 </tr>
243                 <tr>
244                         <td style="color: #666666;">Database Name:</td>
245                         <td>
246                                 <input type="text" tabindex="8" name="database_name" style="width: 98%;" value="<?php if(isset($_SESSION['database_name'])) { echo $_SESSION['database_name']; } else { echo 'frontaccount'; } ?>" />
247                         </td>
248                         <td>&nbsp;</td>
249                         <td style="color: #666666;">Password:</td>
250                         <td>
251                                 <input type="password" tabindex="10" name="database_password" style="width: 98%;"<?php if(isset($_SESSION['database_password'])) { echo ' value = "'.$_SESSION['database_password'].'"'; } ?> />
252                         </td>
253                 </tr>
254                 <tr>
255                         <td style="color: #666666;">Table Prefix ( 0_ ):</td>
256                         <td>
257                                 <input type="checkbox" tabindex="11" name="table_prefix" id="table_prefix" value="true"<?php if(!isset($_SESSION['table_prefix'])) { echo ' checked'; } elseif($_SESSION['table_prefix'] == 'true') { echo ' checked'; } ?> />
258                         </td>
259                         <td>&nbsp;</td>
260                         <td colspan="2">
261                                 <input type="checkbox" tabindex="12" name="install_tables" id="install_tables" value="true" onclick="document.getElementById('db_options').style.display = this.checked? 'block':'none';"<?php if(!isset($_SESSION['install_tables'])) { echo ' checked'; } elseif($_SESSION['install_tables'] == 'true') { echo ' checked'; } ?> />
262                                 <label for="install_tables" style="color: #666666;">Install Tables</label>
263                                 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
264                                 <span style="font-size: 10px; color: #666666;">(Please note: May remove existing tables and data)</span></td>
265                         </td>
266                 </tr>
267                 <tr id="db_options">
268                         <td style="color: #666666;">Fill database with demo data:</td>
269                         <td>
270                                 <input type="checkbox" tabindex="6" name="demo_data" id="demo_data" value="true" <?php if(!isset($_SESSION['demo_data']) OR $_SESSION['demo_data'] == true) { echo 'checked'; } ?> />
271                                 <br />
272                 </td>
273                         <td colspan="2">&nbsp;</td>
274                 </tr>
275                 <tr>
276                         <td colspan="5"><h1>Step 5</h1>Please enter the training company name below (you can create your own company later)...</td>
277                 </tr>
278                 <tr>
279                         <td style="color: #666666;" colspan="1">Company Name:</td>
280                         <td colspan="4">
281                                 <input type="text" tabindex="13" name="company_name" style="width: 99%;" value="<?php if(isset($_SESSION['company_name'])) { echo $_SESSION['company_name']; } else { echo 'Training Co.'; } ?>" />
282                         </td>
283                 </tr>
284                 <tr>
285                         <td colspan="5"><h1>Step 6</h1>Please enter your Administrator account details below...</td>
286                 </tr>
287                 <tr>
288                         <td style="color: #666666;">Username:</td>
289                         <td>
290                                 admin
291                                 <!--<input type="text" tabindex="14" name="admin_username" style="width: 98%;" value="<?php if(isset($_SESSION['admin_username'])) { echo $_SESSION['admin_username']; } else { echo 'admin'; } ?>" />-->
292                         </td>
293                         <td>&nbsp;</td>
294                         <td style="color: #666666;">Password:</td>
295                         <td>
296                                 <input type="password" tabindex="16" name="admin_password" style="width: 98%;"<?php if(isset($_SESSION['admin_password'])) { echo ' value = "'.$_SESSION['admin_password'].'"'; } ?> />
297                         </td>
298                 </tr>
299                 <tr>
300                         <td style="color: #666666;">Email:</td>
301                         <td>
302                                 <input type="text" tabindex="15" name="admin_email" style="width: 98%;"<?php if(isset($_SESSION['admin_email'])) { echo ' value = "'.$_SESSION['admin_email'].'"'; } ?> />
303                         </td>
304                         <td>&nbsp;</td>
305                         <td style="color: #666666;">Re-Password:</td>
306                         <td>
307                                 <input type="password" tabindex="17" name="admin_repassword" style="width: 98%;"<?php if(isset($_SESSION['admin_password'])) { echo ' value = "'.$_SESSION['admin_password'].'"'; } ?> />
308                         </td>
309                 </tr>
310
311                 <tr>
312                         <td colspan="5" style="padding: 10px; padding-bottom: 0;"><h1 style="font-size: 0px;">&nbsp;</h1></td>
313                 </tr>
314                 <tr>
315                         <td colspan="4">
316                                 <table cellpadding="0" cellspacing="0" width="100%" border="0">
317                                 <tr valign="top">
318                                         <td>Please note: &nbsp;</td>
319                                         <td>
320                                                 FrontAccounting is released under the
321                                                 <a href="http://www.gnu.org/licenses/gpl-3.0.html" target="_blank" tabindex="19">GNU General Public License.</a> By 
322                                                 clicking install, you are accepting the license.
323                                         </td>
324                                 </tr>
325                                 </table>
326                         </td>
327                         <td colspan="1" align="right">
328                                 <input type="submit" tabindex="20" name="submit" value="Install FrontAccounting" class="submit" />
329                         </td>
330                 </tr>
331                 </table>
332
333         </td>
334 </tr>
335 </table>
336
337 </form>
338
339 <table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
340 <tr>
341         <td align="center" style="font-size: 10px;">
342                 <!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
343                 <a href="http://frontaccounting.com/" style="color: #000000;" target="_blank">FrontAccounting</a>
344                 is      released under the
345                 <a href="http://www.gnu.org/licenses/gpl-3.0.html" style="color: #000000;" target="_blank">GNU General Public License</a>
346                 <!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
347         </td>
348 </tr>
349 </table>
350
351 </body>
352 </html>