No language selected, nothing to do
You get this error in your server’s scheduled task manager:
Cause
The URL used in your cron job is not properly wrapped in double quotes, which prevents the module from retrieving the required parameters (especially the language).
Solution
Incorrect command:
wget -qO- http://yourdomain.com/prestashop/modules/amazonv5/functions/products.php?cron=1
Correct command:
wget -qO- "http://yourdomain.com/prestashop/modules/amazonv5/functions/products.php?cron=1"
Always make sure to wrap the URL in double quotes to avoid parameter errors.
Updated on: 05/08/2025
Thank you!