524 lines
21 KiB
PHP
524 lines
21 KiB
PHP
|
|
<?php
|
||
|
|
/*+**********************************************************************************
|
||
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||
|
|
* ("License"); You may not use this file except in compliance with the License
|
||
|
|
* The Original Code is: vtiger CRM Open Source
|
||
|
|
* The Initial Developer of the Original Code is vtiger.
|
||
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||
|
|
* All Rights Reserved.
|
||
|
|
************************************************************************************/
|
||
|
|
|
||
|
|
// TODO: deprecate connection.php file
|
||
|
|
//require_once("connection.php");
|
||
|
|
|
||
|
|
@include_once('config.db.php');
|
||
|
|
global $dbconfig;
|
||
|
|
// TODO: introduce MySQL port as parameters to use non-default value 3306
|
||
|
|
//$sock_path=":" .$mysql_port;
|
||
|
|
$hostname = $_SERVER['SERVER_NAME'];
|
||
|
|
|
||
|
|
// TODO: introduce Apache port as parameters to use non-default value 80
|
||
|
|
//$web_root = $_SERVER['SERVER_NAME']. ":" .$_SERVER['SERVER_PORT'].$_SERVER['PHP_SELF'];
|
||
|
|
//$web_root = $hostname.$_SERVER['PHP_SELF'];
|
||
|
|
//$web_root = $HTTP_SERVER_VARS["HTTP_HOST"] . $HTTP_SERVER_VARS["REQUEST_URI"];
|
||
|
|
$web_root = ($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"]:$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'];
|
||
|
|
$web_root .= $_SERVER["REQUEST_URI"];
|
||
|
|
$web_root = str_replace("/install.php", "", $web_root);
|
||
|
|
$web_root = "http://".$web_root;
|
||
|
|
|
||
|
|
$current_dir = pathinfo(dirname(__FILE__));
|
||
|
|
$current_dir = $current_dir['dirname']."/";
|
||
|
|
$cache_dir = "cache/";
|
||
|
|
|
||
|
|
require_once('modules/Utilities/Currencies.php');
|
||
|
|
|
||
|
|
if (is_file("config.php") && is_file("config.inc.php")) {
|
||
|
|
require_once("config.inc.php");
|
||
|
|
session_start();
|
||
|
|
|
||
|
|
if(isset($upload_maxsize))
|
||
|
|
$_SESSION['upload_maxsize'] = $upload_maxsize;
|
||
|
|
|
||
|
|
if(isset($allow_exports))
|
||
|
|
$_SESSION['allow_exports'] = $allow_exports;
|
||
|
|
|
||
|
|
if(isset($disable_persistent_connections))
|
||
|
|
$_SESSION['disable_persistent_connections'] = $disable_persistent_connections;
|
||
|
|
|
||
|
|
if(isset($default_language))
|
||
|
|
$_SESSION['default_language'] = $default_language;
|
||
|
|
|
||
|
|
if(isset($translation_string_prefix))
|
||
|
|
$_SESSION['translation_string_prefix'] = $translation_string_prefix;
|
||
|
|
|
||
|
|
if(isset($default_charset))
|
||
|
|
$_SESSION['default_charset'] = $default_charset;
|
||
|
|
|
||
|
|
if(isset($languages)) {
|
||
|
|
// need to encode the languages in a way that can be retrieved later
|
||
|
|
$language_keys = Array();
|
||
|
|
$language_values = Array();
|
||
|
|
|
||
|
|
foreach($languages as $key=>$value) {
|
||
|
|
$language_keys[] = $key;
|
||
|
|
$language_values[] = $value;
|
||
|
|
}
|
||
|
|
$_SESSION['language_keys'] = urlencode(implode(",",$language_keys));
|
||
|
|
$_SESSION['language_values'] = urlencode(implode(",",$language_values));
|
||
|
|
}
|
||
|
|
|
||
|
|
global $dbconfig;
|
||
|
|
|
||
|
|
if (isset($_REQUEST['db_username']))
|
||
|
|
$db_username = $_REQUEST['db_username'];
|
||
|
|
elseif (isset($dbconfig['db_username']) && $dbconfig['db_username']!='_DBC_USER_')
|
||
|
|
$db_username = $dbconfig['db_username'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['db_hostname']))
|
||
|
|
$db_hostname = $_REQUEST['db_hostname'];
|
||
|
|
elseif (isset($dbconfig['db_server']) && $dbconfig['db_server']!='_DBC_SERVER_'){
|
||
|
|
$db_hostname = $dbconfig['db_server'];
|
||
|
|
if(isset($dbconfig['db_port']) && $dbconfig['db_port']!='_DBC_PORT_')
|
||
|
|
$db_hostname .= ":".$dbconfig['db_port'];
|
||
|
|
} else
|
||
|
|
$db_hostname = 'localhost';
|
||
|
|
|
||
|
|
|
||
|
|
if (isset($_REQUEST['db_password']))
|
||
|
|
$db_password = $_REQUEST['db_password'];
|
||
|
|
elseif (isset($dbconfig['db_password']) && $dbconfig['db_password']!='_DBC_PASS_')
|
||
|
|
$db_password = $dbconfig['db_password'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['db_type']))
|
||
|
|
$db_type = $_REQUEST['db_type'];
|
||
|
|
elseif (isset($dbconfig['db_type']) && $dbconfig['db_type']!='_DBC_TYPE_')
|
||
|
|
$db_type = $dbconfig['db_type'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['db_name']))
|
||
|
|
$db_name = $_REQUEST['db_name'];
|
||
|
|
elseif (isset($dbconfig['db_name']) && $dbconfig['db_name']!='_DBC_NAME_')
|
||
|
|
$db_name = $dbconfig['db_name'];
|
||
|
|
else
|
||
|
|
$db_name = 'vtigercrm510';
|
||
|
|
|
||
|
|
!isset($_REQUEST['db_drop_tables']) ? $db_drop_tables = "0" : $db_drop_tables = $_REQUEST['db_drop_tables'];
|
||
|
|
if (isset($_REQUEST['host_name'])) $host_name = $_REQUEST['host_name'];
|
||
|
|
else $host_name = $hostname;
|
||
|
|
|
||
|
|
if (isset($_REQUEST['site_URL'])) $site_URL = $_REQUEST['site_URL'];
|
||
|
|
elseif (isset($site_URL) && $site_URL!='_SITE_URL_')
|
||
|
|
$site_URL = $site_URL;
|
||
|
|
else $site_URL = $web_root;
|
||
|
|
|
||
|
|
if(isset($_REQUEST['root_directory'])) $root_directory = $_REQUEST['root_directory'];
|
||
|
|
else $root_directory = $current_dir;
|
||
|
|
|
||
|
|
if (isset($_REQUEST['cache_dir']))
|
||
|
|
$cache_dir= $_REQUEST['cache_dir'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['mail_server']))
|
||
|
|
$mail_server= $_REQUEST['mail_server'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['mail_server_username']))
|
||
|
|
$mail_server_username= $_REQUEST['mail_server_username'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['mail_server_password']))
|
||
|
|
$mail_server_password= $_REQUEST['mail_server_password'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['admin_email']))
|
||
|
|
$admin_email = $_REQUEST['admin_email'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['admin_password']))
|
||
|
|
$admin_password = $_REQUEST['admin_password'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['standarduser_email']))
|
||
|
|
$stand_email = $_REQUEST['standarduser_email'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['standarduser_password']))
|
||
|
|
$stand_password = $_REQUEST['standarduser_password'];
|
||
|
|
|
||
|
|
if (isset($_REQUEST['currency_name']))
|
||
|
|
$currency_name = $_REQUEST['currency_name'];
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
!isset($_REQUEST['db_hostname']) ? $db_hostname = $hostname: $db_hostname = $_REQUEST['db_hostname'];
|
||
|
|
!isset($_REQUEST['db_name']) ? $db_name = "vtigercrm510" : $db_name = $_REQUEST['db_name'];
|
||
|
|
!isset($_REQUEST['db_drop_tables']) ? $db_drop_tables = "0" : $db_drop_tables = $_REQUEST['db_drop_tables'];
|
||
|
|
!isset($_REQUEST['host_name']) ? $host_name= $hostname : $host_name= $_REQUEST['host_name'];
|
||
|
|
!isset($_REQUEST['site_URL']) ? $site_URL = $web_root : $site_URL = $_REQUEST['site_URL'];
|
||
|
|
!isset($_REQUEST['root_directory']) ? $root_directory = $current_dir : $root_directory = stripslashes($_REQUEST['root_directory']);
|
||
|
|
!isset($_REQUEST['cache_dir']) ? $cache_dir = $cache_dir : $cache_dir = stripslashes($_REQUEST['cache_dir']);
|
||
|
|
!isset($_REQUEST['mail_server']) ? $mail_server = $mail_server : $mail_server = stripslashes($_REQUEST['mail_server']);
|
||
|
|
!isset($_REQUEST['mail_server_username']) ? $mail_server_username = $mail_server_username : $mail_server_username = stripslashes($_REQUEST['mail_server_username']);
|
||
|
|
!isset($_REQUEST['mail_server_password']) ? $mail_server_password = $mail_server_password : $mail_server_password = stripslashes($_REQUEST['mail_server_password']);
|
||
|
|
!isset($_REQUEST['admin_email']) ? $admin_email = "" : $admin_email = $_REQUEST['admin_email'];
|
||
|
|
}
|
||
|
|
!isset($_REQUEST['check_createdb']) ? $check_createdb = "" : $check_createdb = $_REQUEST['check_createdb'];
|
||
|
|
!isset($_REQUEST['root_user']) ? $root_user = "" : $root_user = $_REQUEST['root_user'];
|
||
|
|
!isset($_REQUEST['root_password']) ? $root_password = "" : $root_password = $_REQUEST['root_password'];
|
||
|
|
!isset($_REQUEST['create_utf8_db'])? $create_utf8_db = "true" : $create_utf8_db = $_REQUEST['create_utf8_db'];
|
||
|
|
// determine database options
|
||
|
|
|
||
|
|
if(isset($_REQUEST['selected_modules'])) {
|
||
|
|
$_SESSION['selectedOptionalModules'] = $_REQUEST['selected_modules'] ;
|
||
|
|
}
|
||
|
|
|
||
|
|
$db_options = array();
|
||
|
|
if(function_exists('mysql_connect')) {
|
||
|
|
$db_options['mysql'] = 'MySQL';
|
||
|
|
}
|
||
|
|
if(function_exists('pg_connect')) {
|
||
|
|
$db_options['pgsql'] = 'Postgres';
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
|
||
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
|
<title>vtiger CRM 5 - Configuration Wizard - System Configuration</title>
|
||
|
|
<link href="include/install/install.css" rel="stylesheet" type="text/css">
|
||
|
|
<link href="themes/softed/style.css" rel="stylesheet" type="text/css">
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body class="small cwPageBg" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
|
||
|
|
<style>
|
||
|
|
.hide_tab{display:none;}
|
||
|
|
.show_div{}
|
||
|
|
</style>
|
||
|
|
|
||
|
|
<script type="text/javascript" language="Javascript">
|
||
|
|
|
||
|
|
function fnShow_Hide(){
|
||
|
|
var sourceTag = document.getElementById('check_createdb').checked;
|
||
|
|
if(sourceTag){
|
||
|
|
document.getElementById('root_user').className = 'show_div';
|
||
|
|
document.getElementById('root_pass').className = 'show_div';
|
||
|
|
document.getElementById('create_db_config').className = 'show_div';
|
||
|
|
document.getElementById('root_user_txtbox').focus();
|
||
|
|
}
|
||
|
|
else{
|
||
|
|
document.getElementById('root_user').className = 'hide_tab';
|
||
|
|
document.getElementById('root_pass').className = 'hide_tab';
|
||
|
|
document.getElementById('create_db_config').className = 'hide_tab';
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function trim(s) {
|
||
|
|
while (s.substring(0,1) == " ") {
|
||
|
|
s = s.substring(1, s.length);
|
||
|
|
}
|
||
|
|
while (s.substring(s.length-1, s.length) == ' ') {
|
||
|
|
s = s.substring(0,s.length-1);
|
||
|
|
}
|
||
|
|
|
||
|
|
return s;
|
||
|
|
}
|
||
|
|
|
||
|
|
function verify_data(form) {
|
||
|
|
var isError = false;
|
||
|
|
var errorMessage = "";
|
||
|
|
// Here we decide whether to submit the form.
|
||
|
|
if (trim(form.db_hostname.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n database host name";
|
||
|
|
form.db_hostname.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.db_username.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n database user name";
|
||
|
|
form.db_username.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.db_name.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n database name";
|
||
|
|
form.db_name.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.site_URL.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n site url";
|
||
|
|
form.site_URL.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.root_directory.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n path";
|
||
|
|
form.root_directory.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.admin_password.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n admin password";
|
||
|
|
form.admin_password.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.admin_email.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n user email";
|
||
|
|
form.admin_email.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.standarduser_password.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n standarduser password";
|
||
|
|
form.standarduser_password.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.standarduser_email.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n standarduser email";
|
||
|
|
form.standarduser_email.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.cache_dir.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n temp directory path";
|
||
|
|
form.cache_dir.focus();
|
||
|
|
}
|
||
|
|
if (trim(form.currency_name.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n currency name";
|
||
|
|
form.currency_name.focus();
|
||
|
|
}
|
||
|
|
|
||
|
|
if(document.getElementById('check_createdb').checked == true)
|
||
|
|
{
|
||
|
|
if (trim(form.root_user.value) =='') {
|
||
|
|
isError = true;
|
||
|
|
errorMessage += "\n root username";
|
||
|
|
form.root_user.focus();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Here we decide whether to submit the form.
|
||
|
|
if (isError == true) {
|
||
|
|
alert("Missing required fields:" + errorMessage);
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
if (trim(form.admin_email.value) != "" && !/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(form.admin_email.value)) {
|
||
|
|
alert("The email id \'"+form.admin_email.value+"\' in the email field is invalid");
|
||
|
|
form.admin_email.focus();
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
if (trim(form.standarduser_email.value) != "" && !/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(form.standarduser_email.value)) {
|
||
|
|
alert("The email id \'"+form.standarduser_email.value+"\' in the standard user email field is invalid");
|
||
|
|
form.standarduser_email.focus();
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
var SiteUrl = form.site_URL.value;
|
||
|
|
if(SiteUrl.indexOf("localhost") > -1 && SiteUrl.indexOf("localhost") < 10)
|
||
|
|
{
|
||
|
|
if(confirm("Specify the exact host name instead of \"localhost\" in Site URL field, otherwise you will experience some issues while working with vtiger plug-ins. Do you wish to Continue?"))
|
||
|
|
{
|
||
|
|
form.submit();
|
||
|
|
}else
|
||
|
|
{
|
||
|
|
form.site_URL.select();
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}else
|
||
|
|
{
|
||
|
|
form.submit();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
// end hiding contents from old browsers -->
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<br>
|
||
|
|
<!-- Table for cfgwiz starts -->
|
||
|
|
|
||
|
|
<table border=0 cellspacing=0 cellpadding=0 width=85% align=center>
|
||
|
|
<tr>
|
||
|
|
<td class="cwHeadBg" align=left><img src="include/install/images/configwizard.gif" alt="Configuration Wizard" hspace="20" title="Configuration Wizard"></td>
|
||
|
|
<td class="cwHeadBg1" align=right><img src="include/install/images/vtigercrm5.gif" alt="vtiger CRM 5" title="vtiger CRM 5"></td>
|
||
|
|
<td class="cwHeadBg1" width=2%></td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
<table border=0 cellspacing=0 cellpadding=0 width=85% align=center>
|
||
|
|
<tr>
|
||
|
|
<td background="include/install/images/topInnerShadow.gif" align=left><img height="10" src="include/install/images/topInnerShadow.gif" ></td>
|
||
|
|
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
<table border=0 cellspacing=0 cellpadding=10 width=85% align=center>
|
||
|
|
<tr>
|
||
|
|
<td class="small" bgcolor="#4572BE" align=center>
|
||
|
|
<!-- Master display -->
|
||
|
|
<table border=0 cellspacing=0 cellpadding=0 width=97%>
|
||
|
|
<tr>
|
||
|
|
<td width=80% valign=top class="cwContentDisplay" align=center>
|
||
|
|
<!-- Right side tabs -->
|
||
|
|
<table border=0 cellspacing=0 cellpadding=2 width=95%>
|
||
|
|
<tr><td class=small align=left colspan=2><img src="include/install/images/confWizSysConfig.gif" alt="System Configuration" title="System Configuration"><br>
|
||
|
|
<hr noshade size=1></td></tr>
|
||
|
|
<tr valign=top >
|
||
|
|
<form action="install.php" method="post" name="installform" id="form" name="setConfig" id="form">
|
||
|
|
<input type="hidden" name="file" value="ConfirmConfig.php" />
|
||
|
|
<td align=left class="small" width=50% style="padding-left:10px">
|
||
|
|
|
||
|
|
<table width="100%" cellpadding="0" cellspacing="1" border="0" align=center class="level3"><tbody>
|
||
|
|
<tr><td colspan=4><strong>Database Information</strong><hr noshade size=1></td></tr>
|
||
|
|
<tr>
|
||
|
|
<td width="20%" nowrap >Database Type <sup><font color=red>*</font></sup></td>
|
||
|
|
<td width="30%" align="left">
|
||
|
|
<?php if(!$db_options) : ?>
|
||
|
|
No Database Support Detected
|
||
|
|
<?php elseif(count($db_options) == 1) : ?>
|
||
|
|
<?php list($db_type, $label) = each($db_options); ?>
|
||
|
|
<input type="hidden" name="db_type" value="<?php echo $db_type ?>"><?php echo $label ?>
|
||
|
|
<?php else : ?>
|
||
|
|
<select class="small" length=40 name="db_type">
|
||
|
|
<?php foreach($db_options as $db_option_type => $label) : ?>
|
||
|
|
<option value="<?php echo $db_option_type ?>" <?php if(isset($db_type) && $db_type == $db_option_type) { echo "SELECTED"; } ?>><?php echo $label ?></option>
|
||
|
|
<?php endforeach; ?>
|
||
|
|
</select>
|
||
|
|
<?php endif; ?>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td width="25%" nowrap >Host Name <sup><font color=red>*</font></sup></td>
|
||
|
|
<td width="75%" align="left"><input type="text" class="small" name="db_hostname" value="<?php if (isset($db_hostname)) echo "$db_hostname"; ?>" />
|
||
|
|
<a href="http://www.vtiger.com/products/crm/help/5.1.0/vtiger_CRM_Database_Hostname.pdf" target="_blank">More...</a></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td nowrap>User Name <sup><font color=red>*</font></sup></td>
|
||
|
|
<td align="left"><input type="text" class="small" name="db_username" value="<?php if (isset($db_username)) echo "$db_username"; ?>" /></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td nowrap>Password</td>
|
||
|
|
<td align="left"><input type="password" class="small" name="db_password" value="<?php if (isset($db_password)) echo "$db_password"; ?>" /></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td nowrap>Database Name <sup><font color=red>*</font></sup></td>
|
||
|
|
<td align="left" width='30%'><input type="text" class="small" name="db_name" value="<?php if (isset($db_name)) echo "$db_name"; ?>" />
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td colspan=2>
|
||
|
|
<?php if($check_createdb == 'on')
|
||
|
|
{?>
|
||
|
|
<input class="small" name="check_createdb" type="checkbox" id="check_createdb" checked onClick="fnShow_Hide()"/>
|
||
|
|
<?php }else{?>
|
||
|
|
<input class="small" name="check_createdb" type="checkbox" id="check_createdb" onClick="fnShow_Hide()"/>
|
||
|
|
<?php } ?>
|
||
|
|
Create Database ( Will drop if the database if exists)</td>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr id="root_user" class="hide_tab">
|
||
|
|
<td nowrap="nowrap" width="20%">Root Username<sup><font color="red">*</font></sup></td>
|
||
|
|
<td align="left" width="30%"><input class="small" name="root_user" id="root_user_txtbox" value="<?php echo $root_user;?>" type="text"></td>
|
||
|
|
</tr>
|
||
|
|
<tr id="root_pass" class="hide_tab">
|
||
|
|
<td nowrap="nowrap" width="20%">Root Password</td>
|
||
|
|
<td align="left" width="30%"><input class="small" name="root_password" value="<?php echo $root_password;?>" type="password"></td>
|
||
|
|
</tr>
|
||
|
|
<tr id="create_db_config" class="hide_tab">
|
||
|
|
<td nowrap="nowrap">UTF-8 Support</td>
|
||
|
|
<td align="left" colspan=3><input class="small" type="checkbox" id="create_utf8_db" name="create_utf8_db" <?php if($create_utf8_db == 'true') echo "checked"; ?> /> <!-- DEFAULT CHARACTER SET utf8, DEFAULT COLLATE utf8_general_ci --></td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
<br>
|
||
|
|
</td>
|
||
|
|
<td align=left class="small" width=50% style="padding-left:20px">
|
||
|
|
<!-- Web site configuration -->
|
||
|
|
<table width="100%" cellpadding="0" border="0" cellspacing="1" align=center class="level3"><tbody>
|
||
|
|
<tr>
|
||
|
|
<td colspan=2><strong>CRM Configuration</strong><hr noshade size=1></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td width="20%" >URL <sup><font color=red>*</font></sup></td>
|
||
|
|
<td width="80%" align="left"><input class="small" type="text" name="site_URL"
|
||
|
|
value="<?php if (isset($site_URL)) echo $site_URL; ?>" size="40" />
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td nowrap width=20% >Currency Name<sup><font color=red>*</font></sup></td>
|
||
|
|
<td width=80% align="left">
|
||
|
|
<select class="small" id='currency_name' name='currency_name''>
|
||
|
|
<?php
|
||
|
|
foreach($currencies as $index=>$value){
|
||
|
|
if(isset($currency_name)){
|
||
|
|
if($index==$currency_name){
|
||
|
|
echo "<option value='$index' selected>$index(".$value[1].")</option>";
|
||
|
|
}
|
||
|
|
else{
|
||
|
|
echo "<option value='$index'>$index(".$value[1].")</option>";
|
||
|
|
}
|
||
|
|
} else
|
||
|
|
{
|
||
|
|
if($index=='USA, Dollars'){
|
||
|
|
echo "<option value='$index' selected>$index(".$value[1].")</option>";
|
||
|
|
} else {
|
||
|
|
echo "<option value='$index'>$index(".$value[1].")</option>";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
</select>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<input type="hidden" name="root_directory" value="<?php if (isset($root_directory)) echo "$root_directory"; ?>" size="40" />
|
||
|
|
<input type="hidden" name="cache_dir" size='40' value="<?php if (isset($cache_dir)) echo $cache_dir; ?>" size="40" />
|
||
|
|
</table>
|
||
|
|
<br>
|
||
|
|
|
||
|
|
<!-- Admin Configuration -->
|
||
|
|
<table width="100%" cellpadding="0" border="0" align=center class="level3" cellspacing="1" >
|
||
|
|
<tr>
|
||
|
|
<td colspan=3><strong>User Configuration</strong><hr noshade size=1></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td nowrap width=20% >Username</td>
|
||
|
|
<td width=40% align="left">admin</td>
|
||
|
|
<td width=40% align="left">standarduser</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td nowrap>Password<sup><font color=red>*</font></sup></td>
|
||
|
|
<td align="left"><input class="small" size=15 type="password" name="admin_password" value="<?php if (isset($admin_password)) echo "$admin_password"; else echo "admin"; ?>"></td>
|
||
|
|
<td align="left"><input class="small" size=15 type="password" name="standarduser_password" value="<?php if (isset($stand_password)) echo "$stand_password"; else echo "standarduser"; ?>"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td nowrap>Email<sup><font color=red>*</font></sup></td>
|
||
|
|
<td align="left"><input class="small" size=15 type="text" name="admin_email" value="<?php if (isset($admin_email)) echo "$admin_email"; ?>"></td>
|
||
|
|
<td align="left"><input class="small" size=15 type="text" name="standarduser_email" value="<?php if (isset($stand_email)) echo "$stand_email"; ?>"></td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<!-- System Configuration -->
|
||
|
|
</td>
|
||
|
|
</form>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td align="left">
|
||
|
|
<input type="image" src="include/install/images/cwBtnBack.gif" id="back" alt="Back" border="0" title="Back" onClick="window.history.back();" />
|
||
|
|
</td>
|
||
|
|
<td align="right">
|
||
|
|
<input type="image" src="include/install/images/cwBtnNext.gif" id="starttbn" alt="Next" border="0" title="Next" onClick="return verify_data(window.document.installform);" />
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
<!-- Master display stops -->
|
||
|
|
<br>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
<table border=0 cellspacing=0 cellpadding=0 width=85% align=center>
|
||
|
|
<tr>
|
||
|
|
|
||
|
|
<td background="include/install/images/bottomGradient.gif"><img src="include/install/images/bottomGradient.gif"></td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
<table border=0 cellspacing=0 cellpadding=0 width=85% align=center>
|
||
|
|
<tr>
|
||
|
|
<td align=center><img src="include/install/images/bottomShadow.jpg"></td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
<table border=0 cellspacing=0 cellpadding=0 width=85% align=center>
|
||
|
|
|
||
|
|
<tr>
|
||
|
|
<td class=small align=center> <a href="http://www.vtiger.com" target="_blank">www.vtiger.com</a></td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
<script>
|
||
|
|
fnShow_Hide();
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|