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