Help

This is simply a dictionary of terms and a glossary of acronyms.

Remote Address

This is the IP address, in this situation, the public IP address, from which you are connecting to this site's HTTP server.

IP addresses are 32-bit binary numbers expressed in dotted decimal notation.  "01111111000000000000000000000001" is the binary representation of the IP address of your computer's/device's (etc.) loopback interface.  That number in dotted decimal notation is "127.0.0.1".

This is the SSI HTTP environment variable REMOTE_ADDR.

Remote Port

This is the port from which you are connecting to this site's HTTP server.

Ports are 16-bit binary numbers expressed in decimal as unsigned integers.  This number will likely be between 1024 and 65535 or between 32768 and 65535 depending on your operating system.

This is the SSI HTTP environment variable REMOTE_PORT.

User Agent

This is the identifier for your browser and its version.  It also may include information about the platform (computer/device, etc.) it's running on such as the operating system and version as well as the CPU's architecture family.

This information can be used to tailor the browsing experience for your computer/device (etc.) as some site features or formats may differ based on platform.

When you navigate to "toctep.com" with your browser, a request, like the one seen below, is sent to Тостер.com.

GET /index.shtml HTTP/1.1 Host: toctep.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Connection: keep-alive Upgrade-Insecure-Requests: 1

"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0" indicates a Mozilla compatible browser, in this instance, Firefox version 68 using the Gecko browser engine, on Windows 10 64-bit with a 64-bit processor.

This is the SSI HTTP environment variable HTTP_USER_AGENT.

Accepted MIME Types

These are the content types that your browser accepts and optionally the preference/weighting, as a quality value, of those content types.  Quality values are expressed as a number which is 0, 1, or between the two up to the thousandth.

This information can be used by the HTTP server to negotiate with the browser which representation of content should be served.

When you navigate to "toctep.com" with your browser, a request, like the one seen below, is sent to Тостер.com.

GET /index.shtml HTTP/1.1 Host: toctep.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Connection: keep-alive Upgrade-Insecure-Requests: 1

"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" indicates a preference to show the HTML, XHTML, and XML content types over all others.

This is the SSI HTTP environment variable HTTP_ACCEPT.

Accepted Compression Types

These are the compression types your browser supports for when/if the HTTP server sends content compressed.

This information can be used by the HTTP server to negotiate with the browser which representation of content should be served.

When you navigate to "toctep.com" with your browser, a request, like the one seen below, is sent to Тостер.com.

GET /index.shtml HTTP/1.1 Host: toctep.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Connection: keep-alive Upgrade-Insecure-Requests: 1

"gzip, deflate" indicates support for the Gzip and DEFLATE compression algorithms.

This is the SSI HTTP environment variable HTTP_ACCEPT_ENCODING.

Accepted Languages

These are the languages that your browser accepts and optionally the preference/weighting, as a quality value, of those languages.  Quality values are expressed as a number which is 0, 1, or between the two up to the thousandth.

This information can be used by the HTTP server to negotiate with the browser which representation of content should be served.

When you navigate to "toctep.com" with your browser, a request, like the one seen below, is sent to Тостер.com.

GET /index.shtml HTTP/1.1 Host: toctep.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Connection: keep-alive Upgrade-Insecure-Requests: 1

"en-US,en;q=0.5" indicates preference for English, as written in the United States.

This is the SSI HTTP environment variable HTTP_ACCEPT_LANGUAGE.

Date/Time

This is the current date and time (as GMT) on the server at the time of the connection to the HTTP server.

This is the SSI HTTP environment variable DATE_GMT, formatted using the config directive using the timefmt parameter.

Local Date/Time

This is the current date and time (as GMT) on the server, adjusted for your computer's configured time zone, at the time of the connection to the HTTP server.

This is a string constructed from parsing the SSI HTTP environment variable DATE_GMT, using various JavaScript functions.

Acronym Glossary

CPU
Central Processing Unit.  Primary control center of a computer/device (etc.), which in the context of a computer, could refer to the main housing for the main processor/processors or the main processor/processors specifically.
CSV
Comma-Separated Values.  A comma delimited text file often used for spreadsheets.
GMT
Greenwich Mean Time.  The mean solar time since midnight at the Royal Observatory in London (Greenwich), England.  Similar to, but not the same as Universal Coordinated Time (UTC). GMT is a time zone while UTC is a time standard.  GMT is the same as UTC±00:00 whereas PST is the same as UTC-08:00.
HTML
Hypertext Markup Language.  A markup language used to create webpages.
HTTP
Hypertext Transfer Protocol.  The rules and methods that govern the transmission of web content.  In both the IP suite and the Open Systems Interconnection (OSI) model, HTTP is in the application layer.
HTTPS
Hypertext Transfer Protocol Secure.  Identical to HTTP but served over a secure channel using Secure Sockets Layer (SSL) or Transport Layer Security (TLS).  Also known as HTTP over SSL or HTTP over TLS respectively.
IP
Internet Protocol.  The rules and methods that govern the transmission of data between computers/devices (etc.).  It is the underlying technology upon which the Internet, and by extension the World Wide Web, runs.
JSON
JavaScript Object Notation.  Like Extensible Markup Language (XML), but a data format rather than a markup language, a way to share data between various applications, like, but not limited to, browsers or between webpages/websites.
MIME
Multipurpose Internet Mail Extensions.  A model for defining types and subtypes of media for displaying or serving content in e-mail, the World Wide Web, and more.
SSI
Server Side Includes.  A server-side interpreted scripting language used for webpages.
UTC
Coordinated Universal Time (ask the International Telecommunication Union why the acronym is what it is).  A time standard for coordinating time universally, based on International Atomic Time (TAI, ask the International Bureau of Weights and Measures why the acronym is what it is) with adjustment for leap seconds.  The GMT time zone isn't the same as, but is similar to, UTC... in a way.
XHTML
Extensible Hypertext Markup Language.  Like HTML but with the strict formatting rules of XML.
XML
Extensible Markup Language.  Like HTML but with stricter formatting rules.  While HTML is intended for browser to display content, XML is meant to be for sharing data between various applications, like, but not limited to, browsers or between webpages/websites.

Home    About This Site    Privacy Policy

©MMXXIII Тостер.com.  All rights reserved.