Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
55 views

I am having problems with attaching a middleware to my existing routes. Problem is with extra parameters, which cause syntax errors. My current route: Route::get('summary/{topicid}/{issueid}', [App\...
Peter's user avatar
  • 2,729
0 votes
1 answer
248 views

I have upgraded to Laravel 11 and obviously having to update some code. According to the docs, you point to a controller class with use: use App\Http\Controllers\UserController; and the route entry ...
Datadimension's user avatar
0 votes
1 answer
24 views

Im going through the flask mega tutorial chapter 5 and realised there is a part I don't understand: The formvariable seems to stay in scope between calls to a route function, see below code (...
Antti Stålnacke's user avatar
0 votes
0 answers
24 views

I am currently working with component based routing in vuejs and when i want in component a to have a background-color that is red and component component b should be like green it just takes the ...
Mojito's user avatar
  • 1
0 votes
1 answer
93 views

Problem: In a Next.js application hosted on Azure App Service, accessing routes directly (e.g., /vehicle-details) results in a 404 Not Found error. However, navigating to these same routes via ...
Gabriel Oliveira Menezes's user avatar
0 votes
1 answer
588 views

I've been exploring Compose Multiplatform and went through the documentation, particularly Compose Multiplatform Navigation Routing. Despite the library being supported on the web, the docs mention ...
Dmytro T's user avatar
  • 516
0 votes
1 answer
58 views

I'm new to Ruby on Rails, and I'm wondering if it is possible to create a single-layered path name in Rails. As far as I know, you can only create routes like home/about. Is there a way to only create ...
ApplesAndCode464's user avatar
1 vote
1 answer
61 views

I'm using laravel 11, everything working ok on localhost, but after upload on server all navbar links not work all pages not found , only home page working. <ul class="navbar-nav ms-auto"&...
Mahmoud's user avatar
  • 21
0 votes
1 answer
60 views

I have a function name import in the contact controller. The issue is that when I am trying to make a call to the function with https://example.org/contact/import, the import function is not executing....
Developer tester's user avatar
0 votes
1 answer
49 views

<NavigationContainer theme={navigation_theme} linking={{ prefixes: ["https://startja.agenciaboz.com.br", "http://localhost:8081"], config: { ...
Alfredo Augusto Petri's user avatar
0 votes
1 answer
286 views

On navigation, even though the path of a Route is added to the url in the search bar, the component of the Route is not rendered. It only renders on refreshing the page. My Header has buttons which ...
newProgrammer12's user avatar
0 votes
0 answers
41 views

here goes my first question in stack overflow. I'm tasked with implementing a max stop constraints per vehicle in my VRP. here is the issue that Im facing. `"truckLevelConstraints": {     &...
Shawn Frost's user avatar
0 votes
0 answers
70 views

I am trying to learn how to create REST API using ASP.NET Core, and I've managed to create working GET and POST requests, but for some reason, the DELETE request is not working. What am I missing? ...
dagmawi's user avatar
  • 169
0 votes
0 answers
58 views

I am getting these urls with django's get_resolver() function for a class: ^api/asset_management/^^get_assets/$ ^api/asset_management/^^get_assets\.(?P<format>[a-z0-9]+)/?$ ^api/asset_management/...
Labeeb's user avatar
  • 117
1 vote
0 answers
28 views

I’ve hosted my Laravel project on AWS. The project runs successfully, but the URL includes /public after the directory name. For example: http:////public. The project is built entirely with Laravel, ...
Xabed hossain's user avatar
2 votes
1 answer
408 views

I don't want to use UsePathBase() for some reasons. I try to use MapExtensions.Map() like below. But it does not work. Respond with "404 Not Found" when I request "/api/v1/...
Jimary's user avatar
  • 23
1 vote
0 answers
54 views

I made a simple API with PHP When I call it (Postman or script) with https://www.example.org/api/index_api.php it works. I get the return value. When I call it (Postman or script) with https://www....
Lena LfPC's user avatar
1 vote
0 answers
72 views

I am using the Parellel routes and route Interception to create a user experience that opens a form (the /new route) in a modal for the user to create their new thing. The route is /posts/new. However,...
Jordan's user avatar
  • 2,523
-5 votes
1 answer
89 views

https://github.com/89missions/reactproblem/issues/1 I have posted all three files here please help. react-dom.development.js:4312 Uncaught Type Error: props.UserName is not a function at userValue (...
Kweku Gyekete's user avatar
1 vote
0 answers
44 views

In laravel 11 i setup my route like this : then: function(){ Route::middleware(['web', 'admin'])->prefix('admin')->name('admin.')->group(base_path('routes/admin.php')); ...
Shubham Kumar's user avatar
1 vote
1 answer
77 views

on Angular version 18.0.0 //package.json "@angular/animations": "^18.0.0", "@angular/common": "^18.0.0", "@angular/compiler": "^18.0.0", &...
Jimmy Chi Kin Chau's user avatar
0 votes
0 answers
391 views

I'm building an application that have a login page, the angular version I use is Angular 19, and I run my app through ng serve. When I access the link http://localhost:4200/ from my browser, I being ...
Wu Hongyan's user avatar
0 votes
1 answer
41 views

I am facing an issue with Laravel / React.js app I have this web.route configuration: Route::middleware(['auth', 'verified'])->group(function () { Route::redirect('/admin', '/admin/dashboard'); ...
Wisamx's user avatar
  • 117
3 votes
2 answers
4k views

I have just migrated from NextJS 14 to 15 using the app router method. On Windows. I am having an issue with one of my static routes. It is not dynamic route, but is gettings errors as if it was. ...
Sven Jensen's user avatar
-2 votes
1 answer
54 views

Description: Whenever I visit the URI '/storage/decode/hello' the 403 error is shown, but when I go to '/storage/decode' URI, then the code works perfectly fine. Route::prefix('storage')->match(['...
Diwash Mainali's user avatar