Derek Jones | 3ad8efe | 2008-04-04 18:56:04 +0000 | [diff] [blame^] | 1 | <?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
| 2 |
|
| 3 | /*
|
| 4 | |--------------------------------------------------------------------------
|
| 5 | | File and Directory Modes
|
| 6 | |--------------------------------------------------------------------------
|
| 7 | |
|
| 8 | | These prefs are used when checking and setting modes when working
|
| 9 | | with the file system. The defaults are fine on servers with proper
|
| 10 | | security, but you may wish (or even need) to change the values in
|
| 11 | | certain environments (Apache running a separate process for each
|
| 12 | | user, PHP under CGI with Apache suEXEC, etc.). Octal values should
|
| 13 | | always be used to set the mode correctly.
|
| 14 | |
|
| 15 | */
|
| 16 | define('FILE_READ_MODE', 0644);
|
| 17 | define('FILE_WRITE_MODE', 0666);
|
| 18 | define('DIR_READ_MODE', 0755);
|
| 19 | define('DIR_WRITE_MODE', 0777);
|
| 20 |
|
| 21 | ?> |