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