Issue MySQL Event scheduler

mudassar

Basic Pleskian
I have just installed a HR system on my server, however it is asking for MYSQL Event Scheduler to be active.

I am unable to find any instructions on how to do this?
 
The following SQL query will tell you if the scheduler is available and enabled:

SELECT @@event_scheduler;

To enable event scheduler if it's disabled try calling:

SET GLOBAL event_scheduler := 1;
 
Back
Top