magento模块中的语法错误
我在magento中创建了一个新页面
http://istockphp.com/magento/adding-custom-page-to-the-customer-account-dashboard/
它在我的本地机器上工作正常,但是当我尝试加载该页面时,它在我的活动服务器中返回错误
Parse error: syntax error, unexpected 'Istockphp_Customerpage_Block_C' (T_STRING) in
/home/public_html/app/code/local/Istockphp/Customerpage/Block/Customer.php on line 1
这是我的customer.php文件内容
<?php
class Istockphp_Customerpage_Block_Customer extends Mage_Core_Block_Template
{
}
根据您所遵循的链接,Block文件customer.php
如下所示。
<?php
class Istockphp_Customerpage_Block_Customer extends Mage_Customer_Block_Account_Dashboard {
}
它扩展了Mage_Customer_Block_Account_Dashboard
。 但在上述文件中,您正在扩展Mage_Core_Block_Template
..