![]() |
image upload problem - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: image upload problem (/showthread.php?tid=32624) |
image upload problem - El Forum - 07-29-2010 [eluser]alexaaaaaaaaaa[/eluser] hi i need some help with my image upload here's my controller Code: if(isset($submit)) Thanks in advance image upload problem - El Forum - 07-29-2010 [eluser]Benito[/eluser] Help in what? If you specify what your problem is and what you want to achieve, maybe there is a bigger chance that the community can help. image upload problem - El Forum - 07-29-2010 [eluser]alexaaaaaaaaaa[/eluser] [quote author="Benito" date="1280439650"]Help in what? If you specify what your problem is and what you want to achieve, maybe there is a bigger chance that the community can help.[/quote] my problem is simple it doesn't upload the picture and it doesn't insert the file_name into database ... and i have upload a script and it says that my dir is not writable but i have CHMOD to 777 and my server says command not understood .. i don't know what to do.. image upload problem - El Forum - 07-29-2010 [eluser]ELRafael[/eluser] Code: $config['upload_path'] = '.images/'; Try to change to Code: $config['upload_path'] = './images/'; and try to use Code: $this->upload->display_errors() |