ผมมี Error ใน Controlshop รบกวนเซียน PHP ช่วยหน่อยครับWarning: error_log(/var/log/www/tep/page_parse_time.log) [function.error-log]: failed to open stream: No such file or directory in d:\ip1\madeatthailand.biz\www\controlshop\includes\classes\logger.php on line 49
Parse Time: 0.858sและนี่คือโค๊ดที่ระบบแจ้งว่า Error บรรทัด 49 จะเป็นสีแดง<?php
/*
$Id: logger.php,v 1.3 2003/06/20 16:23:08 hpdl Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com 
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
*/
class logger {
var $timer_start, $timer_stop, $timer_total;
// class constructor
function logger() {
$this->timer_start();
}
function timer_start() {
if (defined("PAGE_PARSE_START_TIME")) {
$this->timer_start = PAGE_PARSE_START_TIME;
} else {
$this->timer_start = microtime();
}
}
function timer_stop($display = 'false') {
$this->timer_stop = microtime();
$time_start = explode(' ', $this->timer_start);
$time_end = explode(' ', $this->timer_stop);
$this->timer_total = number_format(($time_end[1] + $time_end[0] - ($time_start[1] + $time_start[0])), 3);
$this->write(getenv('REQUEST_URI'), $this->timer_total . 's');
if ($display == 'true') {
return $this->timer_display();
}
}
function timer_display() {
return '<span class="smallText">Parse Time: ' . $this->timer_total . 's</span>';
}
function write($message, $type) {
error_log(strftime(STORE_PARSE_DATE_TIME_FORMAT) . ' [' . $type . '] ' . $message . "\n", 3, STORE_PAGE_PARSE_TIME_LOG); }
}
?>
ขอบคุณล่วงหน้าสำหรับคำตอบ