Debug uitschakelen
Forumregels
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.

Debug uitschakelen
Hallo, Onderaan mijn forum staat in een aparte regel het volgende:
[ Time: 0.9676s ][ Queries: 10 (0.3664s) ][ Debug on ]
Hoe zet ik dit uit?
[ Time: 0.9676s ][ Queries: 10 (0.3664s) ][ Debug on ]
Hoe zet ik dit uit?
Daar had ik dus al naar gekeken:
Oftwel ik zie daar niets instaan
Als ik inde bron van de index kijk, zie ik een verwijzing naar de page_tail, echter kan ik daar ook niet in vinden.
page-tail:
Gebruik CODE tags, is veel duidelijker
-- Bee
dank je, ik wist nog niet hoe dat werkte
Code: Selecteer alles
<div align="center"><span class="copyright"><br />{ADMIN_LINK}<br />
<!--
We request you retain the full copyright notice below including the link to www.phpbb.com.
This not only gives respect to the large amount of time given freely by the developers
but also helps build interest, traffic and use of phpBB 2.0. If you cannot (for good
reason) retain the full copyright we request you at least leave in place the
Powered by phpBB line, with phpBB linked to www.phpbb.com. If you refuse
to include even this then support on our forums may be affected.
The phpBB Group : 2002
// -->
Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> © 2001, 2005 phpBB Group<br />{TRANSLATION_INFO}</span></div>
</td>
</tr>
</table>
</body>
</html>
Als ik inde bron van de index kijk, zie ik een verwijzing naar de page_tail, echter kan ik daar ook niet in vinden.
page-tail:
Code: Selecteer alles
<?php
//-- mod : categories hierarchy ------------------------------------------------
/***************************************************************************
* page_tail.php
* -------------------
* begin : Saturday, Feb 13, 2001
* copyright : (C) 2001 The phpBB Group
* email : support@phpbb.com
*
* $Id: page_tail.php,v 1.27.2.3 2004/12/22 02:04:00 psotfx Exp $
*
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
if ( !defined('IN_PHPBB') )
{
die('Hacking attempt');
}
//
// Show the overall footer.
//
$admin_link = ( $userdata['user_level'] == ADMIN ) ? '<a href="admin/index.' . $phpEx . '?sid=' . $userdata['session_id'] . '">' . $lang['Admin_panel'] . '</a><br /><br />' : '';
$template->set_filenames(array(
'overall_footer' => ( empty($gen_simple_header) ) ? 'overall_footer.tpl' : 'simple_footer.tpl')
);
$template->assign_vars(array(
'TRANSLATION_INFO' => ( isset($lang['TRANSLATION_INFO']) ) ? $lang['TRANSLATION_INFO'] : '',
'ADMIN_LINK' => $admin_link)
);
$template->pparse('overall_footer');
//-- mod : categories hierarchy ------------------------------------------------
//-- add
// send run stat (page generation, sql time, requests dump...)
$stat_run = new stat_run_class(microtime());
if ( empty($gen_simple_header) && defined('DEBUG') )
{
$stat_run->display();
}
// send messages
if ( defined('CH_message_queue') && empty($gen_simple_header) && !empty($message_queue->data) )
{
$message_queue->send();
}
//-- fin mod : categories hierarchy --------------------------------------------
//
// Close our DB connection.
//
$db->sql_close();
//
// Compress buffered output if required and send to browser
//
if ( $do_gzip_compress )
{
//
// Borrowed from php.net!
//
$gzip_contents = ob_get_contents();
ob_end_clean();
$gzip_size = strlen($gzip_contents);
$gzip_crc = crc32($gzip_contents);
$gzip_contents = gzcompress($gzip_contents, 9);
$gzip_contents = substr($gzip_contents, 0, strlen($gzip_contents) - 4);
echo "\x1f\x8b\x08\x00\x00\x00\x00\x00";
echo $gzip_contents;
echo pack('V', $gzip_crc);
echo pack('V', $gzip_size);
}
exit;
?>

dank je, ik wist nog niet hoe dat werkte
Laatst gewijzigd door Eelco op 16 mar 2005, 19:45, 1 keer totaal gewijzigd.
Ja helaas wel
heel irritant.
Is een standaard php installatie met een mod voor subforums, niks spectaculairs
je kan het beste zien op het forum zelf: http://www.telefooncentraleforum.nl
@moderators: dit is niet als reclame bedoelt, mochten jullie het toch niet mee eens zijn dat de link er staat kunnen jullie gelijk de link verwijderen, het is echter alleen ter illustratie bedoelt. (de site is btw ook niet-comercieel)
heel irritant.
Is een standaard php installatie met een mod voor subforums, niks spectaculairs
je kan het beste zien op het forum zelf: http://www.telefooncentraleforum.nl
@moderators: dit is niet als reclame bedoelt, mochten jullie het toch niet mee eens zijn dat de link er staat kunnen jullie gelijk de link verwijderen, het is echter alleen ter illustratie bedoelt. (de site is btw ook niet-comercieel)
Laatst gewijzigd door Eelco op 16 mar 2005, 17:04, 1 keer totaal gewijzigd.
Dit stukje veroorzaakt het:
Code: Selecteer alles
// send run stat (page generation, sql time, requests dump...)
$stat_run = new stat_run_class(microtime());
if ( empty($gen_simple_header) && defined('DEBUG') )
{
$stat_run->display();
}
ok dank je, ik ga het straks gelijk proberen.paulus schreef:Dit stukje veroorzaakt het:Code: Selecteer alles
// send run stat (page generation, sql time, requests dump...) $stat_run = new stat_run_class(microtime()); if ( empty($gen_simple_header) && defined('DEBUG') ) { $stat_run->display(); }