cedaro / satispress

Expose installed WordPress plugins and themes as Composer packages.
500 stars 48 forks source link

Transfer API-keys from 0.3.2 to 0.5.0 #114

Closed koenHuybrechts closed 4 years ago

koenHuybrechts commented 4 years ago

We have a SatisPress installation version 0.3.2 in production. I'm upgrading to 0.5.0 and move the repository to a new server. Where can I find the API-keys, generated in the old installation (0.3.2), please? So I can migrate all keys. If I'm right, the newest version generates a usermeta record? For example: satispress_api_key.RANDOMKEY

bradyvercher commented 4 years ago

Yep, API Keys are saved to user meta. You can run a SQL query like this to find them:

SELECT * FROM wp_usermeta WHERE meta_key LIKE 'satispress_api_key.%';