Skip to content
Advertisement

Upload Images in two different paths Codeigniter

I’ll try to upload an Images into two different path, but it always uploaded in single path only, here’s my code in a model :

JavaScript

The upload function (also in the model)

JavaScript

Only the _uploadImage function worked, but the _uploadImage2 not work

Can you tell me what’s wrong?

Advertisement

Answer

The problem is that you have already initialize the upload library, so you have to re-initialize it.

Plus you should try to nest the functions, so they will be called in chain, or you don’t want just use $this->upload->initialize($config); in the second function:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement