8,124 questions
Advice
0
votes
2
replies
94
views
ESP32 Bluetooth webserver
I often use ESP32 which expose some web application interface on an WiFi Hotspot or WiFi station to access it.
I wonder how to do that with bluetooth too. There is some idea in the internet that ...
Best practices
0
votes
2
replies
66
views
Resolving imports before sending JS scripts to the browser - is it a good idea and how to do it using Express
Say I have a web page with a script that imports from 20 other scripts. I imagine that having to fetch these 20 scripts separately adds more loading time that fetching one giant script. Which leads me ...
Tooling
0
votes
0
replies
87
views
Lightweight HTTP library for C that can handle POST
I'm looking for a simple, lightweight HTTP library for C to use in my program. All I need it to do is the following:
Receive a POST request
Access the POST information and use it to run a function
...
Advice
0
votes
1
replies
61
views
ESP Watchdog vs AsyncWebServer with expensive handler
I'm currently facing the known "issue" (which is not, instead is a desired behavior) of the AsyncWebServer (and AsyncTCP) where the watchdog of the ESP gets activated when a too long ...
Advice
0
votes
0
replies
60
views
How to add a new database to the Database dropdown in Oracle Primavera P6 EPPM login page?
I am working with Oracle Primavera P6 EPPM (web version).
Primavera image here
On the login page, there is a Database dropdown (below the Username/Password fields). Currently, it shows:
I would like ...
Tooling
0
votes
2
replies
91
views
WebDAV server that respects user file permissions
I am looking for a WebDAV server on Linux that takes user permissions into account, meaning that users should log in with their credentials (Linux username and password) and that they should only be ...
Best practices
0
votes
11
replies
188
views
PHP script bundled with minimal and secure runtime environment and webserver?
Sorry if this has been answered before, but I haven't been able to find anything concrete either here or on the wider web.
I have written a PHP script which has both command line and webserver ...
Score of 0
1 answer
219 views
Vite + React deployed with Nginx: “Failed to load module script… MIME type text/html” but assets return application/javascript via curl
I deployed a Vite + React app on an Ubuntu VM using Nginx. The site loads, but in the browser console.I get:Failed to load module script: Expected a JavaScript-or-Wasm module script but the server ...
Advice
0
votes
2
replies
55
views
How to manage patches on a Debian Host with Apache2 as Webserver
I have set up a Debian 12 (Bookworm) host and went through some basic steps to install Apache2 and activate SSL/HTTPs on the backend. Http disabled.
As far as I know the usual tool for managing/...
Score of 0
0 answers
129 views
Support die/exit on FrankenPHP(Caddy) worker mode
My PHP app runs on a Caddy webserver, over a FrankenPHP container (Dunglas image). It runs in worker mode.
Unfortunately, it seems that workers prevent abrupted interruptions of the process. So is not ...
Score of 1
1 answer
149 views
HTTP request encoding
Let's say we have an HTML form for sending data to the php/webserver server
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
</head>
<body>
<form ...
Score of 0
1 answer
787 views
FastAPI application: page stuck loading
I'm trying to create a basic FastAPI application. Initially, my project directory looked like this:
.venv/
main.py
where .venv/ is my virtual environment with FastAPI installed, while main.py has the ...
Score of 1
1 answer
117 views
Angular SSR just small parts
I have an existing public Angular 20 website with no logins or authentication, and a few pages.
The client has recently asked to introduce Search Engine Optimization features. They mostly want each ...
Score of 0
1 answer
56 views
Unable to connect to web server 'IIS Express'. Output from IIS Express:
Unable to connect to web server 'IIS Express'. Output from IIS Express: Starting IIS Express... Successfully registered URL "http://localhost:5001/" for site "MyProject" ...
Score of 0
1 answer
57 views
Can HTTP do chunked transfer while the page is gzipped
I'm working with embedded devices (STM32), the device would have a TCP server (HTTP server). The internal memory and flash is limited, so a more complex page wouldn't fit to the device. I would need ...