Panormitis Posted yesterday at 10:31 PM Report Posted yesterday at 10:31 PM On <blesta_dir>/plugins/domains/lib/tld_sync.php On line 40, you have set: set_time_limit(60*60*15) // 15 minutes According https://www.php.net/manual/en/function.set-time-limit.php the value should have been set in seconds, so the correct would be: set_time_limit(60*15) // 15 minutes. 60*15 = 900 seconds (15 minutes). 60*60*15 = 54000 seconds (15 hours), which is incorrect. Quote
Paul Posted 6 hours ago Report Posted 6 hours ago Thanks, we'll update this per https://dev.blesta.com/browse/CORE-5448 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.