Quality and Performance report
https://jualthorhammerasli.com/Report generated on May 22, 2018 8:39:41 AM
Requests
Weight
Technologies :
Share this report by email
Feel free to share this report with your collaborators, by copying the URL from the address bar,
or by clicking below:
Share the report
Tips and best practices:
All categories
Things to improve
5 of your requests don't define a cache policy with WordPress
The Expires
header is essential for an efficient caching policy. It will significantly impact on the loading time for returning visitor.
The Expires header explained
You can set an expiration date for each resource: as long as the date is not exceeded, the browser stores and uses the resource in cache.
The expiry date of resources is set using the Expires
HTTP header:
Expires: Thu, 25 Dec 2014 20:00:00 GMT
You can set a far expiry date for static resources (1 year maximum), and a closer date for resources that change more frequently (at least 48 hours).
When you deploy a new version of your website, remember to rename static resources that have been modified. If you do not change their names, your users will keep resources corresponding to the old versions stored in their caches, and they may find themselves on an unstable version of your page. For example:
myresource.min.20140101.js
See the Yahoo! guidelines on this subject.
What should I do?

This page contains 5 resources without expiry date:
Optimize your images with WordPress
Properly formatting and compressing images can save many bytes of data.
Optimize the following images to reduce their size by 31.5KiB (28% reduction).
- Losslessly compressing jualthorhammerasli[...].jpg could save 27.5KiB (43% reduction).
- Losslessly compressing jualthorhammerasli[...].png could save 2.3KiB (36% reduction).
- Losslessly compressing jualthorhammerasli[...].png could save 1.7KiB (5% reduction).

The Content Security Policy is missing
It is critical to restrict the origin of the contents of your webpage to protect your website from cross-site scripting attacks (XSS).
XSS attacks explained
An XSS attack aims to inject content into a page.
You can protect your pages against these attacks by implementing a content security policy that tells the web browser which servers are allowed to deliver resources on each page. If the browser makes a request to an unauthorized server, it must inform the user.
How can I prevent an XSS attack?
Set up a "Content-Security-Policy" (CSP) HTTP header. To specify a security policy on the source of your resources, configure your server so the response of the first resource contains the "Content-Security-Policy" HTTP header.
Here's an example:
Content-Security-Policy: script-src 'self' https://apis.google.com
In this case, the page loads correctly provided that all the scripts come from the current host or https://apis.google.com.
Read more about the CSP HTTP header. You can also look at the CSP directives.
Please, be careful, if the header is misconfigured, some of your content, scripts, or styles may be blocked. That could cause unwanted side effects. Moreover, the restrictions apply to all pages of the website. We recommend you test the different pages of your website before deploying this header in your production environment.
No Content Security Policy on this page: it is more easily exposed to XSS attacks.
Defer parsing of JavaScript
JavaScript can significantly slow down a page display, especially if it is necessary to download an external script.
Defer the use of JavaScript as much as possible to provide a faster start for the page display.
How can I fix this?
Use one of the methods below to defer parsing for external JavaScript files:
- use the async attribute;
- use the defer attribute;
- append the script to the DOM in JavaScript during the onload event;
- make sure your scripts are placed at the bottom of the page (ideally at the end of the body).
96.7KiB of JavaScript is parsed during initial page load. Defer parsing JavaScript to reduce blocking of page rendering.
- jualthorhammerasli[...]12.4 (87.0KiB)
- jualthorhammerasli[...].4.1 (7.7KiB)
- jualthorhammerasli[...]com/ (2.0KiB of inline JavaScript)
Add alt attribute on <img> tags
Moreover, the alt
attribute is also an important criterion for SEO. Indeed, search engines crawlers cannot parse graphic contents. That is why they use the alternative text to return consistent results, like in Google images.
<img src="product.jpg" alt="My product description"/>
The alt
attribute is used in several cases unrelated to SEO:
- When a screen reader is in use for accessibility purposes;
- While image is loading, particularly for slow connections;
- When the image file is not found.
You have 5 img
tags, but the following tag does not define the alt
attribute:
<img title="hammer of thor" src="https://jualthorhammerasli.com/wp-content/uploads/2017/06/jual-thor-hammer-asli.png" />
If nothing seems appropriate for describing an image, you might set an empty text. We advise you to make sure the majority of your images define a relevant text. Read the W3C recommendations here.
This page is exposed to "clickjacking" type attacks
Keep malicious people from integrating your pages into their websites.
Clickjacking explained
This kind of attack happens when your page gets integrated with a malicious website via <frame> or <iframe> tags. By doing this, attackers can persuade users that they are on your own page when they are not. The unsuspecting user may enter personal information that is visible on and thus vulnerable to the malicious website.
To avoid this, always indicate which domains have permission to integrate your pages.
How to prevent clickjacking?
Configure a "X-Frame-Options" HTTP header. Configure your server so the main resource response includes the "X-Frame-Options" HTTP header.
Three values may be defined:
DENY
to prevent any frame or iframe from integrating the page;SAMEORIGIN
to authorize only frames from the same domain name;ALLOW-FROM uri
to indicate the domains allowed to integrate a page into frame (however is not compatible with some browsers)The "X-Frame-Options" HTTP header is not configured on this page; you are more likely to be exposed to clickjacking.
Did you know?
No HTML code is commented
Comments allow you to detail a portion of code and help you navigate more efficiently in the DOM. However, make sure no sensitive information is exposed in your comments.
Well done, none of your comments contains HTML code.
No <noscript> tag is detected
When a web page uses scripts, it is advised to set at least one noscript
tag. It is required to display a message when JavaScript is disabled by the user.
<script type="text/javascript">
document.write('Hello World!')
</script>
<noscript>Your browser does not support JavaScript!</noscript>
More informations about jQuery performance
jQuery is the most used JavaScript library. Upgrade your website performance respecting the jQuery best practices. We recommend that you learn the basics of the jQuery performance, reading the following link: http://learn.jquery.com/performance/.
SSL Certificate
Your SSL certificate will expire on 08/17/2018. Update your certificate before that date.
What happens if my certificate expires?
Letting a certificate expire can have consequences for end users who will then see many error or alert messages while browsing the site, warning them of possible frauds, identity thefts or traffic interceptions. These alerts can have a very negative impact on the user's perception of the visited domain.
This page does not load too much data (418kB)
A too high page weight slows down the display, especially on low speed connections. This can lead to frustration for users paying for data (see whatdoesmysitecost.com).
Evaluate the Weight of my Web Page
In February 2016, the average weight of 100 most visited websites in the world was 1,38MB.
How to reduce the weight of my page?
You can report to our "Data amount" category to discover the possible optimizations in your case. Images are often involved.
Moreover, make sure to build your web pages in order to load data that is essential to the user experience (rendering optimization of the critical path).
For other contents (social networking plugins, advertising, content at the bottom of the page ...), it is better to delay the loading (asynchronous, lazy-loading ...), so they don't override priority contents.
We strongly recommend that you define performance budgets before you carry out your web projects. These budgets can be settled through the DareBoost monitoring feature.
We have established the weight distribution of the page by resource type:
- Images : 77,79% of total weight
- JavaScript : 15,64% of total weight
- CSS : 5,03% of total weight
- Texts : 1,54% of total weight
Here is the weight of the 10 heaviest resources over the network, and that are necessary to load the page:
- jualthorhammerasli.com/wp-content/up[...]-hammer-asli.png (110 kB)
- jualthorhammerasli.com/wp-content/up[...]mmer-of-thor.jpg (90 kB)
- jualthorhammerasli.com/wp-content/up[...]of-thor-asli.jpg (67 kB)
- jualthorhammerasli.com/wp-content/up[...]-hammer-asli.png (43 kB)
- jualthorhammerasli.com/wp-includes/j[...]ry.js?ver=1.12.4 (33 kB)
- jualthorhammerasli.com/wp-content/th[...]in.css?ver=4.9.6 (18 kB)
- https://www.google-analytics.com/analytics.js (15 kB)
- jualthorhammerasli.com/wp-content/th[...]min.js?ver=3.3.2 (9 kB)
- jualthorhammerasli.com/wp-content/up[...]hor-pak-reza.png (7 kB)
- jualthorhammerasli.com/wp-content/up[...]hor-pak-reza.png (7 kB)
This page contains 9 links
Two kind of links exist:
- Internal links that refer to pages with the same domain name;
- External links that point to other websites (must be relevant and point towards quality content).
If you reference many links, you can ask the SEO crawlers to consider only some of them, by adding the rel=nofollow
attribute to the irrelevant ones (e.g., advertisements).
Here is the distribution of 9 links present in the page:
- 8 internal links (88,89%)
- No "follow" external link (0,00%)
- 1 "nofollow" external link (11,11%)
Well done, these best practices are respected
You do not use too long inline scripts
Any script with a significant size should let the browser cached them in order to reduce loading time/improve performance of your returning visitor.
Inline scripts / cache policy
"inline" scripts allow to integrate easily small portions of scripts directly in the HTML code. Example:
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']...,'/analytics.js','ga');
ga('create', 'UA-11111111-1', 'mywebsite.com');
</script>
By doing so, you avoid making a request to the server to retrieve the resource. So inline scripts represent a performance gain if you want to integrate small scripts.
However, once a script has a fairly substantial size, we advise you to outsource it and perform a request to retrieve it. So you will benefit from the cache mechanism.
What should I do?
Outsource your scripts with more than 1500 characters in one or more separate files.
This page defines <h1> and <h2> tags
We recommend putting page keywords in at least the h1 and h2 tags. Search engines use the h1, h2, and h3 tags for SEO purposes.
This page contains:
- 1 <h1> element(s)
- 2 <h2> element(s)
- 1 <h3> element(s)
You have defined a <meta> 'description'
The page should define a unique description.
Description in search engines
The description of the page may be directly displayed in search engine results pages (SERP):

It allows you to control at best the entry preview in search engines, and to improve the click rate to your page. Learn more.
How to define a page's description?
Use <meta name="description" content="page description">
and place it in the <head>
tag.

This page defines one <meta> description
:
Kami adalah penjual HAMMER OF THOR terpercaya karena obat kuat hammer ini asli di website ini
This page uses only standard image formats
The images that use a non-standard format may not be indexed by search engines.
Only these image formats are considered standard on the web: jpeg, jpg, png, gif, svg, ico, webp. You should consider an alternative to any other format.
Moreover, remember to treat the text around your images: some search engines analyze approximately the 10 words preceding and following the image in order to add a context to the image.
No frameset, frame and noframes tags detected
These tags are obsolete, due to several issues related to the navigation consistency, SEO or browsers' bookmark features for example.
None of these tags is detected on this page.
The use of the iframe tag is prefered.
This page specifies a <title> tag
The page should define a unique title (using a <title> tag).
Use of titles by search engines
Once properly configured, the page title can be displayed in the search engine results page:

Using a suitable title is a major criterion for SEO. It allows you to control at best what is displayed in search results pages, and determine the keywords you want your site pops out.
How to define the title of a web page?
The title of the page is specified into the <title>
tag, which must be placed into the <head>
tag, at the beginning of the code.
This page defines a title the title
tag.
Here is the page's title:
PENJUAL HAMMER OF THOR TERPERCAYA (THORS HAMMER)