|
From: <ope...@li...> - 2002-08-04 16:06:23
|
Update of /cvsroot/openposs/Server/language/eng In directory usw-pr-cvs1:/tmp/cvs-serv14567/language/eng Modified Files: global.php Log Message: Cleaned up logic. Compatable with Output_buffer=off and register_globals=Off. Added install routine. Index: global.php =================================================================== RCS file: /cvsroot/openposs/Server/language/eng/global.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** global.php 9 Jul 2002 01:24:53 -0000 1.6 --- global.php 4 Aug 2002 16:06:21 -0000 1.7 *************** *** 19,27 **** define(_OPENPOSMAINTITLE,"openPOS System"); define(_OPENPOSERRORTITLE,"Error Notification"); ! define(_OPENPOSNAVTITLE, "Navigation Menu"); define(_OPENPOSLOGINTITLE, "Login"); define(_OPENPOSLOGINMESSAGE, "<center><h2>You must <A href=\"http://90.33.216.64/Server/?action=login\">login</a> to access this page!"); - define(_OPENPOSINSTALLDBCONNECT, "<h3><font color=\"#006400\">Connection to Database on host '".$DBConfig['Server']."' succesful.</font></h3>"); define(_OPENPOSNORIGHTS, "<center><h2>You have insufficent rights to access this page. Please see your system admin for more information</h2></center>"); ?> --- 19,52 ---- define(_OPENPOSMAINTITLE,"openPOS System"); define(_OPENPOSERRORTITLE,"Error Notification"); ! define(_OPENPOSNAVTITLE, "<b>Navigation Menu</b>"); define(_OPENPOSLOGINTITLE, "Login"); define(_OPENPOSLOGINMESSAGE, "<center><h2>You must <A href=\"http://90.33.216.64/Server/?action=login\">login</a> to access this page!"); define(_OPENPOSNORIGHTS, "<center><h2>You have insufficent rights to access this page. Please see your system admin for more information</h2></center>"); + + //Install page defines. + define(_OPENPOSINSTALLGOOD,"<font color=\"#006400\">succesful</font>"); + define(_OPENPOSINSTALLBAD,"<font color=\"#640000\">failed</font>"); + define(_OPENPOSINSTALLTITLE,"OpenPOS System Installation"); + define(_OPENPOSINSTALLFORM,"System Installation Information"); + define(_OPENPOSINSTALLDBCONNECT, "Connection to Database on host '".$_POST['server']."': "); + define(_OPENPOSINSTALLDBEXISTS, "Database '".$_POST['dbname']."' existance: "); + define(_OPENPOSINSTALLCREATEDB, "Database '".$_POST['dbname']."' creation: "); + define(_OPENPOSINSTALLADDTABLES, "Database table creation: "); + define(_OPENPOSINSTALLPRIMETABLES, "Setup initial system configuration: "); + define(_OPENPOSINSTALLCONFIGFILE, "Creating configuration file: "); + define(_OPENPOSINSTALLADMIN, "Adding administrator: "); + define(_OPENPOSINSTALLFLAGSET, "Finalizing system configuration: "); + define(_OPENPOSINSTALLWELCOME, "<br><h2>Congradulations!</h2> + You now have a fresh install the OpenPOS System. Thank you for using our software. + <p> + Your initial system login is:<br> + Username: ".$_POST['adminUsername']."<br> + Password: ".$_POST['adminPassword']."<p> + Using this login, you will be able to manage your Point of Sale system for your + company. But first, you must <a href=\"./index.php?action=login\">login</a>. + <p> + For more information on getting started, please view our extensive online <a href=\"./docs/index.php\">documentation</a> + <p> + Happy selling!"); ?> |