• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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