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

What platform (server installed on ubuntu vs ubuntu server) to prefer for website development?

I am developing a website which is supposed to have blogging capabilities (which I aim to achieve via wordpress) and a CRM based upon jsp and oracle express (as the website will be deployed over linux server, sql server is not an option). For…
-1
votes
2 answers

API to strip out second-level domains (or the complete list in CSV or whatever format)

Where could I find a code (javascript would be the best) to strip out the www and second-level domain names from URLs? Example: www.ynet.co.il -> ynet (stripped 'co.il' - two tokens) www.nike.com -> nike (stripped 'com' - one token) etc As a…
-2
votes
1 answer

two submit buttons out of three not working on html page

I have the following three blocks on a html page:
chicca
  • 7
-2
votes
3 answers

ERRSOLVE : Unable to resolve dependacny

npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: chat-app@0.1.0 npm ERR! Found: react@18.2.0 npm ERR! node_modules/react npm ERR! react@"^18.2.0" from the root project npm ERR! npm ERR!…
-2
votes
1 answer

Can't solve mysqli::__construct(): (HY000/1045): Access denied for user 'root'@'localhost' PhpMyAdmin erorr

I am trying to connect to my db through phpmyadmin but I can't get connected no matter what solutions I try. I am able to connect to the phpmyadmin screen but when I try to access my webpage I am met with the error. Here it is…
-2
votes
1 answer

node modules deleted. now npm is not installing

I deleted the node modules and package.json.lock file in my client side MERN Stack project folder and tried reinstalling the node modules by typing "npm install" command in the terminal. but it's showing me an error. 1. I have tried clearing cache…
Macfros
  • 7
  • 2
-2
votes
2 answers

Upload any type of file to the server

How can I upload a file to the server without space limit? I want to find out the code sequence in HTML and Javascript / PHP. I only use NGINX. Can there be a setting in NGINX that limits my upload (if so, how to disable it)?
-2
votes
3 answers

Why am I unable to see my content on a webpage

I am working on a Amazon clone with React.js but when I run my code I don't see any content on the webpage here is my code And here is the webpage
-2
votes
1 answer

What is a web framework and how frontend and backend related to web framework?

What is a web framework and how are frontend and backend related to a web framework? Are these web framework (Django, flask etc..) work at the frontend or at the backend?
-2
votes
2 answers

How to use useContext changed value?

I am using useContext to pass the account name to all the pages that I have created in app.js. contextProvider.jsx import { createContext, useState } from 'react'; export const LoginContext = createContext(null); const ContextProvider =…
-2
votes
1 answer

Why do I get a `Cross-Origin-Request-Blocked` in the console, but the route works?

I have a React app that connects to a database through flask. The particular page I'm using is a "register user" type page. When I enter the info and click register, in the console I get the red CORS errors triggered. Yet, when I check the…
filifunk
  • 543
  • 1
  • 6
  • 18
-2
votes
1 answer

Cloning Laravel GitHub Repository

I’m new in working with Laravel and I want to clone a GitHub Laravel project to see how it works. I executed the commands: git clone, composer install and php artisan serve. I do get the laravel development server URL, but when I tried to run the…
-2
votes
1 answer

How do I use Nodejs for backend using SQL workbench?

I am a beginner and this is my first full-stack web development project and I have completed the front-end part and created the related tables using MySQL... and now I want to link the tables to front-end using nodejs. How do I proceed further?? Is…
ananya
  • 25
  • 5
-2
votes
1 answer

Reading file in Node.js

How to read the data of a file(say, read.txt) without getting the buffered Data? I mean I want to get the content of the file directly without getting the buffer data? and hoe to delete the folder in Node.js?
-2
votes
2 answers

Django - How to differentiate between users in the database?

I'm building a Django server for my company and I'm still unfamiliar with some processes. I'm sure this is super simple, I'm just completely unaware of how this works. How do I differentiate between user's data so it doesn't get mixed up? If Jill is…
grantjay
  • 100
  • 6