Changeset 10989
- Timestamp:
- 08/20/08 10:33:37 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
doc/branches/1.2/book/19-Mastering-Symfony-s-Configuration-Files.txt
r9836 r10989 36 36 * `unavailable.php`: Page called when a user requests a page while the application is disabled (with the `disable` task). It is also called while the cache is being cleared (that is, between a call to the `php symfony cache:clear` task and the end of this task execution). On systems with a very large cache, the cache-clearing process can take several seconds. Symfony cannot execute a request with a partially cleared cache, so requests received before the end of the process are redirected to this page. 37 37 38 To customize these pages, simply create `error500.php` and `unavailable.php` pages in your project or application's ` config/` directory. Symfony will use these instead of its own.38 To customize these pages, simply create `error500.php` and `unavailable.php` pages in your project or application's `web/errors/` directory. Symfony will use these instead of its own. 39 39 40 40 >**NOTE**