Forum


Replies: 3   Views: 3154
Error write access issue (iis 7 + windows server)
Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by cbl  · 05-12-2016 - 16:04

Error :

$docx->createDocx($filenamewithaccent);

Error : Error while trying to write to X:\Path\File with accent - (éç).docx please check write access.

 

Solution :  

$docx->createDocx(iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', $filenamewithaccent));

 

 

Is there an other solution ?