Is it possible to the the session timeout in seconds in ISA Server? I have an intranet access by ISA Server and the session timeout is too short and I would like to increase it.
I need to turn off E_STRICT. I have error_reporting = E_ALL & ~E_STRICT in my php.ini but it seems to be ignored. I tried this in my code:
ini_set('error_reporting', E_NOTICE);
Nothing!
Please help.
I wuold like to define a trigger to block the deletion of the row with ID 2 of the configuration table, you might guess why, I am trying something like that:
CREATE TRIGGER do_not_delete_configuration_1 BEFORE DELETE ON configuration
FOR EACH ROW BEGIN
IF (OLD.configurationid != 1) THEN
DELETE FROM configuration WHERE configuration.configuration=OLD.configurationid;
END IF;
END;
|
without a positive result.
I have something like that:
to_days(now()) < to_days(birth)
It work but instead of comparing days I was to compare the time too. Is there a similar function?