Hi
Problem in upload file
if I want to upload:
2025 05 18 COMITE SYNDICAL Ordre du Jour PROPOSITION V2.doc
no problem
if I want to upload:
REGLEMENT INTERIEUR de L’ASSOCIATION SYNDICALE DOMAINE DE LA GIFFFAUMIERE – remis à jour le 11 avril 2015.docx
it doesn’t word
I got uploading….. text and nothing else
can you help ?
Regaords
2 Answers
The issue is due to the ‘ single quote in file name. e.g. INTERIEUR de L’ASSOCIATION
You can try after replacing it with – and it should work.
If you want to fix in your existing build – edit file lib/inc/jqgrid_dist.php
and add following line before move_uploaded_file:
// replace quote with - in file name to avoid html/js issues
$name = str_replace("'","-",$name);
if ( @move_uploaded_file($tmp_name, "$uploads_dir/$name") )
Your Answer

