When user try to download file in pure ie8 , not compatibility mode which have multilingual character in name it shown "fileAttachment" name .
that time i using
header("Content-Disposition: attachment; filename*=UTF-8''".rawurlencode ($fileInfo['fileName']));
to fix that error i am using
header('Content-Disposition: attachment; filename="'.rawurlencode($fileInfo['fileName']).'"');
but issue here is that all multilingual character convert into url encode form in all browser.
is there any solution regarding this?