781 questions
-2
votes
1
answer
82
views
Ted EU Swagger API request returns 500 error even for a basic query [closed]
I’m trying to setup API requests for the Ted EU service. They have an example site to test out requests: https://ted.europa.eu/api/documentation/index.html#/notice-search-v3/search . But even trying ...
0
votes
0
answers
102
views
Laravel Sanctum API: Authenticated user is null causing 500 error
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 ...
0
votes
0
answers
203
views
Next.js app returns 500 error on all API routes after Coolify deployment (MySQL + Hostinger VPS)
I’m encountering an issue while deploying a website built with Next.js and a MySQL database, hosted on a Hostinger VPS using Coolify.
Context:
• The Next.js site is properly built (next build) and ...
-3
votes
1
answer
393
views
API responds with 500 error when calling OpenAI from Next.js
I'm trying to use the OpenAI API to analyze a physics question in my Next.js project. However, when I send a POST request to my API, I receive a 500 Internal Server Error. I've checked the code and ...
0
votes
0
answers
31
views
Handling in a reverse proxy configuration, status code 419 is replaced with 500
Local Development Environment.
I have touched a little the template file with which the nginx configurations are generated, the result is the following:
# from nginxproxy/nginx-proxy
# uknp.dock/
...
-1
votes
2
answers
153
views
Http 500 error : ASP.NET Core, Angular SQL Server database
I have an application that runs fine locally, using ASP.NET Core, Angular and a SQL Server database.
But, I am having problems when trying to deploy it. I have the SQL Server database deployed to ...
1
vote
1
answer
100
views
Cannot sort table by column using Google Sheets API in C#
I have a C# program that can fetch add and edit and remove values in my Google sheet. But I can't seem to sort the records in the table correctly. Here is my code:
public bool SortGoogleSheet(
int ...
1
vote
0
answers
169
views
500 Error Code on my landing Page (Next.js) deployed on AWS Amplify
Hello I am a junior developer .Currently having issues on a website I developed on Next.js, it is showing Error 500 enter image description here at loading , but the site loads visibly correctly, the ...
1
vote
1
answer
138
views
Problem with phpmyadmin (error 500) in ubuntu. Php 7.0 y 7.4 fpm
I have several sites developed with an old version of laravel that requires PHP 7.0
But the version of phpmyadmin requires 7.4 min.
I have in Apache the following error in APACHE:
[Mon Jan 13 19:00:58....
0
votes
1
answer
315
views
How to enable debug false in Laravel 11
I have a website built with laravel 11 and it is live, I want to hide the server errors such as { "status": "exception", "message": "No query results for model [App\\...
0
votes
0
answers
63
views
DreamHost (104)Connection reset by peer: mod_fcgid: error reading data from FastCGI server
I'm on dreamhost and I keep having these errors in my error log. The site shows my custom 500 Error content, and the backend setting and customization pages, but all of the front facing content is ...
1
vote
0
answers
369
views
reloading a page in Svelte5 + svelteKit returns 500 Internal server error, but not when following a link
I have a page on my site that is at the route routes/gallery in SvelteKit, and clicking on a a tag links to it correctly. But when I reload the page with the browser reload button, I get a 500 ...
0
votes
1
answer
219
views
Gcloud App Engine "500 Internal Server Error" When Using Domain Mappings API to Map Domains and Auto Provision SSL Certs
I'm facing an issue where I'm unable to create domain mappings for my App Engine Project via the API. Whenever I attempt to map a custom domain and automatically provision an SSL certificate, I ...
2
votes
0
answers
144
views
Next.js site shows 500 server error for old users but works in incognito mode
I am working on a Next.js project. The code works perfectly fine on localhost, but when I deploy the site, old users encounter a 500 server error. This issue doesn't occur when the site is accessed in ...
0
votes
0
answers
62
views
Error 500 on the Heroku server, when locally everything is fine
I made an django app from the "Python Crush Course" book and
when I try to login or register in my django app on heroku server, I
have an error 500 on webpage and error 200 on logs. However, ...
0
votes
2
answers
52
views
Unable to Retrieve Student Data from MongoDB in React App - 500 Internal Server Error
Issue:
I'm working on a React application with a backend built using Express and MongoDB. I'm encountering issues when trying to fetch student profile data. The browser console shows a 500 Internal ...
0
votes
0
answers
24
views
After submitting form on page I get an HTTP 500 error [duplicate]
so in this code I want to update login data, which works fine when submitting the form. But still when submitting, the page gets blocked by an HTTP 500 error. The code should be executed but the user ...
0
votes
1
answer
120
views
LinkedIn API: Consistent 500 Internal Server Errors When Retrieving Organizational Entity Statistics and Followers data
I am encountering Internal Server Error (HTTP status code 500) when attempting to retrieve organizational entity statistics and followers using the LinkedIn API. The organization URN is 12668855. ...
1
vote
1
answer
280
views
Why does my azure app service hosted react-based PWA randomally start returning a 500 error for ALL POST calls (GET works fine)? Fix: Restart browser?
Problem Background
We have a react-based (version 16.14.0) PWA that is hosted on Microsoft Azure app service plans (premium tier).
We've recently seen an increase in a sporadic issue where we are ...
1
vote
1
answer
54
views
Testdriven.io: Course: Developing Web Applications with Python and Flask . Part 6 Deploying to Render - User registration returns html page error
I'm going through the testdriven.io course "Developing Web Applications with Python and Flask"
The question is in the Part 6: Deploying to Render
I am using the free tier service in Render ...
0
votes
0
answers
91
views
.Net 8 web application crash after removing old hosting bundle
I had migrated my application from .Net 2 to .Net 5 and installed the .Net 5 hosting bundle and the application runed with no issue.
Now, I migrated to .Net 8 and installed the hosting bundle .Net 8 ...
2
votes
1
answer
1k
views
How to create a response body for 500 Error in Spring Boot?
I'm working on a simple Spring Boot project and I want to create a response object for 500 error.
This is the controller:
@RestController
@Slf4j
public class DataController {
@PostMapping(value = &...
0
votes
0
answers
2k
views
Nginx[emerg] "map" directive is not allowed here in /etc/nginx/sites-enabled/default:1
This is my /etc/nginx/sites-enabled/default file
map $sent_http_content_type $expires {
default off;
text/html epoch;
text/css 30d;
...
0
votes
2
answers
261
views
Calls to external API work when running code as a script, but receive `500 Internal Server Error` response when using FastAPI to run the same code?
I have an application to predict the size of a fish in an image. I have built a FastAPI endpoint --/predict/-- that runs the multi-step process to make that prediction. The steps include two calls to ...
0
votes
0
answers
543
views
ktor client/server request falling and getting 500 internal server problem
fun Application.configureRouting() {
val targetUrl = "https://oldmy.sdu.edu.kz/loginAuth.php"
val myFormData = FormDataContent(Parameters.build {
append("username",...