]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/DisplayWarnings.php
Release 6.5.6
[Github/sugarcrm.git] / modules / Administration / DisplayWarnings.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40 global $db;
41 function displayAdminError($errorString){
42         $output = '<p class="error">' . $errorString .'</p>';
43                 echo $output;
44 }
45
46 if(!empty($_SESSION['display_lotuslive_alert'])){
47     displayAdminError(translate('MSG_RECONNECT_LOTUSLIVE', 'Administration'));
48 }
49
50
51
52
53 if(isset($_SESSION['rebuild_relationships'])){
54         displayAdminError(translate('MSG_REBUILD_RELATIONSHIPS', 'Administration'));
55 }
56
57 if(isset($_SESSION['rebuild_extensions'])){
58         displayAdminError(translate('MSG_REBUILD_EXTENSIONS', 'Administration'));
59 }
60
61 if (empty($license)){
62         $license=new Administration();
63         $license=$license->retrieveSettings('license');
64 }
65
66
67
68 if(!empty($_SESSION['HomeOnly'])){
69         displayAdminError(translate('FATAL_LICENSE_ALTERED', 'Administration'));
70 }
71
72 if(isset($license) && !empty($license->settings['license_msg_all'])){
73         displayAdminError(base64_decode($license->settings['license_msg_all']));
74 }
75 if ( (strpos($_SERVER["SERVER_SOFTWARE"],'Microsoft-IIS') !== false) && (php_sapi_name() == 'cgi-fcgi') && (ini_get('fastcgi.logging') != '0') ) {
76     displayAdminError(translate('LBL_FASTCGI_LOGGING', 'Administration'));
77 }
78 if(is_admin($current_user)){
79 if(!empty($_SESSION['COULD_NOT_CONNECT'])){
80         displayAdminError(translate('LBL_COULD_NOT_CONNECT', 'Administration') . ' '. $timedate->to_display_date_time($_SESSION['COULD_NOT_CONNECT']));
81 }
82 if(!empty($_SESSION['EXCEEDING_OC_LICENSES']) && $_SESSION['EXCEEDING_OC_LICENSES'] == true){
83     displayAdminError(translate('LBL_EXCEEDING_OC_LICENSES', 'Administration'));
84 }
85 if(isset($license) && !empty($license->settings['license_msg_admin'])){
86     // UUDDLRLRBA
87         $GLOBALS['log']->fatal(base64_decode($license->settings['license_msg_admin']));
88     //displayAdminError(base64_decode($license->settings['license_msg_admin']));
89         return;
90 }
91
92 //No SMTP server is set up Error.
93 $smtp_error = false;
94 $admin = new Administration();
95 $admin->retrieveSettings();
96
97 //If sendmail has been configured by setting the config variable ignore this warning
98 $sendMailEnabled = isset($sugar_config['allow_sendmail_outbound']) && $sugar_config['allow_sendmail_outbound'];
99
100 if(trim($admin->settings['mail_smtpserver']) == '' && !$sendMailEnabled) {
101     if($admin->settings['notify_on']) {
102         $smtp_error = true;
103     }
104 }
105
106 if($smtp_error) {
107     displayAdminError(translate('WARN_NO_SMTP_SERVER_AVAILABLE_ERROR','Administration'));
108 }
109
110  if(!empty($dbconfig['db_host_name']) || $sugar_config['sugar_version'] != $sugar_version ){
111                 displayAdminError(translate('WARN_REPAIR_CONFIG', 'Administration'));
112         }
113
114         if( !isset($sugar_config['installer_locked']) || $sugar_config['installer_locked'] == false ){
115                 displayAdminError(translate('WARN_INSTALLER_LOCKED', 'Administration'));
116                 }
117
118
119         if(empty($GLOBALS['sugar_config']['admin_access_control'])){
120                         if(isset($_SESSION['invalid_versions'])){
121                                 $invalid_versions = $_SESSION['invalid_versions'];
122                                 foreach($invalid_versions as $invalid){
123                                         displayAdminError(translate('WARN_UPGRADE', 'Administration'). $invalid['name'] .translate('WARN_UPGRADE2', 'Administration'));
124                                 }
125                         }
126
127                         if (isset($_SESSION['available_version'])){
128                                 if($_SESSION['available_version'] != $sugar_version)
129                                 {
130                                         displayAdminError(translate('WARN_UPGRADENOTE', 'Administration').$_SESSION['available_version_description']);
131                                 }
132                         }
133         }
134
135 //              if (!isset($_SESSION['dst_fixed']) || $_SESSION['dst_fixed'] != true) {
136 //                      $qDst = "SELECT count(*) AS dst FROM versions WHERE name = 'DST Fix'";
137 //                      $rDst = $db->query($qDst);
138 //                      $rowsDst = $db->fetchByAssoc($rDst);
139 //                      if($rowsDst['dst'] > 0) {
140 //                              $_SESSION['dst_fixed'] = true;
141 //                      } else {
142 //                              $_SESSION['dst_fixed'] = false;
143 //                              displayAdminError($app_strings['LBL_DST_NEEDS_FIXIN']);
144 //                      }
145 //
146 //              }
147
148                 if(isset($_SESSION['administrator_error']))
149                 {
150                         // Only print DB errors once otherwise they will still look broken
151                         // after they are fixed.
152                         displayAdminError($_SESSION['administrator_error']);
153                 }
154
155                 unset($_SESSION['administrator_error']);
156 }
157
158 ?>