• Resolved nocternalvibe

    (@nocternalvibe)


    Transfer QPP data to another website.
    Our old website is using the QPP plugin [free]. We are rebuilding a new WP website with the QPP plugin and need the “Quick PayPal Payments” data transferred from the old website to the new website, can you please tell me how to do this? Thank you

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author fullworks

    (@fullworks)

    You will have to do it at database level unless you are using a migration plugin to migrate the whole old site database.

    The payment data is currently stored in wp_options table

    SELECT * FROM wp_options WHERE option_name LIKE ‘qpp_messages%’

    You will see one entry per form

    the default form is qpp_messages

    If you have a form MyForm there would be an entry qpp_messagesMyForm

    You will have to copy the entry across

    ( I say currently – as this structure will be different in a future release )

    • This reply was modified 3 years, 6 months ago by fullworks.
    • This reply was modified 3 years, 6 months ago by fullworks.

    Hi,

    I have the same problem. There are 11 tables in the old database and the new one has none in the new database. I tried to export the tables and import it into the other but it says that the Options table already exists even though I only exported the 11 tables. You can tell that I am not the most computer literate. How to do this?

    Plugin Author fullworks

    (@fullworks)

    Moving a WordPress sites to new database etc is not a minor task.

    It also is not specific to my plugin, but here is some guidance.

    WordPress provide some documentation here https://wordpress.org/support/article/moving-wordpress/#moving-to-a-new-server

    Although most people, especially the less technical, use a migration plugin.

    I hope you manage to sort out what you need.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Transfer QPP to another website.’ is closed to new replies.