0
votes
1answer
20 views

How to compress http request on the fly and without loading compressed buffer in memory

I need to send voluminous data in a http post request to a server supporting gziped encoded requests. Starting from a simple public async Task<string> DoPost(HttpContent content) { ...
0
votes
3answers
23 views

GZipStream with large files doesn't work well [closed]

I want to compress some very large GML files (1-10GB). I wrote a method for this, but it does not work well. If I decompress it using 7-zip for Windows (or something else), I get the file that looks ...
2
votes
1answer
40 views

Tomcat 7 GZIP compression not working

I have added the following lines in tomcat's conf/server.xml file to enable gzip compression but its not working. Pages are still uncompressesd. <Connector port="8080" compression="on" ...
0
votes
1answer
32 views

PHP - Compress a txt file while maintaining the file extension

I want to compress a .txt file in PHP while maintaining the file extension. When I decompress the .gz file the extension (.txt) in the .gz file is removed. (test.txt becomes -> test) Here's a example ...
0
votes
0answers
17 views

How to get nginx to uncompress gzip encoded pages

I have a few nginx servers for a pretty big website. I'm proxying an external site, who ONLY sends their content encoded as gzip, even if I send 'Accept-Encoding: ' headers with my request. It is ...
0
votes
0answers
41 views

GWT/GAE 1MB .cache.js file is not gzip compressed

I'm using GWT's splitting method to split the code into multiple fragments. My app is served by a Google App engine server and uses gzip compression to send the fragments. The problem is that one of ...
0
votes
0answers
17 views

SSH command gets terminated while compressing a directory

I am compressing a big directory about 50GB containing files and folder using putty SSH COMMAND LINE.i am using this command: tar czspf file.tar.gz directory/ it starts work fine, but after some ...
-1
votes
2answers
66 views

Compress a folder UNIX tar/gzip [closed]

When I try to compress a folder using tar -zcvf directory.tar directory, I get the error message below. Usage: tar {c|r|t|u|x}[BDeEFhilmnopPqTvw@[0-7]][bfk][X...] [blocksize] [tarfile] [size] ...
0
votes
0answers
14 views

What is the difference in various commands for compressing files in linux? [migrated]

What are the commands for compressing files in linux and what are the difference between them? (for example: tar, gzip, rar). I'm working on Linux Mint 11 and doing a script for compressing files. I ...
0
votes
1answer
47 views

Client side data compress/ decompress?

I'm looking for JavaScript implementation of string compress/decompress algorithms, data is created at the client side& stored in hidden fields within HTML forms. I read about gzip, but it will ...
0
votes
0answers
41 views

GZIP compression in mvc3 results in binary output of page

I m having problem with the compression filter in MVC3. YSLOW gives this Grade C on Compress components with gzip There are 2 plain text components that should be sent compressed ...
1
vote
3answers
64 views

How to create a Gzip archive in java, from strings?

I have 3 strings, each one of them representing a txt file content, not loaded from the computer, but generated by Java. String firstFileCon = "firstContent"; //File in .gz: 1.txt String ...
0
votes
1answer
14 views

Uncompress, edit, compress and concatenate files

I have a bunch of large compressed files that I want to concatenate. Problem is, the don't have newline characters at the end of the uncompressed version, so if I try to just cat them together and ...
0
votes
1answer
32 views

Uncompressing a Gzip format?

I am facing a problem with Gzip uncompressing. The situation is like this. I have some text in UTF-8 format. Now this text is compressed using gzdeflate() function in PHP and then stored in a blob ...
0
votes
1answer
33 views

GZIP Compression help. Can't get it to work (2)

I am working on my site speed optmization. I am having problems with gzip compression. I put the code in the .htaccess file, upload it to online and it does not work. When I check with this tool ...
0
votes
0answers
32 views

When will NSURLConnection decompress a compressed resource?

I've read how NSURLConnection will automatically decompress a compressed (zipped) resource, however I can not find Apple documentation or official word anywhere that specifies the logic that defines ...
2
votes
3answers
86 views

MemoryStream CopyTo only partially writing

I'm about to lose my freaking mind. I've been trying to get GzipStream to compress a string for the past hour, but for whatever reason, it refuses to write the entire byte array to the memory stream. ...
0
votes
0answers
126 views

GZip compression and cache control from PHP not htaccess or Apache conf

I have the following piece of code in my PHP script that generates the HTML for all the pages of my website: if( !headers_sent() and !ob_get_length() ) { $days = 30; ...
2
votes
1answer
75 views

TYPO3 gzip compression

I want to enable gzip-compression on my TYPO3 site. It's a shared hoster and I don't have access to the server configuration. This is what I've done so far: uncomment the TYPO3 .htaccess-file (the ...
1
vote
2answers
62 views

glassfish response not getting in gzip compressed

i am working on java with Netbeans IDE and glassfish 3.1.2 i have created in rest services using jaxrs. when request from client is made ,i need to send json data in compressed format.to do this i ...
0
votes
0answers
36 views

How to compress GZIP file on Amazon S3?

Someone know if exist some plugin to compress GZIP files during upload in Amazon S3?
0
votes
0answers
57 views

Setting gzip compression by htaccess

I've a problem getting the html/css/js files compression working using gzip on symfony 2.1.7. I've found the .htaccess file in the web folder, but don't know how to modify it. Can anyone guide me or ...
1
vote
3answers
95 views

Concatenate gzipped byte arrays in C#

I have gzipped data which is stored in DB. Is there a way to concatenate say 50 separate gzipped data into one gzipped output which can be uncompressed? The result should be same as decompressing that ...
-2
votes
1answer
50 views

Why will gzip not work, I have the code in htaccess? [closed]

I have been to https://github.com/h5bp/html5-boilerplate/blob/master/.htaccess and pasted the Gzip code into my htaccess file and put it back on the server, however my site will not provide compressed ...
1
vote
1answer
86 views

How do I use GZIP to optimize the size of my web service messages?

Is this done at the code level, perhaps through JAX-WS handlers? Or is it done through some configuration at the app server? I've read something about web compression in general, it appears that just ...
0
votes
1answer
26 views

Gzip files only above certain bytes in Terminal

I type this command that finds all css files in a folder (including sub-folders) and gzips them individually. Here's the command: find . -type f -name "*.css" -exec sh -c "gzip -9v < {} > ...
0
votes
0answers
119 views

Enabling gzip compression to org.apache.soap

Hi I'm trying to enable gzip compression to my org.apache.soap.Message. Does anybody know how to do this. I tried some post like soapmessage-gzip-implementation but didn't work for me Main method ...
0
votes
1answer
167 views

c++ boost gzip in-memory binary compression

I am trying to compress a data in an array using boost iostream and gzip, here is my code: struct String_sink : public boost::iostreams::sink { std::string& s; ...
0
votes
1answer
97 views

Can zlib create tar file, on Windows?

Have zlib for Visual Studio on windows. Can I create a tar compressed file? If so, what is the proper file extension for a tar file compressed with zlib. (I see that gzip can do this and has the ...
0
votes
1answer
247 views

.htaccess DEFLATE Not working [closed]

I am trying to compress html etc. from htaccess. # compress text, html, javascript, css, xml: AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType ...
0
votes
2answers
224 views

How to implement zopfli for a better gzip compression?

Google says Zopfli gives a better gzip-functionality and it's compatible with all browsers (decompression is the same, compression takes a lot longer, but you get an additional 5-10% smaller static ...
0
votes
0answers
823 views

Facebook Cross-Domain Messaging Helper (xd_arbiter.php) gzip/deflate Support

About After adding a Facebook Like button to my site and running Google Chrome's PageSpeed it reports the following for the 'Enable Compression' category. Compressing the following resources with ...
4
votes
1answer
96 views

PHP: Is gzdeflate safe across multiple machines?

In the PHP manual there is a comment on gzdeflate saying: gzcompress produces longer data because it embeds information about the encoding onto the string. If you are compressing data that will ...
0
votes
0answers
74 views

.htaccess for wordpress compressing etc

Hi I have tried to optimize my website energyshop.se for a cpl of days but I cant seem to get it done. This is how my .htaccess looks like: # Hantera och redirecta användare till en gemensam ...
1
vote
1answer
81 views

Enabling gzip compression in Glassfish via XML configuration

There are a variety of answers to this question which tackle it via the admin console. I would like to enable this via Glassfish's XML configuration but have not found any documentation regarding this ...
0
votes
1answer
115 views

Encoding issue with requesting JSON from StackOverflow API

I can't figure this out for the life of me. Below is an implementation with the request module, but I've also tried with the node-XMLHttpRequest module to no avail. var request = require('request'); ...
0
votes
1answer
129 views

How to request a gzipped / compressed SOAP response?

i used the wsimport tool to create a soap client which is working very well. Now I like to request a compressed response from the server because the responses can be quite big. I don't know if the ...
4
votes
1answer
388 views

Is Vary: Accept-Encoding overkill?

After reading about how gzip compression works it got me thinking. If the Origin and Proxy server (CDN) both support gzip is adding a Vary: Accept-Encoding header necessary?
0
votes
1answer
119 views

Decrypt byte data in javascript/Jquery

I have a project where i used gzip in .cs file to zip the data and get it in html page. Here is my code for gzip. public byte[] CustomerList() { SqlDataAdapter da = new ...
0
votes
1answer
69 views

Java SDCH compressor/decompressor

Someone knows a java library to decode/encode SDCH compression??? it has been created by Google and implemented in their Google Chrome web browser... so it will be a standard soon Some links about ...
0
votes
3answers
358 views

Java: Error creating a GZIPInputStream: Not in GZIP format

I am trying to use the following Java code to compress and uncompress a String. But the line that creates a new GZipInputStream object out of a new ByteArrayInputStream object throws a ...
0
votes
1answer
197 views

Creation gzip archive using Apache Commons Compress

I succeed to create gz archive with expected content, but how can I set the filename inside the archive? I mean, if archive myfile.gz was created, the file inside it will be named "myfile", but I ...
-1
votes
1answer
93 views

Getting gzip compression to work on my server (modules?) [closed]

I have copied the htaccess file from HTML5 Boilerplate into my httpd.conf file and restarted Apache, but for some reason, gzip compression is still not working: I have tested to see if the modules ...
0
votes
2answers
160 views

write a gzip file from data frame

I'm trying to write a data frame to a gzip file but having problems. Here's my code example: > df1 <- data.frame(id = seq(1,10,1), var1 = runif(10), var2 = runif(10)) > > gz1 <- ...
1
vote
2answers
159 views

Trying to compress images (Gzip+Jpeg) and then uncompress them

I am trying to compress a sequence of images in png format. It seems that compression is going well: FileOutputStream fos = null; GZIPOutputStream gzip = null; fos = new ...
0
votes
1answer
98 views

Gzip not zipping all CSS & JS

My hosting provider does not use htaccess to enable gzip. Their support told me to change my HTML file to PHP and add the following at the top: <?php ob_start("ob_gzhandler"); ?> However, ...
2
votes
2answers
232 views

Compress Gzip string in Ruby

How would I write a method to compress a Gzip string that does not contain a header file, and have it compress to exactly the way it was before I have decompressed it. The original compression is done ...
0
votes
1answer
817 views

GZIP compression + htaccess deflate

Can i have both .htaccess with DELFATE On php, images, html files etc. + php header with ob_start("gzhandler") ? If no, what is the best oppitunity? I am just worried if it does conflict. ...
-4
votes
1answer
128 views

GZip Byte Array in VB.NET and UnGzip in PHP [closed]

Here my code in VB.NET: Dim oWeb As New System.Net.WebClient() Dim ms As New MemoryStream() Dim gs As New GZipStream(ms, CompressionMode.Compress) gs.Write(data, 0, data.Length) Dim bytRetData As ...
0
votes
1answer
147 views

gzencode not compressing the code

possible duplicates - Why is php gzip output not working for me? I want to test whether my site is actually getting compressed or not. I have used gzencode($data,9) - maximum compression. I also ...

1 2 3 4 5 8