這是happning因爲有您的郵件配置的問題。我有2點建議:
1.打開app/code/core/Mage/Adminhtml/Block/Sales/Order/View.php
行號92下面的代碼替換代碼:
if ($this->_isAllowedAction('emails') && !$order->isCanceled()) {
$confirmationMessage = $coreHelper->jsQuoteEscape(
Mage::helper('sales')->__('Are you sure you want to send order email to customer?')
);
$this->addButton('send_notification', array(
'label' => Mage::helper('sales')->__('Send Email'),
'onclick' => "confirmSetLocation('{$confirmationMessage}', '{$this->getEmailUrl()}')",
));
}
然後清除緩存,刷新頁面,看看你的錯誤消失。
2.打開app/code/core/Mage/Adminhtml/Block/Sales/Order/View.php
在行號92,取消註釋此代碼,然後清除您的緩存, 刷新頁面並檢查您的錯誤是否消失。
第96行是什麼? –
那麼,[它不是核心代碼!](https://github.com/OpenMage/magento-mirror/blob/magento-1.7/app/code/core/Mage/Adminhtml/Block/Sales/Order/View.php #L96) - 壞! **不要修改核心代碼!!!!! ** –