Questions tagged [web]

Do not use this tag. For questions related to an aspect of the world wide web, use a more specific tag for it, such as [uri], [html], [http] or [w3c].

The World Wide Web (abbreviated as WWW or W3, and commonly known as "the Web") is a technology that connects various kinds of systems with interlinked hypertext documents accessed using networking protocols.

The credit of inventing the World Wide Web goes to many researchers, but it was Tim Berners-Lee also known as TimBL who not only proposed the idea of WWW (at CERN in 1989) but also gave his full contribution in development of 3 very significant technologies:

  1. Invention of URL (Universal Resource Locator) and URI (Universal Resource Identifier).
  2. HyperText Markup Language (HTML)
  3. HTTP (HyperText Transfer Protocol), a protocol for transferring HTML

The World Wide Web is an interconnected network which works as a bridge not only between two terminal ends (Web browser & Web server) but also to connect client machines to database servers with controlled access.

With a Web browser (client), one can view web pages that may contain text, images, videos, and other multimedia, and navigate between them via hyperlinks. The default port for requests and responses via HTTP protocol is port 80.

A web server, on other hand, receives the client's requests and generates the proper response for it. This includes an HTTP status code (like 200 Ok or 404 Not Found), a list of HTTP headers (which control things like response format and cookies), and the response body (like HTML content).

47790 questions
31
votes
6 answers

Django cannot find static files. Need a second pair of eyes, I'm going crazy

Django will not serve my static files. Here's the error returned: [13/Jun/2014 06:12:09] "GET /refund/ HTTP/1.1" 200 2927 [13/Jun/2014 06:12:09] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1667 [13/Jun/2014 06:12:09] "GET /static/css/cover.css…
CowardlyFrench
  • 425
  • 1
  • 4
  • 6
31
votes
4 answers

Building a 4 corners-colors CSS3 gradient

Is it possible to produce the following gradient in CSS :
500
  • 6,509
  • 8
  • 46
  • 80
30
votes
2 answers

Where can I see the commit history on the gitHub website?

I am looking for the history button on gitHub for all the past git commits. These are buttons on the gitHub page. Code Issues Pull requests Actions Projects Wiki Security Insights Settings 1 branch 0 tags
Code07
  • 425
  • 1
  • 5
  • 5
30
votes
3 answers

Flutter web website takes a long time to load initially

I am currently creating a flutter web application for a client, however, when the website is navigated to for the first time in the browser, the page loads to a blank screen and a few seconds later shows the actual homepage widgets. After the page…
bobdub
  • 341
  • 1
  • 4
  • 7
30
votes
12 answers

You do not have permission to access the IIS configuration file - Web app error

I am trying to load existing c# web applications and getting below errors while loading any web project: Creation of the virtual directory http://localhost:/ failed with the error: You do not have permission to access the IIS configuration …
P Deshpande
  • 457
  • 1
  • 4
  • 6
30
votes
2 answers

Flask APP - ValueError: signal only works in main thread

I try to create a simple flask app: from flask import Flask app = Flask(__name__) if __name__ == '__main__': app.run() but when I add the debug: FLASK_APP = run.py FLASK_ENV = development FLASK_DEBUG = 1 I got the following error: ValueError:…
Frennetix
  • 3,269
  • 5
  • 15
  • 23
30
votes
11 answers

Bootstrap Glyphicons not displaying in angular2

I am trying to use bootstrap glyphicons in my angular2 app. I have installed bootstrap using the command npm install bootstrap --save My code snippet is
30
votes
3 answers

Does a Crashlytics-like service for web app exists?

I am a web and iOS developer. On mobile we have famous tools to collect all the exceptions and errors that application thorws. There's Crashlytics (and others) that with few lines of code to install the sdk, start tracking everything automatically.…
Cla
  • 1,810
  • 3
  • 22
  • 36
30
votes
2 answers

Do colons require encoding in URI query parameters?

I've noticed that Java's UriBuilder isn't encoding the : characters included in my query parameter values (ISO 8601-formatted strings). According to Wikipedia, it seems colon should be encoded. In particular, encoding the query string uses the…
HolySamosa
  • 9,011
  • 14
  • 69
  • 102
29
votes
3 answers

How can I prevent Chrome from blocking a XLSX download?

A recent update to Chrome has begun blocking XLSX downloads coming from our website. I have read Chrome's documentation and guidelines about how they determine if something is potentially harmful but it makes no mention of how to resolve issues…
Jordon Biondo
  • 3,974
  • 1
  • 27
  • 37
29
votes
9 answers

How can I run a Python script in HTML?

Currently I have some Python files which connect to an SQLite database for user inputs and then perform some calculations which set the output of the program. I'm new to Python web programming and I want to know: What is the best method to use…
Ann
  • 403
  • 2
  • 5
  • 17
29
votes
1 answer

jwt authentication: cookie vs header

There are a lot of articles around discussing what is the best place to store JWT on the clientside. In short, they're all about - Http-only secure cookie - no XSS, but vulnarable to XSRF Header (saved in local storage or DOM) - no XSRF, but…
user656449
  • 2,950
  • 2
  • 30
  • 43
29
votes
1 answer

JSON-LD Schema.org: Multiple video/image page

I can't figure out how you would define a bunch of videos on the same page. i.e. a search page. Let's say you've a site that returns 50 different videos. Then how are you supposed to define this with JSON-LD?
KaekeaSchmear
  • 1,548
  • 5
  • 18
  • 30
29
votes
4 answers

Visual Studio "Add As Link" not working while debugging

I use Visual Studio 2010 to maintain around 40 different web applications that are all housed on the same website upon deployment. These projects are in the same solution but housed in different projects as they each do very different things. I'm…
Chattah
  • 465
  • 1
  • 4
  • 14
28
votes
0 answers

What is the difference between web application and website in asp.net?

What is the difference between web application and website in asp.net? and if it have a difference which best from all sides?
ecleel
  • 11,748
  • 15
  • 48
  • 48