Questions tagged [web-development-server]

Use this tag for questions related to a Web-development Server, i.e. the backend/server side of a web application, when it comes to its development.

can be used in several situations, so please use one or more additional tags to better describe your case.

1473 questions
4
votes
1 answer

I tried installing uvicorn through "pip install "uvicorn[standard]" ", got the following error:

error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/ i went ahead and downloaded Microsoft C++ Build Tools What should i install? Since there's a bunch of stuff
ransom
  • 173
  • 1
  • 9
4
votes
1 answer

Creating an audio streaming platform from scratch

I am trying to create an on-demand audio streaming platform (similar to Spotify) from scratch. It will have 1000 users (I am optimizing for time to build, not scalability as of right now). I want to use web-based technologies ( I am experienced with…
4
votes
2 answers

How to add labels for Django models.IntegerChoices

I have two IntegerChoices subclasses in one of my django Models that define ticket priorities for an api. I would like when the priority and statuses are rendered on my web page to show the label, but then when using the api to send the integer…
4
votes
1 answer

ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client on visual studio code

I am trying to run MySQL from the visual studio code. I downloaded the extension called MySQL, to connect my SQL server with visual studio. After I fill out the localhost, port, username, and password, the SQL section shows me an error that is in…
4
votes
1 answer

How to add a live code editor on website?

I'm creating a website where live editing of code (for Java, c,python,javascript ect) is required. I'm aware of codemirror and I want to know how to run code on a website (like W3Schools try it yourself feature) and locally run instead of requiring…
user12322536
4
votes
0 answers

CKEditor How to remove image files in server when canceled posts

I'm using nodeJS(back-end), react(front-end), mongoDB. And I installed CKEditor5 for posting on board with many images. It perfectly works uploading images on my server folder with CKfinder. But If someone stop to post with images uploaded, useless…
4
votes
1 answer

UPI payments response on web

I am trying to integrate UPI payments in an app and website. Everything works fine when I form the url (an example below) and launch an Intent on Android. upi://pay?pa=abc@xyz&pn=ABC I get the response in the calling Android app using…
4
votes
1 answer

spring boot ant matchers parameters

I want to give permission to every of these URLs: .antMatchers("/myPage?param1=tata*").hasRole("tata") .antMatchers("/myPage?param1=toto*").hasRole("toto") I have this two…
4
votes
4 answers

What is the purpose of using :method => delete in button_to?

It is my understanding that the HTTP verb 'DELETE' is not supported in HTML, and as such a different route is required when making delete forms. If this is the case, why does this code works fine, <%=button_to 'Delete', {:controller => :users,…
4
votes
1 answer

Modulating Bokeh Servers within Flask

I have numerous Bokeh Server files in a directory say.. /dir/bokeh/, assume the bokeh servers are called bokeh1.py, bokeh2.py, bokeh3.py The file structure is like so: |--dir |---flask.py |---bokeh |--bokeh1.py …
machump
  • 1,207
  • 2
  • 20
  • 41
4
votes
2 answers

Rails Console Freezes on manual delete/destroy action

This has happened to me on numerous occasions and I hope I can find an answer here. Sometimes when working with the Rails console and performing an #update or #destroy action on an object, my console will simply freeze after posting "BEGIN" in the…
Nick Schwaderer
  • 1,030
  • 1
  • 8
  • 21
4
votes
1 answer

How do I setup a bokeh application such that it can be accessed through the internet?

Note from maintainers: This question as originally posed is in regards to the first generation Bokeh server which no longer exists. For information about running modern Bokeh server applications, see Running A Bokeh Server in the docs. I want to…
BR123
  • 322
  • 3
  • 16
4
votes
3 answers

Eclipse Juno with Web Tools Platform - HTTP Preview at localhost throws NoClassDefFoundError

I keep getting NoClassDefFoundError: org/eclipse/jetty/webapp/WebAppContext when trying to launch HTTP Preview in Eclipse Juno with Web Tools Platform. Steps to reproduce: Download, extract and launch Eclipse Juno Install "Eclipse Web Developer…
4
votes
5 answers

Visual Studio debugging is not attaching to WebDev.WebServer.EXE

I have a solution with many projects. On Debug, I have three web projects that I want to start up on their own Cassini ASP.NET web development servers. In the solution properties → Common Properties → Startup Project, I have multiple startup…
Aaron Daniels
  • 9,563
  • 6
  • 45
  • 58