View file aiv2 AutoIndex/error.php

File size: 966B
<?php
/**
 * @name error.php
 * @description 404 Error Page!
 * @package Punk Autoindex  
 * @author MobiHacK
 * @copyright RockiTech Group
 * @version 2.0
 */
 
include ('config.php');
include ($config->real() . $config->header);
if($layout=='web'){?>
<div class="wrap">
<div style="float: left; width: 18%; margin-bottom: 5px;" class="container">
<div class="title">Menu</div>
<?php include('templates/sidebar.ptf'); ?>
</div>
<div style="float: right; width:80%;">
<?php
}?>
<div class="container"><div class="title">Error</div>
<?php if($layout=='web'){
echo '<div style="padding:5px;">';
}?>
<strong>URL:</strong> <?php echo htmlspecialchars($_SERVER["QUERY_STRING"]); ?><br />
<strong>Error:</strong> 404 Not Found!<br />
<strong>Description:</strong> The file or directory you tried to access doesnt exist!
</div>
<?php if($layout=='web'){
echo '</div></div></div>';
}
?>
<?php
include ($config->real() . $config->footer); ?>