> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://doc.common-services.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# No language selected, nothing to do ... - Amazon Marketplace Plus

You get this error in your server’s scheduled task manager:

||| No language selected, nothing to do ...

---

## 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:**
```bash
wget -qO- http://yourdomain.com/prestashop/modules/amazonv5/functions/products.php?cron=1
```

**Correct command:**
```bash
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.
