![]() |
Wav file upload problem - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Wav file upload problem (/showthread.php?tid=6688) |
Wav file upload problem - El Forum - 03-07-2008 [eluser]Justin Patel[/eluser] Hello Mates, I am trying to upload .wav file, I have added into allowed types but it always say, the file type you are attempting to upload is not allowed .. why? Thanks Wav file upload problem - El Forum - 03-08-2008 [eluser]Seppo[/eluser] Try to see what mime type is you was file (echo $_FILES['your_field_name']['type']) and add it to the mimes config in application/config/mimes.php Currently it only supports 'audio/x-wav', you should change the line to 'wav' => array('audio/x-wav', '???'), being ??? the type that you got from printing. Wav file upload problem - El Forum - 03-09-2008 [eluser]Justin Patel[/eluser] Cooooooool Its working great. Thanks a LOT ![]() |