1,463 questions
-1
votes
0
answers
21
views
Why does my resetChallenge() function not completely reset the progress and badges in my JS web app?
I'm building a small web-based challenge tracker using JavaScript and localStorage. Everything works fine, except for the resetChallenge() functionality.
When I reach 100% progress on a task, I call ...
0
votes
0
answers
59
views
Elementor shows “Unexpected token '<', '<br /><b>'... is not valid JSON” after updating XStore et-core plugin
I’m getting this error when I try to open the Elementor editor:
Error: Unexpected token '<', ""... is not valid JSON
It happens right away, and the editor won’t load.
I'm using the XStore ...
0
votes
0
answers
22
views
cookie related issue in MERN stack web app deployed on Render
I am having an issue about cookies in my mern stack project I use passport local strategy for auth and express-session for session storage and database is deployed on mongodb atlas, actually ...
0
votes
3
answers
48
views
Why is my server not logging a login session?
For some context: I'm trying to make a basic login system. At the moment, signing up works with no problems. Logging in also seems to be okay, it makes a connection with the database properly - ...
0
votes
2
answers
47
views
post route is not working in my express js project
Here is the code for the index.js of my expressjs project. I'm new to Node.js and trying to understand how to develop a web app using MERN Stack.
import express from "express";
import ...
0
votes
0
answers
235
views
Nextjs 15.2.2 Crashing on Fresh Install
Problem
I installed Nextjs using npx create-next-app@latest from Nextjs's website. I pasted the command into my terminal and got a font error. Then, after using GPT-4o and Perplexity to troubleshoot ...
1
vote
1
answer
53
views
Azure WebJobs with WordPress WebApp?
I am building a webpage through Azures web app in WordPress. I want to have one of my pages allow the user to upload a file, that file go to a python script which returns and image based on that file ...
0
votes
0
answers
24
views
Automatic update disabled for my WordPress website, how to resolve?
I am new to WordPress web development and my auto updates option is not being enabled despite trying many methods that I was guided by Hostinger support service.
I have disabled all plugins to check ...
0
votes
1
answer
78
views
Response was blocked by CORB (Cross-Origin Read Blocking) : Appwrite + React
I am using appwrite as backend for a blog website. In it I am storing images and fetching them using their id to display.
However the browser is showing CORS restriction due to which image is not ...
0
votes
1
answer
40
views
Receive Endpoint in SMS Gateway not detecting Peer to Peer messages
I am using httpSMS (also tried SMSGateway) to turn my phone into a gateway that can send and receive SMS.
The "send" functionality is working fine. I make a post request to an endpoint and ...
0
votes
1
answer
45
views
Where does "res.send" go when fulfilling a post request from within a default form?
Let's say I have a form (written in JSX) being sent to an Express server:
<form id="log-in-form-itself" action="/submit-form" method="post">
<label htmlFor=&...
0
votes
0
answers
94
views
"upstream connect error or disconnect/reset before headers. reset reason: connection failure" after i run envoy proxy
i was making a mern - grpc search app and i wrote envoy.yaml. it's running on docker container successfully but it is showing upstream error on localhost
upstream connect error or disconnect/reset ...
0
votes
2
answers
111
views
Python "forgets" variables? (between requests in web server context)
I am working on a project that at its core, runs a server for a remote monitoring type website to monitor some data from a separate dashboard system on a car over LTE. The car will send its speed and ...
1
vote
1
answer
31
views
trouble dynamically changing the value of parameter in js
What I want is: when the mouse enters the body of the website, the cursor becomes visible; and when it is out of the webpage, it should not be visible.
I'm trying to update the values passed to the ...
0
votes
1
answer
889
views
How to fix "paths[0]" argument must be of type string. Received an instance of Array" error when introducing Mustache partials with ExpressJS?
index.js logging the view paths to ensure partials are visable
import express from 'express';
import bodyParser from 'body-parser';
import path from 'path';
import { fileURLToPath } from 'url';
import ...