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
Post a Comment