How to migrate a Mysql Database to Wordpress?

0

Very good colleagues, I want to turn to you to see if you can give me lights in this dark landscape for me.

A Client has a website made in PHP, so that they have an idea, it deals with offers of temporary jobs. Therefore it has its Database, and all its structure that you can imagine. Ok.

Apart from that, you are offered a Wordpress with job offer functions, a connection with scoptalent api, the theme plugins and all that. Ok

Despite how crazy this all sounds, they migrate your page to this Wordpress, now this is the detail, your users should be able to migrate and connect to Wordpress, this new site. The user in the previous site already have all their records, résumé mounted, configurations and more, many do not exist in Wordpress.

Tell me how to migrate these users of this web now in Wordpress that obviously have tables and registers with different names and more.

This is for me O.O

    
asked by J'Esaa 05.12.2018 в 16:23
source

1 answer

1

You can migrate the user data, but I recommend not to migrate the passwords, it is best to do so:

  • Create a page in Wordpress that is in charge of making the migration, that asks for the user's data, name or email and password
  • This page validates with the database of the PHP page that the information is correct
  • Through Wordpress code you create the user in the database, with the same password provided by the user in step 1
  • You migrate all other relevant data from the PHP database to the Wordpress database.
  • answered by 05.12.2018 в 16:33