随笔分类 - Magento
Magento2X Manual Development Experience
摘要:使用 Docker + SSH代理 来实现访问内网网站
ssh -R
阅读全文
摘要:magento 2.3 使用命令安装时报错 报错内容: Too many arguments, expected arguments "command". 触发原因 bin/magento setup:install \ --base-url='http://127.0.0.1:8060' \ --
阅读全文
摘要:Magento平台的关键功能是其模块化。它由许多小的元素(模块)组成,这些元素被设计成既可以单独工作又可以相互连接。当所有部分组合在一起时,平台就像是由许多细胞组成的活生物体,每个细胞都有自己的功能。 为了连接这些组件并管理它们之间的交互,Magento 2使用XML布局和XML页面配置。商店的每个
阅读全文
摘要:入口 :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
阅读全文
摘要:根据product_id 获取 category_ids : /** * @param $product_id * @return array */ public function mc_getCategoryIds($product_id) { // +++ get product the cat
阅读全文
摘要:Magento2 updated quote_item table
更新quote_item 表自定义字段
阅读全文
摘要:magento 由于Httpd进程增多,导致CPU占用100%问题
前些天一直导致CPU无法控制的增多问题。
阅读全文
摘要:htaccess 的使用基本小节 For apache httpd
Apache 手册
阅读全文
摘要:设计便捷命令行工具列表
上传文件命令:
文件+空格+[需要上传的文件的绝对路径] [arg...]
阅读全文
摘要:docker-lnmp dockerfile
阅读全文
摘要:Portainer安装非常简单,只需不到一分钟。Portainer完全支持Docker 1.10及更高版本。
阅读全文
摘要: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' ;
阅读全文
摘要:Modal widget in Magento 2
Magento 2 自带模态的应用
使用magento 2 的自带模态组件,以下代码只供参考使用。
阅读全文
摘要:magento 2 method config
阅读全文
摘要:docker 镜像备份magento 2.2.3
阅读全文