yii-debug-toolbar icon indicating copy to clipboard operation
yii-debug-toolbar copied to clipboard

Not all data is rendered

Open gb5256 opened this issue 10 years ago • 2 comments

Hello, I have just updated from the previous version (with the old design) to the new one. The old one was working super, but the new one is not showing some of the data. It does display SQL and Logging, but the others are empty or they show only parts. Like the get paramters are shown, but not the values of them. See screenshot below screen shot 2014-11-20 at 11 47 05 Any idea what might be wrong? gb5256

gb5256 avatar Nov 20 '14 10:11 gb5256

I have the same problem!

ghost avatar Mar 30 '15 17:03 ghost

Your SERVER_ADDR not match with REMOTE_ADDR

Try change YiiDebug.php line 37 for:

// } else if (empty($_SERVER['SERVER_ADDR']) || empty($_SERVER['REMOTE_ADDR']) || $_SERVER['SERVER_ADDR'] !== $_SERVER['REMOTE_ADDR']) {
} else if (empty($_SERVER['SERVER_ADDR']) || empty($_SERVER['REMOTE_ADDR'])) {

jashk avatar May 14 '15 23:05 jashk