by fasterpc » May 16th, 2010, 6:18 am
Thanks for this info. But as someone that's new to PHP can anyone tell me how to insert this information so that it actually works.
I have tried every way I can think of without success. I need the actual steps to insert the info once logged into my PHP admin, selecting wp_usermeta, then clicking on the SQL tab...
This is where I need help, on how to insert the following... What goes where? What needs to be removed (commas, brackets, etc), what's stays?
INSERT INTO 'wp_usermeta'('umeta_id','user_id','meta_key','meta_value') VALUES
(1, 1, 'nickname', 'admin'),
(2, 1, 'rich_editing', 'true'),
(3, 1, 'admin_color', 'fresh'),
(4, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(5, 1, 'wp_user_level', '10');
Step by step help would be greatly appreciated.