DIR : /home/kozerus/public_html/zc/adam/alert_page.php
/home/kozerus/public_html/zc/adam
<?php
/**
* @copyright Copyright 2003-2020 Zen Cart Development Team
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: DrByte 2020 May 16 Modified in v1.5.7 $
*/
require('includes/application_top.php');
$adminDirectoryExists = $installDirectoryExists = false;
if (substr(DIR_WS_ADMIN, -7) == '/admin/' || substr(DIR_WS_HTTPS_ADMIN, -7) == '/admin/') {
$adminDirectoryExists = true;
}
$check_path = dirname($_SERVER['SCRIPT_FILENAME']) . '/../zc_install';
if (is_dir($check_path)) {
$installDirectoryExists = true;
}
if (!$adminDirectoryExists && !$installDirectoryExists) {
zen_redirect(zen_href_link(FILENAME_DEFAULT));
}
?>
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Zen Cart!</title>
<meta name="robots" content="noindex, nofollow">
</head>
<body style="font-family:Helvetica, Arial, sans-serif">
<div style="width:80%;margin: 10% auto auto;border:5px red solid;padding:20px 50px 50px 50px;background-color:#FFAFAF;">
<h1 style="text-align: center;font-size:40px;color:red;margin:0;"><?php echo HEADING_TITLE; ?></h1>
<p><?php echo ALERT_PART1; ?></p>
<ul>
<?php if ($installDirectoryExists) { ?>
<li><?php echo ALERT_REMOVE_ZCINSTALL; ?><br><br></li>
<?php } ?>
<?php if ($adminDirectoryExists) { ?>
<li><?php echo ALERT_RENAME_ADMIN; ?><br><a href="https://docs.zen-cart.com/user/running/rename_admin/" rel="noopener" target="_blank"><?php echo ADMIN_RENAME_FAQ_NOTE; ?></a></li>
<?php } ?>
</ul>
<?php if ($adminDirectoryExists) { ?>
<br><p><?php echo ALERT_PART2; ?></p>
<?php } ?>
</div>
</body>
</html>
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer