-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfunctions.php
More file actions
40 lines (32 loc) · 1.03 KB
/
functions.php
File metadata and controls
40 lines (32 loc) · 1.03 KB
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
<?php
/**
* Set this to true to put Infinity into developer mode
*/
//define( 'INFINITY_DEV_MODE', true );
//
// Usually dev mode is enough, but if want finer control you can
// set some of these special constants manually.
//
/**
* Set this to false to totally disable error handling by Infinity
*/
//define( 'INFINITY_ERROR_HANDLING', false );
/**
* Set this to true to show detailed error and exception reports. This only
* works if error handling is enabled (see above)
*/
//define( 'INFINITY_ERROR_REPORTING', true );
/**
* Set this to a short message to customize the friendly AJAX error
*/
//define( 'ICE_ERROR_AJAX_MESSAGE', 'Woops! We forgot to feed the server, sorry!' );
/**
* Set this to an absolute path to a custom friendly fatal error page
*/
//define( 'ICE_ERROR_PAGE_PATH', '/path/to/my/error.php' );
/**
* Set this to false to disable caching of dynamically generated
* CSS and Javascript. Highly recommended for development.
*/
//define( 'ICE_CACHE_EXPORTS', false );
?>