在PHP中针对错误的配置有如下 1 2 3 4 log_errors display_errors error_log error_reporting error_reporting设置了报告的类型,log_errors决定了是否记录错误,记录的地方由error_log指定,display_errors决定是否...
Magento中的404页面
HTTP的404状态码表示访问的链接不存在,这个状态码可能是由HTTP服务器直接返回的,也可能是由程序控制返回的。首先看看HTTP服务器返回的404。 在Magento跟目录下的.htaccess文件中有如下配...
Magento多域多店的数据库实现
Magento安装之后就有一个叫Main Website的网站,并且其默认的商店和商店视图也创建好了。 管理的位置在System/Manage Stores 可以看到,这里有三个基本操作,不过需要首先明白,一个所谓的...
Magento出现500 Internal Server Error错误的解决办法
500 Internal Server Error Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. .... 在justhost空间里装Magento出现这500 Internal Server Error的错误,是知道j...
magento数据库导入错误 - ERROR 1064 (42000) at line 382
magento导数据库又遇一个错误: ERROR 1064 (42000) at line 382: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near USING BTREE, KEY `FK_ATTRIBUTE_VAR...
Magento邮件发送的一段代码
$translate = Mage::getSingleton(core/translate); $translate-setTranslateInline(false); $storeId = Mage::app()-getStore()-getId(); $template =15; //这个$template的值是定义的邮件模板的ID,可以到后台-System-Transactional Emai...
Magento layout布局文件里添加css样式
Magento 布局文件里添加样式 reference name=top.links action method=addLink translate=label title module=customerlabelLog In/labelurl helper=customer/getLoginUrl/titleLog In/titleprepare/urlParams/position1/position aParamsclasscustom...
Magento升級到1.5后结账页面找不到”Place Order”按
在Magento兰亭模板2011最新版下载地址,有木有!也有网友反映Magento1.5使用兰亭模板出现Place Order按钮消失的问题。另外这问题在Magento版本升级中也会遇到。贴下处理过程 1) 打开该主题下...
Magento添加新到产品在CMS Page(带分页)
在Magento我们经常有的做法是建立一个可以调用新产品的block,然后通过: {{block type=catalog/product_new column_count=6 products_count=100 name=home.catalog.product.new alias=product_homepage template=catalog/product...
Magento修改产品的排序为降序
Magento默认的 产品列表排序 方式是ASC升序。要改为降序即最新产品在前面可以直接修改以下文件: /app/code/core/Mage/Catalog/Block/Product/List/toolbar.php 搜索protected $_direction,将asc改为desc即可。...