从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 ,修改

  1. <Directory />
  2. #AllowOverride none
  3. #Require all denied
  4. Options All
  5. AllowOverride All
  6. Order deny,allow
  7. Allow from all
  8. </Directory>

编辑httpd-vhosts.conf

  1. NameVirtualHost *:80
  2. <VirtualHost *:80>
  3. ServerAdmin webmaster@dummy-host.example.com
  4. DocumentRoot "D:/soft/xampp/htdocs"
  5. ServerName localhost
  6. </VirtualHost>
  7. <VirtualHost *:80>
  8. ServerAdmin webmaster@dummy-host.example.com
  9. DocumentRoot "D:/soft/wamp/www"
  10. ServerName vhallapp.com
  11. ServerAlias www.vhallapp.com
  12. ErrorLog "D:/soft/wamp/apacheerror.log"
  13. CustomLog "D:/soft/wamp/apacheaccess.log" common
  14. </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

  1. [XDebug]
  2. zend_extension = "D:\soft\xampp\php\ext\php_xdebug.dll"
  3. xdebug.profiler_append = 0
  4. xdebug.profiler_enable = 1
  5. xdebug.profiler_enable_trigger = 0
  6. xdebug.profiler_output_dir = "D:\soft\xampp\tmp"
  7. xdebug.profiler_output_name = "cachegrind.out.%t-%s"
  8. xdebug.remote_enable = 0
  9. xdebug.remote_handler = "dbgp"
  10. xdebug.remote_host = "127.0.0.1"
  11. xdebug.trace_output_dir = "D:\soft\xampp\tmp"

8.打开www.app.com

over

以上所述就是本文的全部内容了,希望能够对大家熟悉配置XAMPP有所帮助。