• I use this extension on one site and I want to import settings to another site.
    How to do it?

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

Viewing 1 replies (of 1 total)
  • Plugin Author Vladimir Garagulya

    (@shinephp)

    WordPress stores all its user roles data at the single database record:

    
    SELECT * FROM wp_options WHERE option_name='wp_user_roles';
    

    ‘wp_’ is equal to the database prefix set at wp-config.php
    So you make take option_value field value from this record at one site and put into the similar record at the other site:

    
    UPDATE wp_options SET option_value='changed value here' WHERE option_id=NN LIMIT 1;
    

    Replace NN with actual user roles record ID.

Viewing 1 replies (of 1 total)
  • The topic ‘Export and import extension’ is closed to new replies.