随笔分类 -  Magento

Magento2X Manual Development Experience
摘要:使用 Docker + SSH代理 来实现访问内网网站 ssh -R 阅读全文
posted @ 2020-06-22 14:18 徐锅 阅读(1184) 评论(0) 推荐(0) 编辑
摘要:magento 2.3 使用命令安装时报错 报错内容: Too many arguments, expected arguments "command". 触发原因 bin/magento setup:install \ --base-url='http://127.0.0.1:8060' \ -- 阅读全文
posted @ 2020-06-10 19:43 徐锅 阅读(2901) 评论(0) 推荐(0) 编辑
摘要:解决方案-定期更新 常用方法 阅读全文
posted @ 2020-03-19 21:53 徐锅 阅读(417) 评论(0) 推荐(0) 编辑
摘要:Magento平台的关键功能是其模块化。它由许多小的元素(模块)组成,这些元素被设计成既可以单独工作又可以相互连接。当所有部分组合在一起时,平台就像是由许多细胞组成的活生物体,每个细胞都有自己的功能。 为了连接这些组件并管理它们之间的交互,Magento 2使用XML布局和XML页面配置。商店的每个 阅读全文
posted @ 2020-03-19 15:34 徐锅 阅读(966) 评论(0) 推荐(0) 编辑
摘要:入口 :index.php 引导 Bootstrap::run() 定义于 ./vendor/magento/framework/App/Bootstrap.php 用于 index.php 应用 App:launch() 定义于 ./vendor/magento/framework/App/Http.php 用于 ./vendor/magento/framework/App/Bootstrap.php 路由 FrontController::dispatch() 定义于 ./vendor/magento/framework/App/FrontController.php 用于 ./vendor/magento/framework/App/Http.php Router::match() 定义于 ./vendor/magento/framework/App/Router/DefaultRouter.php 用于 ./vendor/magento/framework/App/FrontController.php 控制器处理 Controller::execu 阅读全文
posted @ 2019-08-11 17:25 徐锅 阅读(604) 评论(0) 推荐(0) 编辑
摘要:根据product_id 获取 category_ids : /** * @param $product_id * @return array */ public function mc_getCategoryIds($product_id) { // +++ get product the cat 阅读全文
posted @ 2019-07-24 12:42 徐锅 阅读(521) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2019-07-23 20:15 徐锅 阅读(3) 评论(0) 推荐(0) 编辑
摘要:Magento2 updated quote_item table 更新quote_item 表自定义字段 阅读全文
posted @ 2019-05-11 06:00 徐锅 阅读(359) 评论(0) 推荐(0) 编辑
摘要:Magento2 观察者模式 之 插件 阅读全文
posted @ 2019-05-05 21:00 徐锅 阅读(485) 评论(0) 推荐(0) 编辑
摘要:Magento2 自定义生成日志函数 阅读全文
posted @ 2019-05-05 20:36 徐锅 阅读(437) 评论(0) 推荐(0) 编辑
摘要:magento 由于Httpd进程增多,导致CPU占用100%问题 前些天一直导致CPU无法控制的增多问题。 阅读全文
posted @ 2019-04-29 16:19 徐锅 阅读(772) 评论(0) 推荐(0) 编辑
摘要:Magento composer 安装 阅读全文
posted @ 2019-04-25 22:18 徐锅 阅读(855) 评论(0) 推荐(0) 编辑
摘要:htaccess 的使用基本小节 For apache httpd Apache 手册 阅读全文
posted @ 2019-04-24 18:55 徐锅 阅读(223) 评论(0) 推荐(0) 编辑
摘要:设计便捷命令行工具列表 上传文件命令:   文件+空格+[需要上传的文件的绝对路径] [arg...] 阅读全文
posted @ 2019-04-24 01:45 徐锅 阅读(308) 评论(0) 推荐(0) 编辑
摘要:docker-lnmp dockerfile 阅读全文
posted @ 2019-04-02 11:58 徐锅 阅读(374) 评论(0) 推荐(0) 编辑
摘要:Portainer安装非常简单,只需不到一分钟。Portainer完全支持Docker 1.10及更高版本。 阅读全文
posted @ 2019-04-01 17:05 徐锅 阅读(10116) 评论(3) 推荐(0) 编辑
摘要:github : https://github.com/major/MySQLTuner-perl MySQLTuner是一个用Perl编写的脚本,它可以帮助您进行MySQL配置,并提出增强性能和稳定性的建议。 installl: 1,cd /usr/local/bin && curl -O https://raw.githubusercontent.com/major/MySQLTuner-perl/master/mysqltuner.pl 2,chmod +x ./mysqltuner.pl && ./mysqltuner.pl --version && alias mysqltuner='perl ./mysqltuner.pl' ; 阅读全文
posted @ 2019-03-29 20:21 徐锅 阅读(978) 评论(0) 推荐(0) 编辑
摘要:Modal widget in Magento 2 Magento 2 自带模态的应用 使用magento 2 的自带模态组件,以下代码只供参考使用。 阅读全文
posted @ 2019-03-25 16:45 徐锅 阅读(422) 评论(0) 推荐(0) 编辑
摘要:magento 2 method config 阅读全文
posted @ 2018-11-12 17:36 徐锅 阅读(167) 评论(0) 推荐(0) 编辑
摘要:docker 镜像备份magento 2.2.3 阅读全文
posted @ 2018-10-29 00:40 徐锅 阅读(887) 评论(0) 推荐(0) 编辑