• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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