Skip to main content

Posts

Showing posts with the label HTML

HTTP2 Server Push in Apache2

Server Push is one of the most significant features in the HTTP/2 protocol. In this post, We will see a very simple demo of the Server Push feature using HTTP/2. Below is the list of tools and tech used in the demo. Ubuntu 16.04 Chrome 60.0.3112.101 Apache2 Some browsers require TLS 1.2 to support HTTP/2. So We need to configure https on Apache server. Try to open the URL https://localhost in your browser. If the above URL not responding, It means you need to configure HTTPS on your Apache server. Please refer to the digital ocean page. https://www.digitalocean.com/community/tutorials/how-to-create-a-ssl-certificate-on-apache-for-ubuntu-14-04 I hope the URL https://localhost is working now and We can proceed further. We will do it into 2 parts. Part-I: We will just enable the HTTP/2 protocol Part-II: We will configure server push feature Part-I: Enable HTTP/2 First, check the below points. Make sure you have the http2 module in your apache. Naviga...

Error parsing XML, line 653, column 90: The reference to entity "skin" must end with the ';' delimiter.

                      I n the following post we will look up an error, heading of the post. If you are trying to insert some code in a web project,an existing website or blogger template. The following error can occur. "Error parsing XML, line 653, column 90: The reference to entity "skin" must end with the ';' delimiter." If you go to the location in file as mentioned line number and column number(obviously line no. and column no. can be different in each case) in the error string, You will see the html entity. HTML entity is a symbol which you can not use directly but you have to replace the symbol with some formatted text. For example we replace ' Here the list of html entities and their equivalent name. Result Description Entity Name Entity Number non-breaking space     ...