32rwe111 发表于 2015-4-9 08:53:50

wamp升级到xampp的步骤

                      wamp升级到xampp 首先卸载wamp
过程中,跟任何软件都差不多.你该备份的数据之类的肯定要备份.否则消失不见.就惨了.
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
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"
以上就是全部升级xampp的办法.我直接用的就是xampp所以.这个就是白送你的文章.

大部分下载链接都好用.实测可以下.后面的代码是从codego.net上找的.
                   

页: [1]
查看完整版本: wamp升级到xampp的步骤