Using http.server to Serve PHP [on hold] The 2019 Stack Overflow Developer Survey Results Are InWhich technology stack would result in easiest deployment for a customer-hosted web app?My PHP Server is giving session errors all of a suddenHow can I find out if a port is opened or not?Backing up server site as an automated process?Active Directory 2012 LDAP Integration Service Principal Name Entry is Disappearing?PHP file load time, perhaps related to NFS?Use a PHP script to authenticate users on Linuxphp servers without apache/nginx/cgi stackTwo browser windows hitting same MySQL app, both can't run at the same timeWeb server is caching PHP output
Time travel alters history but people keep saying nothing's changed
How come people say “Would of”?
Why did Acorn's A3000 have red function keys?
What are the motivations for publishing new editions of an existing textbook, beyond new discoveries in a field?
How to save as into a customized destination on macOS?
Is there a symbol for a right arrow with a square in the middle?
Pokemon Turn Based battle (Python)
Geography at the pixel level
Are there incongruent pythagorean triangles with the same perimeter and same area?
Does a dangling wire really electrocute me if I'm standing in water?
For what reasons would an animal species NOT cross a *horizontal* land bridge?
A poker game description that does not feel gimmicky
Did 3000BC Egyptians use meteoric iron weapons?
Falsification in Math vs Science
Is this app Icon Browser Safe/Legit?
Why do UK politicians seemingly ignore opinion polls on Brexit?
Does the shape of a die affect the probability of a number being rolled?
Which Sci-Fi work first showed weapon of galactic-scale mass destruction?
Why can Shazam fly?
Deal with toxic manager when you can't quit
When should I buy a clipper card after flying to OAK?
What to do when moving next to a bird sanctuary with a loosely-domesticated cat?
Have you ever entered Singapore using a different passport or name?
Multiply Two Integer Polynomials
Using http.server to Serve PHP [on hold]
The 2019 Stack Overflow Developer Survey Results Are InWhich technology stack would result in easiest deployment for a customer-hosted web app?My PHP Server is giving session errors all of a suddenHow can I find out if a port is opened or not?Backing up server site as an automated process?Active Directory 2012 LDAP Integration Service Principal Name Entry is Disappearing?PHP file load time, perhaps related to NFS?Use a PHP script to authenticate users on Linuxphp servers without apache/nginx/cgi stackTwo browser windows hitting same MySQL app, both can't run at the same timeWeb server is caching PHP output
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am working on a Python utility that produces a JSON output. I wanted to build a simple web UI to display the output locally. So my current setup is that I built a layout and populated it from the JSON with PHP (a language I am familiar with) and then use something like the Python http.server to spin up a webserver and launch the file in chrome to pull up the UI.
Is there a way to spin up a local web server in Python using http.server (or something like it) so that it also displays php as well (right now it just downloads it)? I know that php has a simple server built in, but it looks like that might only work for Linux/OSX? What would be the best cross platform solution to display php files WITHOUT having to download something like W/M/XAMPP? I would like it all to be bundled if possible.
Thanks!
php web-server python
New contributor
put on hold as off-topic by Michael Hampton♦ Apr 6 at 19:59
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on Server Fault must be about managing information technology systems in a business environment. Home and end-user computing questions may be asked on Super User, and questions about development, testing and development tools may be asked on Stack Overflow." – Michael Hampton
add a comment |
I am working on a Python utility that produces a JSON output. I wanted to build a simple web UI to display the output locally. So my current setup is that I built a layout and populated it from the JSON with PHP (a language I am familiar with) and then use something like the Python http.server to spin up a webserver and launch the file in chrome to pull up the UI.
Is there a way to spin up a local web server in Python using http.server (or something like it) so that it also displays php as well (right now it just downloads it)? I know that php has a simple server built in, but it looks like that might only work for Linux/OSX? What would be the best cross platform solution to display php files WITHOUT having to download something like W/M/XAMPP? I would like it all to be bundled if possible.
Thanks!
php web-server python
New contributor
put on hold as off-topic by Michael Hampton♦ Apr 6 at 19:59
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on Server Fault must be about managing information technology systems in a business environment. Home and end-user computing questions may be asked on Super User, and questions about development, testing and development tools may be asked on Stack Overflow." – Michael Hampton
The PHP built-in webserver works fine on Windows.
– ceejayoz
Apr 6 at 22:43
add a comment |
I am working on a Python utility that produces a JSON output. I wanted to build a simple web UI to display the output locally. So my current setup is that I built a layout and populated it from the JSON with PHP (a language I am familiar with) and then use something like the Python http.server to spin up a webserver and launch the file in chrome to pull up the UI.
Is there a way to spin up a local web server in Python using http.server (or something like it) so that it also displays php as well (right now it just downloads it)? I know that php has a simple server built in, but it looks like that might only work for Linux/OSX? What would be the best cross platform solution to display php files WITHOUT having to download something like W/M/XAMPP? I would like it all to be bundled if possible.
Thanks!
php web-server python
New contributor
I am working on a Python utility that produces a JSON output. I wanted to build a simple web UI to display the output locally. So my current setup is that I built a layout and populated it from the JSON with PHP (a language I am familiar with) and then use something like the Python http.server to spin up a webserver and launch the file in chrome to pull up the UI.
Is there a way to spin up a local web server in Python using http.server (or something like it) so that it also displays php as well (right now it just downloads it)? I know that php has a simple server built in, but it looks like that might only work for Linux/OSX? What would be the best cross platform solution to display php files WITHOUT having to download something like W/M/XAMPP? I would like it all to be bundled if possible.
Thanks!
php web-server python
php web-server python
New contributor
New contributor
New contributor
asked Apr 6 at 18:42
Tobin ShieldsTobin Shields
1
1
New contributor
New contributor
put on hold as off-topic by Michael Hampton♦ Apr 6 at 19:59
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on Server Fault must be about managing information technology systems in a business environment. Home and end-user computing questions may be asked on Super User, and questions about development, testing and development tools may be asked on Stack Overflow." – Michael Hampton
put on hold as off-topic by Michael Hampton♦ Apr 6 at 19:59
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on Server Fault must be about managing information technology systems in a business environment. Home and end-user computing questions may be asked on Super User, and questions about development, testing and development tools may be asked on Stack Overflow." – Michael Hampton
The PHP built-in webserver works fine on Windows.
– ceejayoz
Apr 6 at 22:43
add a comment |
The PHP built-in webserver works fine on Windows.
– ceejayoz
Apr 6 at 22:43
The PHP built-in webserver works fine on Windows.
– ceejayoz
Apr 6 at 22:43
The PHP built-in webserver works fine on Windows.
– ceejayoz
Apr 6 at 22:43
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
The PHP built-in webserver works fine on Windows.
– ceejayoz
Apr 6 at 22:43