Development

Changeset 10989

You must first sign up to be able to contribute.

Changeset 10989

Show
Ignore:
Timestamp:
08/20/08 10:33:37 (3 months ago)
Author:
dwhittle
Message:

1.2: merged r10988

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.2/book/19-Mastering-Symfony-s-Configuration-Files.txt

    r9836 r10989  
    3636  * `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. 
    3737 
    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. 
     38To 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. 
    3939 
    4040>**NOTE**