Pagina 1 van 1
Debug uitschakelen
Geplaatst: 16 mar 2005, 15:25
door Eelco
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?
Geplaatst: 16 mar 2005, 15:29
door Stef
Geplaatst: 16 mar 2005, 15:38
door Eelco
bedankt, nu is inderdaad het debug on weg, ik wil echter ook graag de rest van de regel niet weergegeven hebben, is dat ook mogelijk?
Geplaatst: 16 mar 2005, 16:27
door Stef
Moet je even opzoek in de overall_footer.tpl, waar dat regeltje voor staat en die verwijderen.

Geplaatst: 16 mar 2005, 16:38
door Eelco
Daar had ik dus al naar gekeken:
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>
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:
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;
?>
Gebruik CODE tags, is veel duidelijker
-- Bee
dank je, ik wist nog niet hoe dat werkte
Geplaatst: 16 mar 2005, 16:53
door Stef
hè? Hij zit toch wel op elke pagina hè?
Geplaatst: 16 mar 2005, 17:03
door Eelco
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)
Geplaatst: 16 mar 2005, 17:03
door Paul
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();
}
Geplaatst: 16 mar 2005, 17:05
door Eelco
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();
}
ok dank je, ik ga het straks gelijk proberen.
Geplaatst: 16 mar 2005, 19:51
door Eelco
Paulus, bedankt voor de oplossing, en de rest uiteraard ook voor het meedenken.
Geplaatst: 16 mar 2005, 19:53
door Paul
graag gedaan
