From: Roland Häder Date: Fri, 1 Jan 2010 18:49:37 +0000 (+0000) Subject: GZIP compression is now required X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=9d7b66c75a69d7e56944708940580a8b14ef401d GZIP compression is now required --- diff --git a/DOCS/de/autoreg/README.txt b/DOCS/de/autoreg/README.txt index 81abbc41b5..9b8b3d8b9b 100644 --- a/DOCS/de/autoreg/README.txt +++ b/DOCS/de/autoreg/README.txt @@ -6,7 +6,7 @@ die eigentlichen Daten werden mit BASE-64 und URL-Encoding uebergeben. Aufruf von autoreg.php: -http://ihr-server.domain.invalid/autoreg.php?request=base64_decode(url_decode(ENCRYPT|REQUEST-DATA|AUTH-KEY)) +http://ihr-server.domain.invalid/autoreg.php?request=gzdecompress(base64_decode(url_decode(ENCRYPT|REQUEST-DATA|AUTH-KEY))) Dabei gilt: -------------------------------------------------------------------------------- diff --git a/inc/config-global.php b/inc/config-global.php index cf93aa710d..5c7110578e 100644 --- a/inc/config-global.php +++ b/inc/config-global.php @@ -91,7 +91,7 @@ setConfigEntry('AUTHOR' , 'Roland Häder'); setConfigEntry('TITLE', 'Mailer Project'); // CFG: COPY -setConfigEntry('COPY', 'Copyright © 2003 - 2009, by Roland Häder
2009, 2010 by Mailer Developer Team'); +setConfigEntry('COPY', 'Copyright © 2003 - 2009, by Roland Häder,
2009, 2010 by Mailer Developer Team'); // CFG: CACHE-PATH setConfigEntry('CACHE_PATH', getConfig('PATH') . 'inc/cache/'); diff --git a/inc/functions.php b/inc/functions.php index 2e67489387..da1d2508a2 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -3787,7 +3787,7 @@ function isSpider () { if (empty($userAgent)) return true; // Is it a spider? - return ((strpos($userAgent, 'spider') !== false) || (strpos($userAgent, 'slurp') !== false) || (strpos($userAgent, 'bot') !== false)); + return ((strpos($userAgent, 'spider') !== false) || (strpos($userAgent, 'slurp') !== false) || (strpos($userAgent, 'bot') !== false) || (strpos($userAgent, 'archiver') !== false)); } // Prepares the header for HTML output