更新:
翻訳されたメンテナンスページの別の方法を見つけました。
https://github.com/OpenMage/magento-lts/blob/1.9.3.x/errors/processor.php#L160-L162
if (isset($_GET['skin'])) {
$this->_setSkin($_GET['skin']);
}
メンテナンスページコンストラクターは、skin
レイアウトを変更するためにPOSTパラメーターを受け取ります。それは意図的な方法のようですが、(まだ)文書化されていません...
URLにパラメーターを.htaccess
追加する書き換えルールをいくつか 追加しskin
ます。例えば。
RewriteCond %{HTTP_HOST} ^french.example.com$
RewriteCond %{DOCUMENT_ROOT}/.maintenance.flag -f
RewriteCond %{QUERY_STRING} !(^|&)skin=french(&|$) [NC]
RewriteRule ^ %{REQUEST_URI}?skin=french[L]
コピーerrors/default
先errors/french
- テンプレートファイルをニーズに合わせて変更/翻訳する
少し遅れているかもしれませんが、ディレクトリをすべてのサブフォルダにコピーせずに、うまく機能するソリューションerror
...
「欠点」:
- 3つのコアファイルを編集する必要があります。コアでの編集を可能な限り回避するために、エラー/レポートページのインクルードパスを変更し、変更された
processor.php
を読み取るように拡張しましたlocal.xml
。
- 依然としてすべての言語のテンプレートファイルが必要です(現時点では翻訳なし- おそらく後で)
基本設定
このようなマルチウェブサイトのマルチストア設定、違いはMAGE_RUN_CODE
、の.htaccess
代わりに設定したことだけですindex.php
。最初のドメインRUN_CODE
では、次のように見える他のすべてを使用しません...
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteRule .* - [E=MAGE_RUN_CODE:website1]
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteRule .* - [E=MAGE_RUN_TYPE:website]
リンクされた回答に加えて、ロケールディレクトリに一致するように設定RewriteBase
し.htaccess
、で編集index.php
しen
、fr
変更する必要がありました
$maintenanceFile = 'maintenance.flag';
...
if (file_exists($maintenanceFile)) {
include_once dirname(__FILE__) . '/errors/503.php';
exit;
}
に
$maintenanceFile = '../maintenance.flag';
...
if (file_exists($maintenanceFile)) {
include_once '../errors/503.php';
exit;
}
編集errors/404.php
、503.php
およびreport.php
交換
require_once 'processor.php';
$processor = new Error_Processor();
と
require_once 'processor_multiwebsite.php';
$processor = new Error_Processor_Multiwebsite();
そしてこれを errors/processor_multiwebsite.php
<?php
require_once 'processor.php';
class Error_Processor_Multiwebsite extends Error_Processor
{
const DEFAULT_RUNCODE = 'default';
const DEFAULT_LOCALE = 'default';
/**
* Magento run code
*
* @var string
*/
protected $_runCode;
/**
* Magento run code
*
* @var string
*/
protected $_locale;
public function __construct()
{
$this->_runCode = self::DEFAULT_RUNCODE;
if (isset($_SERVER['MAGE_RUN_CODE'])) {
$this->_runCode = $_SERVER['MAGE_RUN_CODE'];
}
$this->_locale = self::DEFAULT_LOCALE;
$path = array_filter(explode('/', str_replace('index.php', '', $_SERVER['SCRIPT_NAME'])));
if (end($path)) {
$this->_locale = end($path);
}
parent::__construct();
}
/**
* Retrieve skin URL
*
* @return string
*/
public function getSkinUrl()
{
$baseUrl = str_replace($this->_locale . '/', '', $this->getBaseUrl());
return $baseUrl . self::ERROR_DIR. '/' . $this->_config->skin . '/';
}
/**
* Retrieve skin base URL
*
* @return string
*/
public function getSkinBaseUrl($file)
{
return $this->_config->skin_base ? "../{$this->_config->skin_base}/{$file}" : $file;
}
/**
* Prepare config data
*/
protected function _prepareConfig()
{
parent::_prepareConfig();
$local = $this->_loadXml(self::MAGE_ERRORS_LOCAL_XML);
if (!is_null($local)) {
if ((string)$local->{$this->_runCode}->{$this->_locale}->skin) {
$this->_config->skin = (string)$local->{$this->_runCode}->{$this->_locale}->skin;
}
# add skin base URL
if ((string)$local->{$this->_runCode}->{$this->_locale}->skin_base) {
$this->_config->skin_base = (string)$local->{$this->_runCode}->{$this->_locale}->skin_base;
}
}
}
}
新しいlocal.xml
構造
<skin>
最初のレベルで設定する代わりに、最初にWebサイトのruncode / localeを探します
<?xml version="1.0"?>
<config>
<!-- 1st domain w/o runcode -->
<default>
<!-- no locale sub dir -->
<default>
<skin>default-default</skin>
...
</default>
<en>
<skin>default-en</skin>
<skin_base>default-default</skin_base>
...
</en>
<fr>
<skin>default-fr</skin>
<skin_base>default-default</skin_base>
...
</fr>
</default>
<!-- runcode website1 -->
<website1>
<!-- no locale sub dir -->
<default>
<skin>website1-default</skin>
...
</default>
...
</website1>
</config>
テンプレート
503.phtml
一致するディレクトリにCSSを追加<runcode>-<locale>
default-default
(第1ドメインのデフォルト言語)
default-en
default-fr
website1-default
(第2ドメインのデフォルト言語)
- ...
CSS /画像の重複なし
- Webサイト固有のCSS / imagesファイルを1つのディレクトリに配置し、
<skin_base>
ノードを追加しますlocal.xml
- 変更ALLは、静的の中にリンク
page.phtml
すなわちからファイルhref="css/styles.css"
へ<?php echo $this->getSkinBaseUrl('css/styles.css')?>