• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

import products into eshop?

G

Greg Deputy

Guest
Is there any way to import products into eshop? I am considering moving an ecommerce site from an older cart into eshop, but there are 100's of products and many nested categories. Adding these all by hand through the ui would take weeks. I've tried, but not been successful in finding where the eshop data lives.

Thanks.
 
All dymanic modules data, including e-shop one is stored on published side in data/storage/sb_modules.php file. This is SQLite database and has SQLite format. You can open it and try to work with it with help of 'sqlite' utility like the following:

# sqlite SITE_PUBLISHED_LOCATION/data/storage/sb_modules.php
SQLite version 2.8.17
Enter ".help" for instructions
sqlite> .databases
seq name file
--- --------------- ----------------------------------------------------------
0 main SITE_PUBLISHED_LOCATION/data/storage/sb_mod
1 temp /var/tmp/sqlite_4kzD3EuuJwmclfO
sqlite> .tables
modules_5ai6aluayfj_category modules_96kpy4toiwm_day
modules_5ai6aluayfj_gallery_images modules_96kpy4toiwm_month
modules_5ai6aluayfj_gallery_relations modules_96kpy4toiwm_visitors
modules_96kpy4toiwm_attendance pr

Using sqlite commands you can try to make necessary inserts. Can suggest you to refer SQLite manuals for additional info.
Hope it helps.
 
Back
Top