clipbucket/upload/404.php
Fawaz 06b4af33dd Fixed : Admin Activaition Code
Added : Error 404 and 403 separate pages
Fixed : ToggleView() in Internet Explorer
2010-07-10 11:29:26 +00:00

26 lines
No EOL
704 B
PHP

<?php
/*
********************************************************************
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved.
| @ Author : ArslanHassan
| @ Software : ClipBucket , © PHPBucket.com
********************************************************************
*/
define("THIS_PAGE",'404');
require 'includes/config.inc.php';
if(file_exists(LAYOUT."/404.html")) {
template_files('404.html');
} else {
$file_name = "404.html";
$fh = fopen(LAYOUT."/".$file_name,'w');
$data = "<h2>404 Error</h2>\n";
$data .= "<p>Requested page not found.</p>";
fwrite($fh, $data);
fclose($fh);
template_files('404.html');
}
display_it();
?>