Search the Community
Showing results for tags 'gzip'.
-
I am being sent an XML feed which needs to be downloaded in a 'compressed way'. The example I have been given is this: $url = 'http://myurl.com'; $headers[] = "Accept-Encoding: gzip,deflate"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); $data = curl_exec($ch); but the output I am getting is jargon like this with loads of black diamond question marks:� +T��sƒ���-}#v���]K���������HB�$&G�����Y�����'߷s�,�.4֫'?'���9;*9^��>�j~�ǫ}z|hq�J��Գ".o2)~b���U~I| How to a convert it back into XML? Many thanks
-
Hi I am having issue enabling Gzip or mod_deflate on my host server. This is my code for mod_deflate: <IfModule mod_deflate.c> #compress text, html, javascript, css, xml: AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/php AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/x-javascript </IfModule> <IfModule mod_deflate.c> #Or, compress certain file types by extension: <files *.php> SetOutputFilter DEFLATE </files> </IfModule> <IfModule mod_deflate.c> #compress gif|jpg|jpeg|png: <Files ~ "\\.(gif|jpg|jpeg|png)$"> SetOutputFilter DEFLATE </Files> </IfModule> as for GZip I used this code: Gzip compression The issue is that when I type my website on here: www.gidnetwork.com/tools/gzip-test.php to test to see how it works it kept saying NO What can I do to make it work or enable? Any suggestions or advice? I just want to see how it compressed the files.