Thread: New approach
View Single Post
Old 05-11-2008, 03:02 PM   #27 (permalink)
Salathe
Moderateur
RegEx Guru PHP Guru Top Contributor Advanced Programmer 
 
Salathe's Avatar
 
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
Salathe is on a distinguished road
Default

What's happening on line 14? If you're using an IDE walk through the code and see precisely where the error is occurring, if not then perhaps it might be worth setting up a crude error handler to give you/us some more information? Either that or we need to see the code causing problems (things like the internals of EvulSess::set_var might be to blame).

Just for kick, try temporarily putting the following into your file:
PHP Code:
set_error_handler(array('SalError''handler'));
class 
SalError {
    public static function 
handler($num$str$file$line$context)
    {
        
debug_print_backtrace();
    }

Salathe is offline  
Reply With Quote