According to the MySQL documentation, to enable the event scheduler, I have to insert the following line into my.ini (the my.cnf file in the mysql folder in XAMPP ) somewhere in the [mysqld] section:
event_scheduler=ON
But this does not seem to work. Each time I restart the computer, the event scheduler is set to OFF, and I must set it to the ON position manually (using the SET GLOBAL event_scheduler = ON;
command).
Does anyone know a solution for this? Thanks:)
source share