Files

137 lines
6.2 KiB
HTML
Raw Permalink Normal View History

2025-05-12 15:45:02 +00:00
<!--
/*********************************************************************************
* SugarCRM is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2010 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".
********************************************************************************/
/*********************************************************************************
********************************************************************************/
-->
<!-- BEGIN: main -->
<form name="Diagnostic" method="POST" action="index.php">
<input type="hidden" name="module" value="Administration">
<input type="hidden" name="action" value="DiagnosticRun">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td>
<input title="{MOD.LBL_DIAG_EXECUTE_BUTTON}" class="button" onclick="this.form.action.value='DiagnosticRun';" type="submit" name="button" value=" {MOD.LBL_DIAG_EXECUTE_BUTTON} " >
<input title="{MOD.LBL_DIAG_CANCEL_BUTTON}" class="button" onclick="this.form.action.value='index'; this.form.module.value='Administration'; " type="submit" name="button" value=" {MOD.LBL_DIAG_CANCEL_BUTTON} "></td>
</tr>
</table>
<BR>
<div id="table" style="visibility:visible">
<BR>
<table id="maintable" width="430" border="0" cellspacing="0" cellpadding="0" class="edit view">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="1">
{NO_MYSQL_MESSAGE}
<tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_CONFIGPHP}</slot></td>
<td ><slot><input name='configphp' class="checkbox" type="checkbox" tabindex='1' checked></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_CUSTOMDIR}</slot></td>
<td ><slot><input name='custom_dir' class="checkbox" type="checkbox" tabindex='2' checked></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_PHPINFO}</slot></td>
<td ><slot><input name='phpinfo' class="checkbox" type="checkbox" tabindex='3' checked></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_MYSQLDUMPS}</slot></td>
<td ><slot><input name='mysql_dumps' class="checkbox" type="checkbox" tabindex='4' {MYSQL_CAPABLE}></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_MYSQLSCHEMA}</slot></td>
<td ><slot><input name='mysql_schema' class="checkbox" type="checkbox" tabindex='5' {MYSQL_CAPABLE}></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_MYSQLINFO}</slot></td>
<td ><slot><input name='mysql_info' class="checkbox" type="checkbox" tabindex='6' {MYSQL_CAPABLE}></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_MD5}</slot></td>
<td ><slot><input name='md5' class="checkbox" type="checkbox" tabindex='7' onclick="md5checkboxes()" checked></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_FILESMD5}</slot></td>
<td ><slot><input name='md5filesmd5' class="checkbox" type="checkbox" tabindex='8' ></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_CALCMD5}</slot></td>
<td ><slot><input name='md5calculated' class="checkbox" type="checkbox" tabindex='9' ></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_BLBF}</slot></td>
<td ><slot><input name='beanlistbeanfiles' class="checkbox" type="checkbox" tabindex='10' checked></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_SUGARLOG}</slot></td>
<td ><slot><input name='sugarlog' class="checkbox" type="checkbox" tabindex='11' checked></slot></td>
</tr><tr>
<td scope="row"><slot>{MOD.LBL_DIAGNOSTIC_VARDEFS}</slot></td>
<td ><slot><input name='vardefs' class="checkbox" type="checkbox" tabindex='11' checked></slot></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</form>
{MYSQL_CAPABLE_CHECKBOXES}
<script type="text/javascript" language="Javascript">
var md5filesmd5_checked;
var md5calculated_checked;
function show(id) {
document.getElementById(id).style.display="block";
}
function md5checkboxes(){
if (document.Diagnostic.md5.checked == false){
md5filesmd5_checked = document.Diagnostic.md5filesmd5.checked;
md5calculated_checked = document.Diagnostic.md5calculated.checked;
document.Diagnostic.md5filesmd5.checked=false;
document.Diagnostic.md5calculated.checked=false;
document.Diagnostic.md5filesmd5.disabled=true;
document.Diagnostic.md5calculated.disabled=true;
}
else{
document.Diagnostic.md5filesmd5.disabled=false;
document.Diagnostic.md5calculated.disabled=false;
document.Diagnostic.md5filesmd5.checked=md5filesmd5_checked;
document.Diagnostic.md5calculated.checked=md5calculated_checked;
}
}
</script>
<!-- END: main -->