mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-01-27 10:39:10 +00:00
245 lines
11 KiB
PHP
Executable file
245 lines
11 KiB
PHP
Executable file
<?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-2013 SugarCRM Inc.
|
|
*
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
|
|
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
|
|
*
|
|
* 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 and "Supercharged by SuiteCRM" logo. If the display of the logos is not
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!isset($install_script) || !$install_script) {
|
|
die($mod_strings['ERR_NO_DIRECT_SCRIPT']);
|
|
}
|
|
|
|
if (is_file("config.php")) {
|
|
if (!empty($sugar_config['default_theme'])) {
|
|
$_SESSION['site_default_theme'] = $sugar_config['default_theme'];
|
|
}
|
|
|
|
if (!empty($sugar_config['disable_persistent_connections'])) {
|
|
$_SESSION['disable_persistent_connections'] =
|
|
$sugar_config['disable_persistent_connections'];
|
|
}
|
|
if (!empty($sugar_config['default_language'])) {
|
|
$_SESSION['default_language'] = $sugar_config['default_language'];
|
|
}
|
|
if (!empty($sugar_config['translation_string_prefix'])) {
|
|
$_SESSION['translation_string_prefix'] = $sugar_config['translation_string_prefix'];
|
|
}
|
|
if (!empty($sugar_config['default_charset'])) {
|
|
$_SESSION['default_charset'] = $sugar_config['default_charset'];
|
|
}
|
|
|
|
if (!empty($sugar_config['default_currency_name'])) {
|
|
$_SESSION['default_currency_name'] = $sugar_config['default_currency_name'];
|
|
}
|
|
if (!empty($sugar_config['default_currency_symbol'])) {
|
|
$_SESSION['default_currency_symbol'] = $sugar_config['default_currency_symbol'];
|
|
}
|
|
if (!empty($sugar_config['default_currency_iso4217'])) {
|
|
$_SESSION['default_currency_iso4217'] = $sugar_config['default_currency_iso4217'];
|
|
}
|
|
|
|
if (!empty($sugar_config['rss_cache_time'])) {
|
|
$_SESSION['rss_cache_time'] = $sugar_config['rss_cache_time'];
|
|
}
|
|
if (!empty($sugar_config['languages'])) {
|
|
// We need to encode the languages in a way that can be retrieved later.
|
|
$language_keys = array();
|
|
$language_values = array();
|
|
|
|
foreach ($sugar_config['languages'] as $key=>$value) {
|
|
$language_keys[] = $key;
|
|
$language_values[] = $value;
|
|
}
|
|
|
|
$_SESSION['language_keys'] = urlencode(implode(",", $language_keys));
|
|
$_SESSION['language_values'] = urlencode(implode(",", $language_values));
|
|
}
|
|
}
|
|
|
|
//// errors
|
|
$errors = '';
|
|
if (isset($validation_errors)) {
|
|
if ((is_countable($validation_errors) ? count($validation_errors) : 0) > 0) {
|
|
$errors = '<div id="errorMsgs">';
|
|
$errors .= '<p>'.$mod_strings['LBL_SITECFG_FIX_ERRORS'].'</p><ul>';
|
|
foreach ($validation_errors as $error) {
|
|
$errors .= '<li>' . $error . '</li>';
|
|
}
|
|
$errors .= '</ul></div>';
|
|
}
|
|
}
|
|
|
|
|
|
//// ternaries
|
|
$sugarUpdates = (isset($_SESSION['setup_site_sugarbeet']) && !empty($_SESSION['setup_site_sugarbeet'])) ? 'checked="checked"' : '';
|
|
$siteSecurity = (isset($_SESSION['setup_site_defaults']) && !empty($_SESSION['setup_site_defaults'])) ? 'checked="checked"' : '';
|
|
$customSession = (isset($_SESSION['setup_site_custom_session_path']) && !empty($_SESSION['setup_site_custom_session_path'])) ? 'checked="checked"' : '';
|
|
$customLog = (isset($_SESSION['setup_site_custom_log_dir']) && !empty($_SESSION['setup_site_custom_log_dir'])) ? 'checked="checked"' : '';
|
|
$customId = (isset($_SESSION['setup_site_specify_guid']) && !empty($_SESSION['setup_site_specify_guid'])) ? 'checked="checked"' : '';
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// START OUTPUT
|
|
$langHeader = get_language_header();
|
|
$out =<<<EOQ
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html {$langHeader}>
|
|
<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_SITECFG_SECURITY_TITLE']}</title>
|
|
<link REL="SHORTCUT ICON" HREF="include/images/sugar_icon.ico">
|
|
<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/siteConfig.js"></script>
|
|
</head>
|
|
<body onload="javascript:toggleGUID();toggleSession();toggleLogDir();document.getElementById('button_next2').focus();">
|
|
<form action="install.php" method="post" name="setConfig" id="form">
|
|
<input type="hidden" name="current_step" value="{$next_step}">
|
|
<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_SITECFG_SECURITY_TITLE']}</th>
|
|
<th width="200" style="text-align: right;"> </th>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
{$errors}
|
|
<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_SITECFG_SITE_SECURITY']}</td></tr>
|
|
|
|
EOQ;
|
|
$checked = '';
|
|
//if(!empty($_SESSION['setup_site_sugarbeet_anonymous_stats'])) $checked = 'checked=""';
|
|
$out .= "
|
|
<tr style='display:none'><td></td>
|
|
<td><input type='checkbox' class='checkbox' name='setup_site_sugarbeet_anonymous_stats' value='yes' $checked /></td>
|
|
<td><b>{$mod_strings['LBL_SITECFG_ANONSTATS']}</b><br><i>{$mod_strings['LBL_SITECFG_ANONSTATS_DIRECTIONS']}</i></td></tr>
|
|
|
|
";
|
|
$checked = '';
|
|
//if(!empty($_SESSION['setup_site_sugarbeet_automatic_checks'])) $checked = 'checked=""';
|
|
$out .= <<<EOQ
|
|
<tr style='display:none'><td></td>
|
|
<td><input type="checkbox" class="checkbox" name="setup_site_sugarbeet_automatic_checks" value="yes" /></td>
|
|
<td><b>{$mod_strings['LBL_SITECFG_SUITE_UP']}</b><br><i>{$mod_strings['LBL_SITECFG_SUITE_UP_DIRECTIONS']}</i><br> </td></tr>
|
|
<tbody id="setup_site_session_section_pre">
|
|
<tr><td></td>
|
|
<td><input type="checkbox" class="checkbox" name="setup_site_custom_session_path" value="yes" onclick="javascript:toggleSession();" {$customSession} /></td>
|
|
<td><b>{$mod_strings['LBL_SITECFG_CUSTOM_SESSION']}</b><br>
|
|
<em>{$mod_strings['LBL_SITECFG_CUSTOM_SESSION_DIRECTIONS']}</em><br> </td>
|
|
</tr>
|
|
</tbody>
|
|
<tbody id="setup_site_session_section">
|
|
<tr><td></td>
|
|
<td style="text-align : right;"><span class="required">*</span></td>
|
|
<td align="left">
|
|
<div><div style="width:200px;float:left"><b>{$mod_strings['LBL_SITECFG_SESSION_PATH']}</b></div>
|
|
<input type="text" name="setup_site_session_path" size='40' value="{$_SESSION['setup_site_session_path']}" /></td>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tbody id="setup_site_log_dir_pre">
|
|
<tr><td></td>
|
|
<td><input type="checkbox" class="checkbox" name="setup_site_custom_log_dir" value="yes" onclick="javascript:toggleLogDir();" {$customLog} /></td>
|
|
<td><b>{$mod_strings['LBL_SITECFG_CUSTOM_LOG']}</b><br>
|
|
<em>{$mod_strings['LBL_SITECFG_CUSTOM_LOG_DIRECTIONS']}</em><br> </td>
|
|
</tr>
|
|
</tbody>
|
|
<tbody id="setup_site_log_dir">
|
|
<tr><td></td>
|
|
<td style="text-align : right;" ><span class="required">*</span></td>
|
|
<td align="left">
|
|
<div><div style="width:200px;float:left"><b>{$mod_strings['LBL_SITECFG_LOG_DIR']}</b></div>
|
|
<input type="text" name="setup_site_log_dir" size='30' value="{$_SESSION['setup_site_log_dir']}" />
|
|
</div>
|
|
</tr>
|
|
</tbody>
|
|
<tbody id="setup_site_guid_section_pre">
|
|
<tr><td></td>
|
|
<td><input type="checkbox" class="checkbox" name="setup_site_specify_guid" value="yes" onclick="javascript:toggleGUID();" {$customId} /></td>
|
|
<td><b>{$mod_strings['LBL_SITECFG_CUSTOM_ID']}</b><br>
|
|
<em>{$mod_strings['LBL_SITECFG_CUSTOM_ID_DIRECTIONS']}</em><br> </td>
|
|
</tr>
|
|
</tbody>
|
|
<tbody id="setup_site_guid_section">
|
|
<tr><td></td>
|
|
<td style="text-align : right;"><span class="required">*</span></td>
|
|
<td align="left">
|
|
<div><div style="width:200px;float:left"><b>{$mod_strings['LBL_SITECFG_APP_ID']}</b></div>
|
|
<input type="text" name="setup_site_guid" size='30' value="{$_SESSION['setup_site_guid']}" />
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" colspan="2">
|
|
<hr>
|
|
<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_siteConfig_b" onclick="document.getElementById('form').submit();" />
|
|
<input type="hidden" name="goto" value="{$mod_strings['LBL_BACK']}" />
|
|
</td>
|
|
<td><input class="button" type="submit" id="button_next2" name="goto" value="{$mod_strings['LBL_NEXT']}" /></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<br>
|
|
</body>
|
|
</html>
|
|
|
|
EOQ;
|
|
|
|
echo $out;
|