[ Index ] |
PHP Cross Reference of osCMax 2.0.4 |
[Summary view] [Print] [Text view]
1 <?php 2 /* 3 $Id: install_3.php 3 2006-05-27 04:59:07Z user $ 4 5 osCMax Power E-Commerce 6 http://oscdox.com 7 8 Copyright 2009 osCMax 9 10 Released under the GNU General Public License 11 */ 12 ?> 13 14 <div class="mainBlock"> 15 <div class="stepsBox"> 16 <ol> 17 <li>Database Server</li> 18 <li>Web Server</li> 19 <li style="font-weight: bold;">Online Store Settings</li> 20 <li>Finished!</li> 21 </ol> 22 </div> 23 24 <h1>New Installation</h1> 25 26 <p>This web-based installation routine will correctly setup and configure osCMax Power E-Commerce to run on this server.</p> 27 <p>Please follow the on-screen instructions that will take you through the database server, web server, and store configuration options. If help is needed at any stage, please consult the documentation or seek help at the community support forums.</p> 28 </div> 29 30 <div class="contentBlock"> 31 <div class="infoPane"> 32 <h3>Step 3: Online Store Settings</h3> 33 34 <div class="infoPaneContents"> 35 <p>Here you can define the name of your online store and the contact information for the store owner.</p> 36 <p>The administrator username and password are used to log into the protected administration tool section.</p> 37 </div> 38 </div> 39 40 <div class="contentPane"> 41 <h2>Online Store Settings</h2> 42 43 <form name="install" id="installForm" action="install.php?step=4" method="post"> 44 45 <table border="0" width="99%" cellspacing="0" cellpadding="5" class="inputForm"> 46 <tr> 47 <td class="inputField"><?php echo 'Store Name<br />' . osc_draw_input_field('CFG_STORE_NAME', null, 'class="text"'); ?></td> 48 <td class="inputDescription">The name of the online store that is presented to the public.</td> 49 </tr> 50 <tr> 51 <td class="inputField"><?php echo 'Store Owner First Name<br />' . osc_draw_input_field('CFG_STORE_OWNER_FIRSTNAME', null, 'class="text"'); ?></td> 52 <td class="inputDescription">The first name of the store owner that is presented to the public.</td> 53 </tr> 54 <tr> 55 <td class="inputField"><?php echo 'Store Owner Last Name<br />' . osc_draw_input_field('CFG_STORE_OWNER_LASTNAME', null, 'class="text"'); ?></td> 56 <td class="inputDescription">The last name of the store owner that is presented to the public.</td> 57 </tr> 58 <tr> 59 <td class="inputField"><?php echo 'Store Owner E-Mail Address<br />' . osc_draw_input_field('CFG_STORE_OWNER_EMAIL_ADDRESS', null, 'class="text"'); ?></td> 60 <td class="inputDescription">The e-mail address of the store owner that is presented to the public.</td> 61 </tr> 62 <tr> 63 <td class="inputField"><?php echo 'Administrator Username<br />' . osc_draw_input_field('CFG_ADMINISTRATOR_USERNAME', null, 'class="text"'); ?></td> 64 <td class="inputDescription">The administrator username to use for the administration tool.</td> 65 </tr> 66 <tr> 67 <td class="inputField"><?php echo 'Administrator Password<br />' . osc_draw_password_field('CFG_ADMINISTRATOR_PASSWORD', null, 'class="text"'); ?></td> 68 <td class="inputDescription">The password to use for the administrator account.</td> 69 </tr> 70 </table> 71 72 <p align="right"><input type="image" src="images/button_continue.gif" border="0" alt="Continue" id="inputButton" /> <a href="index.php"><img src="images/button_cancel.gif" border="0" alt="Cancel" /></a></p> 73 74 <?php 75 reset($HTTP_POST_VARS); 76 while (list($key, $value) = each($HTTP_POST_VARS)) { 77 if (($key != 'x') && ($key != 'y')) { 78 if (is_array($value)) { 79 for ($i=0, $n=sizeof($value); $i<$n; $i++) { 80 echo osc_draw_hidden_field($key . '[]', $value[$i]); 81 } 82 } else { 83 echo osc_draw_hidden_field($key, $value); 84 } 85 } 86 } 87 ?> 88 89 </form> 90 </div> 91 </div>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Jan 1 13:43:16 2010 | Cross-referenced by PHPXref 0.7 |