Skip to content

Instantly share code, notes, and snippets.

@ChriRas
Created November 7, 2014 13:39
Show Gist options
  • Save ChriRas/27befb8bf9bb115fcf46 to your computer and use it in GitHub Desktop.
Save ChriRas/27befb8bf9bb115fcf46 to your computer and use it in GitHub Desktop.
Erzeuge einen Superadmin in Joomla 2.5 Passwort ist 1234
INSERT INTO `jos_users` (`id`, `name`, `username`, `email`, `password`, `usertype`, `block`, `sendEmail`, `registerDate`, `lastvisitDate`, `activation`, `params`) VALUES
(42, 'Super User', 'username', 'email@dot.com', '81dc9bdb52d04dc20036dbd8313ed055', 'deprecated', 0, 1, '2011-01-13 12:09:00', '2011-01-14 08:43:24', '', '');
INSERT INTO `jos_user_usergroup_map` (`user_id`, `group_id`) VALUES
(42, 8);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment