Skip to main content

Enable Event Scheduler in PHPMyAdmin

Comments

6 comments

  • syslint
    Are you running mysql in strict mode ?
    0
  • saikumar
    Are you running mysql in strict mode ?

    No, and the other thing is that i cant find my.cnf/my.ini in my Server i,e CPANEL
    0
  • germany
    Just issue appropriate CREATE EVENT SQL from SQL box. However: your MySQL server needs to have event scheduler enabled AND have EVENT privileges for the database user. Calling SELECT @@event_scheduler; will tell you if the scheduler is available and enabled. To enable event scheduler if it's disabled try calling SET GLOBAL event_scheduler := 1; You need the SUPER privilege for this to succeed.
    0
  • cPanelMichael
    Hello, You may also find the following StackOverflow thread helpful: Can I set a MySQL event schedule using phpMyAdmin? Thank you.
    0
  • harshad
    but, how to give user permission as SUPER privilege to an user?
    0
  • cPanelMichael
    but, how to give user permission as SUPER privilege to an user?

    You won't be able to do this as a website owner. You'd need root access to the system. Thank you.
    0

Please sign in to leave a comment.