This commit is contained in:
kaetemi 2014-12-09 23:10:27 +01:00
commit ebb1e06c85
4 changed files with 29 additions and 3 deletions

View file

@ -20,8 +20,18 @@ class Ticket_User{
* @param $permission the permission that will be given to the user. 1=user, 2=mod, 3=admin
*/
public static function createTicketUser( $extern_id, $permission) {
$dbl = new DBLayer("lib");
$dbl->insert("ticket_user",array('TUserId' => $extern_id, 'Permission' => $permission, 'ExternId' => $extern_id));
try {
//make connection with and put into db
$dbl = new DBLayer("lib");
$dbl->insert("ticket_user",array('TUserId' => $extern_id, 'Permission' => $permission, 'ExternId' => $extern_id));
}
catch (PDOException $e) {
//oh noooz...
//error_log(print_r($e, true));
//print_r($e);
echo "Problem creating user in database!";
}
}

View file

@ -0,0 +1,2 @@
INSERT INTO `settings` (`idSettings`, `Setting`, `Value`) VALUES
(2, 'Domain_Auto_Add', '1');

View file

@ -6,7 +6,7 @@ $db_nel_tool = 2;
// Support
$db_nel_ams = 2;
$db_nel_ams_lib = 6;
$db_nel_ams_lib = 7;
// Domain
$db_ring_domain = 1;

View file

@ -42,6 +42,20 @@ require_once('setup/version.php');
$continue = false;
}
}
if ($continue) {
try {
if (!in_array("mysql",PDO::getAvailableDrivers(),TRUE))
{
throw new PDOException ("Cannot work without a proper database setting up");
}
}
catch (PDOException $pdoEx)
{
printalert("danger", "PHP PDO seems to be missing the mysql driver");
$continue = false;
}
}
// Validate basics
if ($continue) {