03-28-2016, 04:13 PM
that seems to be in order;
Did you enable some error reporting?
If your dev server isn't configured for error reporting look here: http://ubuntuforums.org/showthread.php?t=961202
If you can't make the change globally you can add directives directly intu your code:
Paste the following lines into /core/init.php just after the session_start();
// Enable error reporting AND display the errors.
error_reporting(E_ALL);
ini_set('display_errors', 1);
Do you get any errors reported?
Did you enable some error reporting?
If your dev server isn't configured for error reporting look here: http://ubuntuforums.org/showthread.php?t=961202
If you can't make the change globally you can add directives directly intu your code:
Paste the following lines into /core/init.php just after the session_start();
// Enable error reporting AND display the errors.
error_reporting(E_ALL);
ini_set('display_errors', 1);
Do you get any errors reported?