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

Django is synchronous or asynchronous?

Django is synchronous or asynchronous? I want to know that the Django Framework is Synchronous or Asynchronous. I have heard about the interview problems they ask about the framework you are using is synchronous or asynchronous. So I want to know…
SUMIT KUMAR
  • 153
  • 1
  • 1
  • 10
11
votes
4 answers

Play! framework - database issue with Evolutions

I'm using Play! framework 2.0 and I'm stuck on an annoying issue involving the database. Suppose I have a User (extends Model) class which has few attributes (first_name, last_name, email, password etc). At some point I want to add a new…
socksocket
  • 4,271
  • 11
  • 45
  • 70
10
votes
2 answers

Play! framework - handle a POST request

this is the route to handle the login POST request: POST /login/submit controllers.Users.loginSubmit(user : String, password : String) this is the login.scala.html:
socksocket
  • 4,271
  • 11
  • 45
  • 70
10
votes
3 answers

Play! framework. template "include"

I'm planning my website structure as following: header.scala.html XXX footer.scala.html now, instead of "xxx" there should be a specific page (i.e. "UsersView.scala.html"). what I need is to include (like with well-known languages) the source of…
socksocket
  • 4,271
  • 11
  • 45
  • 70
8
votes
3 answers

Visual Studio Add-In To Automatically Attach to Development Server

Is anyone aware of a Visual Studio 2010 Add-In that will automatically allow you to attach to a running instance of the ASP.Net Development Server? And if there is more than one currently running, display a quick dialog that lets you choose from a…
CleverPatrick
  • 9,261
  • 5
  • 63
  • 86
8
votes
2 answers

search menu with result count per option

On various websites there is a search bar that already depicts the amount of results you will get per option you can select. In some cases there is a tenfold of options you can choose from and for each option you already see if you select this…
user1983507
8
votes
1 answer

How does deployment on remote servers work?

I'm a bit new to version control and deployment environments and I've come to a halt in my learning about the matter: how do deployment environments work if developers can't work on the same local machine and are forced to always work on a remote…
8
votes
4 answers

How do I allow a single Wordpress site to accept my .ttf file upload?

I'm using the Font Organizer plugin for Wordpress. It has a nice option to upload a font, which I have saved to my computer. I just need to somehow get Wordpress to accept it so I can use it here: However, I'm getting an error: Error uploading the…
DarthVoid
  • 604
  • 3
  • 9
  • 21
7
votes
2 answers

How to record WebRTC video/audio session on server side?

I am creating a web app using WebRTC where I need to record and save every session on server so that other user can access later. I do not want to record on client side for which solution is available. What is the best way to do that. Is there any…
6
votes
3 answers

Xampp not working on m1 Mac book pro giving me a error :

I am new to Osx operating system, I have bought an m1 mac book pro and install xampp on it but it always gives me an error (an error will be listed below), can you guys pls help my feel free to hit me up on discord on email error I am getting: INFO:…
6
votes
4 answers

MongooseServerSelectionError: connect ECONNREFUSED 127.0.0.1:27017

I used mongoose to connect my database to my app. I got this unexpected error. My app.js look like this const express = require('express'); const mongoose = require('mongoose'); const authRoutes = require('./routes/authRoutes'); const cookieParser =…
Shizu
  • 124
  • 1
  • 2
  • 7
6
votes
1 answer

Haskell Scotty and Elm Http NetworkError

I wanted to look into web development with haskell for the back-end and elm for the front-end. So i wrote this two simple "hello world" code code snippets elm: import Html exposing (..) import Html.Events exposing (..) import Http import Json.Decode…
6
votes
0 answers

defimpl Phoenix.Param to override to_param causes (FunctionClauseError) no function clause matching in Phoenix.Param.Rumbl.Video.to_param/1

while trying to follow the examples in Programming Phoenix (book) release P1.0, everything is working fine until Page 167 when instructed to add the lines: defimpl Phoenix.Param, for: Rumbl.Video do def to_param(%{slug: slug, id: id}) do …
nelsonic
  • 31,111
  • 21
  • 89
  • 120
6
votes
1 answer

MarkLogic HTTP Server: Set up CORS headers

I am running MarkLogic 7 on a CentOS 6.5 box. I have my HTML/JS application hosted on a MarkLogic HTTP server on the same machine. The application runs on port 8003, and needs to access data through a REST API running on a different port 8007. When…
6
votes
2 answers

Django Dev. Server Refuses to Quit

The development server for Django is acting very odd. The browser accessing it gets stuck on loading, and any attempt to quit it does not work. When I hit control c it seems to quite, but in actuality is still running. The only way to make it quit…
sinθ
  • 11,093
  • 25
  • 85
  • 121
1
2
3
97 98