Questions tagged [built-in-web-server]

7 questions
14
votes
7 answers

Does IntelliJ have an internal web server to serve static content of a web application?

Right now, the directory of my module is defined as an IIS virtual directory and IIS serves the files. I was wondering whether IntelliJ has an internal web server, which can serve the files, without the need for any third party. Eclipse does.
mark
  • 59,016
  • 79
  • 296
  • 580
1
vote
1 answer

What does it actually mean by the term 'single-threaded process' specific to PHP and how and why does the request get blocked in this case?

Today I came across the following statement from PHP Manual: The web server runs only one single-threaded process, so PHP applications will stall if a request is blocked. After reading and trying to understand the above statement firstly I didn't…
user10442481
1
vote
0 answers

WebStorm - refreshing JavaScript debug results in 404

I am currently using WebStorm as my IDE to develop an angular 2 project. I switched over from Netbeans due to the lack of ES6 compiling. So far I don't regret my decision. HOWEVER there is a slight annoyance that make me crave for netbeans again.…
0
votes
1 answer

PhpStorm: Run PHP server doesn't work: could not find driver

I am using PhpStorm for a year and now I want to run my PHP server using the PHP Run menu: I run the server pushing the green arrow button. Then the console…
Roby Sottini
  • 2,117
  • 6
  • 48
  • 88
0
votes
1 answer

Open JSON files in PhpStorm built-in web server

I try to create simple PWA in PhpStorm. I have 2 files: home.html manifest.json File home.html contains link to manifest.json: When I open home.html using PhpStorm built-in web server I have error 404…
Alex Gusev
  • 1,526
  • 3
  • 16
  • 35
0
votes
0 answers

Using PhpStorm built-in webserver for Laravel project leads to "404 Not Found" error with routing

I have the following problem. I started working with the Laravel framework and I'm using the PhpStorm IDE. Everything works fine if I use the PHP built-in webserver. I execute the following command in the cmd: C:\phpProjects\project03>php -S…
0
votes
0 answers

How to add a self-signed SSL certificate to your website

I have a site and I have a development subdomain I want to assign a self-signed certificate to it so I can test a login portal, I will consider buying an actual SSL certificate for my real domain, I host my site with 1and1.co.uk. I use FTP to…