我找到了解決辦法感謝你們太:
你必須編輯這個文件:應用程序/代碼/核心/法師/目錄/型號/產品/選項/類型/ Text.php
更換(大約49行):
if (strlen($value) == 0 && $option->getIsRequire() && !$this->getProduct()->getSkipCheckRequiredOption()) {
$this->setIsValid(false);
Mage::throwException(Mage::helper('catalog')->__('Please specify the product\'s required option(s).'));
}
if (strlen($value) > $option->getMaxCharacters() && $option->getMaxCharacters() > 0) {
$this->setIsValid(false);
Mage::throwException(Mage::helper('catalog')->__('The text is too long'));
由:
if (mb_strlen($value,'UTF-8') == 0 && $option->getIsRequire() && !$this->getProduct()->getSkipCheckRequiredOption()) {
$this->setIsValid(false);
Mage::throwException(Mage::helper('catalog')->__('Please specify the product\'s required option(s).'));
}
if (mb_strlen($value,'UTF-8') > $option->getMaxCharacters() && $option->getMaxCharacters() > 0) {
$this->setIsValid(false);
Mage::throwException(Mage::helper('catalog')->__('The text is too long'));