1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Added some gzip compression capability

git-svn-id: file:///svn/phpbb/trunk@528 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-06-30 21:04:37 +00:00
parent 7cd3c42c63
commit 3c5311ccfa
4 changed files with 36 additions and 11 deletions

View File

@@ -24,6 +24,29 @@
define(HEADER_INC, TRUE);
//
// gzip_compression
//
if($board_config['gzip_compress'])
{
$phpver = phpversion();
if($phpver >= "4.0.4pl1")
{
if(extension_loaded("zlib"))
{
ob_start("ob_gzhandler");
}
}
else if($phpver > "4.0")
{
// It would be nice if we
// used output buffering here
// to allow compression for
// versions < 4.0.4pl1
}
}
//
// Parse and show the overall header.
//
@@ -86,15 +109,11 @@ if(!$result)
$logged_online = 0;
$guests_online = 0;
$row = $db->sql_fetchrowset($result);
$num_rows = $db->sql_numrows($result);
for($x = 0; $x < $num_rows; $x++)
while($row = $db->sql_fetchrow($result))
{
if($row[$x]['session_logged_in'])
if($row['session_logged_in'])
{
$userlist_ary[] = "<a href=\"".append_sid("profile." . $phpEx . "?mode=viewprofile&" . POST_USERS_URL . "=" . $row[$x]['user_id']) . "\">" . $row[$x]['username'] . "</a>";
$userlist_ary[] = "<a href=\"".append_sid("profile." . $phpEx . "?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . "\">" . $row['username'] . "</a>";
$logged_online++;
}
else
@@ -102,7 +121,6 @@ for($x = 0; $x < $num_rows; $x++)
$guests_online++;
}
}
$userlist = "";
for($i = 0; $i < $logged_online; $i++)
{