completely revert [1025] since we rely on apache config to enable/disable ssl/non-ssl now
This commit is contained in:
parent
911a543728
commit
bbd913e6e6
|
@ -37,7 +37,7 @@
|
||||||
et mettez votre ip dans le IF pour que seule votre ip puisse accéder au bureau :
|
et mettez votre ip dans le IF pour que seule votre ip puisse accéder au bureau :
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* // Uncomment the following lines and put your IP between the "" to put the dekstop in maintenance mode :
|
/*
|
||||||
if (getenv("REMOTE_ADDR")!="81.56.98.108") {
|
if (getenv("REMOTE_ADDR")!="81.56.98.108") {
|
||||||
echo "Le bureau AlternC est en vacances jusqu'a minuit pour maintenance.<br>
|
echo "Le bureau AlternC est en vacances jusqu'a minuit pour maintenance.<br>
|
||||||
Merci de revenir plus tard.";
|
Merci de revenir plus tard.";
|
||||||
|
@ -45,8 +45,6 @@ Merci de revenir plus tard.";
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 1. Get a semaphore id for the alternc magic number (18577)
|
// 1. Get a semaphore id for the alternc magic number (18577)
|
||||||
$alternc_sem = sem_get ( 18577 );
|
$alternc_sem = sem_get ( 18577 );
|
||||||
// 2. Declare the shutdown function, that release the semaphore
|
// 2. Declare the shutdown function, that release the semaphore
|
||||||
|
@ -106,12 +104,6 @@ $db= new DB_system();
|
||||||
// Current User ID = the user whose commands are made on behalf of.
|
// Current User ID = the user whose commands are made on behalf of.
|
||||||
$cuid=0;
|
$cuid=0;
|
||||||
|
|
||||||
if (!$_SERVER["HTTPS"]) {
|
|
||||||
$conf=variable_init();
|
|
||||||
if ($conf["force_https"]) {
|
|
||||||
header("Location: https://".$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$classes=array();
|
$classes=array();
|
||||||
/* CLASSES PHP4 : automatic include : */
|
/* CLASSES PHP4 : automatic include : */
|
||||||
|
|
|
@ -7,9 +7,6 @@ ALTER IGNORE TABLE membres ADD COLUMN duration int(4) default NULL AFTER renewed
|
||||||
ALTER IGNORE TABLE ftpusers ADD COLUMN encrypted_password VARCHAR(32) default NULL AFTER password;
|
ALTER IGNORE TABLE ftpusers ADD COLUMN encrypted_password VARCHAR(32) default NULL AFTER password;
|
||||||
UPDATE ftpusers SET encrypted_password=ENCRYPT(password) WHERE password!='';
|
UPDATE ftpusers SET encrypted_password=ENCRYPT(password) WHERE password!='';
|
||||||
|
|
||||||
-- Force le bureau https si voulu :
|
|
||||||
INSERT INTO variable SET name='force_https', value='0', comment='Shall we force the users to access the managment desktop through HTTPS only ? If this value is true, HTTPS access will be forced. ';
|
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
-- TABLES de mémorisation de la taille des dossiers web/mail/db
|
-- TABLES de mémorisation de la taille des dossiers web/mail/db
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue