This is a PHP script that transforms a CSV export from CLZ Books into a CSV for importing into WIX Stores.
CLZ Books is a mobile app for bookstore owners to manage their inventory of books.
Wix Stores is an optional feature for Wix website owners to sell products online through their website.
This script runs on any PHP server. You simply need to upload the PHP file to your PHP server (*see important note below).
Alternatively, if you have docker-compose, you can download the repository and run docker-compose: docker compose up
. The docker-compose.yml file will start a PHP server at port 80 on your computer, and you will be able to access the script in your browser at http://localhost.
Important
- If you have the script on a public webserver, you should set a unique password to prevent unauthorised use.
- You can do this by changing line 6 in the "clzbooks-to-wixstores/index.php" file:
- $password = 'abc123';
- The default password is "abc123".
- Do not delete the single quotes or the semicolon, just put the new password in between the single quotes to replace abc123. eg:
- $password = 'def456';