File: script.initial_horde_user.sql

package info (click to toggle)
php-horde 5.2.1%2Bdebian0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 12,196 kB
  • sloc: php: 11,089; xml: 6,460; sh: 96; makefile: 33; sql: 1
file content (9 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
-- This script will create an initial user in a horde_users table. The
-- password being used is 'admin', which you should change
-- IMMEDIATELY.

-- This statement creates a user with an md5-hex password (not recommended):
-- INSERT INTO horde_users (user_uid, user_pass) VALUES ('admin', '21232f297a57a5a743894a0e4a801fc3');

-- This statement creates a user with an SSHA-hashed password (recommended by default):
INSERT INTO horde_users (user_uid, user_pass) VALUES ('admin', 'wDa72Pg6riJ6vAYz25KbYhQ8rGqmEqEA');