Hello Abu,
I’ve the same problem of this old question:
Can you write the solution that you found? Thanks
1 Answers
This was php bug and issue is fixed in php 7.1: https://bugs.php.net/bug.php?id=47096
Alternate approach for older php versions was to modify the code in jqgrid_dist.php and search replace code of move_uploaded_file with following:
$destname = iconv('UTF-8', 'CP1252', $name); if ( @move_uploaded_file($tmp_name, "$uploads_dir/$destname") ) { $msg = "$uploads_dir/$name"; }
Recheck variable names as it may differ w.r.t. your library version.
Your Answer