準(zhǔn)備學(xué)習(xí)php框架Laravel,但PHP版本要求5.4+,目前用的wamp默認(rèn)版本5.3,所以準(zhǔn)備使用xampp,以下為記錄
10余年的織金網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都營(yíng)銷網(wǎng)站建設(shè)的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整織金建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。成都創(chuàng)新互聯(lián)公司從事“織金網(wǎng)站設(shè)計(jì)”,“織金網(wǎng)站推廣”以來,每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。卸載wamp,略過
> ps:注意卸載wamp會(huì)刪除PHP目前下的文件,因?yàn)镻HP的擴(kuò)展redis,memcache也會(huì)刪除,記得備份,也可重下版本,還有MySQL數(shù)據(jù)庫(kù)也記得備份
https://www.apachefriends.org/zh_cn/index.html點(diǎn)此下載軟件
啟動(dòng)Apache,MySQL,打開localhost成功安裝
配置,因?yàn)閤ampp默認(rèn)根目錄有新的www,因此需要為原來的wamp的www目錄配置虛擬域名
編輯httpd.conf ,修改
1 2 3 4 5 6 7 8 |
#AllowOverride none #Require all denied Options All AllowOverride All Order deny,allow Allow from all
|
編輯httpd-vhosts.conf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | NameVirtualHost *:80
ServerAdmin webmaster@dummy-host.example.com DocumentRoot "D:/soft/xampp/htdocs" ServerName localhost
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
|
編輯hosts
5. 下載redis
6. 編輯php.ini
7. 打開xdebug
1 2 3 4 5 6 7 8 9 10 11 | [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
以上所述就是本文的全部?jī)?nèi)容了,希望能夠?qū)Υ蠹沂煜づ渲肵AMPP有所幫助。