Skip to main content

All Questions

Tagged with or
Filter by
Sorted by
Tagged with
0 votes
1 answer
47 views

I add a route named default with the pattern {controller=Assets}/{action=Index}/{id?} but I get an http 404 "Not Found" error. If I type in /Assets in the browser, it finds the view, it's ...
SteinTech's user avatar
  • 4,144
2 votes
2 answers
130 views

I would appreciate it if someone could take a look at this issue: I am using a Reolink IP camera to regularly query a still image via Python. The camera is connected to a TP Link switch via a LAN ...
tazdingo's user avatar
0 votes
1 answer
82 views

I’m trying to set up OSRM with the latest India map (india-latest.osm.pbf). My system specs are: RAM: 32 GB CPU: Intel i7 11th Gen (8 cores / 16 threads) When I try to extract the map (osrm-extract), ...
MTB PL's user avatar
  • 1
1 vote
1 answer
129 views

I built a site manually, without the help of any framework. Each page is a html file, so the routes end with html, such as https://example.com/location.html I am currently migrating it to Astro. But ...
Pascal's user avatar
  • 128
0 votes
0 answers
103 views

##Program.cs ``` app.UseHttpsRedirection(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); app.MapControllers(); app.MapGet("/", () => "API is alive"); ```` ...
Themba Gumede's user avatar
0 votes
1 answer
119 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
0 votes
0 answers
18 views

I am new on APISIX. I am struggling configuring a basic route. I have configured an API target 192.168.224.130:3637 (which is an EAI waiting for HTTP request). I have also configured a http-logger ...
chris's user avatar
  • 1
-1 votes
1 answer
60 views

There something is not correct either in Dockerfile of services, or docker-compose.yml, on one builds it builds the images successfully, and for second time build fails with below error, then when I ...
ROSHAN YADAV's user avatar
2 votes
1 answer
61 views

I have recently updated my angular app from 18.x.x to 19.2.14. I updated the angular version, so i could test my spec files. The routing was working perfectly in the older version but i encountered a ...
Yoshi's user avatar
  • 21
0 votes
0 answers
63 views

I am attempting to create a very flexible routing system that allows users to configure their own publishable url paths to their own content pages, sort of like a CMS. To achieve this, I created a ...
Matt Spinks's user avatar
  • 6,740
0 votes
0 answers
51 views

I am having an Angular project with native federation and I have some problems here. I have error here. When I config routes to make shell connect to all components in a remote I have errors ERROR ...
xnlc262's user avatar
  • 11
1 vote
2 answers
564 views

I am doing micro frontend project with angular and native federation and I have some problems here. I have a host app with two remote apps. The first remote app I config and It works with both ...
xnlc262's user avatar
  • 11
0 votes
2 answers
275 views

Writing a dynamic api route for page that accepts [slug] params. export async function GET(request: NextRequest, { params }: { params: Promise<{ slug: string}> }) { const {slug} = await ...
VsiON4ALL's user avatar
0 votes
1 answer
43 views

I'm working in this API where I can access data for many queries, but I'm having problems to retrieve data for a query by name containing (like:%data%), with dynamic data. I think it might just be a ...
BoulayM's user avatar
0 votes
0 answers
16 views

I want to create an app where a users shares the directions link from the Google Maps app and the app generates a GPX file that can be used in a different navigation app. For example, this short ...
Nikolaos Beratlis's user avatar
0 votes
0 answers
30 views

import { Router, Request, Response } from 'express'; import { deleteOtp, generateOtp, verifyOtp } from '../services/otp.services'; import { sendOtp } from '../utils/sendOtp'; const router = Router(); ...
itachi1503's user avatar
0 votes
1 answer
64 views

I have multiple routes that fetch data from different API endpoints, but the structure of the fetch logic is nearly identical. I want to avoid duplicating this logic across all +page.ts files. I tried ...
user30453913's user avatar
0 votes
1 answer
138 views

I am using a classic application load balancer with two backends. I want my main backend to handle most requests and my auth backend to handle requests to /auth/*. I've been playing around with ...
David's user avatar
  • 15k
0 votes
0 answers
34 views

My team and I are building a web app with Next.JS, and we are mainly working on Front-end. The back-end was already implemented with another language because it's shared with our mobile apps. Now I'm ...
Hoangdz's user avatar
  • 333
1 vote
1 answer
212 views

I'm working on an Angular 19 app that uses a custom Angular library, and I'm having trouble getting the routing inside the library to work properly. The app is a legacy app and all the components are ...
Kedar Marathe's user avatar
-1 votes
1 answer
71 views

I created a route that functions OK, but my tests are unable to detect it. Since the test is of type feature, all Laravel features should be included. I recently updated both my Composer and npm ...
SajjadLabs's user avatar
0 votes
0 answers
22 views

My first goal is to get the id and code of the language when the user selects a language and keep it in the session. Because I will use the id for database queries and I want to be able to use the ...
khalannz7's user avatar
0 votes
1 answer
91 views

I have a project in laravel 11 and there are some issues with my config. The site should support optional locale param to differentiate between default and custom language: DE: https://example.com/...
Bajlo's user avatar
  • 1,437
0 votes
0 answers
54 views

In an angular 16 app I have a simple UI component which takes content and puts it into a draggable pane. draggable-pane.component.html <ion-apple-clips #paneContainer> <ng-content></...
Jack O'Neill's user avatar
0 votes
1 answer
229 views

Here's my pacakge.json { "name": "complex-routing-app", "version": "0.1.0", "private": true, "scripts": { "dev": "...
Heli Bhadeshiya ownAI's user avatar

1
2 3 4 5
668