Forum


Replies: 3   Views: 3288
Createdocxanddownload timeout
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 mikestp27  · 11-04-2013 - 12:13

Hello,
I found the problem.
The problem is that createDocxAndDownload sends a Content-Length header and my server is set to gzip those files and send them in chunked Tranfer-Encoding. Both cannot be used together: http://stackoverflow.com/questions/2419281/content-length-header-versus-chunked-encoding

Actually, I found a few solutions...
1. remove the Content-Length header from createDocxAndDownload
2. use createDocx and implement my own download (just a few lines of code)
3. disable gzip for those files

I tried all 3 solution and they all work.
I'll use #2 in my code.

Thanks,
Mike.