Troubleshooting guide
This guide helps you solve common errors and issues when installing or starting to use Motive Commerce Search in your e-commerce store.
Errors
Mission abort error
Error message:
“Mission abort, the sync couldn’t be finished.”
When/Where you see it:
During the synchronisation process between your store and Motive Playboard.
Why it matters:
Your products will not be indexed correctly, meaning search results may be incomplete or unavailable.
How to fix it:
- In Motive Playboard, update your security token.
- Run a manual indexation.
- Check if the sync completes.
- If the problem persists, contact Motive Support (opens new window).
Outdated plugin
Error message:
“The plugin version is out of date.”
When/Where you see it:
Displayed in Motive Playboard or your e-commerce back office when the installed plugin is no longer compatible.
Why it matters:
Outdated plugins may block synchronisation and prevent access to new features.
How to fix it:
Download and install the latest version from the Setup Wizard.
Common synchronisation errors
These errors may appear when trying to sync your catalog from Motive Playboard.
Something went wrong
When/Where:
An unknown error occurs during sync.
How to fix:
Click Try again on the synchronisation page. If the issue repeats, contact Motive Support (opens new window).
Your site can’t be reached
When/Where:
Motive cannot connect to your store.
Possible causes:
Your store is in maintenance mode or inaccessible.
How to fix:
- PrestaShop: Turn off Maintenance Mode.
- WooCommerce: Reload your site and check access from different devices.
- Then click Try again.
It’s taking too long to connect
When/Where:
Connection attempt times out during sync.
Possible causes:
High server load or restrictive timeout settings.
How to fix:
- Check your server load.
- Increase timeout settings.
- Then click Try again.
Internal server error
When/Where:
Your server blocks catalog synchronisation.
Possible causes:
- Conflict with another plugin.
- Server running out of memory.
How to fix:
- Check server logs for errors.
- Increase PHP memory limits.
- Then click Try again.
- If unresolved, reach out to Motive Support (opens new window).
Issues
Checking if Motive is installed
Situation:
You want to confirm whether Motive is correctly installed and active.
Why it matters:
If Motive is not installed, no search features will be available.
How to check:
PrestaShop
- Open your shop’s URL.
- Add one of these at the end:
- If the URL ends with
/
: addmodule/motive/check
- If not: add
/module/motive/check
- If the URL ends with
- Press Enter.
- ✅ If installed, you’ll see
OK
. - ❌ If not, Motive is not installed or not active.
- ✅ If installed, you’ll see
WooCommerce
- Open your shop’s URL.
- Add one of these at the end:
- If the URL ends with
/
: addwp-json/motive/check
- If not: add
/wp-json/motive/check
- If the URL ends with
- Press Enter.
- ✅ If installed, you’ll see
OK
. - ❌ If not, Motive is not installed or not active.
- ✅ If installed, you’ll see
note
If Motive is not installed, restart the Installation process.
CSS Selector issues
Situation:
The Motive search bar does not appear in your shop.
Why it matters:
Motive needs the correct CSS Selector to locate your search box. Without it, the search bar will not work for shoppers.
How to fix it:
Find your CSS Selector
- Open your website.
- Right-click the search box and select Inspect.
- In the Elements tab, look for an element with
id
orclass
that includes the wordsearch
.- Example:
.search-widget
or#mobile_search_btn
.
- Example:
- If your search box and magnifying glass use different selectors, list both separated by a comma.
- Example:
.selector.search.desktop, #selector.search.mobile
.
- Example:
- Repeat the same process for the mobile version of your site.
Test your selector
In your browser console, type:
document.querySelectorAll('.your-selector')
Hover over the highlighted elements.
- ✅ Correct: Only the search box (and magnifying glass if present) is selected.
- ❌ Incorrect: Extra elements are selected.
Notes and tips
If unsure, check the CSS selection documentation.