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

Request info is not showing

rolandsusans opened this issue · comments

Some of panel info is missing:

9d0dafb3514f11a860a8c3c6675738f6
bb756d7ad79f400453d3fd99ca790ee9
4755648ea60cc827916705a1bb8d4d81

Although trace and database info is showing..

what can cause this problem?

btw, i havent extracted extension under app/protected/extensions, i have little bit different structure app/extensions, what should i change to get this tool working?

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

wow thanks, that solved the problem, tnx for help. This is propably one of best yii-debug tools 👍