/src/IDF/conf/path.php'; require 'Pluf.php'; Pluf::start('//src/IDF/conf/idf.php'); Pluf_Dispatcher::loadControllers(Pluf::f('idf_views')); $user = new Pluf_User(); $user->first_name = 'Foo'; $user->last_name = 'Bar'; // Required! $user->login = 'foobar'; // must be lowercase! $user->email = 'foo@bar.com'; $user->password = 'foobarbaz'; // the password is salted/hashed // in the database, so do not worry :) $user->administrator = true; $user->active = true; $user->create(); print "Bootstrap ok\n"; ?>