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