Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to upload one image to different directory in CodeIgniter, so one images are stored in 2 folders.

Path one etc/www/image1/ and path two etc/www/image2/

Code

$config[‘upload_path’] =‘etc/www/image1/’;
$config[‘allowed_types’] = ‘jpg|jpeg|gif|png’;
$config[‘file_name’]=“imageone.jpg”;
$config[‘max_size’] = ‘10000’;

$this->upload->initialize($config); 
if(!$this->upload->do_upload(‘userfile’)){
echo $this->upload->display_errors();
}else {
$this->upload->data(‘userfile’);
} 
share|improve this question

1 Answer

up vote 1 down vote accepted

Just use PHP's Copy() function after you have uploaded the file successfully in your CI controller method...

EX:

$file = '/www/image1/example.txt';
$newfile = '/www/image1/example.txt';

if (!copy($file, $newfile)) {
    echo "failed to copy $file...\n";
}
share|improve this answer
A PHP Error was encountered Severity: Warning Message: copy(/etc/httpd/root/mywebsite/html/public/images/default/) [function.copy]: failed to open stream: Is a directory – Jam Dvia Sep 3 '12 at 8:17
seems like you forgot to specify filename - try fullpath including filename. – HappyApe Sep 3 '12 at 8:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.