Alternc  latest
Alternc logiel libre pour l'hébergement
ssl_finalize.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  ----------------------------------------------------------------------
5  AlternC - Web Hosting System
6  Copyright (C) 2002 by the AlternC Development Team.
7  http://alternc.org/
8  ----------------------------------------------------------------------
9  LICENSE
10 
11  This program is free software; you can redistribute it and/or
12  modify it under the terms of the GNU General Public License (GPL)
13  as published by the Free Software Foundation; either version 2
14  of the License, or (at your option) any later version.
15 
16  This program is distributed in the hope that it will be useful,
17  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  GNU General Public License for more details.
20 
21  To read the license please visit http://www.gnu.org/copyleft/gpl.html
22  ----------------------------------------------------------------------
23  Original Author of file: Benjamin Sonntag
24  Purpose of file: Create / Import an SSL Certificate
25  ----------------------------------------------------------------------
26  */
27 require_once("../class/config.php");
28 
29 $fields = array(
30  "id" => array("post", "integer", ""),
31  "crt" => array("post", "string", ""),
32  "chain" => array("post", "string", ""),
33  "delete" => array("post","string",""),
34 );
36 
37 if ($delete!="") {
38  require_once("ssl_delete.php");
39  exit();
40 }
41 
42 $cert = $ssl->finalize($id, $crt, $chain);
43 
44 $error = $err->errstr();
45 if ($error) {
46  require_once("ssl_list.php");
47  exit();
48 }
49 $info = _("Your ssl certificate has been imported successfully");
50 
51 require_once("ssl_view.php");
exit
Definition: adm_doadd.php:70
$err
Definition: bootstrap.php:72
getFields($fields, $requestOnly=false)
Get the Fields of the posted form from $_REQUEST or POST or GET and check their type.
Definition: functions.php:688
if(!isset($is_include)) if(! $key &&! $crt) $id
if($error) $info
if($delete!="") $cert
$fields
$error