摘要: Composer创建Laravel项目 因为在国内访问国外比较卡,所以第一步先设置一个国内的镜像: composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/安装项目:composer create- 阅读全文
posted @ 2021-11-05 14:51 学习园地-温故而知新 阅读(218) 评论(0) 推荐(0) 编辑
摘要: <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f 阅读全文
posted @ 2021-11-03 15:19 学习园地-温故而知新 阅读(21) 评论(0) 推荐(0) 编辑
摘要: git本地代码回滚 git本地操作有时会有误删误改并提交的时候,此时可以通过回滚获得之前的特定版本 1. 查看log 输入 git log 查看commit记录 [xxxxxxx]$ git log 结果大致如下(根据实际的commit操作不同,显示结果也会有所不同) commit 7d72d974 阅读全文
posted @ 2021-11-03 13:50 学习园地-温故而知新 阅读(438) 评论(0) 推荐(0) 编辑
摘要: 一、后台添加代码 <div class="index_case_wrap"><span class="index_case_tit1">热卖款型</span><div class="cdz-product-wrap base-slider product-list-style-24 bottom-h 阅读全文
posted @ 2021-11-02 10:37 学习园地-温故而知新 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 首页 手记 Magento二次开发:一个简单的Magento模块示例 Magento二次开发:一个简单的Magento模块示例 2016.01.27 16:17 18039浏览 电商二次开发,Magento的市场份额一定是不容忽视的,但是magento的学习难度想对较大,很多都在学习的路上迷失了。作 阅读全文
posted @ 2021-10-27 16:05 学习园地-温故而知新 阅读(126) 评论(0) 推荐(0) 编辑
摘要: Magento 开发环境的搭建遇到的坑 Sunshine_洋洋关注 2020.07.14 11:06:02字数 536阅读 643 原文地址:https://www.yuque.com/docs/share/7e4a7069-7054-47e0-9bac-41eba17b7ffd?# Magento 阅读全文
posted @ 2021-10-27 14:19 学习园地-温故而知新 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Success Please keep this information for your records: Magento Admin Info: Username:admnEmail:wxl200788@163.comPassword:******Your Store Address:http: 阅读全文
posted @ 2021-10-27 13:40 学习园地-温故而知新 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 解决composer install遇到:Your requirements could not be resolved to an installable set of packages 解决办法:直接忽略版本 composer install --ignore-platform-reqs 或者  阅读全文
posted @ 2021-10-26 11:08 学习园地-温故而知新 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 在做开发的时候,你和你的小伙伴在同一个仓库下不同分支进行开发,最后需要把代码合并到一个分支中。比如他用的是master分支,然而你用的你自己建的一个分支new。你需要把他的代码合并到new分支。 合并分支前确保你们都已经提交了自己最新的修改~ 提交git add .git commit -m “修改 阅读全文
posted @ 2021-10-18 22:05 学习园地-温故而知新 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1.创建仓库 登录码云 https://gitee.com/创建一个仓库 2.使用git在本地初始化 (1)新建一个目录,存放下载下来的项目,我在D盘新建了一个“gitspace”文件夹,用来存放下载下来的项目 (2)进入刚刚新建的文件夹,即进入“gitspace”,点击鼠标右键,选择"Git Ba 阅读全文
posted @ 2021-10-18 20:49 学习园地-温故而知新 阅读(30) 评论(0) 推荐(0) 编辑