Questions tagged [web-development-server]

Use this tag for questions related to a Web-development Server, i.e. the backend/server side of a web application, when it comes to its development.

can be used in several situations, so please use one or more additional tags to better describe your case.

1473 questions
-1
votes
1 answer

Is it better to install Bitnami WordPress on physical or virtual machine?

I need to start a WordPress website on a localhost environment on my Mac, and I later need to give access to my teammates to edit the website. I did a little search on the net and found out that a pretty good option was using Bitnami. Now I would…
-1
votes
1 answer

How to implement design patterns in my project about Bookstore?

I am full-stack developer and currently study in software engineering in the university 2 course. Currently I am working on a Bookstore project using spring boot for back and React for frontend. So I need to implement 5 software design patterns in…
-1
votes
2 answers

Uncaught TypeError: Cannot read properties of null (reading 'slice') using react class based component

I am learning react and i was trying to make a react class based component in which i am trying to fetch data from articles array that has data of news articles such as title,description, urlToimage, url. i was trying to cut short the title and…
-1
votes
2 answers

Why useState set don't work inside useEffect in react?How can i fix this?

So this is my problem: import sanityClient from '@sanity/client'; export const client = sanityClient({ projectId: import.meta.env.VITE_APP_SANITY_PROJECT_ID , dataset: 'production', apiVersion: '2022-09-08', useCdn: true, token:…
Robert_dev
  • 19
  • 4
-1
votes
1 answer

React: whats is executed on server and what is executed on client?

I'm building an app with React and Flask. React is installed via "create react-app" (yarn). As I don't want to overload the server, I wonder if it is "better" to write math calculus on the React code or on the python server. This is a basic example:…
Psaume
  • 1
  • 1
  • 2
-1
votes
2 answers

Django setting debug=False breaks href links

I am developing a website using Django framework. It works perfectly well using Django=True, however when I set Django=False, system could not find the other html files which are being accessed in
AbhiGupta
  • 474
  • 1
  • 6
  • 14
-1
votes
1 answer

Send user's email to developers email django

Lets say i have an email when a user logs in . Could there a way to recieve an email that {user's email} has logged in and for log outs too. I have tried to do reaserch on this but didnt know how to start as i am a new to making websites
-1
votes
1 answer

Angular development server doesn't work the same as Angular production server

I am fairly new to development and am working on an Angular project Which I have inherited from someone else. I am currently trying to set up a development server and so, I copied all the build files generated using the ng build --prod (Angular…
yash
  • 1
  • 1
-1
votes
1 answer

Is it possible to accurately detect all the APIs used in a website and how?

I am trying to find examples of scrapers successfully detecting APIs used on websites. One example I know is the web extension "Built With" , but it fails to detect APIs from time to time, especially browser APIs. Any help would be appreciated Thank…
Jumbino
  • 1
  • 2
-1
votes
1 answer

Prevent input data from showing in url - Flask

I am gathering customer data from a web app - however once data is input the data displays in the URL search bar and I am just wondering about how to prevent that from happening? here is my current code:
Poppy
  • 35
  • 4
-1
votes
1 answer

I'm trying to redirect the js file using router in react js and bootstrap but unable to redirect

/* this is for my portfolio i want to redirect to main page after a short video*/ //importing packages as required import './App.css'; import React from 'react'; import Vid from './assets/codingmonkeyvid.mp4' import…
-1
votes
1 answer
-1
votes
1 answer

Recommendation for the creation of a complex web application

My goal is to create a complex and modern web application, however, it has been three years since I last developed. I was using Spring API REST for the backend and React for the frontend at the time. Are there any other more interesting choices for…
Fosfor
  • 191
  • 1
  • 2
  • 17
-1
votes
2 answers

media-queries problem buildind portfolio-website

hi guys i'm a bit newbie in web dev and i'm trying to build my portfolio website as training project, i structured it in desktop mode and when i begun using media-queries for responsiveness i encountered some problems, in a few words i have the…
Mando
  • 33
  • 4
-1
votes
2 answers

What is more expensive, computational power or storage in hosting servers?

I created a basic program that can make it easy to write css, make it more easy to debug and take less space. A basic animation looks like this : $moveLeftRight|l;r|5px;0|6px;None| Basic css Style: .black-square-with-rounded-corners{ bg:black; …