📄 tpl_header_test_info.php
字号:
<?php
/**
* Common Template - tpl_header_test_info.php
*
* This file is used as an alternate "header" which can be used to display debug information while doing system testing
* NOT usable for a live site
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_header_test_info.php 2656 2005-12-23 05:14:55Z drbyte $
*/
?>
<table class="centershop" border="0" cellspacing="0" cellpadding="0">
<tr><td>
<?php
if (!$flag_disable_header) {
?>
<table border="0" cellspacing="0" cellpadding="0" class="headerNavigation" align="center">
<tr class="headerNavigation">
<td align="left" valign="top" width="33%" class="headerNavigation">
<a href="<?php echo zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a> |
<?php if ($_SESSION['customer_id']) { ?>
<a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a> |
<a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a>
<?php } else { ?>
<a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a>
<?php } ?>
</td >
<td align="center" width="25%"><?php require(DIR_WS_MODULES . 'sideboxes/' . 'search_header.php'); ?>
</td>
<td class="headerNavigation" align="right" valign="top" width="33%">
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> | <a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?>»</a>
<?php }?></td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" class="header">
<tr><!-- All HEADER_ definitions in the columns below are defined in includes/languages/english.php //-->
<td align="center" valign="middle" height="<?php echo HEADER_LOGO_HEIGHT; ?>" width="<?php echo HEADER_LOGO_WIDTH; ?>">
<?php echo '<a href="' . zen_href_link(FILENAME_DEFAULT) . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
</td>
<td align="center" valign="middle"><?php echo HEADER_SALES_TEXT; ?></td>
</tr>
</table>
<?php
if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
?>
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr class="headerError">
<td class="headerError"><?php echo htmlspecialchars(urldecode($_GET['error_message'])); ?></td>
</tr>
</table>
<?php
}
if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
?>
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr class="headerInfo">
<td class="headerInfo"><?php echo htmlspecialchars($_GET['info_message']); ?></td>
</tr>
</table>
<?php
}
?>
<?php
if (isset($_SESSION['SSL_SESSION_ID'])) {
$show_session_expire = $db->Execute("select * from " . TABLE_SESSIONS . " where sesskey= '" . $_SESSION['SSL_SESSION_ID'] . "'");
}
echo '<br /><strong>TESTING INFO:</strong> Time page: <strong>' . $_GET['main_page'] . '</strong> was loaded is: <strong>' . date('H:i:s', time()) . '</strong><br /><br />';
echo 'Session ID: ' . zen_session_id() . '<br / >';
echo 'REGISTERED GLOBALS is: <strong>' . (ini_get('register_globals')=='1' ? 'ON' : 'OFF') . '</strong>' . ' Session Timeout: <strong>' . ini_get('session.gc_maxlifetime') . 's</strong><br /><br />';
echo "GLOBALS[$main_page] and HTTP_GET_VARS['main_page'] and _GET['main_page'] = " . $GLOBALS['main_page'] . ' - ' . $HTTP_GET_VARS['main_page'] . ' - ' . $_GET['main_page'] . '<br /><br />';
echo "_SERVER['PHP_SELF'] and _GET['PHP_SELF'] and PHP_SELF and _SESSION['PHP_SELF'] = " . $_SERVER['PHP_SELF'] . ' - ' . $_GET['PHP_SELF'] . ' - ' . $PHP_SELF . ' - ' . $_SESSION['PHP_SELF'] . '<br /><br />';
echo "getenv('REQUEST_URI') = " . getenv('REQUEST_URI') . '<br /><br />';
echo 'SERVER_NAME = ' . $_SERVER['SERVER_NAME'] . '<br /><br />';
echo 'SCRIPT_FILENAME = ' . $_SERVER['SCRIPT_FILENAME'] . '<br /><br />';
echo 'HTTP_REFERER = ' . $_SERVER['HTTP_REFERER'] . '<br /><br />';
echo 'template_dir = ' . $template_dir . '<br /><br />';
echo '$cPath='.$cPath . '<br /><br />';
echo '<strong>TEST LANGUAGE ' . TEST_LANGUAGE . '</strong><br /><br />';
if (strstr($_SERVER['HTTP_REFERER'], $_SERVER['SERVER_NAME'])) {
echo 'SERVER_NAME within HTTP_REFERER - Yes' . '<br />';
} else {
echo 'SERVER_NAME within HTTP_REFERER - No' . '<br />';
}
// set up some variables in place of getenv
echo '<br /><br /><strong>getenv replacements:</strong>' . '<br />';
echo '<strong>$_SERVER[HTTPS]</strong> ' . $_SERVER['HTTPS'] . '<br />';
echo '<strong>$_SERVER[HTTP_USER_AGENT]</strong> ' . $_SERVER['HTTP_USER_AGENT'] . '<br />';
echo '<strong>$_SERVER[REQUEST_URI]</strong> ' . $_SERVER['REQUEST_URI'] . '<br />';
echo '<strong>$_SERVER[SSL_SESSION_ID]</strong> ' . $_SERVER['SSL_SESSION_ID'] . '<br />';
echo '<strong>$_SERVER[HTTP_ACCEPT_LANGUAGE]</strong> ' . $_SERVER['HTTP_ACCEPT_LANGUAGE'] . '<br />';
/*
echo '<strong>AIN\'T THIS COOL TO KNOW:</strong> ' . '<br /><br />';
if (isset($_GET['width']) AND isset($_GET['height'])) {
// output the geometry variables
echo "Screen width is: ". $_GET['width'] ."<br />\n";
echo "Screen height is: ". $_GET['height'] ."<br />\n";
} else {
// pass the geometry variables
// (preserve the original query string
// -- post variables will need to handled differently)
echo "<script language='javascript'>\n";
echo " location.href=\"${_SERVER['SCRIPT_NAME']}?${_SERVER['QUERY_STRING']}"
. "&width=\" + screen.width + \"&height=\" + screen.height;\n";
echo "</script>\n";
exit();
}
*/
echo '<br /><br />'
?>
<?php
$offset = 0;
while ($offset < 12) {
$back = sizeof($_SESSION['navigation']->path)-$offset;
if (isset($_SESSION['navigation']->path[$back]['page'])) {
$test_link= zen_href_link($_SESSION['navigation']->path[$back]['page'], zen_array_to_string($_SESSION['navigation']->path[$back]['get'], array('action')), $_SESSION['navigation']->path[$back]['mode']);
?>
<table>
<tr>
<td class="main"><?php echo '<a href="' . zen_href_link($_SESSION['navigation']->path[$back]['page'], zen_array_to_string($_SESSION['navigation']->path[$back]['get'], array('action')), $_SESSION['navigation']->path[$back]['mode']) . '">' . zen_image_button('button_back.gif', 'TEST BACK NONE') . '</a>-' . $offset . '<br />Go to: ' . $test_link; ?></td>
</tr>
</table>
<?php
}
$offset++;
}
?>
<?php
}
?>
<?php
echo "<br /><br /><strong>GET variables:</strong><br />";
foreach($_GET as $key=>$value) { echo "$key => $value<br />"; }
echo "<br /><strong>POST variables:</strong><br />";
foreach($_POST as $key=>$value) { echo "$key => $value<br />"; }
echo "<br /><strong>COOKIE variables:</strong><br />";
foreach($_COOKIE as $key=>$value) { echo "$key => $value<br />"; }
echo "<br /><strong>SESSION variables:</strong><br />";
foreach($_SESSION as $key=>$value) {
echo "$key => $value<br />";
}
// now break it out into objects and arrays, if relevant
foreach($_SESSION as $key=>$value) {
echo "<strong>$key</strong> => <em>$value</em><br />";
if (is_array($value) || is_object($value)) {
foreach($value as $key2=>$value2) {
echo " <strong>$key2</strong> => <em>$value2</em><br />";
if (is_array($value2) || is_object($value2)) {
foreach($value2 as $key3=>$value3) {
echo " <strong>$key3</strong> => <em>$value3</em><br />";
if (is_array($value3) || is_object($value3)) {
foreach($value3 as $key4=>$value4) {
echo " <strong>$key4</strong> => <em>$value4</em><br />";
if (is_array($value4) || is_object($value4)) {
foreach($value4 as $key5=>$value5) {
echo " <strong>$key5</strong> => <em>$value5</em><br />";
if (is_array($value5) || is_object($value5)) echo '<font color=red>More Info not shown...</font>';
}
}
}
}
}
}
}
}
}
echo "<br /><strong>FILES variables:</strong>(if any)<br />";
foreach($_FILES as $key=>$value) {
echo $key .'[name]=> '.$_FILES[$key]['name'].'<br />';
echo $key .'[type]=> '.$_FILES[$key]['type'].'<br />';
echo $key .'[size]=> '.$_FILES[$key]['size'].'<br />';
echo $key .'[tmp_name]=> '.$_FILES[$key]['tmp_name'].'<br />';
}
echo "<br /><br />";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -