0.2.12.php

来自「一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:」· PHP 代码 · 共 25 行

PHP
25
字号
<?php$mandatoryUpdates = array(	"ALTER TABLE ". Piwik::prefixTable('site') . " CHANGE ts_created ts_created TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL",	"ALTER TABLE ". Piwik::prefixTable('log_visit') . " DROP config_color_depth",);$error = false;$message = '';foreach($mandatoryUpdates as $update){	try {		Piwik_Query( $update );	} catch (Exception $e) {		$error = true;		$message .= "Error trying to execute the query '". $update ."'.\nThe error was: " . $e->getMessage() ;	}}if($error){	$message .= "\n	Please make sure you execute the queries on your mysql database. When you have executed these queries, you can manually edit the ". Piwik::prefixTable('option')." table in your Piwik database, "." and set the piwik_version value to 0.2.12. ";	throw new UpdateErrorException($message);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?