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
3
votes
1 answer

create facebook like notification system in django

Say user a liked user b. I want to show this as a notification in the notification panel of user b when she logs in. She can also view her previous notifications (basically like facebook notification). This is not email notification or a…
3
votes
2 answers

What's the procedure of upload a java spring based web application to the real server, and how to use load balance to the server?

I am creating a simple web project with mysql database using Java Spring-MVC. Now I want to understand the full workflow of the web system development cycle. How to upload a project to a real server?. How to sync the database to a real server?. How…
3
votes
2 answers

Can someone please point out why my require_once() function can't find the path? php

I can't seem to find the answer and I have asked everyone I know. On my local server my code worked perfectly fine. When I uploaded it to a server, the require_once(); function stopped working. My file system is very simple. In the main website…
Keet
  • 39
  • 3
3
votes
2 answers

SetTimeout in express callback

I am creating a route where a data attribute called "active" is being set to true, but after an hour is set to false. I am wondering if it is possible or bad practice to call a settimeout function in the express callback. Such as; app.get("/test",…
Kai Ferrall
  • 81
  • 2
  • 12
3
votes
1 answer

Does ASP.NET web development server (WebDev.WebServer.EXE) support HTTP/1.1 persistent connections?

HTTP/1.1 specifies that by default persistent connections should be used. I'm wondering if the ASP.NET Web Development Server supports them. So far I have seen that even though an HTTP request contained Connection: Keep-Alive header the…
Piotr Owsiak
  • 6,081
  • 8
  • 39
  • 42
3
votes
1 answer

What is the difference between loading my index html file vs. using http-server?

I learning to code and have played around with npm, webpack, and http-server. I usually use http-server and then open up local host to see the changes that I've made through React that ends up on index.html. But I notice that this works too if I…
3
votes
0 answers

Expose Rest API's in localhost for Android App

I am new to web development and would like to get some help. I am making one android application which makes some REST calls to get and post some data. These rest calls will be made to my own server. Now for development purpose I dont have that…
learner
  • 1,095
  • 2
  • 18
  • 41
3
votes
2 answers

How do I start WebDevServer from a .sln file without opening Visual Studio 2008

Is there a way to start WebDevServer (Visual Web Development Server) by passing in the .sln file without actually opening Visual Studio 2008? I am a JavaScript developer and I work in a client project and I want to save the memory overhead consumed…
3
votes
1 answer

Flask - Externally Visible Dev Server

The Flask docs describe an externally visible server that allows users on your network to access your running app. The docs seem to assume a level of understanding that I don't possess and I can't figure out how to make it work. I've adjusted my…
Matt Parrilla
  • 3,171
  • 6
  • 35
  • 54
3
votes
2 answers

What are some interactive resources for learning django?

I have been using interactive resources for learning Python and JavaScript like Udacity.com and codecademy.com and find this learning style the most helpful. I've gained a lot of experience with functional programming in both but have little…
WillMcLeod
  • 35
  • 1
  • 6
3
votes
2 answers

Where can I find a good manual for warp server?

I created a yesod webapp using yesod init. During development I used yesod devel to run the warp server on debug mode. Now I've finished a preliminary version and I want to deploy it on ec2 amazon server. So for an Apache server I could do sudo…
HHC
  • 2,513
  • 2
  • 18
  • 26
3
votes
4 answers

Switching up the hosts file in a development environment

While developing websites (using win7) I find myself changing the IP addresses in my hosts file quite often. I have a development environment on my machine, code on the testing server, code on the staging server and code on the live server. I…
Michael Gorham
  • 1,234
  • 2
  • 16
  • 24
3
votes
1 answer

Play! framework link

I got a List of Forums and I want to create a link for each one:
3
votes
4 answers

RDBMS vs NoSQL for message boards site

I'm in the process of designing and planning a new website. it is mainly a message boards site I have past experience with MySQL, but I hear many voices (not in my head) which telling NoSQL can be as good solution as RDBMS. the main claim for…
socksocket
  • 4,271
  • 11
  • 45
  • 70
2
votes
2 answers

i am getting an error as "Cannot set headers after they are sent to the client" in node js connected to mysql

i was tring to create a signup form connecting react to the backend using node.js. it worked fine, but now i am facing problems as Cannot set headers after they are sent to the client when the username is correct (ie) results.length==0 is…