0byt3m1n1 - D7net
0byt3m1n1 - D7net
Path:
/
home
/
s13cf5ef
/
www
/
newtuscamisetaspersonalizadas
/
install
/
templates
/
pages
/
[
Home
]
Name File: index.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 */ $compat_register_globals = true; if (function_exists('ini_get') && (PHP_VERSION < 4.3) && ((int)ini_get('register_globals') == 0)) { $compat_register_globals = false; } ?> <div class="mainBlock"> <h1>Welcome to osCommerce Online Merchant v<?php echo osc_get_version(); ?>!</h1> <p>osCommerce Online Merchant helps you sell products worldwide with your own online store. Its Administration Tool manages products, customers, orders, newsletters, specials, and more to successfully build the success of your online business.</p> <p>osCommerce has attracted a large community of store owners and developers who support each other and have provided over 6,000 free add-ons that can extend the features and potential of your online store.</p> </div> <div class="contentBlock"> <div class="infoPane"> <h3>Server Capabilities</h3> <div class="infoPaneContents"> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><strong>PHP Version</strong></td> <td align="right"><?php echo PHP_VERSION; ?></td> <td align="right" width="25"><img src="images/<?php echo ((PHP_VERSION >= 4) ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> </table> <?php if (function_exists('ini_get')) { ?> <br /> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><strong>PHP Settings</strong></td> <td align="right"></td> <td align="right" width="25"></td> </tr> <tr> <td>register_globals</td> <td align="right"><?php echo (((int)ini_get('register_globals') == 0) ? 'Off' : 'On'); ?></td> <td align="right"><img src="images/<?php echo (($compat_register_globals == true) ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> <tr> <td>magic_quotes</td> <td align="right"><?php echo (((int)ini_get('magic_quotes') == 0) ? 'Off' : 'On'); ?></td> <td align="right"><img src="images/<?php echo (((int)ini_get('magic_quotes') == 0) ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> <tr> <td>file_uploads</td> <td align="right"><?php echo (((int)ini_get('file_uploads') == 0) ? 'Off' : 'On'); ?></td> <td align="right"><img src="images/<?php echo (((int)ini_get('file_uploads') == 1) ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> <tr> <td>session.auto_start</td> <td align="right"><?php echo (((int)ini_get('session.auto_start') == 0) ? 'Off' : 'On'); ?></td> <td align="right"><img src="images/<?php echo (((int)ini_get('session.auto_start') == 0) ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> <tr> <td>session.use_trans_sid</td> <td align="right"><?php echo (((int)ini_get('session.use_trans_sid') == 0) ? 'Off' : 'On'); ?></td> <td align="right"><img src="images/<?php echo (((int)ini_get('session.use_trans_sid') == 0) ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> </table> <br /> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><strong>Required PHP Extensions</strong></td> <td align="right" width="25"></td> </tr> <tr> <td>MySQL</td> <td align="right"><img src="images/<?php echo (extension_loaded('mysql') ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> </table> <br /> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><strong>Optional PHP Extensions</strong></td> <td align="right" width="25"></td> </tr> <tr> <td>GD</td> <td align="right"><img src="images/<?php echo (extension_loaded('gd') ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> <tr> <td>cURL</td> <td align="right"><img src="images/<?php echo (extension_loaded('curl') ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> <tr> <td>OpenSSL</td> <td align="right"><img src="images/<?php echo (extension_loaded('openssl') ? 'tick.gif' : 'cross.gif'); ?>" border="0" width="16" height="16"></td> </tr> </table> <?php } ?> </div> </div> <div class="contentPane"> <h2>New Installation</h2> <?php $configfile_array = array(); if (file_exists(osc_realpath(dirname(__FILE__) . '/../../../includes') . '/configure.php') && !osc_is_writable(osc_realpath(dirname(__FILE__) . '/../../../includes') . '/configure.php')) { @chmod(osc_realpath(dirname(__FILE__) . '/../../../includes') . '/configure.php', 0777); } if (file_exists(osc_realpath(dirname(__FILE__) . '/../../../admin/includes') . '/configure.php') && !osc_is_writable(osc_realpath(dirname(__FILE__) . '/../../../admin/includes') . '/configure.php')) { @chmod(osc_realpath(dirname(__FILE__) . '/../../../admin/includes') . '/configure.php', 0777); } if (file_exists(osc_realpath(dirname(__FILE__) . '/../../../includes') . '/configure.php') && !osc_is_writable(osc_realpath(dirname(__FILE__) . '/../../../includes') . '/configure.php')) { $configfile_array[] = osc_realpath(dirname(__FILE__) . '/../../../includes') . '/configure.php'; } if (file_exists(osc_realpath(dirname(__FILE__) . '/../../../admin/includes') . '/configure.php') && !osc_is_writable(osc_realpath(dirname(__FILE__) . '/../../../admin/includes') . '/configure.php')) { $configfile_array[] = osc_realpath(dirname(__FILE__) . '/../../../admin/includes') . '/configure.php'; } $warning_array = array(); if (function_exists('ini_get')) { if ($compat_register_globals == false) { $warning_array['register_globals'] = 'Compatibility with register_globals is supported from PHP 4.3+. This setting <u>must be enabled</u> due to an older PHP version being used.'; } } if (!extension_loaded('mysql')) { $warning_array['mysql'] = 'The MySQL extension is required but is not installed. Please enable it to continue installation.'; } if ((sizeof($configfile_array) > 0) || (sizeof($warning_array) > 0)) { ?> <div class="noticeBox"> <?php if (sizeof($warning_array) > 0) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2" style="background: #fffbdf; border: 1px solid #ffc20b; padding: 2px;"> <?php reset($warning_array); while (list($key, $value) = each($warning_array)) { echo ' <tr>' . "\n" . ' <td valign="top"><strong>' . $key . '</strong></td>' . "\n" . ' <td valign="top">' . $value . '</td>' . "\n" . ' </tr>' . "\n"; } ?> </table> <?php } if (sizeof($configfile_array) > 0) { ?> <p>The webserver is not able to save the installation parameters to its configuration files.</p> <p>The following files need to have their file permissions set to world-writeable (chmod 777):</p> <p> <?php for ($i=0, $n=sizeof($configfile_array); $i<$n; $i++) { echo $configfile_array[$i]; if (isset($configfile_array[$i+1])) { echo '<br />'; } } ?> </p> <?php } ?> </div> <?php } if ((sizeof($configfile_array) > 0) || (sizeof($warning_array) > 0)) { ?> <p>Please correct the above errors and retry the installation procedure with the changes in place.</p> <?php if (sizeof($warning_array) > 0) { echo ' <p><i>Changing webserver configuration parameters may require the webserver service to be restarted before the changes take affect.</i></p>' . "\n"; } ?> <p align="right"><a href="index.php"><img src="images/button_retry.gif" border="0" alt="Retry" /></a></p> <?php } else { ?> <p>The webserver environment has been verified to proceed with a successful installation and configuration of your online store.</p> <p>Please continue to start the installation procedure.</p> <p align="right"><a href="install.php"><img src="images/button_continue.gif" border="0" alt="Continue" /></a></p> <?php } ?> </div> </div>
©
2018. | Recode by D7net