IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Langage PHP Discussion :

code non interpreté


Sujet :

Langage PHP

  1. #1
    Membre régulier
    Profil pro
    Inscrit en
    Décembre 2007
    Messages
    150
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2007
    Messages : 150
    Points : 90
    Points
    90
    Par défaut code non interpreté
    Bonjour;
    Aprés avoir télécharger SUGAR CRM du web, j'ai procéder à son installation sur mon pc, seulement voila; la page php ou figure les commandes d'installation comporte une erreur. ( firefox m'affiche toutes les lignes de code au lieu de les interpreter)

    Voici le code de cette page:



    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    <?php
     if(!defined('sugarEntry'))define('sugarEntry', true);
    /*********************************************************************************
     * SugarCRM is a customer relationship management program developed by
     * SugarCRM, Inc. Copyright (C) 2004 - 2009 SugarCRM Inc.
     * 
     * This program is free software; you can redistribute it and/or modify it under
     * the terms of the GNU 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 General Public License for more
     * details.
     * 
     * You should have received a copy of the GNU 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 General Public License version 3.
     * 
     * In accordance with Section 7(b) of the GNU 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".
     ********************************************************************************/
    //session_destroy();
    if (version_compare(phpversion(),'5.1.0') < 0) {
    	$msg = 'Minimum PHP version required is 5.1.0.  You are using PHP version  '. phpversion();
        die($msg);
    }
    $session_id = session_id();
    if(empty($session_id)){
    	session_start();
    }
    $GLOBALS['installing'] = true;
    define('SUGARCRM_IS_INSTALLING', $GLOBALS['installing']);
    $GLOBALS['sql_queries'] = 0;
    require_once('include/SugarLogger/LoggerManager.php');
    require_once('sugar_version.php');
    require_once('include/utils.php');
    require_once('install/install_utils.php');
    require_once('install/install_defaults.php');
    require_once('include/TimeDate.php');
    require_once('include/Localization/Localization.php');
    require_once('include/SugarTheme/SugarTheme.php');
    require_once('include/utils/LogicHook.php');
    require_once('data/SugarBean.php');
    require_once('include/entryPoint.php');
    //check to see if the script files need to be rebuilt, add needed variables to request array
        $_REQUEST['root_directory'] = getcwd();
        $_REQUEST['js_rebuild_concat'] = 'rebuild';
        require_once('jssource/minify.php');
     
    $timedate = new TimeDate();
    // cn: set php.ini settings at entry points
    setPhpIniSettings();
    $locale = new Localization();
     
    if(get_magic_quotes_gpc() == 1) {
       $_REQUEST = array_map("stripslashes_checkstrings", $_REQUEST);
       $_POST = array_map("stripslashes_checkstrings", $_POST);
       $_GET = array_map("stripslashes_checkstrings", $_GET);
    }
     
     
    $GLOBALS['log'] = LoggerManager::getLogger('SugarCRM');
    $setup_sugar_version = $sugar_version;
    $install_script = true;
     
    ///////////////////////////////////////////////////////////////////////////////
    ////	INSTALLER LANGUAGE
     
    $supportedLanguages = array(
    	'en_us'	=> 'English (US)',
    	'ja'	=> 'Japanese - 日本語',
    	'fr_fr'	=> 'French - Français',
    	'zh_cn' => 'Chinese - 简体ä¸*æ–‡',
    //	'ge_ge'	=> 'German - Deutch',
    //	'pt_br'	=> 'Portuguese (Brazil)',
    //	'es_es'	=> 'Spanish (Spain) - Español',
    );
     
    // after install language is selected, use that pack
    $default_lang = 'en_us';
    if(!isset($_POST['language']) && (!isset($_SESSION['language']) && empty($_SESSION['language']))) {
    	if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
    		$lang = parseAcceptLanguage();
    		if(isset($supportedLanguages[$lang])) {
    			$_POST['language'] = $lang;
    		} else {
    			$_POST['language'] = $default_lang;
    	    }
    	}
    }
     
    if(isset($_POST['language'])) {
    	$_SESSION['language'] = strtolower(str_replace('-','_',$_POST['language']));
    }
     
    $current_language = isset($_SESSION['language']) ? $_SESSION['language'] : $default_lang;
     
    if(file_exists("install/language/{$current_language}.lang.php")) {
    	require_once("install/language/{$current_language}.lang.php");
    } else {
    	require_once("install/language/{$default_lang}.lang.php");
    }
     
    if($current_language != 'en_us') {
    	$my_mod_strings = $mod_strings;
    	include('install/language/en_us.lang.php');
    	$mod_strings = sugarArrayMerge($mod_strings, $my_mod_strings);
    }
    ////	END INSTALLER LANGUAGE
    ///////////////////////////////////////////////////////////////////////////////
     
    //get the url for the helper link
    $help_url = get_help_button_url();
     
     
     
    //if this license print, then redirect and exit,
    if(isset($_REQUEST['page']) && $_REQUEST['page'] == 'licensePrint')
    {
        include('install/licensePrint.php');
        exit ();
    }
     
    //check to see if mysqli is enabled
    if(function_exists('mysqli_connect')){
        $_SESSION['mysql_type'] = 'mysqli';
    }
     
    //if this is a system check, then just run the check and return,
    //this is an ajax call and there is no need for further processing
    if(isset($_REQUEST['checkInstallSystem']) && ($_REQUEST['checkInstallSystem'])){
        require_once('install/installSystemCheck.php');
        echo runCheck($install_script, $mod_strings);
        return;
    }
     
    //if this is a DB Settings check, then just run the check and return,
    //this is an ajax call and there is no need for further processing
    if(isset($_REQUEST['checkDBSettings']) && ($_REQUEST['checkDBSettings'])){
        require_once('install/checkDBSettings.php');
        echo checkDBSettings();
        return;
    }
     
    //maintaining the install_type if earlier set to custom
    if(isset($_REQUEST['install_type']) && $_REQUEST['install_type'] == 'custom'){
    	$_SESSION['install_type'] = $_REQUEST['install_type'];
    }
     
    //set the default settings into session
    foreach($installer_defaults as $key =>$val){
        if(!isset($_SESSION[$key])){
            $_SESSION[$key] = $val;
        }
    }
     
    // always perform
    clean_special_arguments();
    print_debug_comment();
    $next_clicked = false;
    $next_step = 0;
     
    // use a simple array to map out the steps of the installer page flow
    $workflow = array(  'welcome.php',
                        'license.php',
                        'installType.php',
    );
     
     
     
     
     
    $workflow[] =  'systemOptions.php';
    $workflow[] = 'dbConfig_a.php';
    //$workflow[] = 'dbConfig_b.php';
     
    //define web root, which will be used as default for site_url
    if($_SERVER['SERVER_PORT']=='80'){
        $web_root = $_SERVER['SERVER_NAME'].$_SERVER['PHP_SELF'];
    }else{
        $web_root = $_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$_SERVER['PHP_SELF'];
    }
    $web_root = str_replace("/install.php", "", $web_root);
    $web_root = "http://$web_root";
     
     if(!isset($_SESSION['oc_install']) ||  $_SESSION['oc_install'] == false) {
        $workflow[] = 'siteConfig_a.php';
        if(isset($_SESSION['install_type'])  && !empty($_SESSION['install_type'])  && $_SESSION['install_type']=='custom'){
            $workflow[] = 'siteConfig_b.php';
        }
     } else {
        if(is_readable('config.php')) {
            require_once('config.php');
     
     
     
     
     
     
     
     
     
     
     
     
        }
     }
     
       // set the form's php var to the loaded config's var else default to sane settings
        if(!isset($_SESSION['setup_site_url'])  || empty($_SESSION['setup_site_url'])){
            if(isset($sugar_config['site_url']) && !empty($sugar_config['site_url'])){
                $_SESSION['setup_site_url']= $sugar_config['site_url'];
            }else{
             $_SESSION['setup_site_url']= $web_root;
            }
        }
        if(!isset($_SESSION['setup_system_name']) || empty($_SESSION['setup_system_name'])){$_SESSION['setup_system_name'] = 'SugarCRM';}
        if(!isset($_SESSION['setup_site_session_path']) || empty($_SESSION['setup_site_session_path'])){$_SESSION['setup_site_session_path']                = (isset($sugar_config['session_dir']))   ? $sugar_config['session_dir']  :  '';}
        if(!isset($_SESSION['setup_site_log_dir']) || empty($_SESSION['setup_site_log_dir'])){$_SESSION['setup_site_log_dir']                     = (isset($sugar_config['log_dir']))       ? $sugar_config['log_dir']      : '.';}
        if(!isset($_SESSION['setup_site_guid']) || empty($_SESSION['setup_site_guid'])){$_SESSION['setup_site_guid']                        = (isset($sugar_config['unique_key']))    ? $sugar_config['unique_key']   :  '';}
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
      $workflow[] = 'localization.php';
      $workflow[] = 'confirmSettings.php';
      $workflow[] = 'performSetup.php';
     
      if(!isset($_SESSION['oc_install']) ||  $_SESSION['oc_install'] == false){
        if(isset($_SESSION['install_type'])  && !empty($_SESSION['install_type'])  && $_SESSION['install_type']=='custom'){
            //$workflow[] = 'download_patches.php';
            $workflow[] = 'download_modules.php';
        }
      }
     
        $workflow[] = 'register.php';
     
     
    // increment/decrement the workflow pointer
    if(!empty($_REQUEST['goto'])) {
        switch($_REQUEST['goto']) {
            case $mod_strings['LBL_CHECKSYS_RECHECK']:
                $next_step = $_REQUEST['current_step'];
                break;
            case $mod_strings['LBL_BACK']:
                $next_step = $_REQUEST['current_step'] - 1;
                break;
            case $mod_strings['LBL_NEXT']:
            case $mod_strings['LBL_START']:
                $next_step = $_REQUEST['current_step'] + 1;
                $next_clicked = true;
                break;
            case 'SilentInstall':
                $next_step = 9999;
                break;
    		case 'oc_convert':
                $next_step = 9191;
                break;
        }
    }
    // Add check here to see if a silent install config file exists; if so then launch silent installer
    elseif ( is_file('config_si.php') && empty($sugar_config['installer_locked'])) {
        echo <<<EOHTML
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
       <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
       <meta http-equiv="Content-Style-Type" content="text/css">
       <meta http-equiv="Refresh" content="1; url=install.php?goto=SilentInstall&cli=true">
       <title>{$mod_strings['LBL_WIZARD_TITLE']} {$mod_strings['LBL_TITLE_WELCOME']} {$setup_sugar_version} {$mod_strings['LBL_WELCOME_SETUP_WIZARD']}</title>
       <link REL="SHORTCUT ICON" HREF="include/images/sugar_icon.ico">
       <link rel="stylesheet" href="install/install.css" type="text/css">
    </head>
    <body>
        <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="include/images/sugar_md.png" alt="SugarCRM" border="0"></p>
    		{$mod_strings['LBL_TITLE_WELCOME']} {$setup_sugar_version} {$mod_strings['LBL_WELCOME_SETUP_WIZARD']}</th>
    
          <th width="200" height="30" style="text-align: right;"><a href="http://www.sugarcrm.com" target=
              "_blank"><IMG src="include/images/sugarcrm_login.png" width="145" height="30" alt="SugarCRM" border="0"></a>
          </th>
        </tr>
       <tr>
          <td colspan="2"  id="ready_image"><IMG src="include/images/install_themes.jpg" width="698" height="190" alt="Sugar Themes" border="0"></td>
        </tr>
    
        <tr>
          <td colspan="2" id="ready">{$mod_strings['LBL_LAUNCHING_SILENT_INSTALL']} </td>
        </tr>
        </table>
    </body>
    </html>
    EOHTML;
        die();
    }
     
     
     
     
     
     
     
    $exclude_files = array('register.php','download_modules.php');
    if(isset($next_step) && isset($workflow[$next_step]) && !in_array($workflow[$next_step],$exclude_files) && isset($sugar_config['installer_locked']) && $sugar_config['installer_locked'] == true) {
        $the_file = 'installDisabled.php';
    	$disabled_title = $mod_strings['LBL_DISABLED_DESCRIPTION'];
    	$disabled_title_2 = $mod_strings['LBL_DISABLED_TITLE_2'];
    	$disabled_text =<<<EOQ
    		<p>{$mod_strings['LBL_DISABLED_DESCRIPTION']}</p>
    		<pre>
    			'installer_locked' => false,
    		</pre>
    		<p>{$mod_strings['LBL_DISABLED_DESCRIPTION_2']}</p>
    
    		<p>{$mod_strings['LBL_DISABLED_HELP_1']} <a href="{$mod_strings['LBL_DISABLED_HELP_LNK']}" target="_blank">{$mod_strings['LBL_DISABLED_HELP_2']}</a>.</p>
    EOQ;
    }
    else{
    $validation_errors = array();
    // process the data posted
    if($next_clicked) {
    	// store the submitted data because the 'Next' button was clicked
        switch($workflow[trim($_REQUEST['current_step'])]) {
            case 'welcome.php':
            break;
          case 'license.php':
                    $_SESSION['setup_license_accept']   = get_boolean_from_request('setup_license_accept');
                    $_SESSION['license_submitted']      = true;
                    $_SESSION['language']               = $_REQUEST['language'];
     
               // eventually default all vars here, with overrides from config.php
                if(is_readable('config.php')) {
                	global $sugar_config;
                    include_once('config.php');
                }
     
                $default_db_type = 'mysql';
     
     
     
     
     
     
     
                if(!isset($_SESSION['setup_db_type'])) {
                    $_SESSION['setup_db_type'] = empty($sugar_config['dbconfig']['db_type']) ? $default_db_type : $sugar_config['dbconfig']['db_type'];
                }
     
                break;
            case 'installType.php':
                $_SESSION['install_type']   = $_REQUEST['install_type'];
                if(isset($_REQUEST['setup_license_key']) && !empty($_REQUEST['setup_license_key'])){
                    $_SESSION['setup_license_key']  = $_REQUEST['setup_license_key'];
                }
                $_SESSION['licenseKey_submitted']      = true;
     
     
     
     
     
     
     
     
     
     
     
     
                break;
     
            case 'systemOptions.php':
                $_SESSION['setup_db_type'] = $_REQUEST['setup_db_type'];
                $validation_errors = validate_systemOptions();
                if(count($validation_errors) > 0) {
                    $next_step--;
                }
                break;
     
            case 'dbConfig_a.php':
                //validation is now done through ajax call to checkDBSettings.php
                if(isset($_REQUEST['setup_db_drop_tables'])){
                    $_SESSION['setup_db_drop_tables'] = $_REQUEST['setup_db_drop_tables'];
                    if($_SESSION['setup_db_drop_tables']=== true || $_SESSION['setup_db_drop_tables'] == 'true'){
                        $_SESSION['setup_db_create_database'] = false;
                    }
                }
                break;
     
            case 'siteConfig_a.php':
                if(isset($_REQUEST['setup_site_url'])){$_SESSION['setup_site_url']          = $_REQUEST['setup_site_url'];}
                if(isset($_REQUEST['setup_system_name'])){$_SESSION['setup_system_name']    = $_REQUEST['setup_system_name'];}
                $_SESSION['setup_site_admin_password']              = $_REQUEST['setup_site_admin_password'];
                $_SESSION['setup_site_admin_password_retype']       = $_REQUEST['setup_site_admin_password_retype'];
                $_SESSION['siteConfig_submitted']               = true;
     
                $validation_errors = array();
                $validation_errors = validate_siteConfig('a');
                if(count($validation_errors) > 0) {
                    $next_step--;
                }
                break;
            case 'siteConfig_b.php':
                $_SESSION['setup_site_sugarbeet_automatic_checks'] = get_boolean_from_request('setup_site_sugarbeet_automatic_checks');
     
                $_SESSION['setup_site_custom_session_path']     = get_boolean_from_request('setup_site_custom_session_path');
                if($_SESSION['setup_site_custom_session_path']){
                    $_SESSION['setup_site_session_path']            = $_REQUEST['setup_site_session_path'];
                }else{
                    $_SESSION['setup_site_session_path'] = '';
                }
     
                $_SESSION['setup_site_custom_log_dir']          = get_boolean_from_request('setup_site_custom_log_dir');
                if($_SESSION['setup_site_custom_log_dir']){
                    $_SESSION['setup_site_log_dir']                 = $_REQUEST['setup_site_log_dir'];
                }else{
                    $_SESSION['setup_site_log_dir'] = '.';
                }
     
                $_SESSION['setup_site_specify_guid']            = get_boolean_from_request('setup_site_specify_guid');
                if($_SESSION['setup_site_specify_guid']){
                    $_SESSION['setup_site_guid']                    = $_REQUEST['setup_site_guid'];
                }else{
                    $_SESSION['setup_site_guid'] = '';
                }
                $_SESSION['siteConfig_submitted']               = true;
                if(isset($_REQUEST['setup_site_sugarbeet_anonymous_stats'])){
                    $_SESSION['setup_site_sugarbeet_anonymous_stats'] = get_boolean_from_request('setup_site_sugarbeet_anonymous_stats');
                }else{
                    $_SESSION['setup_site_sugarbeet_anonymous_stats'] = 0;
                }
     
                $validation_errors = array();
                $validation_errors = validate_siteConfig('b');
                if(count($validation_errors) > 0) {
                    $next_step--;
                }
                break;
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
            case 'localization.php':
            	$_SESSION['default_date_format'] = $_REQUEST['default_date_format'];
            	$_SESSION['default_time_format'] = $_REQUEST['default_time_format'];
            	if(isset($_REQUEST['default_language'])){$_SESSION['default_language'] = $_REQUEST['default_language'];}
            	if(isset($_REQUEST['default_locale_name_format'])){$_SESSION['default_locale_name_format'] = $_REQUEST['default_locale_name_format'];}
            	if(isset($_REQUEST['default_email_charset'])){$_SESSION['default_email_charset'] = $_REQUEST['default_email_charset'];}
            	if(isset($_REQUEST['default_export_charset'])){$_SESSION['default_export_charset'] = $_REQUEST['default_export_charset'];}
            	if(isset($_REQUEST['export_delimiter'])){$_SESSION['export_delimiter'] = $_REQUEST['export_delimiter'];}
            	$_SESSION['default_currency_name'] = $_REQUEST['default_currency_name'];
            	$_SESSION['default_currency_symbol'] = $_REQUEST['default_currency_symbol'];
            	$_SESSION['default_currency_iso4217'] = $_REQUEST['default_currency_iso4217'];
            	$_SESSION['default_currency_significant_digits'] = $_REQUEST['default_currency_significant_digits'];
            	$_SESSION['default_number_grouping_seperator'] = $_REQUEST['default_number_grouping_seperator'];
            	$_SESSION['default_decimal_seperator'] = $_REQUEST['default_decimal_seperator'];
     
    			$validation_errors = validate_localization();
                $validation_errors = array();
    			if(count($validation_errors) > 0) {
    				$next_step--;
       			 }
            break;
    }
        }
     
    if($next_step == 9999) {
        $the_file = 'SilentInstall';
    }else if($next_step == 9191) {
    	$_SESSION['oc_server_url']	= $_REQUEST['oc_server_url'];
        $_SESSION['oc_username']    = $_REQUEST['oc_username'];
        $_SESSION['oc_password']   	= $_REQUEST['oc_password'];
        $the_file = 'oc_convert.php';
    }
    else{
            $the_file = $workflow[$next_step];
     
    }
     
    switch($the_file) {
        case 'welcome.php':
        case 'license.php':
            // check to see if installer has been disabled
            if(is_readable('config.php') && (filesize('config.php') > 0)) {
                include_once('config.php');
    			//
    			// Check to see if session variables are working properly
    			//
    			$_SESSION['test_session'] = 'sessions are available';
    			session_write_close();
    			unset($_SESSION['test_session']);
    			session_start();
     
    			if(!isset($_SESSION['test_session']))
    			{
                    $the_file = 'installDisabled.php';
    				// PHP.ini location -
    				$phpIniLocation = get_cfg_var("cfg_file_path");
    				$disabled_title = $mod_strings['LBL_SESSION_ERR_TITLE'];
    				$disabled_title_2 = $mod_strings['LBL_SESSION_ERR_TITLE'];
    				$disabled_text = $mod_strings['LBL_SESSION_ERR_DESCRIPTION']."<pre>{$phpIniLocation}</pre>";
    			}
                elseif(!isset($sugar_config['installer_locked']) || $sugar_config['installer_locked'] == true) {
                    $the_file = 'installDisabled.php';
    				$disabled_title = $mod_strings['LBL_DISABLED_DESCRIPTION'];
    				$disabled_title_2 = $mod_strings['LBL_DISABLED_TITLE_2'];
    				$disabled_text =<<<EOQ
    					<p>{$mod_strings['LBL_DISABLED_DESCRIPTION']}</p>
    					<pre>
    						'installer_locked' => false,
    					</pre>
    					<p>{$mod_strings['LBL_DISABLED_DESCRIPTION_2']}</p>
    
    					<p>{$mod_strings['LBL_DISABLED_HELP_1']} <a href="{$mod_strings['LBL_DISABLED_HELP_LNK']}" target="_blank">{$mod_strings['LBL_DISABLED_HELP_2']}</a>.</p>
    EOQ;
    				                //if this is an offline client installation but the conversion did not succeed,
                    //then try to convert again
                    if(isset($sugar_config['disc_client']) && $sugar_config['disc_client'] == true && isset($sugar_config['oc_converted']) && $sugar_config['oc_converted'] == false) {
    					 header('Location: index.php?entryPoint=oc_convert&first_time=true');
    					exit ();
                    }
                }
            }
            break;
        case 'register.php':
            session_unset();
            break;
        case 'SilentInstall':
            $si_errors = false;
            pullSilentInstallVarsIntoSession();
            $validation_errors = validate_dbConfig('a');
            if(count($validation_errors) > 0) {
                $the_file = 'dbConfig_a.php';
                $si_errors = true;
            }
            $validation_errors = validate_siteConfig('a');
            if(count($validation_errors) > 0) {
                $the_file = 'siteConfig_a.php';
                $si_errors = true;
            }
            $validation_errors = validate_siteConfig('b');
            if(count($validation_errors) > 0) {
                $the_file = 'siteConfig_b.php';
                $si_errors = true;
            }
     
            if(!$si_errors){
                $the_file = 'performSetup.php';
            }
            //since this is a SilentInstall we still need to make sure that
            //the appropriate files are writable
            // config.php
            make_writable('./config.php');
     
            // custom dir
            make_writable('./custom');
     
            // modules dir
            recursive_make_writable('./modules');
     
            // data dir
            make_writable('./data');
            make_writable('./data/upload');
     
            // cache dir
            make_writable('./cache/custom_fields');
            make_writable('./cache/dyn_lay');
            make_writable('./cache/images');
            make_writable('./cache/import');
            make_writable('./cache/layout');
            make_writable('./cache/pdf');
            make_writable('./cache/upload');
            make_writable('./cache/xml');
     
            // check whether we're getting this request from a command line tool
            // we want to output brief messages if we're outputting to a command line tool
            $cli_mode = false;
            if(isset($_REQUEST['cli']) && ($_REQUEST['cli'] == 'true')) {
                $_SESSION['cli'] = true;
                // if we have errors, just shoot them back now
                if(count($validation_errors) > 0) {
                    foreach($validation_errors as $error) {
                        print($mod_strings['ERR_ERROR_GENERAL']."\n");
                        print("    " . $error . "\n");
                        print("Exit 1\n");
                        exit(1);
                    }
                }
            }
     
     
     
     
     
     
     
     
     
     
            break;
    	}
    }
     
     
    $the_file = clean_string($the_file, 'FILE');
    // change to require to get a good file load error message if the file is not available.
    $css = 'install/install.css';
    $icon = 'include/images/sugar_icon.ico';
    $sugar_md = 'include/images/sugar_md.png';
    $loginImage = 'include/images/sugarcrm_login.png';
    $common = 'install/installCommon.js';
    require('install/' . $the_file);
     
    ?>



    MERCI POUR VOTRE AIDE

  2. #2
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Tu lances bien la page depuis ton navigateur en interrogeant le serveur web ?
    N'oubliez pas de consulter les FAQ PHP et les cours et tutoriels PHP

Discussions similaires

  1. code non interpreté
    Par PrinceMaster77 dans le forum Langage
    Réponses: 5
    Dernier message: 22/11/2009, 12h26
  2. code non interpreté
    Par seddik_saber dans le forum JSF
    Réponses: 2
    Dernier message: 29/10/2007, 18h27
  3. code non éxécutable
    Par abidi_niz dans le forum Langage SQL
    Réponses: 1
    Dernier message: 18/07/2005, 10h03

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo