Closed GoogleCodeExporter closed 9 years ago
And how to off notice and strict message, because wp too many generate notice
and strict message :{{{
Thanks Gabor Alias Egg :)
Cool plugin!
Original comment by eggPro...@gmail.com
on 23 Jul 2011 at 8:49
Hi, Gabor!)
> my problem wordpress php console plugin ... cookiesLimit set = 300 ... page
not load :{ OR set = 100 load one page and refresh page, but not load css and
js ..... :{ why ?
I think there is too much E_STRICT or E_NOTICE errors in your system, so you
should just disable it. But it's also can be known bug described in this issue:
http://code.google.com/p/php-console/issues/detail?id=13 I will release new
version of PHP Console with fixes in next month.
Sorry about that bug, but it's not so easy to fix it. There are too much limits
with cookies.
> And how to off notice and strict message, because wp too many generate notice
and strict message :{{{
You can filter errors by type in Lagger library, like:
$chromeConsole = new Lagger_Action_ChromeConsole();
$errors->addAction($chromeConsole, 'warning,fatal');
$exceptions->addAction($chromeConsole, 'warning,fatal');
In PhpConsole you can add to function handleError the next code:
if($code == E_STRICT) {
return;
}
Anyway I will add errors filtering configuration in PHP Console extension in
future.
Original comment by barbushin
on 23 Jul 2011 at 7:47
Original issue reported on code.google.com by
eggPro...@gmail.com
on 23 Jul 2011 at 8:45