init
This commit is contained in:
465
install/dbConfig_a.php
Normal file
465
install/dbConfig_a.php
Normal file
@@ -0,0 +1,465 @@
|
||||
<?php
|
||||
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
||||
/*********************************************************************************
|
||||
* SugarCRM Community Edition is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
|
||||
global $sugar_version, $js_custom_version;
|
||||
|
||||
|
||||
if(empty($_SESSION['setup_db_host_name'])){
|
||||
$_SESSION['setup_db_host_name'] = (isset($sugar_config['db_host_name'])) ? $sugar_config['db_host_name'] : $_SERVER['SERVER_NAME'];
|
||||
}
|
||||
|
||||
if( !isset( $install_script ) || !$install_script ){
|
||||
die($mod_strings['ERR_NO_DIRECT_SCRIPT']);
|
||||
}
|
||||
|
||||
|
||||
// DB split
|
||||
$oci8sid = '';
|
||||
$createDbCheckbox = '';
|
||||
$createDb = (isset($_SESSION['setup_db_create_database']) && !empty($_SESSION['setup_db_create_database'])) ? 'checked="checked"' : '';
|
||||
$dropCreate = (isset($_SESSION['setup_db_drop_tables']) && !empty($_SESSION['setup_db_drop_tables'])) ? 'checked="checked"' : '';
|
||||
$instanceName = '';
|
||||
if (isset($_SESSION['setup_db_host_instance']) && !empty($_SESSION['setup_db_host_instance'])){
|
||||
$instanceName = $_SESSION['setup_db_host_instance'];
|
||||
}
|
||||
|
||||
if($_SESSION['setup_db_type'] == 'oci8') {
|
||||
}else {
|
||||
|
||||
$host_lbl = $mod_strings['LBL_DBCONF_HOST_NAME'];
|
||||
if($_SESSION['setup_db_type'] == 'mssql') {
|
||||
$host_lbl = $mod_strings['LBL_DBCONF_HOST_NAME_MSSQL'];
|
||||
}
|
||||
|
||||
$dbSplit1 = '<tr><td colspan="3" align="left">'.$mod_strings['LBL_DBCONFIG_MSG2'].' </td></tr>
|
||||
<tr>
|
||||
<td><span class="required">*</span></td>
|
||||
<td nowrap><b>'.$host_lbl.'</b></td>
|
||||
<td align="left">
|
||||
<input type="text" name="setup_db_host_name" id="setup_db_host_name" value="'.$_SESSION['setup_db_host_name'].'" />';
|
||||
if (isset($_SESSION['setup_db_type']) && $_SESSION['setup_db_type'] =='mssql'){
|
||||
$dbSplit1 .= ' \ <input type="text" name="setup_db_host_instance" id="setup_db_host_instance" value="'.$instanceName.'" />';
|
||||
}
|
||||
$dbSplit1 .= '</td>
|
||||
</tr>';
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//// BEGIN PAGE OUTPUT
|
||||
|
||||
$out =<<<EOQ
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="Content-Script-Type" content="text/javascript">
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<title>{$mod_strings['LBL_WIZARD_TITLE']} {$mod_strings['LBL_DBCONF_TITLE']}</title>
|
||||
<link rel="stylesheet" href="install/install.css" type="text/css" />
|
||||
<script type="text/javascript" src="install/installCommon.js"></script>
|
||||
<script type="text/javascript" src="install/dbConfig.js"></script>
|
||||
<link REL="SHORTCUT ICON" HREF="include/images/sugar_icon.ico">
|
||||
<script src="include/javascript/sugar_grp1_yui.js?s={$sugar_version}&c={$js_custom_version}"></script>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
if ( YAHOO.env.ua )
|
||||
UA = YAHOO.env.ua;
|
||||
-->
|
||||
</script>
|
||||
<link rel='stylesheet' type='text/css' href='include/javascript/yui/build/container/assets/container.css' />
|
||||
|
||||
</head>
|
||||
EOQ;
|
||||
$out .= '<body onload="document.getElementById(\'button_next2\').focus();">';
|
||||
|
||||
$out2 =<<<EOQ2
|
||||
<form action="install.php" method="post" name="setConfig" id="form">
|
||||
<input type='hidden' name='setup_db_drop_tables' id='setup_db_drop_tables' value='false'>
|
||||
<input type="hidden" id="hidden_goto" name="goto" value="{$mod_strings['LBL_BACK']}" />
|
||||
<table cellspacing="0" cellpadding="0" border="0" align="center" class="shell">
|
||||
|
||||
<tr><td colspan="2" id="help"><a href="{$help_url}" target='_blank'>{$mod_strings['LBL_HELP']} </a></td></tr>
|
||||
<tr>
|
||||
<th width="500">
|
||||
<p>
|
||||
<img src="{$sugar_md}" alt="SugarCRM" border="0">
|
||||
</p>
|
||||
{$mod_strings['LBL_DBCONF_TITLE']}
|
||||
</th>
|
||||
<th width="200" height="30" style="text-align: right;"><a href="http://www.sugarcrm.com" target="_blank">
|
||||
<IMG src="include/images/sugarcrm_login.png" width="145" height="30" alt="SugarCRM" border="0"></a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div id="errorMsgs" style="display:none"></div>
|
||||
<div class="required">{$mod_strings['LBL_REQUIRED']}</div>
|
||||
<table width="100%" cellpadding="0" cellpadding="0" border="0" class="StyleDottedHr">
|
||||
<tr><th colspan="3" align="left" >{$mod_strings['LBL_DBCONF_TITLE_NAME']} </td></tr>
|
||||
|
||||
<tr><td colspan="3" align="left"> {$mod_strings['LBL_DBCONFIG_MSG3']}</td></tr>
|
||||
<tr><td width='1%'><span class="required">*</span></td>
|
||||
<td width='60%' nowrap><b>{$mod_strings['LBL_DBCONF_DB_NAME']} {$oci8sid}</b></td>
|
||||
<td width='35%' nowrap align="left">
|
||||
<input type="text" name="setup_db_database_name" value="{$_SESSION['setup_db_database_name']}"><br>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
{$dbSplit1}
|
||||
|
||||
|
||||
<tr><th colspan="3" align="left">{$mod_strings['LBL_DBCONF_TITLE_USER_INFO']} </td></tr>
|
||||
<tr><td colspan="3" align="left">{$mod_strings['LBL_DBCONFIG_B_MSG1']}</td></tr>
|
||||
<tr>
|
||||
<td><span class="required">*</span></td>
|
||||
<td nowrap><b>{$mod_strings['LBL_DBCONF_DB_ADMIN_USER']}</b></td>
|
||||
<td nowrap align="left">
|
||||
<input type="text" name="setup_db_admin_user_name" maxlength="30" value="{$_SESSION['setup_db_admin_user_name']}" autocomplete="off"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td nowrap><b>{$mod_strings['LBL_DBCONF_DB_ADMIN_PASSWORD']}</b></td>
|
||||
<td nowrap align="left"><input type="password" name="setup_db_admin_password" value="{$_SESSION['setup_db_admin_password']}" autocomplete="off" /></td></tr>
|
||||
</table>
|
||||
EOQ2;
|
||||
|
||||
//if we are installing in custom mode, include the following html
|
||||
if($_SESSION['setup_db_type'] != 'oci8' ){
|
||||
|
||||
// create / set db user dropdown
|
||||
$auto_select = '';$provide_select ='';$create_select = '';$same_select = '';
|
||||
if(isset($_SESSION['dbUSRData'])){
|
||||
// if($_SESSION['dbUSRData']=='auto') {$auto_select ='selected';}
|
||||
if($_SESSION['dbUSRData']=='provide') {$provide_select ='selected';}
|
||||
if(isset($_SESSION['install_type']) && !empty($_SESSION['install_type']) && strtolower($_SESSION['install_type'])=='custom'){
|
||||
if($_SESSION['dbUSRData']=='create') {$create_select ='selected';}
|
||||
}
|
||||
if($_SESSION['dbUSRData']=='same') {$same_select ='selected';}
|
||||
}else{
|
||||
$same_select ='selected';
|
||||
}
|
||||
$dbUSRDD = "<select name='dbUSRData' id='dbUSRData' onchange='toggleDBUser();'>";
|
||||
$dbUSRDD .= "<option value='provide' $provide_select>".$mod_strings['LBL_DBCONFIG_PROVIDE_DD']."</option>";
|
||||
$dbUSRDD .= "<option value='create' $create_select>".$mod_strings['LBL_DBCONFIG_CREATE_DD']."</option>";
|
||||
$dbUSRDD .= "<option value='same' $same_select>".$mod_strings['LBL_DBCONFIG_SAME_DD']."</option>";
|
||||
$dbUSRDD .= "</select><br> ";
|
||||
|
||||
|
||||
|
||||
|
||||
$out2 .=<<<EOQ2
|
||||
|
||||
<table width="100%" cellpadding="0" cellpadding="0" border="0" class="StyleDottedHr">
|
||||
<tr><td colspan="3" align="left"><br>{$mod_strings['LBL_DBCONFIG_SECURITY']}</td></tr>
|
||||
<tr><td width='1%'> </td><td width='60%'><div id='sugarDBUser'><b>{$mod_strings['LBL_DBCONF_SUGAR_DB_USER']}</b></div> </td><td width='35%'>$dbUSRDD</td></tr>
|
||||
</table>
|
||||
|
||||
<span id='connection_user_div' style="display:none">
|
||||
<table width="100%" cellpadding="0" cellpadding="0" border="0" class="StyleDottedHr">
|
||||
<tr>
|
||||
<td width='1%'><span class="required">*</span></td>
|
||||
<td nowrap width='60%'><b>{$mod_strings['LBL_DBCONF_SUGAR_DB_USER']}</b></td>
|
||||
<td width='35%'nowrap align="left">
|
||||
<input type="text" name="setup_db_sugarsales_user" maxlength="16" value="{$_SESSION['setup_db_sugarsales_user']}" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td nowrap><b>{$mod_strings['LBL_DBCONF_DB_PASSWORD']}</b></td>
|
||||
<td nowrap align="left"><input type="password" name="setup_db_sugarsales_password" value="{$_SESSION['setup_db_sugarsales_password']}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td nowrap><b>{$mod_strings['LBL_DBCONF_DB_PASSWORD2']}</b></td>
|
||||
<td nowrap align="left"><input type="password" name="setup_db_sugarsales_password_retype" value="{$_SESSION['setup_db_sugarsales_password_retype']}" /></td>
|
||||
</tr></table>
|
||||
</span>
|
||||
|
||||
EOQ2;
|
||||
}
|
||||
|
||||
//set demo dropdown
|
||||
//$supported_demodata = array(
|
||||
// 'en_us' => 'English (US)',
|
||||
// 'zh_cn' => '简体中文',
|
||||
// 'ja_jp' => 'Japanese - 日本語',
|
||||
//);
|
||||
$demoDD = "<select name='demoData' id='demoData'><option value='no' >".$mod_strings['LBL_NO']."</option><option value='yes'>".$mod_strings['LBL_YES']."</option>";
|
||||
//foreach($supported_demodata as $key => $v){
|
||||
// // mssql is broken for mbcs
|
||||
// if( ($_SESSION['setup_db_type'] == 'mssql') && ($key != 'en_us'))
|
||||
// continue;
|
||||
// $selected = '';
|
||||
// if($_SESSION['demoData'] == $key)
|
||||
// $selected = "selected";
|
||||
// $demoDD .="<option value='$key' $selected>".$v."</option>";
|
||||
//}
|
||||
$demoDD .= "</select><br> ";
|
||||
|
||||
|
||||
$out3 =<<<EOQ3
|
||||
<table width="100%" cellpadding="0" cellpadding="0" border="0" class="StyleDottedHr">
|
||||
<tr><th colspan="3" align="left">{$mod_strings['LBL_DBCONF_DEMO_DATA_TITLE']}</th></tr>
|
||||
<tr>
|
||||
<td width='1%'> </td>
|
||||
<td width='60%'nowrap><b>{$mod_strings['LBL_DBCONF_DEMO_DATA']}</b></td>
|
||||
<td width='35%'nowrap align="left">
|
||||
{$demoDD}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
EOQ3;
|
||||
|
||||
|
||||
$out4 =<<<EOQ4
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" colspan="2">
|
||||
<hr>
|
||||
<input type="hidden" name="current_step" value="{$next_step}">
|
||||
<table cellspacing="0" cellpadding="0" border="0" class="stdTable">
|
||||
<tr>
|
||||
<td>
|
||||
<input class="button" type="button" name="goto" value="{$mod_strings['LBL_BACK']}" id="button_back_dbConfig" onclick="document.getElementById('form').submit();" />
|
||||
</td>
|
||||
<td>
|
||||
<input class="button" type="button" name="goto" id="button_next2" value="{$mod_strings['LBL_NEXT']}" onClick="callDBCheck();"/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<br>
|
||||
|
||||
<script>
|
||||
function toggleDBUser(){
|
||||
if(typeof(document.getElementById('dbUSRData')) !='undefined'
|
||||
&& document.getElementById('dbUSRData') != null){
|
||||
|
||||
ouv = document.getElementById('dbUSRData').value;
|
||||
if(ouv == 'provide' || ouv == 'create'){
|
||||
document.getElementById('connection_user_div').style.display = '';
|
||||
document.getElementById('sugarDBUser').style.display = 'none';
|
||||
}else{
|
||||
document.getElementById('connection_user_div').style.display = 'none';
|
||||
document.getElementById('sugarDBUser').style.display = '';
|
||||
}
|
||||
}
|
||||
}
|
||||
toggleDBUser();
|
||||
|
||||
var msgPanel;
|
||||
function callDBCheck(){
|
||||
|
||||
//begin main function that will be called
|
||||
ajaxCall = function(msg_panel){
|
||||
//create success function for callback
|
||||
|
||||
getPanel = function() {
|
||||
var args = { width:"300px",
|
||||
modal:true,
|
||||
fixedcenter: true,
|
||||
constraintoviewport: false,
|
||||
underlay:"shadow",
|
||||
close:false,
|
||||
draggable:true,
|
||||
|
||||
effect:{effect:YAHOO.widget.ContainerEffect.FADE, duration:.5}
|
||||
} ;
|
||||
msg_panel = new YAHOO.widget.Panel('p_msg', args);
|
||||
|
||||
msg_panel.setHeader("{$mod_strings['LBL_LICENSE_CHKDB_HEADER']}");
|
||||
msg_panel.setBody(document.getElementById("checkingDiv").innerHTML);
|
||||
msg_panel.render(document.body);
|
||||
msgPanel = msg_panel;
|
||||
}
|
||||
|
||||
|
||||
passed = function(url){
|
||||
document.setConfig.goto.value="{$mod_strings['LBL_NEXT']}";
|
||||
document.getElementById('hidden_goto').value="{$mod_strings['LBL_NEXT']}";
|
||||
document.setConfig.current_step.value="{$next_step}";
|
||||
document.setConfig.submit();
|
||||
}
|
||||
success = function(o) {
|
||||
|
||||
//condition for just the preexisting database
|
||||
if (o.responseText.indexOf('preexeest')>=0){
|
||||
|
||||
// throw confirmation message
|
||||
msg_panel.setBody(document.getElementById("sysCheckMsg").innerHTML);
|
||||
msg_panel.render(document.body);
|
||||
msgPanel = msg_panel;
|
||||
document.getElementById('accept_btn').focus();
|
||||
//condition for no errors
|
||||
}else if (o.responseText.indexOf('dbCheckPassed')>=0){
|
||||
//make navigation
|
||||
passed("install.php?goto={$mod_strings['LBL_NEXT']}");
|
||||
|
||||
//condition for other errors
|
||||
}else{
|
||||
//turn off loading message
|
||||
msgPanel.hide();
|
||||
document.getElementById("errorMsgs").innerHTML = o.responseText;
|
||||
document.getElementById("errorMsgs").style.display = '';
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
}//end success
|
||||
|
||||
//set loading message and create url
|
||||
|
||||
postData = "checkDBSettings=true&to_pdf=1&sugar_body_only=1";
|
||||
postData += "&setup_db_database_name="+document.setConfig.setup_db_database_name.value;
|
||||
if(typeof(document.setConfig.setup_db_host_instance) != 'undefined'){
|
||||
postData += "&setup_db_host_instance="+document.setConfig.setup_db_host_instance.value;
|
||||
}
|
||||
postData += "&setup_db_host_name="+document.setConfig.setup_db_host_name.value;
|
||||
postData += "&setup_db_admin_user_name="+document.setConfig.setup_db_admin_user_name.value;
|
||||
postData += "&setup_db_admin_password="+document.setConfig.setup_db_admin_password.value;
|
||||
if(typeof(document.setConfig.setup_db_sugarsales_user) != 'undefined'){
|
||||
postData += "&setup_db_sugarsales_user="+document.setConfig.setup_db_sugarsales_user.value;
|
||||
}
|
||||
if(typeof(document.setConfig.setup_db_sugarsales_password) != 'undefined'){
|
||||
postData += "&setup_db_sugarsales_password="+document.setConfig.setup_db_sugarsales_password.value;
|
||||
}
|
||||
if(typeof(document.setConfig.setup_db_sugarsales_password_retype) != 'undefined'){
|
||||
postData += "&setup_db_sugarsales_password_retype="+document.setConfig.setup_db_sugarsales_password_retype.value;
|
||||
}
|
||||
if(typeof(document.setConfig.dbUSRData) != 'undefined'){
|
||||
postData += "&dbUSRData="+document.getElementById('dbUSRData').value;
|
||||
}
|
||||
|
||||
EOQ4;
|
||||
|
||||
$out_dd = 'postData += "&demoData="+document.setConfig.demoData.value;';
|
||||
$out5 =<<<EOQ5
|
||||
postData += "&to_pdf=1&sugar_body_only=1";
|
||||
|
||||
//if this is a call already in progress, then just return
|
||||
if(typeof ajxProgress != 'undefined'){
|
||||
return;
|
||||
}
|
||||
|
||||
getPanel();
|
||||
msgPanel.show;
|
||||
var ajxProgress = YAHOO.util.Connect.asyncRequest('POST','install.php', {success: success, failure: success}, postData);
|
||||
|
||||
|
||||
};//end ajaxCall method
|
||||
ajaxCall();
|
||||
return;
|
||||
}
|
||||
|
||||
function confirm_drop_tables(yes_no){
|
||||
|
||||
if(yes_no == true){
|
||||
document.getElementById('setup_db_drop_tables').value = true;
|
||||
//make navigation
|
||||
document.setConfig.goto.value="{$mod_strings['LBL_NEXT']}";
|
||||
document.getElementById('hidden_goto').value="{$mod_strings['LBL_NEXT']}";
|
||||
document.setConfig.current_step.value="{$next_step}";
|
||||
document.setConfig.submit();
|
||||
}else{
|
||||
//set drop tables to false
|
||||
document.getElementById('setup_db_drop_tables').value = false;
|
||||
msgPanel.hide();
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<div id="checkingDiv" style="display:none">
|
||||
<table cellspacing="0" cellpadding="0" border="0">
|
||||
<tr><td>
|
||||
<p><img src='install/processing.gif'> <br>{$mod_strings['LBL_LICENSE_CHKDB_HEADER']}</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id='sysCheckMsg' style="display:none">
|
||||
<table cellspacing="0" cellpadding="0" border="0" >
|
||||
<tr><td>
|
||||
<p>{$mod_strings['LBL_DROP_DB_CONFIRM']}</p>
|
||||
</td></tr>
|
||||
<tr><td align='center'>
|
||||
<input id='accept_btn' type='button' class='button' onclick='confirm_drop_tables(true)' value="{$mod_strings['LBL_ACCEPT']}">
|
||||
<input type='button' class='button' onclick='confirm_drop_tables(false)' id="button_cancel_dbConfig" value="{$mod_strings['LBL_CANCEL']}">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
EOQ5;
|
||||
|
||||
|
||||
|
||||
|
||||
//// END PAGE OUTPUT
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
||||
echo $out.$out2;
|
||||
echo $out3;
|
||||
echo $out4;
|
||||
echo $out_dd;
|
||||
echo $out5;
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user