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的错误,是知道justhost支持[详细>>]
分类:Magento教程时间:2015-07-27
Magento默认采用的prototype库,遇到关于prototype的document.observe(dom:loaded, function() {});的用法在IE不起作用的问题(在火狐下工作OK)。 document.observe(dom:loaded, function() { alert(dom:loaded); }); 最后暂时解决[详细>>]
分类:Magento教程时间:2015-07-27
Magento默认是没有中国的省市级联的,这让拿Magento来做内贸的同学很受伤。。 当然凡事大都有个解法,在Magento里添加省市也很简单,往数据库里执行下面sql语句即可。自己动手丰衣足食~ INSE[详细>>]
分类:Magento教程时间:2015-07-27
Magento产品数量不多的话这点体现不严重。但是如果产品数据在10W以上(个人经验判断),建立索引常常要一小时多或者更多。 特此研究了下,知道Magento在Index Management这边建立索引机制的处理[详细>>]
分类:Magento教程时间:2015-07-27
Magento在产品导入的时候出现错误: Fatal error : Call to undefined method Mage_Adminhtml_Block_Abstract::getexceptions() in \app\code\core\Mage\Adminhtml\Block\System\Convert\Profile\Run.php on line 167 当前用的Magento版本Magento1.5[详细>>]
分类:Magento教程时间:2015-07-27
Magento的管理员密码的加密方式: $password = admin; echo getHash($password,2); function getRandomString($len, $chars=null) { if (is_null($chars)) { $chars = abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789; } mt_srand(1000000[详细>>]
分类:Magento教程时间:2015-07-27
[详细>>]
分类:Magento教程时间:2015-07-27
Magento的搜索产品默认结果集是按查询的词去分词了再OR查询(具体按Catalog Search设置的查询模式)。 比如搜索magento 产品这词的话,结果是可能包括magento或者包括产品的结果集。 如果想要查询[详细>>]
分类:Magento教程时间:2015-07-27
?php ## 设置文件644,目录755 function AllDirChmod( $dir = ./, $dirModes = 0755, $fileModes = 0644 ){ $d = new RecursiveDirectoryIterator( $dir ); foreach( new RecursiveIteratorIterator( $d, 1 ) as $path ){ if( $path-isDir() ) chmod( $path, $dir[详细>>]
分类:Magento教程时间:2015-07-27
Magento默认无法导入Tier Price,需要在app/code/local/YOURMODULE/Catalog/Model/Convert/Adapter/Product.php 继续加入扩展方法。 已有的脚本里已实现过导入多图/多属性,自动创建目录,自动采集远程图片,现在[详细>>]
分类:Magento教程时间:2015-07-27
批量导入Magento attributeSets和Attributes之后,在重建索引的时候出现了这个错误: The Flat Catalog module has a limit of 64 filterable and/or sortable attributes. Currently there are 772 of them. Please reduce the number of filt[详细>>]
分类:Magento教程时间:2015-07-27
注:本文针对的情况为Magento属性集(Attribute sets)和属性为程序批量添加的情况。如果是后台手动添加则没有这种问题。 例如csv文件的导入格式为: sku,store,....,myselect sku1,admin,....,value1 sku2,a[详细>>]
分类:Magento教程时间:2015-07-27