Changeset 6824
- Timestamp:
- 12/30/07 10:05:05 (10 months ago)
- Files:
-
- branches/1.1/UPGRADE (modified) (1 diff)
- branches/1.1/data/bin/check_configuration.php (added)
- branches/1.1/data/config/config_handlers.yml (modified) (1 diff)
- branches/1.1/data/config/php.yml (deleted)
- branches/1.1/lib/config/sfPhpConfigHandler.class.php (deleted)
- branches/1.1/lib/util/sfCore.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/UPGRADE
r6748 r6824 388 388 param: 389 389 timeout: 1800 # session timeout in seconds 390 391 `php.yml` configuration file 392 ---------------------------- 393 394 The `php.yml` configuration file has been removed. 395 396 The only setting you will have to check by hand is `log_errors`, which was set to `on` by `php.yml`. 397 398 `php.yml` is replaced by the `check_configuration.php` utility you can find in `data/bin`. 399 It checks your environment against symfony requirements. You can launch it from anywhere: 400 401 $ php /path/to/symfony/data/bin/check_configuration.php 402 403 Even if you can use this utility from the command line, it's strongly recommended to launch it 404 from the web by copying it under your web root directory as PHP can use different php.ini configuration 405 files for the CLI and the web. branches/1.1/data/config/config_handlers.yml
r6822 r6824 1 1 config/autoload.yml: 2 2 class: sfAutoloadConfigHandler 3 4 config/php.yml:5 class: sfPhpConfigHandler6 3 7 4 config/databases.yml: branches/1.1/lib/util/sfCore.class.php
r6807 r6824 85 85 error_reporting(sfConfig::get('sf_error_reporting')); 86 86 87 $configCache->import(sfConfig::get('sf_app_config_dir_name').'/php.yml', false);87 ini_set('magic_quotes_runtime', 'off'); 88 88 89 89 // include all config.php from plugins