Contributions

Features (Category Index)
Search: 

Down for Maintenance v1.0

Down for Maintenance v1.0 was written from snapshot 02-22-2003

In theory, the logic should work with any snapshot.

I have not, however, tested that theory.

Once installed, everything is configured in the Admin.

It's a pretty easy install. Be sure to backup first, just in case!

Expand All / Collapse All

spider friendly emelaz 12 Jan 2006

use theses lignes in application_top.php instead of those in the install readme:

// BOF: Down for Maintenance except for admin ip
if (EXCLUDE_ADMIN_IP_FOR_MAINTENANCE != getenv('REMOTE_ADDR')){
if (DOWN_FOR_MAINTENANCE=='true' and !strstr($PHP_SELF,DOWN_FOR_MAINTENANCE_FILENAME)) {
$url = tep_href_link(DOWN_FOR_MAINTENANCE_FILENAME);
header("HTTP/1.0 307 Temporary Redirect");
header("Location: $url"); // redirect...bye bye
}
}
// do not let people get to down for maintenance page if not turned on
if (DOWN_FOR_MAINTENANCE=='false' and strstr($PHP_SELF,DOWN_FOR_MAINTENANCE_FILENAME)) {
$url = tep_href_link(DOWN_FOR_MAINTENANCE_FILENAME);
header("HTTP/1.0 307 Temporary Redirect");
header("Location: $url"); // redirect...bye bye
}
// EOF: WebMakers.com Added: Down for Maintenance

Down for maintenance v1.2 Jean-Luc FRIEZ 13 Jan 2004
Down for Maintenance v1.1b Donald Harriman 8 Aug 2003
Down for Maintenance v1.1a Donald Harriman 8 Aug 2003
Down For Maintenance v1.2 for MS 2.2 Farrukh Saeed 27 Jul 2003
Down for Maintenance v1.1 Fram 12 May 2003
Down for Maintenance v1.0.1a Robert Hellemans 23 Mar 2003
Down for Maintenance v1.0.1 Robert Hellemans 21 Mar 2003
down_for_maintenance_add_on Robert Hellemans 21 Mar 2003
Down for Maintenance v1.0 Linda McGrath 8 Mar 2003

Note: Contributions are used at own risk.