문제

Eclipse의 Zend Framework에서 프로젝트를 디버깅하고 싶습니다. Zend Debugger는 이미 버드를 실행 중입니다. 이제 Eclipse에서 디버그 도구에 문제가 있습니다. Zend의 프로젝트는 더 좋아하지 않습니다.

나는 그것을 구글을 시도하고 발견했다 이것

나는 수정했다 .htaccess 파일이 작동하지 않습니다.

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*)?(start_debug=1.*)$ index.php?$2 [L]
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

다시 쓰기가 페이지 내 아파치가 함께 작동하지 않는 알려진 깃발이 있습니다.

일식 제작 링크는입니다

http : // localhost/? debug_start_url = http : //localhost/&debug_session_id=1007&start_debug=1&debug_host=127.0.0.1&debug_no_no_cache=293596211313131313130.1port _port=1000100133130

도움이 되었습니까?

해결책 3

실제 Zend 프레임 워크 1.9.6 및 Zend 디버거를 사용하면 특별한 변경없이 작동합니다.

다른 팁

디버거를 성공적으로 사용하고 내 htaccess가 다음과 같습니다.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
    RewriteCond %{REQUEST_FILENAME} (logs|library|application|config)
    RewriteRule ^(.*)$ index.php
</IfModule>

기본적으로 URL이 존재하는 디렉토리 나 파일로 이어지지 않으면 Index.php (로그, 라이브러리, 응용 프로그램 및 구성 폴더를 차단하여 때때로 내 일부의 문서 루트에 있기 때문에) 서버 제한으로 인해 프로젝트). 지금까지 어떤 프로젝트도 실패하지 않았습니다.

이 기사를 확인하십시오

http://easy-tutorials-php.blogspot.com/2008/10/debuging-php-using-vertrigo-server-and.html

어쩌면 그것은 당신을 도울 것입니다

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top