vtiger debug 디버그 오류
vtiger 5.2.0 디버그
데이터베이스 디버깅, 필요한 페이지에 아래 코드를 추가하면 됩니다
global $adb; $adb->setDebug(true);
로그 디버그 열기
1. config를 먼저 찾습니다.performance.php는'LOG4PHPDEBUG'=> false에서'LOG4PHPDEBUG' => true
2. log4php. 찾기properties,log4php.rootLogger=FATAL, A1에서 log4php.로 변경rootLogger=INFO,A1
이전 버전의 디버깅 여기 보세요.
PHP Files (*.php)
//$this->database->debug = true;
with: $this->database->debug = true;
log4php.rootLogger=FATAL,A1
with: log4php.rootLogger=DEBUG,A1
trigger_error('TempDebug: $someVariable="'
.print_r($someVariable, TRUE) .'"');
Don't forget to remove it afterward! :-) tags:
trigger_error('TempDebug: $smallArray=
"'
.print_r($smallArray, TRUE) .'"
'); Note however that trigger_error() truncates the output if the array is large. The following works on large arrays: trigger_error('TempDebug: $largeArray:...');
print_r("
");
print_r($largeArray);
print_r("
"); Smarty Templates (*.tpl)
Smarty templates are used to programatically create HTML pages.
var $debugging = false;
with: var $debugging = true;
AJAX and JavaScript (*.js)
Warning: Changes in AJAX code may require matching changes in Smarty code!
alert('TempDebug: someVariable = "' +someVariable +'"');
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.