-
从wamp到xampp的升级之路
准备学习php框架Laravel,但PHP版本要求5.4+,目前用的wamp默认版本5.3,所以准备使用xampp,以下为记录
卸载wamp,略过
> ps:注意卸载wamp会删除PHP目前下的文件,因为PHP的扩展redis,memcache也会删除,记得备份,也可重下版本,还有MySQL数据库也记得备份
https://www.apachefriends.org/zh_cn/index.html点此下载软件
启动Apache,MySQL,打开localhost成功安装
配置,因为xampp默认根目录有新的www,因此需要为原来的wamp的www目录配置虚拟域名
编辑httpd.conf ,修改
- <Directory />
- #AllowOverride none
- #Require all denied
- Options All
- AllowOverride All
- Order deny,allow
- Allow from all
- </Directory>
编辑httpd-vhosts.conf
- NameVirtualHost *:80
- <VirtualHost *:80>
- ServerAdmin webmaster@dummy-host.example.com
- DocumentRoot "D:/soft/xampp/htdocs"
- ServerName localhost
- </VirtualHost>
- <VirtualHost *:80>
- ServerAdmin webmaster@dummy-host.example.com
- DocumentRoot "D:/soft/wamp/www"
- ServerName vhallapp.com
- ServerAlias www.vhallapp.com
- ErrorLog "D:/soft/wamp/apacheerror.log"
- CustomLog "D:/soft/wamp/apacheaccess.log" common
- </VirtualHost>
编辑hosts:
127.0.0.1 www.app.com
5. 下载redis:
http://pecl.php.net/package/redis/2.2.7/windows下载5.6版本dll文件
6. 编辑php.ini:
extension=php_redis.dll
7. 打开xdebug
- [XDebug]
- zend_extension = "D:\soft\xampp\php\ext\php_xdebug.dll"
- xdebug.profiler_append = 0
- xdebug.profiler_enable = 1
- xdebug.profiler_enable_trigger = 0
- xdebug.profiler_output_dir = "D:\soft\xampp\tmp"
- xdebug.profiler_output_name = "cachegrind.out.%t-%s"
- xdebug.remote_enable = 0
- xdebug.remote_handler = "dbgp"
- xdebug.remote_host = "127.0.0.1"
- xdebug.trace_output_dir = "D:\soft\xampp\tmp"
8.打开www.app.com
over
以上所述就是本文的全部内容了,希望能够对大家熟悉配置XAMPP有所帮助。
出处:http://www.phpfensi.com/php/20210522/15683.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式