Changed copyright notice in installer files to credit the original copyrighter. GPLv3.
[fa-stable.git] / install / index.php
index b0b96980875ebe311b03b34274636032695132bc..7ba272d47f6ed941151922f8fd650ab4c7d98a83 100644 (file)
@@ -1,13 +1,10 @@
 <?php
 /**********************************************************************
-    Copyright (C) FrontAccounting, LLC.
-       Released under the terms of the GNU Affero General Public License,
-       AGPL, as published by the Free Software Foundation, either version 
-       3 of the License, or (at your option) any later version.
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+       This installer is based on code from the        
+       Website Baker Project <http://www.websitebaker.org/>
+       Copyright (C) 2004-2007, Ryan Djurovich.
+       The code is released under GPLv3
+       modified by FrontAcounting, LLC.
 ***********************************************************************/
 error_reporting(E_ALL);
 ini_set("display_errors", "On");
@@ -131,6 +128,30 @@ function change_os(type) {
                                ?>
                        </td>
                </tr>
+               <?php if (substr(php_sapi_name(), 0, 3) == 'cgi') {     ?>
+               <tr>
+                       <td width="140" style="color: #666666;">Magic Quotes GPC</td>
+                       <td width="35">
+                               <?php
+                               if(ini_get('magic_quotes_gpc')) {
+                                       echo '<font class="bad">Enabled</font>';
+                               } else {
+                                       echo '<font class="good">Disabled</font>';
+                               }
+                               ?>
+                       </td>
+                       <td width="140" style="color: #666666;">Register Globals</td>
+                       <td width="35">
+                               <?php
+                               if (ini_get('register_globals')) {
+                                       echo '<font class="bad">Enabled</font>';
+                               } else {
+                                       echo '<font class="good">Disabled</font>';
+                               }
+                               ?>
+                       </td>
+               </tr>
+               <?php } ?>
                </table>
                <table cellpadding="3" cellspacing="0" width="100%" align="center">
                <tr>
@@ -201,7 +222,7 @@ function change_os(type) {
                        <td colspan="5">Please enter your MySQL database server details below...</td>
                </tr>
                <tr>
-                       <td width="120" style="color: #666666;">Host Name:</td>
+                       <td width="150" style="color: #666666;">Host Name:</td>
                        <td width="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'; } ?>" />
                        </td>
@@ -229,12 +250,20 @@ function change_os(type) {
                        </td>
                        <td>&nbsp;</td>
                        <td colspan="2">
-                               <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'; } ?> />
+                               <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'; } ?> />
                                <label for="install_tables" style="color: #666666;">Install Tables</label>
                                <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                                <span style="font-size: 10px; color: #666666;">(Please note: May remove existing tables and data)</span></td>
                        </td>
                </tr>
+               <tr id="db_options">
+                       <td style="color: #666666;">Fill database with demo data:</td>
+                       <td>
+                               <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'; } ?> />
+                               <br />
+               </td>
+                       <td colspan="2">&nbsp;</td>
+               </tr>
                <tr>
                        <td colspan="5"><h1>Step 5</h1>Please enter the training company name below (you can create your own company later)...</td>
                </tr>
@@ -281,9 +310,8 @@ function change_os(type) {
                                        <td>Please note: &nbsp;</td>
                                        <td>
                                                FrontAccounting is released under the
-                                               <a href="http://www.gnu.org/licenses/gpl.html" target="_blank" tabindex="19">GNU General Public License</a>
-                                               <br />
-                                               By clicking install, you are accepting the license.
+                                               <a href="http://www.gnu.org/licenses/gpl-3.0.html" target="_blank" tabindex="19">GNU General Public License.</a> By 
+                                               clicking install, you are accepting the license.
                                        </td>
                                </tr>
                                </table>
@@ -303,11 +331,11 @@ function change_os(type) {
 <table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
 <tr>
        <td align="center" style="font-size: 10px;">
-               <!-- 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. -->
+               <!-- 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. -->
                <a href="http://frontaccounting.com/" style="color: #000000;" target="_blank">FrontAccounting</a>
                is      released under the
-               <a href="http://www.gnu.org/licenses/agpl-3.0.html" style="color: #000000;" target="_blank">GNU Affero General Public License</a>
-               <!-- 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. -->
+               <a href="http://www.gnu.org/licenses/gpl-3.0.html" style="color: #000000;" target="_blank">GNU General Public License</a>
+               <!-- 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. -->
        </td>
 </tr>
 </table>