Laravel을 다운로드하고 wampserver와 함께 사용할 수 없는 활성화된 xdebug를 어떻게 비활성화해야 합니까?

Laravel을 다운로드하고 wampserver와 함께 사용할 수 없는 활성화된 xdebug를 어떻게 비활성화해야 합니까?

Laravel을 다운로드하고 설치하는 동안 명령 프롬프트가 표시됩니다.

여기에 이미지 설명을 입력하세요

답변1

나는 XDEBUG가 이 저장소 다운로드를 중단한다고 생각하지 않습니다. 해당 메시지는 단지 정보 제공용 경고일 뿐입니다.

실제 문제는 다운로드하려는 저장소에 있습니다.

그러나 PHP CLI를 사용할 때 XDEBUG를 비활성화하려면 다음을 수행할 수 있습니다.

`\wamp\bin\php\php{version}\php.ini에 있는 PHP CLI에서 사용하는 php.ini 파일을 편집합니다.

해당 파일의 맨 아래 근처에 다음과 같은 줄이 있습니다. _version 번호는 실행 중인 WAMPServer/PHP 버전에 따라 다를 수 있습니다.

[xdebug]
zend_extension ="D:/wamp/bin/php/php5.4.45/zend_ext/php_xdebug-2.3.3-5.4-vc9.dll"

당신이 해야 할 일은 ;다음과 같이 해당 줄에 주석 문자( )를 추가하는 것뿐입니다.

[xdebug]
;zend_extension ="D:/wamp/bin/php/php5.4.45/zend_ext/php_xdebug-2.3.3-5.4-vc9.dll"

파일을 저장하면 다음 실행 시에 선택됩니다.composer.exe

추가 정보:

방금 PHP5.6.15가 포함된 WAMPServer 설치 V3.0.0을 사용하여 구성된 예제를 실행했는데 XDEBUG이 결과를 얻었습니다. 이는 문제가 XDEBUG가 아니라 귀하 PHP또는 `작성기' 구성의 다른 문제임을 암시합니다.

D:\php_source>composer global require "laravel/installer=~1.1"

D:\php_source>echo off
You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug
Changed current directory to D:\wamp\composer
You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
  - Installing symfony/process (v2.8.0)
    Downloading: 100%

  - Installing symfony/polyfill-mbstring (v1.0.0)
    Downloading: 100%

  - Installing symfony/console (v2.8.0)
    Downloading: 100%

  - Installing guzzlehttp/promises (1.0.3)
    Downloading: 100%

  - Installing psr/http-message (1.0)
    Downloading: 100%

  - Installing guzzlehttp/psr7 (1.2.1)
    Downloading: 100%

  - Installing guzzlehttp/guzzle (6.1.1)
    Downloading: 100%

  - Installing laravel/installer (v1.2.2)
    Downloading: 100%

symfony/console suggests installing symfony/event-dispatcher ()
symfony/console suggests installing psr/log (For using the console logger)
Writing lock file
Generating autoload files

관련 정보