pingdom

Explanation of Pingdom Results

怎甘沉沦 提交于 2019-12-24 03:55:11
问题 I'm trying to optimize my page load times, and I'm using Pingdom to test the site response times. However, I'm not exactly sure what the various components of the "time bar" mean. Example link: http://tools.pingdom.com/fpt/?url=http://neosmart.net/forums//&id=2230361 According to them, the portion of the bar that is yellow is the time between "start" and "connect" and the portion of the bar that is green is the time between "connect" and "first byte" with the blue section being the actual

why could my website be 'loading' twice?

删除回忆录丶 提交于 2019-11-29 22:39:36
问题 or at least that's what pingdom says, and i think it's a pretty reliable service, Notes: APACHE: php & mysql No iframes htaccess: #Gzip <ifmodule mod_deflate.c> AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x- javascript application/javascript </ifmodule> #End Gzip # 480 weeks <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|css|swf)$"> Header set Cache-Control "max-age=290304000, public" </FilesMatch> # 1 weeks <FilesMatch "\.(js)$"> Header set Cache

Unexpected error on UrlFetchApp.fetch in Google Apps script

六月ゝ 毕业季﹏ 提交于 2019-11-29 17:44:30
I'm trying to access the Pingdom API in Google Apps script following that example: https://developers.google.com/apps-script/external_apis query = 'credits'; var username = 'foo'; var password = 'bar'; var credentials = username+':'+password; var url = 'https://'+credentials+'@api.pingdom.com/api/2.0/'+encodeURIComponent(query); var headers = { "App-Key": "abcd", }; var options = { "method": "get", "headers": headers, 'validateHttpsCertificates':false }; Logger.log(url); var response = UrlFetchApp.fetch(url); The code execution breaks with the below error: Unexpected error: https://foo:bar@api

Unexpected error on UrlFetchApp.fetch in Google Apps script

眉间皱痕 提交于 2019-11-28 11:52:53
问题 I'm trying to access the Pingdom API in Google Apps script following that example: https://developers.google.com/apps-script/external_apis query = 'credits'; var username = 'foo'; var password = 'bar'; var credentials = username+':'+password; var url = 'https://'+credentials+'@api.pingdom.com/api/2.0/'+encodeURIComponent(query); var headers = { "App-Key": "abcd", }; var options = { "method": "get", "headers": headers, 'validateHttpsCertificates':false }; Logger.log(url); var response =