Sunday, February 16, 2014

Add Browser Cache (Expires Header) to Improve Site Speed

Add Browser Cache (Expires Header) to Improve Site Speed

When a web browser loads your webpage contents, It will load several files like your logo, your CSS, js, image files, and other resources. If you set Expires time to your files files on your webpages will stored on some period of time which u set. It will increase your website load time.

Here it is the code for Expires Caching
## Expires Caching ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css "access 1 month"
ExpiresByType image/jpg "access 1 month"
ExpiresByType image/jpeg "access 1 month"
ExpiresByType image/gif "access 1 month"
ExpiresByType image/png "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 month"
ExpiresDefault "access 1 month"
</IfModule>
## Expires Caching ##

Copy Code:


Friday, February 14, 2014

Infolinks Offers You Exclusive Ads‏ - We have recently formed a partnership with Google AdExchange

Infolinks Offers You Exclusive Ads‏

Dear Sandy,

We have recently formed a partnership with Google AdExchange to bring more quality demand to our publishers. This partnership will provide greater relevancy and competitive CPMs for our ad solutions.

To gain access to this demand, please click here and fill out the form. 

We can opt you out at any time and we will be monitoring your account's performance closely.

We hope you will take part in this highly profitable opportunity!

Best,
The Infolinks Team
support@infolinks.com


Sunday, February 9, 2014

What will come in place of the question mark (?) : 28% of 450 + 45% of 280 = ?

What will come in place of the question mark (?) : 28% of 450 + 45% of 280 = ?

What will come in place of the question mark (?) : 28% of 450 + 45% of 280 = ?
 (a) 126
 (b) 252
 (c) 324
 (d) 212
 (e) None of these


Ans: ( b )  252

What will come in place of the question mark (?) : 37.5 ÷ (27)1.5 x 92 = 3?

What will come in place of the question mark (?) : 37.5 ÷ (27)1.5 x 92 = 3?

What will come in place of the question mark (?) : 37.5 ÷ (27)1.5 x 92 = 3?
 (a) 5
 (b) 4.5
 (c) 7
 (d) 6.5
 (e) None of these

Ans: ( c )  7

What will come in place of the question mark (?) : 2435 ÷ 24 = 24?

What will come in place of the question mark (?) : 2435 ÷ 24 = 24?

What will come in place of the question mark (?) : 2435 ÷ 24 = 24?
 (a) 2.5
 (b) 3.5
 (c) 2
 (d) 3
 (e) None of these


Ans: ( a )  2.5

What will come in place of the question mark (?) : 12.05 x 5.4 ÷ 0.6 = ?

What will come in place of the question mark (?) : 12.05 x 5.4 ÷ 0.6 = ?

What will come in place of the question mark (?) : 12.05 x 5.4 ÷ 0.6 = ?
 (a) 105.55
 (b) 108.45
 (c) 118.45
 (d) 118.55
 (e) None of these



Ans: ( b )  108.45


What will come in place of the question mark (?) : 300 + (10)2 x 2 = ?

What will come in place of the question mark (?) : 300 + (10)2 x 2 = ?

What will come in place of the question mark (?) : 300 + (10)2 x 2 = ?
 (a) 450
 (b) 800
 (c) 500
 (d) 550
 (e) None of these




Ans: ( c )  500


What will come in place of the question mark (?) 7589 ? ? = 3434

What will come in place of the question mark (?) in the following questions?



What will come in place of the question mark (?) in the following questions?
7589 ? ? = 3434 
 (a) 3721
 (b) 4155
 (c) 3246
 (d) 11023
 (e) None of these





Ans: ( b )  4155

Thursday, February 6, 2014

How to Fix / Remove Duplicate Meta Description in Blogger Posts and Homepage

How to Fix / Remove Duplicate Meta Description in Blogger Posts and Homepage

This post shows how to remove duplicate meta description in blogger posts and homepage.

To fix duplicate meta descriptions in blogger follow these easy steps:
    Go To Blogger > Template
    Backup your template
    Click Edit HTML
Search for the following code

<meta expr:content='data:blog.metaDescription' name='description'/>


Now replace above code into

<b:if cond='data:blog.url != data:blog.homepageUrl'>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>