Skip to content

Instantly share code, notes, and snippets.

@yaranaio
Created March 16, 2012 07:37
Show Gist options
  • Save yaranaio/2049015 to your computer and use it in GitHub Desktop.
Save yaranaio/2049015 to your computer and use it in GitHub Desktop.
CodeIgniter config file upload.php
<?php
$config['upload_path'] = '';
$config['allowed_types'] = 'gif|jpg|png';
$config['file_name'] = '';
$config['overwrite'] = false;
$config['max_size'] = 2048; // 2M
$config['max_width'] = 0;
$config['max_height'] = 0;
$config['max_filename'] = 0;
$config['encrypt_name'] = false;
$config['remove_spaces'] = true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment