summaryrefslogtreecommitdiff
path: root/kohana/config/upload.php
blob: 8e42576c2717f33c4df1a19edc756e3bf6753b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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;