예제 #1
0
파일: dbclass.php 프로젝트: ruNovel/sams2
function CreateSAMSdbPgSQL($host, $user, $passwd, $dbname)
{
    CreateSAMSdb("PostgreSQL", "0", $host, $user, $passwd, $dbname, "", "", "");
}
예제 #2
0
파일: createdb.php 프로젝트: ruNovel/sams2
    $mpass = $_GET["mpass"];
}
if (isset($_GET["create"])) {
    $create = $_GET["create"];
}
print "<head>";
print "<TITLE>SAMS (Squid Account Management System)</TITLE>";
print "</head><body>";
print "<CENTER>";
print "<TABLE BORDER=0 CELLPADDING='5' WIDTH='90%' ><TR><TD ALIGN='CENTER' BGCOLOR='BEIGE'> SAMS DB installations</TABLE><?P>";
if (!function_exists('mysql_connect')) {
    echo "<br><center><font color=red><b>ERROR: MySql for PHP is not properly installed.<br>Try installing mysql for php package </b></font></center>";
    die;
}
if (!function_exists('gzopen')) {
    echo "<br><center><font color=red><b>ERROR: Zlib for PHP is not properly installed.<br>Try installing Zlib for php package </b></font></center>";
    die;
}
if (!function_exists('imagecreatetruecolor')) {
    echo "<br><center><font color=red><b>ERROR: GD for PHP is not properly installed.<br>Try installing GD for php package </b></font></center>";
    die;
}
if (function_exists('ini_get')) {
    $safe_switch = @ini_get("safe_mode") ? 1 : 0;
}
if ($safe_switch == 0) {
    echo "<br><center><font color=red><b>ERROR:safe_mode = off</b></font><BR> Switch php into safe_mode = on</center><BR><BR> ";
}
//print("$dbname, $odbc, $hostname, $username ,$pass, $samsdb");
CreateSAMSdb($dbname, $odbc, $hostname, $username, $pass, $samsdb, $create, $muser, $mpass, "sams_mysql");
print "</body>";
예제 #3
0
파일: setup.php 프로젝트: ruNovel/sams2
function step_4($lang)
{
    $langmodule = "./lang/lang.{$lang}";
    require $langmodule;
    if (isset($_GET["hostname"])) {
        $hostname = $_GET["hostname"];
    }
    if (isset($_GET["username"])) {
        $username = $_GET["username"];
    }
    if (isset($_GET["pass"])) {
        $pass = $_GET["pass"];
    }
    if (isset($_GET["muser"])) {
        $muser = $_GET["muser"];
    }
    if (isset($_GET["mpass"])) {
        $mpass = $_GET["mpass"];
    }
    if (isset($_GET["create"])) {
        $create = $_GET["create"];
    }
    echo "<H3>{$setup_37}</H3>\n";
    CreateSAMSdb($lang);
    echo "<H3>{$setup_36}</H3>\n";
}