Skip to main content
Filter by
Sorted by
Tagged with
Advice
1 vote
4 replies
121 views

Description: I am building a web app, let's say about an organization for approving participation in a free service. There will be the following roles: Organization employee Citizen Administrator ...
Stathis Ath's user avatar
Advice
0 votes
1 replies
70 views

In modern front-end development, there are many techniques to improve performance like lazy loading, code splitting, and memoization. In your experience, which underrated best practice has made the ...
Lucifer's user avatar
  • 537
0 votes
1 answer
182 views

I need to test accepting requests from a custom domain to my local web server. The idea is I have a main app domain main-app.com I provide a subdomain for users user-1.main-app.com Then the user can ...
yungindigo's user avatar
1 vote
0 answers
48 views

So I am working on a dashboard in which there are bunch of KPIs and Graphs. The dashboard have filters that when applied, filter whole dashboard. Before I was totally reloading the page and every ...
Balaaj Raza's user avatar
1 vote
1 answer
192 views

I'm using an Azure App Service with a Python backend, and I want to access a Search Service indexer (in the same resource group) to get its status and then run the indexer from my App Service. I'm ...
Manuel Hoffmann's user avatar
0 votes
0 answers
630 views

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 ...
syed zohaib's user avatar
0 votes
0 answers
39 views

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 ...
Nikhil Sirsat's user avatar
0 votes
3 answers
62 views

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 - ...
phoenix56's user avatar
0 votes
2 answers
71 views

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 ...
Hashibul Hasan's user avatar
1 vote
0 answers
326 views

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 ...
Looped Cheese's user avatar
1 vote
1 answer
67 views

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 ...
Sierra Walker's user avatar
0 votes
1 answer
156 views

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 ...
Noobmaster69's user avatar
0 votes
1 answer
106 views

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 ...
Dev_A's user avatar
  • 23
0 votes
1 answer
77 views

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=&...
ProfessorFinesse's user avatar
0 votes
2 answers
130 views

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 ...
Brody Young's user avatar
1 vote
1 answer
43 views

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 ...
IceyXsm's user avatar
  • 11
1 vote
1 answer
3k views

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 ...
Keegan's user avatar
  • 173
0 votes
1 answer
149 views

I cant understand what's going wrong I leave the program working the next time it's not it just gives me an internal server error I try fixing things my self I try using chatgpt from the first look it ...
Anas Bousrih's user avatar
0 votes
1 answer
26 views

Background: making a choose your own adventure type game, but as a website. Based on choice A or B (only 2 choices) the story will go that direction. The setup: Let's say 5 phones, used for inputs Big ...
Li-Ming's user avatar
1 vote
1 answer
41 views

ERROR in ./src/App.js 55:65-72: export 'BpkCode' (imported as 'BpkCode') was not found in '@skyscanner/backpack-web/bpk-component-code/src/BpkCode' (possible exports: default) I am facing this error ...
Are Bk's user avatar
  • 11
0 votes
0 answers
68 views

I am building a laravel application to aid in reviewing my trades and I want to implement a global filtering bar that maintains its state across multiple pages. For example, if I filter for trades in ...
NoLimitLondon's user avatar
1 vote
0 answers
74 views

Basically I'm building a pet adoption site and now getting an error which says "Target class [admin] does not exist" when my admin user account is trying to approve 'adoption request' of any ...
Zabia Hossain's user avatar
1 vote
1 answer
54 views

Here is the folder structure of my PHP web app. I use Apache on localhost to run the PHP project. I have two issues: When I run the project using the URL http://localhost/CALCULATOR/public, I would ...
Patel Rohan's user avatar
0 votes
1 answer
38 views

I'm trying to create a simple counter website using HTML, CSS and JS (Hypertext Markup Language, Cascading Stylesheets and JavaScript). I use this HTML code: jswebsite.html <!DOCTYPE html> <...
LeviB414's user avatar
0 votes
0 answers
289 views

I'm a new developer and curious about security best practices. If, before sending an access token to the frontend, it is encrypted on the backend and then stored in localStorage, and later decrypted ...
Pushkar Nikumb's user avatar
0 votes
2 answers
181 views

While I fetched the data successfully, I cannot manage to display the data to an HTML efficiently. The only way that that it works(how far I've gotten) is with two endpoints. Where one endpoint is to ...
harrnui's user avatar
1 vote
1 answer
40 views

I'm working with ServiceStack Blazor and using a standard modal provided by the framework to handle CRUD operations in a Blazor web application. The modal opens as expected when creating new records ...
Manuel Enzo's user avatar
0 votes
0 answers
42 views

I am working on a web application where users can add multiple instances of the same subservice type to a table. Each instance should create a new separator with the subservice name in the table. The ...
Daywalker's user avatar
-1 votes
1 answer
62 views

I have a microsoft azure database and have an api made with typescript to run on a node.js server, when i tested the api the night before all was working, wake up this morning and i keep getting an ...
jordanc-j's user avatar
0 votes
1 answer
55 views

I am trying to create a small app that will use the Spotify API. Because it's meant to be small I don't really want to add any authentication on my end but I still would like to have "sessions&...
Gonçalo's user avatar
0 votes
1 answer
50 views

I am new to web development and am following this tutorial:its pretty old and hence uses older version of next js. He uses getServerSideProps which is depreciated, and throws an error when I use it in ...
Mathew's user avatar
  • 1
0 votes
1 answer
30 views

I am setting up a webhook receiver just to learn the ropes. I have run a number of tests that work fine with node. Now I am attempting to put this receiver on a publicly hosted page so that I don't ...
user777's user avatar
1 vote
1 answer
63 views

I have a problem trying to focus on the input field whenever a state showSearch state is true. I am using useRef and useEffect to achieve this. So, whenever showSearch flag changes, i run useEffect ...
aavishkar gautam's user avatar
0 votes
1 answer
234 views

I am new to dash and currently working to understand it. I have been able to get my first app up and running, but every time I edit it the server crashes due to a syntax error. I've worked with Flask ...
Jack Finnegan's user avatar
1 vote
1 answer
84 views

im learning web deployment using platform.sh. i pushed my files to platform.sh by command "platform push" and then supposed to get my live url by commanding "platform url" i got ...
Kaniska Ranjan Barman's user avatar
0 votes
1 answer
69 views

I am trying to download and install typescript for AngularJS on my MacOS M2 using the npm i typescript command, but I am getting the following errors: npm ERR! code EEXIST npm ERR! syscall mkdir npm ...
2144-Ketaki Mahamuni's user avatar
9 votes
0 answers
993 views

Was trying to fix some of my local dev setup today and didn't want to fuss about with server configs just to make CORS work locally - so finally delved into just overriding headers when developing on ...
fyodor-the-ignorant's user avatar
-1 votes
1 answer
620 views

I'm working on a Python project using aiohttp and aiohttp_session with EncryptedCookieStorage for session management. I'm generating a Fernet key in a batch script and passing it to my Python ...
bbartling's user avatar
  • 3,564
0 votes
1 answer
43 views

I have just completed my React JS project and I wanted to host it on GitHub, but once I created the repo without adding a README file, in the command line while writing the git push -u origin main ...
Prashant kumar Singh's user avatar
0 votes
1 answer
30 views

I am very new to react, and am trying to fetch data and map it onto the screen each time certain button is clicked: const fetchMessages = async (num) => { const response = await fetch([url] ...
ecoder's user avatar
  • 23
1 vote
1 answer
441 views

I am using flutter and serverpod to build a webapp . And it has lot of images in it's ui . Everytime i run it throws me like error like this: C:/Users/AppData/Local/Pub/Cache/hosted/pub.dev/...
santhosh kumar's user avatar
0 votes
1 answer
611 views

enter image description here When I use npx create-turbo@latest it asks me what package manager I want to use then it shows me these four options but it says I don't have any of those installed. How ...
Abhishek kumar's user avatar
1 vote
0 answers
31 views

I am creating a spring boot application to book flights. I have defined a controller to retrieve flight details from database: @Controller @RequestMapping("/home") public class ...
Hisham Gundagi's user avatar
1 vote
3 answers
1k views

I'm currently learning web development and working with Express.js and Node.js. The issue I'm encountering is when I try to access http://localhost:3000/ or http://localhost:3001/ (I've also tried ...
Davie10863's user avatar
0 votes
1 answer
40 views

so i have been trying to create a webpage that downloads the media from my telegram account an displays it in the webpage. what i want is it as the images are being downloaded from the server i want ...
Avijit Bhuin's user avatar
1 vote
1 answer
62 views

I am creating a flight booking application using spring boot. It has two entities: User and Flight User entity: @Entity @Table(name = "User", uniqueConstraints = @UniqueConstraint(...
Hisham Gundagi's user avatar
-1 votes
1 answer
146 views

I'm currently developing a website using Sublime as my IDE and PHP, CSS, JS, and HTML as the programming languages. I've set up a local development environment using XAMPP on Windows 11. My website ...
Blessing Tshiyole's user avatar
-1 votes
1 answer
541 views

I tried everything like adding .htaccess file in public_html so that it access public/ folder or change location of index.php but this error is not solving.
Bhanu Prasad's user avatar
0 votes
1 answer
129 views

For my school project we are adding navigation to simple websites with javascript. I'm using Visual Studio Code and live server extension. When I run the website through live server extension it works ...
Cameron Morgan's user avatar
0 votes
1 answer
79 views

In my code link.url is changing but pathName is not changing. I wanted to give an animation transition to my website, but it is not supporting as the pathName and link.url are not matching. "use ...
Dhyan's user avatar
  • 1

1
2 3 4 5
29