HTML loadtime is very slow & HTTP header


Status
Not open for further replies.

balinter

Apprentice 1.0
HTML loadtime is very slow
Yang berikut permasalahan:
The HTML loadtime is very slow (1.6 seconds). The loadtime should be less than 0.4 seconds. Slow sites are harder to crawl.

Faktor apa yang membuat lambat ?

HTTP header
The X-powered header is sent within the response header. This is useless and unnecessarily increases the request size.
 

ceo.ahlul

Expert 1.0
Ini yang dimaksudkan benaran file html nya atau tools yang buat ngecek melaporkan HTML nya?

Kalau semisal bukan HTML, misal php coba di test internal PHP nya.. misal:

Taruh ini di head:

PHP:
<?php
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$start = $time;
?>

Taruh ini di footer:

PHP:
<?php
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$finish = $time;
$total_time = round(($finish - $start), 4);
echo 'Page generated in '.$total_time.' seconds.';
?>

Kalau misal hampir mirip dengan load yang di cek sebelumnya berarti kemungkinan proses internalnya, misal lama karena query sql dan sebagainya.
 

IDreg.Net

Expert 2.0
HTML loadtime is very slow
Yang berikut permasalahan:
The HTML loadtime is very slow (1.6 seconds). The loadtime should be less than 0.4 seconds. Slow sites are harder to crawl.

Faktor apa yang membuat lambat ?

HTTP header
The X-powered header is sent within the response header. This is useless and unnecessarily increases the request size.
coba cek di sini www.gtmetrix.com >> terus Optimasi :D

Semoga membantu..
 

exabytes-id

Expert 1.0
coba juga Tuan di pingdom atau google check speed nanti akan ada keterangan lebih detailnya.
apa aj yang harus di optimasi. :)
 
Status
Not open for further replies.

Top