Hi!
I had problem with plugin uni login. After I set everything properly, I still got an fatal error: Class 'Hybrid_Exception' not found...
Problem was caused by notice message in sys/CODOF/Util.php file when method start_sesstion (on line 76) tried to start session again. To disable restarting session you can use condition like
if (session_status() == PHP_SESSION_NONE) {
session_start();
}
or somethin like
if(session_id() == '') {
session_start();
}
I hope it some someone helps...
Hi!
I had problem with plugin uni login. After I set everything properly, I still got an fatal error: Class 'Hybrid_Exception' not found...
Problem was caused by notice message in sys/CODOF/Util.php file when method start_sesstion (on line 76) tried to start session again. To disable restarting session you can use condition like
````
if (session_status() == PHP_SESSION_NONE) {
session_start();
}
````
or somethin like
````
if(session_id() == '') {
session_start();
}
````
I hope it some someone helps...