Welcome Guest, Not a member yet? Register   Sign In
i cant upload any thing except picture
#25

[eluser]Sara rad[/eluser]
ok Big Grin i change controller to this it's worked good .

thank you friends :kiss: .

Code:
// Set upload rules for screen
$config['upload_path'] = 'files/shop/';
$config['allowed_types'] = 'jpg|png|gif';
$config['max_size']    = '200';
$config['max_width']  = '1024';
$config['max_height']  = '768';

// Set upload rules for source
$config['source']['upload_path'] = 'files/shop/source/';
$config['source']['allowed_types'] = 'zip|rar|cdr|psd|ai';
$config['source']['max_size']    = '24000';

// Select random name
$data['art_saved_name'] = $this->send_art_model->select_rand_name('arts_for_sell');

// Set name for saveing file
$config['file_name']  = $data['art_saved_name'];
$config['source']['file_name']  = $data['art_saved_name'];

// END OF RULES SETTING --

// Load Upload Library
$this->load->library('upload');

$this->upload->initialize($config);
if( ! $this->upload->do_upload('screen'))
{
    echo('Screen error :' . $this->upload->display_errors() . '---<br>');
}

$this->upload->initialize($config['source']);
if ( ! $this->upload->do_upload('source'))
{
    die('Source error :' . $this->upload->display_errors());
}


Messages In This Thread
i cant upload any thing except picture - by El Forum - 03-15-2011, 08:30 AM
i cant upload any thing except picture - by El Forum - 03-15-2011, 08:59 AM
i cant upload any thing except picture - by El Forum - 03-15-2011, 09:01 AM
i cant upload any thing except picture - by El Forum - 03-15-2011, 09:10 AM
i cant upload any thing except picture - by El Forum - 03-15-2011, 09:15 AM
i cant upload any thing except picture - by El Forum - 03-15-2011, 09:24 AM
i cant upload any thing except picture - by El Forum - 03-15-2011, 01:20 PM
i cant upload any thing except picture - by El Forum - 03-15-2011, 02:40 PM
i cant upload any thing except picture - by El Forum - 03-15-2011, 03:02 PM
i cant upload any thing except picture - by El Forum - 03-16-2011, 02:00 AM
i cant upload any thing except picture - by El Forum - 03-16-2011, 07:50 AM
i cant upload any thing except picture - by El Forum - 03-17-2011, 11:16 AM
i cant upload any thing except picture - by El Forum - 03-18-2011, 01:44 PM
i cant upload any thing except picture - by El Forum - 03-18-2011, 01:58 PM
i cant upload any thing except picture - by El Forum - 03-19-2011, 01:04 AM
i cant upload any thing except picture - by El Forum - 03-20-2011, 07:36 AM
i cant upload any thing except picture - by El Forum - 03-20-2011, 08:59 AM
i cant upload any thing except picture - by El Forum - 03-20-2011, 01:16 PM
i cant upload any thing except picture - by El Forum - 03-21-2011, 12:13 PM
i cant upload any thing except picture - by El Forum - 03-21-2011, 03:34 PM
i cant upload any thing except picture - by El Forum - 03-22-2011, 01:57 AM
i cant upload any thing except picture - by El Forum - 03-22-2011, 02:07 AM
i cant upload any thing except picture - by El Forum - 03-22-2011, 03:45 AM
i cant upload any thing except picture - by El Forum - 03-22-2011, 03:53 AM
i cant upload any thing except picture - by El Forum - 03-22-2011, 03:57 AM
i cant upload any thing except picture - by El Forum - 03-22-2011, 05:37 AM



Theme © iAndrew 2016 - Forum software by © MyBB