Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
26 views

I am building a mid-level project called School-Admin Panel with Django. I have completed most of the segments sucessfully, but I am having an issue with the performance forest. The formset loads and ...
Nicolas Riggs Nicolas's user avatar
1 vote
2 answers
77 views

I'm trying to upload a property object (JSON) along with multiple images using multipart/form-data But Spring Boot keeps returning: 415 Unsupported Media Type Content-Type 'application/octet-stream' ...
Thomastheguy's user avatar
Advice
0 votes
9 replies
85 views

I'm trying to verify if a parameter of the req.body respects the Type contraints that I set on the custom type How can I, for example, compare that the content of req.body.conditioncorresponds with ...
Alex's user avatar
  • 3
0 votes
2 answers
94 views

I installed nodemon globally and locally I added it to the environment path. I tried to use flags but nothing works One month ago (last time I used it), it was running completely fine. Now it's ...
ABDULAZIZ HAMZAH's user avatar
2 votes
1 answer
72 views

I have made a Tauri app. This app uses C in the backend. The C file contains multiple functions. Some functions use the sudo command to get data. I have started this C file in the Tauri app by writing ...
user27793975's user avatar
0 votes
0 answers
28 views

I am using these apis in create and update converter. We handle these from BE side. we want to pass text to display participants names...etc it can't be shown here that it's supported I tried adding ...
rose's user avatar
  • 1
0 votes
1 answer
43 views

I've been trying to upload a file to streamlit and it is getting stuck on the uploading part. It was working perfectly before, the LLM was connected and I was getting correct responses. Then I added ...
Mirza Mahad Baig's user avatar
2 votes
1 answer
128 views

I’m working on a Node.js/Express backend using PostgreSQL (Neon serverless), TypeScript, and Zod for validation. I have a Students table with columns: id UUID PRIMARY KEY, firstName TEXT NOT NULL, ...
Varun Sai Nadiminti's user avatar
1 vote
0 answers
104 views

I am trying to configure 2 databases in a single spring boot application. So that I have configured 2 separate Config files for Postgres and Postgres vector DB. @Configuration @...
Miraj Hossain Shawon's user avatar
0 votes
0 answers
30 views

In my web app, I have whitelisted all the domains for CORS. I still need to set the sameSite and secure attributes for cookies. My frontend and backend are in 2 different sub domains. my microservice ...
Lasen Punyawardana's user avatar
1 vote
1 answer
58 views

I have created two api's in my spring mvc project which have identical structure. But while calling using Postman or while hitting the APIs in browser/UI project, one is working without any credential ...
BipLab's user avatar
  • 35
1 vote
2 answers
62 views

I'm building a simple Internet Computer dapp using Motoko and DFX version 0.28.0. My backend canister (dbank_backend) contains a checkBalance function defined as a public shared query: import Debug &...
Priya Gurung's user avatar
0 votes
0 answers
102 views

I'm new to Laravel and building a backend API system from scratch using Laravel + Sanctum (no frontend yet, just Postman for now). I'm trying to create a simple authenticated API where each logged-in ...
Raion Chan's user avatar
-1 votes
1 answer
55 views

I had hosted the server on the localhost:3000 and frontend on the localhost:5173 when i send the request to the server i get the response in network tab. using node.js in backend and react in frontend ...
Jai Gobind Pal Singh's user avatar
0 votes
0 answers
56 views

Login button in React Native doesn’t trigger fetch request or show any response. When I tap the Login button, I expect it to send a POST request to my backend server, get a response, and show an alert ...
Laith31's user avatar
0 votes
1 answer
127 views

I'm implementing schema-based multi-tenancy with NestJS, TypeORM, and PostgreSQL, following a pattern similar to https://github.com/thomasvds/nestjs-multitenants/tree/master. Most services work fine, ...
Akul Gaind's user avatar
0 votes
1 answer
79 views

when i try to run the backend im facing this error in the terminal.the issue i m facing is when i merge code im not able to run the project because nx daemon npx nx serve backend NX Daemon process ...
Sanjyot Velip's user avatar
1 vote
0 answers
43 views

I'm working on a Flask application and have created a file_handler.py file to organize some utility functions. One of the functions in helper.py is supposed to save an uploaded file to the folder ...
pd_prince's user avatar
0 votes
1 answer
69 views

<authController.js under backend> controller file const User = require('../models/User'); const bcrypt = require('bcryptjs'); const jwt = require('jsonwebtoken'); exports....
Cedric's user avatar
  • 1
0 votes
1 answer
152 views

I'm implementing a FastAPI backend where I want to allow CORS requests only from a predefined list of default origins and dynamically loaded origins stored in the database. However, when the frontend ...
Rooban's user avatar
  • 197
-6 votes
2 answers
118 views

I'm writing a process monitor in Go that periodically collects information from /proc/ using multiple goroutines. Each goroutine sends errors to a buffered channel if it fails (for example, if the ...
Chahat Sagar's user avatar
0 votes
2 answers
71 views

I'm currently working on a console application that essentially mimics an ASP.NET Web API. Everything was going smoothly until I ran into an issue regarding route attributes. What I'm trying to ...
Mateusz's user avatar
0 votes
0 answers
66 views

My goal is to send a batch request of with the conversation id so I could get all the conversations that the user have in their inbox , I tried to read the docs many times but I find their docs ...
Hawanity's user avatar
0 votes
1 answer
35 views

im quite new in spring jwt, i get the 403 forbidden when i login, i succesfully register all my users. this is package org.example.gestionrendezvousmedic.configs; import jakarta.servlet.Filter; ...
user30465325's user avatar
2 votes
1 answer
86 views

import os from flask import Flask, render_template, redirect, url_for, request from flask_login import LoginManager, UserMixin, login_user, current_user, logout_user from flask_sqlalchemy import ...
tcgconsolee's user avatar

1
2 3 4 5
172