UPGRADE NOTE: Do not edit or add to this file if you wish to upgrade AbanteCart to newer versions in the future. If you wish to customize AbanteCart for your needs please refer to http://www.AbanteCart.com for more information. ------------------------------------------------------------------------------*/ if (! defined ( 'DIR_CORE' ) || !IS_ADMIN) { header ( 'Location: static_pages/' ); } class ControllerPagesToolErrorLog extends AController { public $data; public function main() { //init controller data $this->extensions->hk_InitData($this,__FUNCTION__); $this->loadLanguage('tool/error_log'); $this->document->setTitle( $this->language->get('heading_title') ); $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['button_clear'] = $this->language->get('button_clear'); $this->data['tab_general'] = $this->language->get('tab_general'); if (isset($this->session->data['success'])) { $this->data['success'] = $this->session->data['success']; unset($this->session->data['success']); } else { $this->data['success'] = ''; } $this->document->resetBreadcrumbs(); $this->document->addBreadcrumb( array ( 'href' => $this->html->getSecureURL('index/home'), 'text' => $this->language->get('text_home'), 'separator' => FALSE )); $this->document->addBreadcrumb( array ( 'href' => $this->html->getSecureURL('tool/error_log'), 'text' => $this->language->get('heading_title'), 'separator' => ' :: ', 'current' => true )); $this->data['clear_url'] = $this->html->getSecureURL('tool/error_log/clearlog'); $file = DIR_LOGS . $this->config->get('config_error_filename'); if (file_exists($file)) { ini_set("auto_detect_line_endings", true); $fp = fopen($file,'r'); // check filesize $filesize = filesize($file); if($filesize>500000){ $this->data['log'] = "\n\n\n\n###############################################################################################\n\n". strtoupper($this->language->get('text_file_tail')).DIR_LOGS." ###############################################################################################\n\n\n\n"; fseek($fp,-500000,SEEK_END); fgets($fp); } while(!feof($fp)){ $log .= fgets($fp); } fclose($fp); } else { $log = ''; } $log = htmlentities(str_replace(array('
','
'),"\n",$log), ENT_QUOTES, 'UTF-8'); //filter empty string $lines = array_filter( explode("\n", $log), 'strlen' ); unset($log); $k=0; foreach($lines as $line){ if( preg_match( '(^\d{4}-\d{2}-\d{2} \d{1,2}:\d{2}:\d{2})', $line, $match) ){ $k++; $data[$k] = str_replace($match[0], ''.$match[0].'', $line); }else{ $data[$k] .= '
'.$line; } } $this->data['log'] = $data; $this->view->batchAssign( $this->data ); $this->processTemplate('pages/tool/error_log.tpl' ); //update controller data $this->extensions->hk_UpdateData($this,__FUNCTION__); } public function clearLog() { //init controller data $this->extensions->hk_InitData($this,__FUNCTION__); $file = DIR_LOGS . $this->config->get('config_error_filename'); $handle = fopen($file, 'w+'); fclose($handle); $this->session->data['success'] = $this->language->get('text_success'); $this->redirect($this->html->getSecureURL('tool/error_log')); //update controller data $this->extensions->hk_UpdateData($this,__FUNCTION__); } }