先查看Magento这种设置指定目录产品到首页的方法的效果图: 1.在Page的home里添加:{{block type=catalog/product_list category_id=28 products_count=9 template=catalog/product/home.phtml}} 注:category_id是指定的目...
Magento系统多域名设置要点
Magento支持多域多店设置,使用一个后台管理多个域方便了管理,它的原理不复杂,根据过来的HOST决定使用哪个域。 不过需要首先理解Website、Store、Store View的概念,如果能从数据库设计...
使用Mamgi导入magento可筛选的select属性字段注意
注:本文针对的情况为Magento属性集(Attribute sets)和属性为程序批量添加的情况。如果是后台手动添加则没有这种问题。 例如csv文件的导入格式为: sku,store,....,myselect sku1,admin,....,valu...
Magento: The Flat Catalog module has a limit of 64 filterabl
批量导入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 numbe...
Magento导入Tier Price
Magento默认无法导入Tier Price,需要在app/code/local/YOURMODULE/Catalog/Model/Convert/Adapter/Product.php 继续加入扩展方法。 已有的脚本里已实现过导入多图/多属性,自动创建目录,自动采集远程图片...
Magento权限设置与缓存清理的PHP脚本
?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( $...
Magento搜索产品结果不精准的问题
Magento的搜索产品默认结果集是按查询的词去分词了再OR查询(具体按Catalog Search设置的查询模式)。 比如搜索magento 产品这词的话,结果是可能包括magento或者包括产品的结果集。 如果想...
Magento后台显示WYSIWYG可视化编辑器
...
Magento管理员密码加密机制
Magento的管理员密码的加密方式: $password = admin; echo getHash($password,2); function getRandomString($len, $chars=null) { if (is_null($chars)) { $chars = abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789; } mt_sran...
解决Magento报错:Fatal error: Call to undefined method M
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版本M...