]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - install/installSystemCheck.php
Release 6.4.0beta1
[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 // data dir
227 if(!make_writable('./data') || !make_writable('./data/upload')) {
228     $dataStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_FILES_NOT_WRITABLE']}</span></b>";
229     installLog("ERROR:: {$mod_strings['ERR_CHECKSYS_FILES_NOT_WRITABLE']}");
230     $error_found = true;
231     $error_txt .= '
232       <tr>
233         <td><strong>'.$mod_strings['LBL_CHECKSYS_DATA'].'</strong></td>
234         <td class="error">'.$dataStatus
235         .'</td>
236       </tr><tr>
237        <td colspan="2">
238             <b>'.$mod_strings['LBL_CHECKSYS_FIX_FILES'].'</b>';
239         if(!make_writable('./data')) {
240                 $error_txt .='<br>'.getcwd().'/data';
241             }
242         if(!make_writable('./data/upload')) {
243                 $error_txt .='<br>'.getcwd().'/data/upload';
244             }
245         $error_txt .= '</td>
246       </tr>';
247 }else{
248  installLog("/data/upoad directory and subdirectory check passed");
249 }
250
251
252 // cache dir
253     $cache_files[] = '';
254     $cache_files[] = 'images';
255     $cache_files[] = 'layout';
256     $cache_files[] = 'pdf';
257     $cache_files[] = 'xml';
258     $cache_files[] = 'include/javascript';
259     $filelist = '';
260
261         foreach($cache_files as $c_file)
262         {
263                 $dirname = sugar_cached($c_file);
264                 $ok = false;
265                 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
266                 {
267                         $ok = make_writable($dirname);
268                 }
269                 if (!$ok)
270                 {
271                         $filelist .= '<br>'.getcwd()."/$dirname";
272
273                 }
274         }
275         if (strlen($filelist)>0)
276         {
277             $error_found = true;
278         installLog("ERROR:: Some subdirectories in cache subfolder were not read/writeable:");
279         installLog($filelist);
280             $error_txt .= '
281                 <tr>
282                 <td><strong>'.$mod_strings['LBL_CHECKSYS_CACHE'].'</strong></td>
283                 <td align="right" class="error" class="error"><b><span class="stop">'.$mod_strings['ERR_CHECKSYS_FILES_NOT_WRITABLE'].'</span></b></td>
284                 </tr>
285                 <tr>
286                 <td colspan="2"><b>'.$mod_strings['LBL_CHECKSYS_FIX_FILES'].'</b>'.$filelist. '</td>
287                 </tr>';
288         }else{
289      installLog("cache directory and subdirectory check passed");
290     }
291
292
293 // check modules dir
294 $_SESSION['unwriteable_module_files'] = array();
295 //if(!$writeableFiles['ret_val']) {
296 $passed_write = recursive_make_writable('./modules');
297 if (isset($_SESSION['unwriteable_module_files']['failed']) && $_SESSION['unwriteable_module_files']['failed']){
298     $passed_write = false;
299 }
300
301 if(!$passed_write) {
302
303     $moduleStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_NOT_WRITABLE']}</span></b>";
304     installLog("ERROR:: Module directories and the files under them are not writeable.");
305     $error_found = true;
306     $error_txt .= '
307       <tr>
308         <td><strong>'.$mod_strings['LBL_CHECKSYS_MODULE'].'</strong></td>
309         <td align="right" class="error">'.$moduleStatus.'</td>
310       </tr>';
311
312         //list which module directories are not writeable, if there are less than 10
313         $error_txt .= '
314           <tr>
315             <td colspan="2">
316             <b>'.$mod_strings['LBL_CHECKSYS_FIX_MODULE_FILES'].'</b>';
317         foreach($_SESSION['unwriteable_module_files'] as $key=>$file){
318             if($key !='.' && $key != 'failed'){
319                 $error_txt .='<br>'.$file;
320             }
321         }
322         $error_txt .= '
323             </td>
324           </tr>';
325
326 }else{
327  installLog("/module  directory and subdirectory check passed");
328 }
329
330
331
332 // PHP.ini
333 $phpIniLocation = get_cfg_var("cfg_file_path");
334 installLog("php.ini location found. {$phpIniLocation}");
335 // disable form if error found
336
337 if($error_found){
338     installLog("Outputting HTML for System check");
339     installLog("Errors were found *************");
340     $disabled = $error_found ? 'disabled="disabled"' : '';
341
342     $help_url = get_help_button_url();
343 ///////////////////////////////////////////////////////////////////////////////
344 ////    BEGIN PAGE OUTPUT
345     $out =<<<EOQ
346
347   <table cellspacing="0" cellpadding="0" border="0" align="center" class="shell">
348     <tr>
349       <th width="400">{$mod_strings['LBL_CHECKSYS_TITLE']}</th>
350       <th width="200" height="30" style="text-align: right;"><a href="http://www.sugarcrm.com" target=
351       "_blank"><IMG src="include/images/sugarcrm_login.png" width="145" height="30" alt="SugarCRM" border="0"></a>
352        <br><a href="{$help_url}" target='_blank'>{$mod_strings['LBL_HELP']} </a>
353        </th>
354     </tr>
355
356     <tr>
357       <td colspan="2" width="600">
358         <p>{$mod_strings['ERR_CHECKSYS']}</p>
359
360         <table cellpadding="0" cellspacing="0" border="0" width="100%" class="StyleDottedHr">
361           <tr>
362             <th align="left">{$mod_strings['LBL_CHECKSYS_COMPONENT']}</th>
363             <th style="text-align: right;">{$mod_strings['LBL_CHECKSYS_STATUS']}</th>
364           </tr>
365             $error_txt
366
367         </table>
368
369         <div align="center" style="margin: 5px;">
370           <i>{$mod_strings['LBL_CHECKSYS_PHP_INI']}<br>{$phpIniLocation}</i>
371         </div>
372       </td>
373     </tr>
374
375     <tr>
376       <td align="right" colspan="2">
377         <hr>
378         <form action="install3.php" method="post" name="theForm" id="theForm">
379
380         <table cellspacing="0" cellpadding="0" border="0" class="stdTable">
381           <tr>
382             <td><input class="button" type="button" onclick="window.open('http://www.sugarcrm.com/forums/');" value="{$mod_strings['LBL_HELP']}" /></td>
383             <td>
384                 <input class="button" type="button" name="Re-check" value="{$mod_strings['LBL_CHECKSYS_RECHECK']}" onclick="callSysCheck();" id="button_next2"/>
385             </td>
386           </tr>
387         </table>
388         </form>
389       </td>
390     </tr>
391   </table><br>
392 EOQ;
393 return $out;
394 }else{
395     installLog("Outputting HTML for System check");
396     installLog("No Errors were found *************");
397  return 'passed';
398 }
399
400 }
401 ////    END PAGEOUTPUT
402 ///////////////////////////////////////////////////////////////////////////////
403 ?>