Skip to content

Technology Forum

SEO, Speed Up website, Server Optimization, Linux, Open Source Softwares

  • Home
  • General
    • Web Server
    • Website Formatting
  • IT Companies
  • Optimization
    • PHP
  • Linux
  • Home
  • General

Category: General

General discussion forum

Security HTTP Headers

Posted on July 15, 2018May 6, 2022 By admin No Comments on Security HTTP Headers
Web Server

List of Security HTTP Headers: X-Frame-Options: // Raw header X-Frame-Options: sameorigin // How to send the response header with PHP header(“X-Frame-Options: sameorigin”); // How to send the response header with Apache (.htaccess) Header set X-Frame-Options “sameorigin” // How to send the response header with Express.js app.use(function(req, res, next) { res.header(“X-Frame-Options”, “sameorigin”); next(); }); X-XSS-Protection // … Read More “Security HTTP Headers” »

Resolving Public DNS Server List

Posted on January 23, 2018June 18, 2022 By admin No Comments on Resolving Public DNS Server List
PHP, Servers

This information is largely available online; however, I’ve taken the time to compile a list of the common DNS servers here for your own reference. These servers do not belong to internet service providers but other companies ranging from Google, OpenDNS, DNS.Watch and several others. You can use a command such as Dig to query … Read More “Resolving Public DNS Server List” »

SMTP reply codes

Posted on March 19, 2016February 15, 2023 By admin No Comments on SMTP reply codes
Servers

See rfc2821 for the basic specification of SMTP; see also rfc1123 for important additional information. See rfc1893 and rfc2034 for information about enhanced status codes. Check the RFC index for further mail-related RFCs. Reply codes in numerical order Code Meaning 200 (nonstandard success response, see rfc876) 211 System status, or system help reply 214 Help … Read More “SMTP reply codes” »

Apache Prefork versus Worker

Posted on October 5, 2015October 5, 2015 By admin No Comments on Apache Prefork versus Worker
PHP, Web Server

Prefork: The prefork MPM uses multiple child processes with one thread each. Each process handles one connection at a time. On many systems, prefork is comparable in speed to worker, but uses more memory. Prefork’s threadless design has advantages over worker in some situations: it can be used with non-thread-safe third-party modules, and it is … Read More “Apache Prefork versus Worker” »

Popular Sites run on which Platforms?

Posted on January 11, 2015January 11, 2015 By admin No Comments on Popular Sites run on which Platforms?
General

Site Up Since Server Platform Programming Language Google.com November 1998 Linux C, Java, C++, PHP & MySQL Facebook.com February 2004 Linux PHP, MySQL and C++ YouTube.com February 2005 Linux C, Java and MySQL Yahoo.com August 1995 Linux C++, C, Java, PHP & MySQL MSN.com (owned by Microsoft) August 1995 Windows ASP.net Live.com (owned by Microsoft) … Read More “Popular Sites run on which Platforms?” »

Posts navigation

1 2 … 4 Next

View Posts

  • HTML: Link rel – Preload
  • HTML: Attributes of rel
  • Linux Commands
  • Security HTTP Headers
  • WCAG 2.0 checklist

Categories

  • Domain Name
  • General
    • Servers
    • Web Server
    • Website Formatting
  • IT Companies
  • Linux
  • MySQL
  • Optimization
    • PHP
  • Troubleshooting
  • Web Hosting Control Panel
    • Plesk Panel
  • Websites
    • CSS
    • HTML
    • Optimization
  • Windows
    • Windows 10

Recent Posts

  • HTML: Link rel – Preload
  • HTML: Attributes of rel
  • Linux Commands
  • Security HTTP Headers
  • WCAG 2.0 checklist

Copyright © 2023 Technology Forum.