0byt3m1n1 - D7net
0byt3m1n1 - D7net
Path:
/
home
/
s13cf5ef
/
www
/
newtuscamisetaspersonalizadas
/
install
/
templates
/
pages
/
[
Home
]
Name File: install.php
< back
<?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2007 osCommerce Released under the GNU General Public License */ ?> <script type="text/javascript" src="ext/xmlhttp/xmlhttp.js"></script> <script type="text/javascript"> <!-- var dbServer; var dbUsername; var dbPassword; var dbName; var formSubmited = false; function handleHttpResponse_DoImport() { if (http.readyState == 4) { if (http.status == 200) { var result = /\[\[([^|]*?)(?:\|([^|]*?)){0,1}\]\]/.exec(http.responseText); result.shift(); if (result[0] == '1') { document.getElementById('mBoxContents').innerHTML = '<p><img src="images/success.gif" align="right" hspace="5" vspace="5" border="0" />Database imported successfully.</p>'; setTimeout("document.getElementById('installForm').submit();", 2000); } else { document.getElementById('mBoxContents').innerHTML = '<p><img src="images/failed.gif" align="right" hspace="5" vspace="5" border="0" />There was a problem importing the database. The following error had occured:</p><p><strong>%s</strong></p><p>Please verify the connection parameters and try again.</p>'.replace('%s', result[1]); } } formSubmited = false; } } function handleHttpResponse() { if (http.readyState == 4) { if (http.status == 200) { var result = /\[\[([^|]*?)(?:\|([^|]*?)){0,1}\]\]/.exec(http.responseText); result.shift(); if (result[0] == '1') { document.getElementById('mBoxContents').innerHTML = '<p><img src="images/progress.gif" align="right" hspace="5" vspace="5" border="0" />The database structure is now being imported. Please be patient during this procedure.</p>'; loadXMLDoc("rpc.php?action=dbImport&server=" + urlEncode(dbServer) + "&username=" + urlEncode(dbUsername) + "&password=" + urlEncode(dbPassword) + "&name=" + urlEncode(dbName), handleHttpResponse_DoImport); } else { document.getElementById('mBoxContents').innerHTML = '<p><img src="images/failed.gif" align="right" hspace="5" vspace="5" border="0" />There was a problem connecting to the database server. The following error had occured:</p><p><strong>%s</strong></p><p>Please verify the connection parameters and try again.</p>'.replace('%s', result[1]); formSubmited = false; } } else { formSubmited = false; } } } function prepareDB() { if (formSubmited == true) { return false; } formSubmited = true; showDiv(document.getElementById('mBox')); document.getElementById('mBoxContents').innerHTML = '<p><img src="images/progress.gif" align="right" hspace="5" vspace="5" border="0" />Testing database connection..</p>'; dbServer = document.getElementById("DB_SERVER").value; dbUsername = document.getElementById("DB_SERVER_USERNAME").value; dbPassword = document.getElementById("DB_SERVER_PASSWORD").value; dbName = document.getElementById("DB_DATABASE").value; loadXMLDoc("rpc.php?action=dbCheck&server=" + urlEncode(dbServer) + "&username=" + urlEncode(dbUsername) + "&password=" + urlEncode(dbPassword) + "&name=" + urlEncode(dbName), handleHttpResponse); } //--> </script> <div class="mainBlock"> <div class="stepsBox"> <ol> <li style="font-weight: bold;">Database Server</li> <li>Web Server</li> <li>Online Store Settings</li> <li>Finished!</li> </ol> </div> <h1>New Installation</h1> <p>This web-based installation routine will correctly setup and configure osCommerce Online Merchant to run on this server.</p> <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> </div> <div class="contentBlock"> <div class="infoPane"> <h3>Step 1: Database Server</h3> <div class="infoPaneContents"> <p>The database server stores the content of the online store such as product information, customer information, and the orders that have been made.</p> <p>Please consult your server administrator if your database server parameters are not yet known.</p> </div> </div> <div id="mBox"> <div id="mBoxContents"></div> </div> <div class="contentPane"> <h2>Database Server</h2> <form name="install" id="installForm" action="install.php?step=2" method="post" onsubmit="prepareDB(); return false;"> <table border="0" width="99%" cellspacing="0" cellpadding="5" class="inputForm"> <tr> <td class="inputField"><?php echo 'Database Server<br />' . osc_draw_input_field('DB_SERVER', 'localhost', 'class="text"'); ?></td> <td class="inputDescription">The address of the database server in the form of a hostname or IP address.</td> </tr> <tr> <td class="inputField"><?php echo 'Username<br />' . osc_draw_input_field('DB_SERVER_USERNAME', null, 'class="text"'); ?></td> <td class="inputDescription">The username used to connect to the database server.</td> </tr> <tr> <td class="inputField"><?php echo 'Password<br />' . osc_draw_password_field('DB_SERVER_PASSWORD', 'class="text"'); ?></td> <td class="inputDescription">The password that is used together with the username to connect to the database server.</td> </tr> <tr> <td class="inputField"><?php echo 'Database Name<br />' . osc_draw_input_field('DB_DATABASE', null, 'class="text"'); ?></td> <td class="inputDescription">The name of the database to hold the data in.</td> </tr> </table> <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> </form> </div> </div>
©
2018. | Recode by D7net