If you try to install systems like OSCommerce on PHP 5.3.x you may got strange
error like “ereg is deprecated…”.
Here is the solution!!!
1 |
becomes
1 |
dont forget “/ /” between the regexp code!!!
Same for “ereg_replace”
1 |
becomes
1 |
Thanks,
Garry Lachman
JS: Prevent IE crash when using console (console.log)
Internet Explorer will crash with the message:
Error: ‘console’ is undefined
Here is my solution for this annoying bug.
2
3
4
5
6
7
var console = new Object();
console.log = function(){}
console.error = function(){}
console.debug = function(){}
console.warn = function(){}
}
Thanks “brucebannor” for advice.
Have fun
Garry Lachman