Welcome Guest, Not a member yet? Register   Sign In
How to Integrate Vbulletin object into codeigniter?
#13

[eluser]DemiGod[/eluser]
Ha... seems like vBulletin changes the error reporting level while callings its functions. The reason codeigniter sees these errors is because it has its own custom error handler in CodeIgniter.php:

set_error_handler('_exception_handler');

So this is why the codeigniter picks up these error notices. Using similar error code in my test php file produced similar results. So it seems there are no integration issues with codeigniter... but you will need to set you error level to E_ALL & ~E_NOTICE. If you want to keep the error level to E_ALL, you could do the following:

Code:
function xyz()
{
    // Use php error handler at start of function
    restore_error_handler();

    // call vbulletin data manager functions

    // Restore codeIgniter's error handler before returning
    set_error_handler('_exception_handler');
}


Messages In This Thread
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-27-2009, 12:24 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-29-2009, 11:43 AM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-29-2009, 12:02 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-29-2009, 12:45 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-29-2009, 12:49 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-29-2009, 01:15 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-29-2009, 07:17 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-29-2009, 11:53 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-30-2009, 11:32 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 03-31-2009, 01:40 AM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 04-14-2009, 09:19 AM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 04-29-2009, 06:35 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 04-30-2009, 02:00 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 09-09-2009, 11:33 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 04-18-2010, 04:08 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 07-03-2011, 11:49 AM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 07-31-2011, 12:27 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 08-04-2011, 01:18 PM
How to Integrate Vbulletin object into codeigniter? - by El Forum - 08-06-2011, 04:10 AM



Theme © iAndrew 2016 - Forum software by © MyBB