PHP 프레임워크 Laravel을 배우려고 하는데 PHP 버전은 5.4가 필요합니다. 현재 사용하는 wamp의 기본 버전은 5.3이므로 xampp을 사용하겠습니다
wamp 제거, 건너뛰기
> ps: PHP의 확장 Redis 및 Memcache도 삭제되므로 wamp를 제거하면 현재 PHP에 있는 파일이 삭제됩니다. 또한 버전을 백업하거나 다시 다운로드하는 것을 잊지 마세요. 🎜>
https://www.apachefriends.org/zh_cn/index.html소프트웨어를 다운로드하려면 여기를 클릭하세요
httpd.conf 편집 및 수정
<Directory /> #AllowOverride none #Require all denied Options All AllowOverride All Order deny,allow Allow from all </Directory>
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>
[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"