1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
<?php /************************************************************************** * * * 4images - A Web Based Image Gallery Management System * * ---------------------------------------------------------------- * * * * File: page_footer.php * * Copyright: (C) 2002 Jan Sorgalla * * Email: jan@4homepages.de * * Web: http://www.4homepages.de * * Scriptversion: 1.7.1 * * * * Never released without support from: Nicky (http://www.nicky.net) * * * ************************************************************************** * * * Dieses Script ist KEINE Freeware. Bitte lesen Sie die Lizenz- * * bedingungen (Lizenz.txt) für weitere Informationen. * * --------------------------------------------------------------- * * This script is NOT freeware! Please read the Copyright Notice * * (Licence.txt) for further information. * * * *************************************************************************/ if (!defined('ROOT_PATH')) { die("Security violation"); }
if ((defined("PRINT_STATS") && PRINT_STATS == 1) || (isset($HTTP_GET_VARS['printstats']) && md5($HTTP_GET_VARS['printstats']) == "6111426fcb0b0a76558f9058c331a3a6")) { $starttime = explode(" ", $start_time); $endtime = explode(" ", microtime()); $total_time = $endtime[0] - $starttime[0] + $endtime[1] - $starttime[1]; $sql_time = $site_db->query_time; $php_time = $total_time - $sql_time; $gzip_text = ($config['gz_compress'] == 1) ? "GZIP compression enabled" : "GZIP compression disabled"; $gzip_text .= ($config['gz_compress'] == 1 && !extension_loaded("zlib")) ? "*" : ""; printf("<p align=\"center\"><font size=\"-2\">Page generated in %f seconds with ".$site_db->query_count." queries, spending %f seconds doing MySQL queries and %f doing PHP things. $gzip_text</font></p>", $total_time, $sql_time, $php_time); }
if (defined("PRINT_QUERIES") && PRINT_QUERIES == 1) { echo implode('<br><br>', $site_db->query_array); }
$site_db->close(); $site_sess->freeze();
if (isset($HTTP_GET_VARS['phpinfo']) && md5($HTTP_GET_VARS['phpinfo']) == "6111426fcb0b0a76558f9058c331a3a6") { phpinfo(); }
if ($do_gzip_compress) { if (eregi("gzip", $HTTP_SERVER_VARS["HTTP_ACCEPT_ENCODING"])) { $encoding = "gzip"; } elseif (eregi("x-gzip", $HTTP_SERVER_VARS["HTTP_ACCEPT_ENCODING"])) { $encoding = "x-gzip"; }
$gzip_contents = ob_get_contents(); ob_end_clean();
if ((defined("PRINT_STATS") && PRINT_STATS == 1) || (isset($HTTP_GET_VARS['printstats']) && md5($HTTP_GET_VARS['printstats']) == "6111426fcb0b0a76558f9058c331a3a6")) { $s = sprintf ("\n<!-- Use Encoding: %s -->", $encoding); $s .= sprintf("\n<!-- Not compress length: %s -->", strlen($gzip_contents)); $s .= sprintf("\n<!-- Compressed length: %s -->", strlen(gzcompress($gzip_contents, $config['gz_compress_level']))); $gzip_contents .= $s; }
$gzip_size = strlen($gzip_contents); $gzip_crc = crc32($gzip_contents);
$gzip_contents = gzcompress($gzip_contents, $config['gz_compress_level']); $gzip_contents = substr($gzip_contents, 0, strlen($gzip_contents) - 4);
header("Content-Encoding: $encoding"); echo "\x1f\x8b\x08\x00\x00\x00\x00\x00"; echo $gzip_contents; echo pack("V", $gzip_crc); echo pack("V", $gzip_size); } exit; ?>
|