-2
votes
0answers
36 views

Whats best HTML and PHP Compressor? [closed]

I know about CSS (http://mrcoles.com/blog/css-unminify/) and Javascript (http://jsbeautifier.org/) compressor and its good ability to compress. But anyone knows the best HTML and PHP compressor? ...
0
votes
2answers
63 views

image compression reducer

I am trying to have High quality Images on my site like these ones in the slider here http://www.viewbug.com/ but when I have the actual of the picture, it wont load fast enough, due to the big size. ...
2
votes
2answers
174 views

Minimize HTML into a single line

I need to minimize this code to a single line. I am using Adobe Edge and am creating some code for some paragraphs inside one text box. If your interested the code needs to be loaded into an area ...
0
votes
0answers
42 views

Anyone have idea how to use inliner (remy/inliner)?

I'm refering to remy/inliner: https://github.com/remy/inliner Having trouble finding any documentation online. So far I have: setup a node.js server on my Windows machine; npm install inliner ...
0
votes
1answer
92 views

Open Source Image Compressor [closed]

I'm looking for an open source image compressor that I can use on a project I'm working on. I want to make it so you can just drag and drop the images onto a target area and it'll start compressing, ...
0
votes
3answers
197 views

Google Pagespeed and compression recommendations - how do I go about this?

Enable compression Compressing resources with gzip or deflate can reduce the number of bytes sent over the network. Google Pagespeed gives me the above recommendation for making my website ...
-1
votes
2answers
70 views

Software for compresing web projects [closed]

I have web project which is written on html, css, js and php. Is there a software that goes trough every file of the project and compress it to increase preformance (remove all whitespaces, comments, ...
0
votes
1answer
80 views

How do I use html5bolierplate build script?

Okay, so. I've installed Ant. Downloaded the build script. Extracted to Ant installation location. When I run the 'runbuildscript' a cmd interface opens for around a second, and stops. If I ...
0
votes
1answer
471 views

How to minify Wordpress output html code on single line?

i need to speed up my Wordpress blog. I searched around the web, but no success. I want to minify or compress my output html code on one(single) line, like Matt Cutt's blog. I tried W3TC, WP Minify ...
0
votes
4answers
228 views

Html Compressor

I need the pages in my site to load faster. So I heard about an html compressor that can reduce the html size that I send to the client. Does anybody know about a way to do that. I preffer an already ...
2
votes
4answers
117 views

Reducing HTML File Size - something more than minimisation?

I've been looking in Firebug at the Net tab where it shows the size of files. A lot of high traffic sites seemingly have surprisingly small initial GET sizes for the url. For example, GET ...
0
votes
1answer
73 views

Plain HTML and Compressed Javascript File

I have a plain html file like so <html> <head> <script type="text/javascript" src="script.js"></script> </head> </html> The script.js file is - ...
7
votes
2answers
193 views

Compressing and caching CSS with PHP

I am currently trying to achieve a compression method for my CSS files. I am basically copying the same way I do it for my JS files, but it is not working. I checked with Firebug tool, but there is no ...
0
votes
3answers
61 views

Minimize size of HTML file

I have a large HTML file being generated for a report at the moment (around 2-3 mb) and this file is going to be transferred a lot of times. It is not being access through any form of a web host, it ...
2
votes
3answers
341 views

Compacting/minifying dynamic html

I am using django templating, and for readability I have html that looks similar to the following: {% if some_variable %} text {% else %} nothing exists here {% endif %} {% for item in set ...
6
votes
9answers
2k views

How to minify HTML with CSS and Javascript?

I have a .html document with CSS and Javascript inside of document (no external files). Is there some online tool that would minify document and Javascript to some very small footprint? I saw many ...
-1
votes
1answer
82 views

PHP script is not working because of “raw data”

I have the following php code: <?php include "../config.php"; //includes the connection data $query="SELECT userinvites.user_id, COUNT( * ) AS user_count, users.fname, users.lname, ...
1
vote
0answers
193 views

JavaScript library for compressing POST data?

I'm building a chrome extension which will send strings of HTML to a server via POST requests. I'd like to compress these strings before sending them as some of them could be quite large. Are there ...
0
votes
2answers
167 views

Minimize (compress; deflate) html for database storage: is it necessary?

I am storing the HTML from the body of emails in a SQL Server nvarchar(max) column. Is there any benefit in minimizing the HTML on the way in? By minimizing I mean removing redundant white space and ...
0
votes
5answers
165 views

Make site Load Faster

I have 8 MB in PNG files but the Problem is that i cant decompress them anymore i tried every png compressor. Maybe thre is also something in the code? Because the site takes damn forever to load. Is ...
4
votes
3answers
419 views

Before deployment, is there tool to compress HTML class attribute and CSS selectors?

In current project, I was asked for compressing the HTML class attribute and corresponding CSS selectors before deployment. For example, the code on production is: <div class="foo"> <div ...
0
votes
1answer
422 views

How to Compress an ASPX Page?

I followed the sample from here to compress my page: http://www.codeproject.com/KB/aspnet/Aspx_Compression.aspx But the result I get is a page full of odd characters: ...
1
vote
2answers
98 views

compress mark-up

More a theoretical question. We compress/minify css & js, but has anyone ever thought or tried to compress mark-up? Q: Benefits (Pro/Contra) of mark-up compression, possible tools and scripts. ...
0
votes
2answers
86 views

compressing entire webpages (HTML and JS)

I have found some tools like this one that let me create "auto-extracting" javascript for javascript code in a web page, which employ a variety of techniques to minimize transfer size. I have a ...
2
votes
4answers
616 views

Online JS / CSS / HTML minifier

Is there a service out there that provides public API for compressing CSS or Javascript? (Like imgur let's you upload images trough PHP and get the image URL)
0
votes
4answers
51 views

Page code compression is really needed?

I don't really love when the code in the page is written in one line, when I wasting a lot of time to try to understand something in there, really the compressed code written in a page worth it? By ...
2
votes
1answer
118 views

How/Where to store data on the client's HTML

I am storing a skeletal snapshot of the web page that the server generates in the HTML itself, so when i send Ajax requests back to the server, the server can find out what the page the client has ...
1
vote
3answers
460 views

how to generate html with php to return after ajax call

I generate all my html on my page with ajax calls and never refresh my page. My setup is something like HTML: <a id="user_click_here">test link</a> JQUERY: ...
1
vote
3answers
4k views

How to compress html output in php? [duplicate]

Possible Duplicate: How to minify php page html output? I mean strip out all the line breaks and spaces in html and puts it on one line. I tried this function public static function ...
0
votes
1answer
641 views

generate and compress html and send in response to ajax request then decompress with jquery/js

Ok. So I have a ajax request that I send to the server. This response contain the html that I am going to append to the site. My goal is to never reload the page, instead remove and add html with ajax ...
0
votes
2answers
588 views

downloadable html5 & css3 compressors?

is there any downloadable, html5 & css3 compressors that i could put on my site for people to use since I don't quite have the knowledge, or time, or money to do it myself?
1
vote
5answers
238 views

Compacting HTML and Javascript

Recently I noticed that the source code of Google pages became really small. It's literally compressed to less than 20 lines (search result for "stackoverflow"). My assumption is that Google ...
3
votes
3answers
80 views

HTML load speedup

I want to speed up loading of an HTML page. I know I can compress the HTML, JS, and CSS, however I was thinking of taking this a step further. Instead of having links to CSS and JS files, I would (or ...
0
votes
3answers
750 views

PHP compress files into zip

Hello there okay so this is the deal i have a folder where my mp3 files are stored for single download, and now i want a feature where you can download all the mp3s at once in a zipped folder. Is it ...
3
votes
4answers
638 views

Compressing web pages with php, javascript, html, and css in them

I have found utilities that can compress html, javascript, and css files individually. However, lets say I have a file called homepage.php with php at the top of the page, css and javascript in the ...
3
votes
1answer
885 views

PHP - compress static css file with GZIP

so I have a css file, style.css. in the same directory I have the images/ folder. How can I make a script that compresses style.css, but from another folder? Right now I have this: <?php ...
3
votes
2answers
341 views

What are the best HTML+CSS compression methods?

I have an ASP.NET web application and I'm thinking about the following: before sending any HTML or CSS content to users, I wish to 'compress' them, then cache the result and send that to the clients. ...
1
vote
4answers
597 views

How to handle large image in HTML page

I have a large JPEG image about 3500 x 2500 pixels and 4 MB size. I want to display this image in a HTML page so that it takes about 3/4 of the screen, and also compress it, so that it loads ...
0
votes
2answers
188 views

How to easily, transparently, serve gzipped html files to the user's browser?

The user, when he clicks a link, needs to get my compressed html file that his browser will uncompress automatically, without any fuss. What must I do on the server side to accomplish this? Thanks! ...
1
vote
2answers
368 views

How to automatically update or compress a CSS, JS and HTML file every time I save its “source file” in Vim?

I wanted to minimize or compress CSS, Javascript and maybe Html files like Google does. Because, I used Google's Page-Speed and it recommended me to compress files. It provides me the compressed ...
4
votes
5answers
358 views

Who Compresses their HTML?

Even Stack Overflow doesn't compress their HTML. Is it recommended to compress HTML? As far as I've seen, it looks like Google is the only one.... (view the source). Why isn't this standard ...
3
votes
9answers
369 views

Compression algorithms specifically optimized for HTML content?

Are there any compression algorithms -- lossy or lossless -- that have been specifically adapted to deal with real-world (messy and invalid) HTML content? If not, what characteristics of HTML could ...
1
vote
2answers
466 views

Optimize and compress HTML

I have a few hand-crafted web pages. When deploying them I would like to run them through a tool so that new smaller HTML files are created, with extraneous whitespace taken out, etc. We already use ...
3
votes
2answers
3k views

Save JPG in progressive format

<Extension()> _ Public Sub Save(ByVal b As Bitmap, ByVal FileName As String, ByVal Compression As Long, ByVal MimeType As String) Dim Params As EncoderParameters = New EncoderParameters(2) ...
-1
votes
2answers
497 views

gzip compression in html [duplicate]

Possible Duplicate: GZIP Compression is not working on IIS 7 … Please Help …! i want to apply gzip compression on my site , all my site is in html and i have following ...
4
votes
6answers
912 views

Compressing CSS and JS without mod_gzip and mod_deflate

I would like to compress the CSS and JS files on my server to minimise load times, problem. My hosting is with Streamline.net (big mistake, never go there) who will not activate mod_gzip and ...
1
vote
3answers
105 views

Is there a compressed representation of Xpath?

I am working on a project which requires working with XPath (on HTML). The (multiple) XPath is transferred to client-side inside JavaScript. Since XPath strings are long, I was wondering if there is a ...
0
votes
6answers
174 views

How to minimize the no of css

Just like javascript compressor, i use the same technique for css. First, i merge all the file into a single file and then compressor. But, the behaviour of HTML is not same as earlier with multiple ...
13
votes
7answers
14k views

HTML online minimizer/compressor?

Does anyone know of a good online generator to take the source code of an HTML page and compress/minimize the entire page. Meaning, compress/minimize all embedded CSS, JavaScript and obviously the ...
11
votes
3answers
4k views

CSS Minimizer?

Do you know of an online CSS compressor that helps remove redudant/ineffecient CSS declarations and replaces it with more optimized CSS? Meaning, I know that a lot of "compressors" exist that simply ...

1 2