17 lines
384 B
PHP
17 lines
384 B
PHP
<?php defined('SYSPATH') OR die('No direct access allowed.');
|
|
/**
|
|
* @package Core
|
|
*
|
|
* This path is relative to your index file. Absolute paths are also supported.
|
|
*/
|
|
$config['directory'] = DOCROOT.'upload';
|
|
|
|
/**
|
|
* Enable or disable directory creation.
|
|
*/
|
|
$config['create_directories'] = FALSE;
|
|
|
|
/**
|
|
* Remove spaces from uploaded filenames.
|
|
*/
|
|
$config['remove_spaces'] = TRUE; |