GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   How fast does my page load? (https://gfy.com/showthread.php?t=1219447)

dave90210 09-30-2016 12:06 AM

How fast does my page load?
 
I was optimizing my header and I put it at full resolution so it looks good on Retina screens. Please click on my link in my sig and let me know does it load normally for you? I'm on a very fast 300 mb connection so I can't base it off my internet speed since it's probably faster than most peoples. The header file size is 252 kb which is around double what I used to have it set to

Denny 09-30-2016 12:54 AM

It's not bad here, but it could be faster.

dave90210 09-30-2016 01:32 AM

What's your internet speed?
Quote:

Originally Posted by Denny (Post 21193078)
It's not bad here, but it could be faster.


Denny 09-30-2016 01:49 AM

Quote:

Originally Posted by dave90210 (Post 21193096)
What's your internet speed?

100 mbps

stoka 09-30-2016 01:52 AM

that jpg is too heavy, it can be sized down to <100Kb and you won't see much or any difference

j3rkules 09-30-2016 03:41 AM

Pretty fast, about two seconds.

https://tools.pingdom.com/#!/b6kIqZ/...vrpadding.com/

CurrentlySober 09-30-2016 03:47 AM

I was gonna make some stupid joke about it loading faster than a female flatmate can give her boyfriend a key, but tbh there WAS a delay.

Page hung pure white for about 7 seconds before suddenly all appearing at once. I'm in the UK on a mac using chrome as a browser and Im connected at about 75mb download speed. HTH

NoWhErE 09-30-2016 06:10 AM

Your head contains way too many scripts and loads way too many things. This is why most people will see a white page for a few seconds before the HTML appears.

Get rid of:
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Premium Gear VR foam replacements &raquo; Feed" href="https://vrpadding.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Premium Gear VR foam replacements &raquo; Comments Feed" href="https://vrpadding.com/comments/feed/" />

Then get rid of the emoji JS
defer load all the css styling except for your main css
async load your js scripts or put them in the footer

get rid of this:
<link rel='https://api.w.org/' href='https://vrpadding.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://vrpadding.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://vrpadding.com/wp-includes/wlwmanifest.xml" />

Move your FB pixel to the bottom of the page or load it async in a seperate JS file.



That's just some of the more basic mods I would do to speed up your site load.

Barry-xlovecam 09-30-2016 06:13 AM

Problem is with your hosting.

Code:

; <<>> DiG 9.10.3-P4-Ubuntu <<>> vrpadding.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 6859
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1280
;; QUESTION SECTION:
;vrpadding.com.                        IN        A

;; ANSWER SECTION:
vrpadding.com.                655        IN        A        198.54.116.197

;; Query time: 0 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Fri Sep 30 08:14:29 EDT 2016
;; MSG SIZE  rcvd: 58

barry@paragon-DS-7:~$ curl https://ipinfo.io/198.54.116.197
{
  "ip": "198.54.116.197",
  "hostname": "s190.web-hosting.com",
  "city": "Los Angeles",
  "region": "California",
  "country": "US",
  "loc": "34.0355,-118.4298",
  "org": "AS22612 Namecheap, Inc.",
  "postal": "90064"
}barry@paragon-DS-7:~$

100 ms to Los Angeles is bad. My route is through the ATT hub in Chicago I usually get 70ms - 80ms to the US west coast.


https://s18.postimg.org/wr2q95k05/vrpadding.png
Thumblink^

Bottom line = 3.65 Seconds all 200 OK (Cleared Cache) in Chrome with no other tabs open.

3xmedia 09-30-2016 05:50 PM

your site is hosted on a shared hosting and there are almost 500 other sites on the server so you can't expect any great speeds.

dillfly2000 09-30-2016 09:18 PM

Seems alight in southern Manitoba. Though I think I clicked your site before, might be some cache going on.

dave90210 09-30-2016 10:20 PM

Can you try it on your cellphone? When I try it on cellphones it loads very slow for me. Try clicking on the recent products pictures at the bottom of the screen and see if you have to click multiple times for the product pages to open.
Quote:

Originally Posted by dillfly2000 (Post 21194563)
Seems alight in southern Manitoba. Though I think I clicked your site before, might be some cache going on.


If I delete all of this minus the FB pixel will it mess up some of the plugins I have on my site?
Quote:

Originally Posted by NoWhErE (Post 21193354)
Your head contains way too many scripts and loads way too many things. This is why most people will see a white page for a few seconds before the HTML appears.

Get rid of:
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Premium Gear VR foam replacements &raquo; Feed" href="https://vrpadding.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Premium Gear VR foam replacements &raquo; Comments Feed" href="https://vrpadding.com/comments/feed/" />

Then get rid of the emoji JS
defer load all the css styling except for your main css
async load your js scripts or put them in the footer

get rid of this:
<link rel='https://api.w.org/' href='https://vrpadding.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://vrpadding.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://vrpadding.com/wp-includes/wlwmanifest.xml" />

Move your FB pixel to the bottom of the page or load it async in a seperate JS file.



That's just some of the more basic mods I would do to speed up your site load.

Which host do you recommend that has a pretty good yearly rate?
Quote:

Originally Posted by Barry-xlovecam (Post 21193363)
Problem is with your hosting.

Code:

; <<>> DiG 9.10.3-P4-Ubuntu <<>> vrpadding.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 6859
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1280
;; QUESTION SECTION:
;vrpadding.com.                        IN        A

;; ANSWER SECTION:
vrpadding.com.                655        IN        A        198.54.116.197

;; Query time: 0 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Fri Sep 30 08:14:29 EDT 2016
;; MSG SIZE  rcvd: 58

barry@paragon-DS-7:~$ curl https://ipinfo.io/198.54.116.197
{
  "ip": "198.54.116.197",
  "hostname": "s190.web-hosting.com",
  "city": "Los Angeles",
  "region": "California",
  "country": "US",
  "loc": "34.0355,-118.4298",
  "org": "AS22612 Namecheap, Inc.",
  "postal": "90064"
}barry@paragon-DS-7:~$

100 ms to Los Angeles is bad. My route is through the ATT hub in Chicago I usually get 70ms - 80ms to the US west coast.


https://s18.postimg.org/wr2q95k05/vrpadding.png
Thumblink^

Bottom line = 3.65 Seconds all 200 OK (Cleared Cache) in Chrome with no other tabs open.


Spunky 09-30-2016 10:31 PM

I've got a load for her

MiamiBoyz 10-01-2016 03:03 AM

https://vrpadding.com/wp-content/upl...10/Headers.jpg

FlowerKid 10-01-2016 08:25 AM

On my Vista machine it takes 3.17s using Firefox.
https://anoshare.com/img/romuvagokasufivo.png

money biz 10-01-2016 09:03 AM

put that header on another another ip.

dave90210 10-01-2016 10:42 AM

Is that bad?
Quote:

Originally Posted by FlowerKid (Post 21195004)
On my Vista machine it takes 3.17s using Firefox.
https://anoshare.com/img/romuvagokasufivo.png

It's part of a slider I can't.
Quote:

Originally Posted by money biz (Post 21195037)
put that header on another another ip.


Sly 10-01-2016 10:52 AM

From a marketing perspective, the bullet points in your header are not good at all.

Nobody equates pleather with high-quality. You are listing manufacturing features which nobody really cares about, explain benefits instead which is what people want when they purchase a product. Why would someone want to buy these? Will it make the VR experience easier? Less pressure around eyes? More comfortable? Etc.

Good luck.

EddyTheDog 10-01-2016 11:35 AM

Ignore...

dave90210 10-02-2016 01:01 AM

I'll fix that eventually! My main focus right now is the loading on the cellphones
Quote:

Originally Posted by Sly (Post 21195142)
From a marketing perspective, the bullet points in your header are not good at all.

Nobody equates pleather with high-quality. You are listing manufacturing features which nobody really cares about, explain benefits instead which is what people want when they purchase a product. Why would someone want to buy these? Will it make the VR experience easier? Less pressure around eyes? More comfortable? Etc.

Good luck.



All times are GMT -7. The time now is 03:33 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc