How to Import customer XML?
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
How to Import customer XML?
What is the difference between “User” and “Customer”?
How can I import existing customers?
I have the following packages/xxxx-theme/config/controller.php:
storage/import/customer/1/test.xml is the sample XML file from https://aimeos.org/docs/2024.x/cronjobs ... ml-import/
There are no errors, but no customers are imported either.
Aimeos: 2024.04.*
Laravel: 11.0
PHP: 8.2
How can I import existing customers?
I have the following packages/xxxx-theme/config/controller.php:
Code: Select all
return [
'jobs' => [
'customer' => [
'export' => [
'csv' => [
'location' => 'storage/export/customer'
],
],
'import' => [
'xml' => [
'location' => 'storage/import/customer/1/test.xml'
],
],
],
'order' => [
'export' => [
'csv' => [
'location' => 'storage/export/order'
],
],
'email' => [
'payment' => [
'pdf' => false
],
'delivery' => [
'pdf' => false
],
],
],
],
];
There are no errors, but no customers are imported either.
Aimeos: 2024.04.*
Laravel: 11.0
PHP: 8.2
Re: How to Import customer XML?
The Laravel "users" table is used for the Aimeos customer domain when using Laravel. In Aimeos, we are always speaking about "customers".
Don't change the location if you don't need it because it's the path relative to the fs-import virtual filesystem which is mapped to ./storage/import/ in your installation. Then, place your customer XML file into the ./storage/import/customer/default/ directory and run the artisan command for importing the customer XML files:
Code: Select all
php artisan aimeos:jobs customer/import/xml
Upgrade to 2024.10 LTS because earlier version are not supported any more and don't receive bugfixes and security updates.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
