PHP Classes

File: pages/404.php

Recommend this page to a friend!
  Classes of Rémy Sanchez   uncentralizedDownloader   pages/404.php   Download  
File: pages/404.php
Role: Application script
Content type: text/plain
Description: Template file for Not Found error.
Class: uncentralizedDownloader
Manage downloading of files from multiple servers
Author: By
Last change:
Date: 16 years ago
Size: 448 bytes
 

Contents

Class file image Download
<?php
@header("HTTP/1.0 404 Not Found", true);
$pageTitle = $confMsgs["site_name"] . " - " . $confMsgs["file_not_found"];
$pageMessage = basename($msgs[0]) .
              
"<br /><br />" .
          
$confMsgs["file_not_found_text"] .
          
"<br /><br /><a href=\"" .
           ((isset(
$_SERVER["HTTP_REFERER"])) ? $_SERVER["HTTP_REFERER"] : $confMsgs["main_site_url"]) .
          
"\">" .
          
$confMsgs["back_to_main_site"] .
          
"</a>\n";
?>