2016年8月15日

让magento的validate验证hidden field

摘要: Object.extend(Validation, { isVisible : function(elm) { return true; }, insertAdvice : function(elm, advice){ // advice contains the div that would no 阅读全文

posted @ 2016-08-15 12:32 冯亮 阅读(415) 评论(0) 推荐(0) 编辑

2016年4月27日

linux 修改文件、文件夹权限

摘要: # change owner of all the fies under dirName chown -R username dirName #change owner and the file group of all the files under dirName chown -R userna 阅读全文

posted @ 2016-04-27 10:24 冯亮 阅读(150) 评论(0) 推荐(0) 编辑

2016年4月19日

magento后台登陆后,没任何提示,又跳转到登陆页面

摘要: 这个问题通常是cookie配置的问题。需要去将core_config_data中web/cookie/cookie_path、web/cookie/cookie_domain设为null 阅读全文

posted @ 2016-04-19 17:54 冯亮 阅读(269) 评论(0) 推荐(0) 编辑

magento后台登陆404、Front controller reached 100 router match iterations的解决方案

摘要: (1)执行如下sql 阅读全文

posted @ 2016-04-19 17:51 冯亮 阅读(538) 评论(0) 推荐(0) 编辑

2016年4月18日

magento产品导入时需要注意的事项

摘要: (1) 必须保证csv文件是utf-8编码的。非utf-8的编码会导致产品导入失败 (2)产品图片 (a) 产品图片必须包含image,image_label,_media_image,_media_lable,_media_position,_media_is_disabled,thumbnail 阅读全文

posted @ 2016-04-18 17:10 冯亮 阅读(186) 评论(0) 推荐(0) 编辑

2016年4月1日

magento url rewrite

摘要: Magento 设置 Rewrite Url 方法。 1、apache 要加载 Rewrite 扩展模块。2、网站根目录要有 .htaccess 文件。3、Magento 后台要设置启用 Rewrite Url 有效。 4、(注意:重要)经常有人忘记了这个步骤。 请参照下面的设置: vi /etc/ 阅读全文

posted @ 2016-04-01 12:26 冯亮 阅读(464) 评论(0) 推荐(0) 编辑

2016年3月17日

验证台湾同胞身份证信息

摘要: function checkTwID($id){ //建立字母分數陣列 $city = array('A'=>1,'I'=>39,'O'=>48,'B'=>10,'C'=>19,'D'=>28, 'E'=>37,'F'=>46,'G'=>55,'H'=>64,'J'=>73,'K'=>82, 'L' 阅读全文

posted @ 2016-03-17 14:44 冯亮 阅读(500) 评论(0) 推荐(0) 编辑

2015年12月3日

IE8对css文件的限制

摘要: 很多人在写css时,时常把很多css样式放到一个文件中。也有些框架在上线后,能对很多css文件进行合并。这样能减少对服务器的请求次数,从而加快服务器的响应速度。在IE8中,当css的规则个数大于4096时,它会忽略后面的所有样式。因此,在开发中需要注意.IE10一下的浏览器对css有如下限制:(1)... 阅读全文

posted @ 2015-12-03 10:13 冯亮 阅读(373) 评论(0) 推荐(0) 编辑

2015年10月25日

PHP出现Notice: unserialize() [function.unserialize]: Error at offset问题的解决方案

摘要: 有两个原因(据我所知)会导致这个问题:(1) 字符串本身的问题(2)字符编码的问题。 你unserialize的字符串的编码和文件本身的编码不一致。将文件编码改成和字符串一样的编码。这种问题比较隐蔽,如果你确认不是字符串本身的问题,请尝试用这种解决方案 阅读全文

posted @ 2015-10-25 11:34 冯亮 阅读(1020) 评论(0) 推荐(0) 编辑

2015年7月23日

mysql join update

摘要: SELECT CONCAT('UPDATE free_for_demo_orders SET product_id=',product_id,',order_created_time=','"',TIMESTAMPADD(HOUR, 8, sales_order.created_at),'" WHE 阅读全文

posted @ 2015-07-23 18:52 冯亮 阅读(284) 评论(0) 推荐(0) 编辑

导航