搜索内容

PHP
  • 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-25
    0 0
  • Magento使用Redis

    M2默认将数据缓存、全页缓存、session保存在以下三个目录 var/cache var/page_cache var/session 也支持通过修改配置,将以上数据存放到Redis 安装redis yum ……

    Joe.Ye 2023-03-25
    0 0
  • Magento 2日志打印

    protected $logger; public function __construct(\Psr\Log\LoggerInterface $logger) { $this->logger = $logger; } You use debug, exception, syst……

    Joe.Ye 2023-03-25
    0 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-25
    0 0
  • Magento 2.4 安装及开发记录

    Github:https://github.com/magento/magento2 Download:https://magento.com/tech-resources/download Magento 2.4开始只能通过命令行安装。参考以下命令:……

    Joe.Ye 2023-03-25
    0 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-25
    0 0
  • PHP错误:The server requested authentication method unknown to the client

    使用PHP连接MySQL 8的时候,可能会发生如标题所示的错误: SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client 发生……

    Joe.Ye 2023-03-24
    0 0
  • laravel-admin模型表格Grid行展开ExpandRow设计

    自定义ExpandRow app/Exceptions/Column/ExpandRow.php <?php namespace App\Exceptions\Column; use Encore\Admin\Admin; use Encore\Admin\Grid\Displa……

    Joe.Ye 2023-03-18
    0 0
  • Laravel报错Unknown column ‘updated_at’ in ‘field list’

    问题描述 Column not found: 1054 Unknown column 'updated_at' in 'field list' 导致原因 Laravel的Eloquent ORM问题,当继承Eloquent……

    Joe.Ye 2023-02-26
    0 0
  • laravel-admin文件上传及处理

    file表单通过move指定上传目录 saving保存回调设置文件名及文件校验参数 saved保存回调实现后期处理,如文件重命名等 $form->hidden('file_name�……

    Joe.Ye 2023-02-26
    0 0
  • PHP stream_context_create模拟GET/POST请求

    stream_context_create作用: 创建并返回一个文本数据流并应用各种选项,可用于fopen(),file_get_contents()等过程的超时设置、代理服务器、请求方式、头信息……

    Joe.Ye 2023-02-26
    0 0
  • Laravel开发技巧

    接收POST提交的JSON $data = $request->json()->all(); $application_id = isset($data['application_id']) ? $data['application_id&#……

    Joe.Ye 2023-02-26
    0 0
  • Laravel 5.6 新特性

    改进日志 Laravel 5.6 版本中最重要的特性就是日志功能的改进。对于 Laravel 新手请注意,Laravel 5.6 的日志配置文件从 config/app.php 变更到了 config/logg……

    Joe.Ye 2023-02-26
    0 0
  • OpenCart数据字段改造总结

    添加数据库表字段 oc_address 添加字段 district street_name house_number oc_order 添加字段 doc_type doc_no payment_district payment_street_name pa……

    Joe.Ye 2023-02-26
    0 0
  • OpenCart开发总结

    获取购物车商品 $products = $this->cart->getProducts(); 获取Customer登录状态 $data['logged'] = $this->customer->isLogged(); 获……

    Joe.Ye 2023-02-26
    0 0