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