php - How to upload an .lrc file in Codelgniter? -


i want upload .lrc file in codelgniter

but says:

the filetype attempting upload not allowed.

i tried adding:

'lrc'   =>  'application/octet-stream' 

in mimes.php, still doesn't work.

thank you.

just had @ content , try text based or application based

'lrc' => 'text/plain';

'lrc' => array('application/xxyourapplicationxx', 'application/xx yourapplicationxx')


Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

android - net_scheduler holding wakelock -

Unlimited choices in BASH case statement -