malyshev / yii-debug-toolbar

A configurable set of panels that display various debug information about the current request/response.

Home Page:http://www.yiiframework.com/extension/yii-debug-toolbar/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Not all data is rendered

gb5256 opened this issue · 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

I have the same problem!

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'])) {