renaudpro Posted May 16, 2016 Share Posted May 16, 2016 Hi, There is a problem on the cron editor. When I select the day of use , it takes time English I feel . I'm french. There is a problem on the cron editor. When I select the day of use , it takes time English I feel . Link to comment Share on other sites More sharing options...
Simonas Invertus Posted May 17, 2016 Share Posted May 17, 2016 You should contact module developer, but cron editor should take server time which might be different than your time depending on there server is and how it is configured. Link to comment Share on other sites More sharing options...
humanoidvani Posted May 17, 2018 Share Posted May 17, 2018 problem is here: mktime(0, 0, 0, 0, (int)$cron['day_of_week']) 5th param have to be date("j") not date("w") $cron['day_of_week'] = ($cron['day_of_week'] == -1) ? self::$module->l('Every day of the week', 'CronJobsForms') : self::$module->l(date('l', mktime(0, 0, 0, 0, (int)$cron['day_of_week']))); https://github.com/PrestaShop/cronjobs/blob/master/classes/CronJobsForms.php line: 308 Cron task works well, problem is only in list of tasks. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now