上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页

2017年7月7日

身份证号

摘要: Validation.add('validate-identify', '无效的身份证号', function(v) { var regIdCard=/^(^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$)|(^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1... 阅读全文

posted @ 2017-07-07 12:01 冯亮 阅读(327) 评论(0) 推荐(0) 编辑

2017年6月2日

magento 2 cronjob setup

摘要: */5 * * * * php /var/www/html/bin/magento cron:run >> /var/www/html/var/log/cron.run.log*/5 * * * * php /var/www/html/update/cron.php cron:run >> /var 阅读全文

posted @ 2017-06-02 17:41 冯亮 阅读(404) 评论(0) 推荐(0) 编辑

2017年5月27日

magento2 pub/static没有adminhtml,frontend的解决方案

摘要: (1) 运行php bin/magento setup:static-content:deploy (2) 检查pub/static有没有.htaccess文件 (3) php bin/magento cache:clean (4) chown -R www-data:www-data ./* 阅读全文

posted @ 2017-05-27 10:49 冯亮 阅读(1078) 评论(0) 推荐(0) 编辑

2017年5月26日

ubuntu 安装php-mcrypt

摘要: apt-get install php-mcrypt 阅读全文

posted @ 2017-05-26 18:49 冯亮 阅读(382) 评论(0) 推荐(0) 编辑

2017年5月25日

Magento1.9 add attribute to catalog product & assign to all attribute set general group

摘要: $installer = $this; $attributes = array( 'region' => array( 'type' => 'int', 'input' => 'select', 'source_model' => 'evebit_catalog/entity_attribute_source... 阅读全文

posted @ 2017-05-25 17:13 冯亮 阅读(174) 评论(0) 推荐(0) 编辑

Invalid credentials for 'https://repo.magento.com/packages.json'

摘要: Use your public key as username and private key as password from your magento connect account You can find public and private key at: https://www.mage 阅读全文

posted @ 2017-05-25 10:16 冯亮 阅读(943) 评论(0) 推荐(0) 编辑

2017年5月18日

重置mysql密码

摘要: 编辑mysql的配置文件/etc/mysql/my.cnf,在[mysqld]段下加入一行“skip-grant-tables”。用空密码进入mysql管理命令行,切换到mysql库。mysql> use mysql Database changed 执行update user set passwo 阅读全文

posted @ 2017-05-18 17:36 冯亮 阅读(103) 评论(0) 推荐(0) 编辑

2017年4月19日

XML Schema

摘要: XSD文档至少要包含:schema根元素和XML模式命名空间的定义、元素定义。需要注意的是XSD中必须定义一个且只能定义一个schema根元素,根元素中包括模式的约束,XML模式命名空间的定义,其他命名空间的定义、版本信息、语言信息和其他一些信息。 1、schema根元素 语法如下: 2、元素 语法 阅读全文

posted @ 2017-04-19 16:36 冯亮 阅读(331) 评论(0) 推荐(0) 编辑

2017年4月11日

Magento 2 instantiate object by Factory Objects

摘要: magento2的Factory Objects是用来实例化non-injectable classes,目前还不知道什么叫non-injectable classes。 可以用它来实例化Helper、Interface、Model、Resource、Collection。 在代码无误的情况下,如果 阅读全文

posted @ 2017-04-11 23:58 冯亮 阅读(273) 评论(0) 推荐(0) 编辑

Magento 2 Factory Objects

摘要: In object oriented programming, a factory method is a method that’s used to instantiate an object. Factory methods exist to ensure system developers h 阅读全文

posted @ 2017-04-11 11:57 冯亮 阅读(558) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页

导航