[外掛]Page Generation Time 2.0.0

MODs Released by Other phpbb Sites
非官方認證通過之 MOD ,或許有安全性之疑慮,所有問題由原發表者回覆!

版主: 版主管理群

主題已鎖定
秋水伊人
星球公民
星球公民
文章: 47
註冊時間: 2003-02-12 18:52

[外掛]Page Generation Time 2.0.0

文章 秋水伊人 »

這是頁面產生時間外掛,會在每個網頁的下方顯示如下列的資訊:
頁面完成時間: 0.5239 秒 (PHP: 91% - SQL: 9%) - 共讀取資料庫: 11 次 - Gzip 壓縮功能 關閉 - 除錯模式 開啟
這個功能蠻不錯的,安裝也是超容易,只要上傳覆蓋三個檔案即可。
站上另外一篇類似的外掛為健仔所張貼的 [分享]Generation Creation v1.0.0

代碼: 選擇全部

##############################################################
## MOD Title: Page Generation Time
## MOD Author: Smartor < smartor_xp@hotmail.com > (Hoang Ngoc Tu) http://smartor.is-root.com
## MOD Description:	This MOD will show page generation info in the page footer
##					Work with phpBB 2.0.4
##	Eg: Page generation time: 0.4873s (PHP: 83% - SQL: 17%) - SQL queries: 14 - GZIP enabled - Debug on
##
## MOD Version: 2.0.0
##
## Installation Level: easy
## Installation Time: 1 Minutes
##
## Files To Overwrite: 3
##	extension.inc
##	db/mysql.php
##	includes/page_tail.php
##
## Included Files: N/A
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################
## Author Notes:
##
##	I am too lazy to write (too many) instructions for this (too trivia) MOD so note:
##
##	o About File Changing:
##
##		If you are using phpBB 2.0.4 you can just upload/overwrite these 3 files
##
##		If you are using phpBB older than 2.0.4 sorry I cannot help
##
##		If you are using phpBB newer than 2.0.4 please come to http://smartor.is-root.com to
##		get the update
##
##	o About Database:
##
##		Currently I only support MySQL 3.x
##
##	o Tips:
##
##		If you want only Admins can view the page generation info just
##		un-comment line 77 (or around 77) in page_tail.php
##
##	o Warning:
##
##		Remember to backup and beware and take all responsible (certainly) for your actions!
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
下載:Page Generation Time v2.0.0

原始程式產生的資訊是英文的,如果想中文化請照下列步驟做
打開 includes/page_tail.php

尋找(第79行)

代碼: 選擇全部

	$gzip_text = ($board_config['gzip_compress']) ? 'GZIP enabled' : 'GZIP disabled';

	$debug_text = (DEBUG == 1) ? 'Debug on' : 'Debug off';
取代為\r

代碼: 選擇全部

	$gzip_text = ($board_config['gzip_compress']) ? 'Gzip 壓縮功能 開啟' : 'Gzip 壓縮功能 關閉';

	$debug_text = (DEBUG == 1) ? '除錯模式 開啟' : '除錯模式 關閉';
尋找(第97行)

代碼: 選擇全部

echo '<br /><div style="font-family: Verdana; font-size: 10px; color: #000000; letter-spacing: -1px" align="center">Page generation time: '. $gentime .'s (PHP: '. $php_part .'% - SQL: '. $sql_part .'%) - SQL queries: '. $excuted_queries .' - '. $gzip_text .' - '. $debug_text .'</div>';
取代為\r

代碼: 選擇全部

echo '<br /><div style="font-family: Verdana; font-size: 10px; color: #000000; letter-spacing: -1px" align="center">頁面生成時間: '. $gentime .' 秒 (PHP: '. $php_part .'% - SQL: '. $sql_part .'%) - 共讀取資料庫: '. $excuted_queries .' 次 - '. $gzip_text .' - '. $debug_text .'</div>';
存檔上傳。
如果不喜歡此中文翻譯,也可以照您自己的需求去修改。
主題已鎖定

回到「非官方認證外掛」