Hello, everyone,

I want to write existing customers directly into the MySQL database without manually triggering the import via a CSV file.

Writing the email address and name into the database works fine (tables ost_user and ost_user_email)

What I fail at is the phone number and the remark.
If I fill in the fields "phone" and "notes" in the table "ost_user__cdata" with the corresponding "user_id" the data will not be displayed in the system for the customer.
If I change the data via the system (web interface) the data is written into the same fields in the database.

Has anyone been able to solve this?
Is there a HowTo for this?

Thanks in advance

Greeting
Gunter

    gavenius "ost_user__cdata"

    You should not be writing to a temporary cache table. This table gets DROPped and regenerated fairly regularly.
    You would want to see where the data belongs by looking at another user and write it there.

    ost_user
    ost_user_account
    ost_user_email

    The phone is stored in
    ost_form_entry_values

    Write a Reply...