]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - install/installSystemCheck.php
Release 6.4.0
[Github/sugarcrm.git] / install / installSystemCheck.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-2011 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 $_SESSION['setup_license_accept'] = true;
40
41 function runCheck($install_script = false, $mod_strings){
42 installLog("Begin System Check Process *************");
43
44 if( !isset( $install_script ) || !$install_script ){
45     installLog("Error:: ".$mod_strings['ERR_NO_DIRECT_SCRIPT']);
46     die($mod_strings['ERR_NO_DIRECT_SCRIPT']);
47 }
48
49 if(!defined('SUGARCRM_MIN_MEM')) {
50     define('SUGARCRM_MIN_MEM', 40);
51 }
52
53
54
55 // for keeping track of whether to enable/disable the 'Next' button
56 $error_found = false;
57 $error_txt = '';
58
59
60 // check IIS and FastCGI
61 $server_software = $_SERVER["SERVER_SOFTWARE"];
62 if ((strpos($_SERVER["SERVER_SOFTWARE"],'Microsoft-IIS') !== false)
63     && php_sapi_name() == 'cgi-fcgi'
64     && ini_get('fastcgi.logging') != '0')
65 {
66     installLog($mod_strings['ERR_CHECKSYS_FASTCGI_LOGGING']);
67     $iisVersion = "<b><span class=stop>{$mod_strings['ERR_CHECKSYS_FASTCGI_LOGGING']}</span></b>";
68     $error_found = true;
69     $error_txt .= '
70           <tr>
71             <td><b>'.$mod_strings['LBL_CHECKSYS_FASTCGI'].'</b></td>
72             <td ><span class="error">'.$iisVersion.'</span></td>
73           </tr>';
74 }
75
76 if(strpos($server_software,'Microsoft-IIS') !== false)
77 {
78         $iis_version = '';
79         if(preg_match_all("/^.*\/(\d+\.?\d*)$/",  $server_software, $out))
80         $iis_version = $out[1][0];
81
82         $check_iis_version_result = check_iis_version($iis_version);
83         if($check_iis_version_result == -1) {
84                 installLog($mod_strings['ERR_CHECKSYS_IIS_INVALID_VER'].' '.$iis_version);
85         $iisVersion = "<b><span class=stop>{$mod_strings['ERR_CHECKSYS_IIS_INVALID_VER']} {$iis_version}</span></b>";
86                 $error_found = true;
87         $error_txt .= '
88           <tr>
89             <td><b>'.$mod_strings['LBL_CHECKSYS_IISVER'].'</b></td>
90             <td ><span class="error">'.$iisVersion.'</span></td>
91           </tr>';
92         } else if(php_sapi_name() != 'cgi-fcgi')
93         {
94                 installLog($mod_strings['ERR_CHECKSYS_FASTCGI'].' '.$iis_version);
95                 $iisVersion = "<b><span class=stop>{$mod_strings['ERR_CHECKSYS_FASTCGI']}</span></b>";
96                 $error_found = true;
97         $error_txt .= '
98           <tr>
99             <td><b>'.$mod_strings['LBL_CHECKSYS_FASTCGI'].'</b></td>
100             <td ><span class="error">'.$iisVersion.'</span></td>
101           </tr>';
102         } else if(ini_get('fastcgi.logging') != '0')
103     {
104         installLog($mod_strings['ERR_CHECKSYS_FASTCGI_LOGGING'].' '.$iis_version);
105                 $iisVersion = "<b><span class=stop>{$mod_strings['ERR_CHECKSYS_FASTCGI_LOGGING']}</span></b>";
106                 $error_found = true;
107         $error_txt .= '
108           <tr>
109             <td><b>'.$mod_strings['LBL_CHECKSYS_FASTCGI'].'</b></td>
110             <td ><span class="error">'.$iisVersion.'</span></td>
111           </tr>';
112     }
113 }
114
115 // PHP VERSION
116 $php_version = constant('PHP_VERSION');
117 $check_php_version_result = check_php_version($php_version);
118
119 if($check_php_version_result == -1) {
120         installLog($mod_strings['ERR_CHECKSYS_PHP_INVALID_VER'].'  '.$php_version);
121         $phpVersion = "<b><span class=stop>{$mod_strings['ERR_CHECKSYS_PHP_INVALID_VER']} {$php_version} )</span></b>";
122         $error_found = true;
123         $error_txt .= '
124           <tr>
125             <td><b>'.$mod_strings['LBL_CHECKSYS_PHPVER'].'</b></td>
126             <td ><span class="error">'.$phpVersion.'</span></td>
127           </tr>';
128
129 }
130
131 //Php Backward compatibility checks
132 if(ini_get("zend.ze1_compatibility_mode")) {
133     installLog($mod_strings['LBL_BACKWARD_COMPATIBILITY_ON'].'  '.'Php Backward Compatibility');
134     $phpCompatibility = "<b><span class=stop>{$mod_strings['LBL_BACKWARD_COMPATIBILITY_ON']}</span></b>";
135     $error_found = true;
136     $error_txt .= '
137       <tr>
138         <td><b>Php Backward Compatibility</b></td>
139         <td ><span class="error">'.$phpCompatibility.'</span></td>
140       </tr>';
141
142 }
143
144 // database and connect
145
146 if (!empty($_REQUEST['setup_db_type']))
147     $_SESSION['setup_db_type'] = $_REQUEST['setup_db_type'];
148
149 $drivers = DBManagerFactory::getDbDrivers();
150
151 if( empty($drivers) ){
152     $db_name = $mod_strings['LBL_DB_UNAVAILABLE'];
153     installLog("ERROR:: {$mod_strings['LBL_CHECKSYS_DB_SUPPORT_NOT_AVAILABLE']}");
154     $dbStatus = "<b><span class=stop>{$mod_strings['LBL_CHECKSYS_DB_SUPPORT_NOT_AVAILABLE']}</span></b>";
155     $error_found = true;
156     $error_txt .= '
157       <tr>
158         <td><strong>'.$db_name.'</strong></td>
159         <td class="error">'.$dbStatus.'</td>
160       </tr>';
161 }
162
163 // XML Parsing
164 if(!function_exists('xml_parser_create')) {
165     $xmlStatus = "<b><span class=stop>{$mod_strings['LBL_CHECKSYS_XML_NOT_AVAILABLE']}</span></b>";
166     installLog("ERROR:: {$mod_strings['LBL_CHECKSYS_XML_NOT_AVAILABLE']}");
167     $error_found = true;
168     $error_txt .= '
169       <tr>
170         <td><strong>'.$mod_strings['LBL_CHECKSYS_XML'].'</strong></td>
171         <td class="error">'.$xmlStatus.'</td>
172       </tr>';
173 }else{
174     installLog("XML Parsing Support Found");
175 }
176
177
178 // mbstrings
179 if(!function_exists('mb_strlen')) {
180     $mbstringStatus = "<b><span class=stop>{$mod_strings['ERR_CHECKSYS_MBSTRING']}</font></b>";
181     installLog("ERROR:: {$mod_strings['ERR_CHECKSYS_MBSTRING']}");
182     $error_found = true;
183     $error_txt .= '
184       <tr>
185         <td><strong>'.$mod_strings['LBL_CHECKSYS_MBSTRING'].'</strong></td>
186         <td class="error">'.$mbstringStatus.'</td>
187       </tr>';
188 }else{
189     installLog("MBString Support Found");
190 }
191
192 // zip
193 if(!class_exists('ZipArchive')) {
194     $zipStatus = "<b><span class=stop>{$mod_strings['ERR_CHECKSYS_ZIP']}</font></b>";
195     installLog("ERROR:: {$mod_strings['ERR_CHECKSYS_ZIP']}");
196 }else{
197     installLog("ZIP Support Found");
198 }
199
200 // config.php
201 if(file_exists('./config.php') && (!(make_writable('./config.php')) ||  !(is_writable('./config.php')))) {
202     installLog("ERROR:: {$mod_strings['ERR_CHECKSYS_CONFIG_NOT_WRITABLE']}");
203     $configStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_CONFIG_NOT_WRITABLE']}</span></b>";
204     $error_found = true;
205     $error_txt .= '
206       <tr>
207         <td><strong>'.$mod_strings['LBL_CHECKSYS_CONFIG'].'</strong></td>
208         <td class="error">'.$configStatus.'</td>
209       </tr>';
210 }
211
212 // custom dir
213 if(!make_writable('./custom')) {
214     $customStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_CUSTOM_NOT_WRITABLE']}</font></b>";
215     installLog("ERROR:: {$mod_strings['ERR_CHECKSYS_CUSTOM_NOT_WRITABLE']}");
216     $error_found = true;
217     $error_txt .= '
218       <tr>
219         <td><strong>'.$mod_strings['LBL_CHECKSYS_CUSTOM'].'</strong></td>
220         <td class="error">'.$customStatus.'</td>
221       </tr>';
222 }else{
223  installLog("/custom directory and subdirectory check passed");
224 }
225
226
227 // cache dir
228     $cache_files[] = '';
229     $cache_files[] = 'images';
230     $cache_files[] = 'layout';
231     $cache_files[] = 'pdf';
232     $cache_files[] = 'xml';
233     $cache_files[] = 'include/javascript';
234     $filelist = '';
235
236         foreach($cache_files as $c_file)
237         {
238                 $dirname = sugar_cached($c_file);
239                 $ok = false;
240                 if ((is_dir($dirname)) || @sugar_mkdir($dirname,0555)) // set permissions to restrictive - use make_writable to change in a standard way to the required permissions
241                 {
242                         $ok = make_writable($dirname);
243                 }
244                 if (!$ok)
245                 {
246                         $filelist .= '<br>'.getcwd()."/$dirname";
247
248                 }
249         }
250         if (strlen($filelist)>0)
251         {
252             $error_found = true;
253         installLog("ERROR:: Some subdirectories in cache subfolder were not read/writeable:");
254         installLog($filelist);
255             $error_txt .= '
256                 <tr>
257                 <td><strong>'.$mod_strings['LBL_CHECKSYS_CACHE'].'</strong></td>
258                 <td align="right" class="error" class="error"><b><span class="stop">'.$mod_strings['ERR_CHECKSYS_FILES_NOT_WRITABLE'].'</span></b></td>
259                 </tr>
260                 <tr>
261                 <td colspan="2"><b>'.$mod_strings['LBL_CHECKSYS_FIX_FILES'].'</b>'.$filelist. '</td>
262                 </tr>';
263         }else{
264      installLog("cache directory and subdirectory check passed");
265     }
266
267
268 // check modules dir
269 $_SESSION['unwriteable_module_files'] = array();
270 //if(!$writeableFiles['ret_val']) {
271 $passed_write = recursive_make_writable('./modules');
272 if (isset($_SESSION['unwriteable_module_files']['failed']) && $_SESSION['unwriteable_module_files']['failed']){
273     $passed_write = false;
274 }
275
276 if(!$passed_write) {
277
278     $moduleStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_NOT_WRITABLE']}</span></b>";
279     installLog("ERROR:: Module directories and the files under them are not writeable.");
280     $error_found = true;
281     $error_txt .= '
282       <tr>
283         <td><strong>'.$mod_strings['LBL_CHECKSYS_MODULE'].'</strong></td>
284         <td align="right" class="error">'.$moduleStatus.'</td>
285       </tr>';
286
287         //list which module directories are not writeable, if there are less than 10
288         $error_txt .= '
289           <tr>
290             <td colspan="2">
291             <b>'.$mod_strings['LBL_CHECKSYS_FIX_MODULE_FILES'].'</b>';
292         foreach($_SESSION['unwriteable_module_files'] as $key=>$file){
293             if($key !='.' && $key != 'failed'){
294                 $error_txt .='<br>'.$file;
295             }
296         }
297         $error_txt .= '
298             </td>
299           </tr>';
300
301 }else{
302  installLog("/module  directory and subdirectory check passed");
303 }
304
305 // check upload dir
306 if (!make_writable('./upload'))
307 {
308     $uploadStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_NOT_WRITABLE']}</span></b>";
309     installLog("ERROR: Upload directory is not writable.");
310     $error_found = true;
311     $error_txt .= '
312     <tr>
313         <td><strong>'.$mod_strings['LBL_CHECKSYS_UPLOAD'].'</strong></td>
314         <td align="right" class="error">'.$uploadStatus.'</td>
315     </tr>';
316 } else {
317     installLog("/upload directory check passed");
318 }
319
320
321 // PHP.ini
322 $phpIniLocation = get_cfg_var("cfg_file_path");
323 installLog("php.ini location found. {$phpIniLocation}");
324 // disable form if error found
325
326 if($error_found){
327     installLog("Outputting HTML for System check");
328     installLog("Errors were found *************");
329     $disabled = $error_found ? 'disabled="disabled"' : '';
330
331     $help_url = get_help_button_url();
332 ///////////////////////////////////////////////////////////////////////////////
333 ////    BEGIN PAGE OUTPUT
334     $out =<<<EOQ
335
336   <table cellspacing="0" cellpadding="0" border="0" align="center" class="shell">
337     <tr>
338       <th width="400">{$mod_strings['LBL_CHECKSYS_TITLE']}</th>
339       <th width="200" height="30" style="text-align: right;"><a href="http://www.sugarcrm.com" target=
340       "_blank"><IMG src="include/images/sugarcrm_login.png" width="145" height="30" alt="SugarCRM" border="0"></a>
341        <br><a href="{$help_url}" target='_blank'>{$mod_strings['LBL_HELP']} </a>
342        </th>
343     </tr>
344
345     <tr>
346       <td colspan="2" width="600">
347         <p>{$mod_strings['ERR_CHECKSYS']}</p>
348
349         <table cellpadding="0" cellspacing="0" border="0" width="100%" class="StyleDottedHr">
350           <tr>
351             <th align="left">{$mod_strings['LBL_CHECKSYS_COMPONENT']}</th>
352             <th style="text-align: right;">{$mod_strings['LBL_CHECKSYS_STATUS']}</th>
353           </tr>
354             $error_txt
355
356         </table>
357
358         <div align="center" style="margin: 5px;">
359           <i>{$mod_strings['LBL_CHECKSYS_PHP_INI']}<br>{$phpIniLocation}</i>
360         </div>
361       </td>
362     </tr>
363
364     <tr>
365       <td align="right" colspan="2">
366         <hr>
367         <form action="install3.php" method="post" name="theForm" id="theForm">
368
369         <table cellspacing="0" cellpadding="0" border="0" class="stdTable">
370           <tr>
371             <td><input class="button" type="button" onclick="window.open('http://www.sugarcrm.com/forums/');" value="{$mod_strings['LBL_HELP']}" /></td>
372             <td>
373                 <input class="button" type="button" name="Re-check" value="{$mod_strings['LBL_CHECKSYS_RECHECK']}" onclick="callSysCheck();" id="button_next2"/>
374             </td>
375           </tr>
376         </table>
377         </form>
378       </td>
379     </tr>
380   </table><br>
381 EOQ;
382 return $out;
383 }else{
384     installLog("Outputting HTML for System check");
385     installLog("No Errors were found *************");
386  return 'passed';
387 }
388
389 }
390 ////    END PAGEOUTPUT
391 ///////////////////////////////////////////////////////////////////////////////
392 ?>