OpenCart でこれを行う良い方法はありません。とはいえ、ここに汚い方法があります:
ルート ディレクトリに を作成し、maintenance.php
その中に以下を記述します (データベース接続が失敗した場合に読み込まれます)。
<?php
// Tell any crawlers visiting the site that it's currently unavailable
header('HTTP/1.1 503 Service Temporarily Unavailable');
header('Status: 503 Service Temporarily Unavailable');
header('Retry-After: 300');//300 seconds
?>
<html><body>
<h1>Sorry, the website is currently unavailable</h1>
...
...
</body></html>
__construct
メソッドを次のように編集/system/database/mysql.php
します。
public function __construct($hostname, $username, $password, $database) {
if (!$this->link = @mysql_connect($hostname, $username, $password)) {
exit(include(DIR_SYSTEM . '../maintenance.php'));
}
if (!mysql_select_db($database, $this->link)) {
exit(include(DIR_SYSTEM . '../maintenance.php'));
}
mysql_query("SET NAMES 'utf8'", $this->link);
mysql_query("SET CHARACTER SET utf8", $this->link);
mysql_query("SET CHARACTER_SET_CONNECTION=utf8", $this->link);
mysql_query("SET SQL_MODE = ''", $this->link);
}