-
Magento解决https反向代理后admin路径跳转到http问题
修改core_config_data表 path: web/unsecure/base_url value: https://m2.yezhou.me/ # php bin/magento cache:clean
Joe.Ye 2023-03-250 0 -
Magento接入Varnish
Varnish是一款高性能的开源HTTP加速器,可以有效降低web服务器的负载,提升访问速度。根据官方的说法,Varnish是一个cache型的HTTP反向代理。 基于M2.3.5和V……
Joe.Ye 2023-03-250 0 -
Magento接入CronjobManager
如果需要修改定时任务的执行时间,需要修改crontab.xml,并清缓存。 这里推荐一个插件:https://github.com/Ethan3600/magento2-CronjobManager 部署完成后,……
Joe.Ye 2023-03-250 0 -
Magento SMTP扩展配置
SMTP是一种提供可靠且有效的电子邮件传输的协议。 一般使用mageplaza的SMTP扩展发送邮件。 安装mageplaza composer require mageplaza/module-smtp php bin/m……
Joe.Ye 2023-03-250 0 -
Magento接入MongoDB
MongoDB是非关系型数据库(nosql),属于文档型数据库。 可以替代MySQL,但不建议。原因当然不止不支持事务一个,但是单单这一个,就使得MongoDB无法完全取代MyS……
Joe.Ye 2023-03-250 0 -
Magento搜索接入ElasticSearch
基于M2.3.5-p1和ElasticSearch 7.8 ElasticSearch 安装 vim /etc/yum.repos.d/elasticsearch.repo [elasticsearch] name=Elasticsearch repository for 7.x……
Joe.Ye 2023-03-250 0 -
Magento使用Redis
M2默认将数据缓存、全页缓存、session保存在以下三个目录 var/cache var/page_cache var/session 也支持通过修改配置,将以上数据存放到Redis 安装redis yum ……
Joe.Ye 2023-03-250 0 -
Magento 2日志打印
protected $logger; public function __construct(\Psr\Log\LoggerInterface $logger) { $this->logger = $logger; } You use debug, exception, syst……
Joe.Ye 2023-03-250 0 -
使用Composer安装Magento 2.4
首先到https://marketplace.magento.com/获取username和passowd Public key即username,Private key即password 安装composer curl \-sS https://getcomposer……
Joe.Ye 2023-03-250 0 -
Magento 2.4 安装及开发记录
Github:https://github.com/magento/magento2 Download:https://magento.com/tech-resources/download Magento 2.4开始只能通过命令行安装。参考以下命令:……
Joe.Ye 2023-03-250 0 -
Magento 2.3 安装及开发记录
Github:https://github.com/magento/magento2 Download:https://magento.com/tech-resources/download The Web Setup Wizard is being deprecated in Magen……
Joe.Ye 2023-03-250 0 -
Magento模式设置
Magento有三种运行模式,按性能由低到高,依次为:developer < default < production 可以使用以下命令查看当前运行模式: bin/magento deploy:mode:sho……
Joe.Ye 2023-02-190 0 -
Magento版本查看
以下几种方法,都可以用来确定已经安装的Magento版本: 命令行 bin/magento --version http请求 http://<magento2-store>/magento_version 如:http://……
Joe.Ye 2023-02-190 0
您好,这是一条评论。若需要审核、编辑或删除评论,请访问仪表盘的评论界面。评论者头像来自 Gravatar。
评论于 CentOS 7下安装MySQL