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

I'd like to realize a login mechanism in PHP, able to: ask username and password the first time you log in; don't ask again username and password if you re-access the site within x days since the ...
the_candyman's user avatar
  • 1,673
0 votes
1 answer
33 views

We are implementing SSO and it is materializing nicely in Yii 1.1.29. Yet, we need to log out from the Yii site if the user logs out from the IDP. To make the scenario clearer, let's suppose that user ...
Lajos Arpad's user avatar
  • 80.4k
0 votes
0 answers
42 views

I am getting the response from a LLM called Moondream from Ollama. And there is nothing wrong with it because I tried to debug by print out its response, and it was fine. I believe that the problem ...
anpham's user avatar
  • 1
0 votes
1 answer
133 views

Here's a question based on your scenario that you can ask on StackOverflow: Title: How can I correctly deserialize byte[] data from IDistributedCache that results in a binary format? Body: I am ...
Vayne Main's user avatar
1 vote
1 answer
128 views

I am having some strange problem. I have a form: <form action="goToStripe.php" method="POST"> <div style="padding-bottom: 30px;"> <...
kasparinho's user avatar
-1 votes
2 answers
344 views

I'm learning how to use session-based authentication for my web app, but I'm not sure what kind of data should be stored in the session. What information do I need to keep in the session after a user ...
Impossible cell 754863921's user avatar
0 votes
0 answers
48 views

This one is complicated. I have a following middleware in my Program.cs: app.UseMiddleware<LowercaseUrlMiddleware>(); app.UseHttpsRedirection(); app.UseWebOptimizer(); app.UseStaticFiles(); app....
Alexandr Zavalny's user avatar
0 votes
0 answers
41 views

I am working on a Django app that uses user sessions to manage shopping carts. However, every time i refresh the page, a new session key is generated, which causes a new cart to be created. This ...
 A-laz's user avatar
  • 65
0 votes
1 answer
97 views

I am going to implement requests with sessions in my application, but I have read some threads concerning issues with thread and process safety, but those arent exactlty recent. My application run 800+...
Welsige's user avatar
  • 161
0 votes
0 answers
80 views

I'm encountering a TypeScript compilation error related to session management in my Node.js application. Here is the error message I receive: D:\Web Dev\RAHI\Backend\node_modules\ts-node\src\index.ts:...
Ainz's user avatar
  • 53
1 vote
1 answer
61 views

I have a flask web app that does image processing. The parent application calls a function that creates several temporary images, writes them to disk, and stores their paths in the flask Session. That ...
RedHand's user avatar
  • 309
0 votes
0 answers
75 views

I have a web app in .NET 7.0, which is mainly one single webpage (Index), with severals partials views : one the first call to Index with some parameters, the session is first cleared, then the ...
a.reure's user avatar
-1 votes
1 answer
71 views

I am seeing an unconfigured table error when I execute a batch statement(not consistent). In the batch statement, I am having several prepare statements(10) Few of the prepare statements(2 of them) ...
Balaji Venkatesan's user avatar
1 vote
1 answer
347 views

I'm using Laravel 11 with MongoDB for authentication. However, after a successful login attempt using Auth::guard('web')->attempt(), the authentication session is not persisting, and Auth::user() ...
laravel develper's user avatar
0 votes
0 answers
256 views

My NextAuth Option Code is (only the important part) callbacks: { async jwt({ token, user }) { if (user) { token.id = user.id; token.email = user.email; token.role = ...
Rafay Jamal's user avatar
0 votes
1 answer
66 views

I understand that sessions can be written as such For e.g. session1 = "1000-1300" or session2 = "1000-1300:2" for mondays only However I am unable to write a session that runs ...
Basil's user avatar
  • 3
1 vote
0 answers
59 views

I have this project with a parent page on one domain that includes an iframe on another domain. Within this iframe I want to pass session data. This means: index.php is called within an iframe and ...
Mathias Hagensen's user avatar
0 votes
1 answer
34 views

I am using authorization code flow to work with Spotify API. @app.route('/login') def login(): scope = 'user-read-private user-read-email user-top-read playlist-modify-public playlist-modify-...
user26912109's user avatar
0 votes
0 answers
51 views

I have one simple page with two methods, one to charge data into inputs and other to save then. Both methods are using FFI to access one pascal dll, but I need to initialize the dll at the first ...
Renato Rubinho's user avatar
0 votes
1 answer
64 views

I have an API built using Koa v2 and we have a cookie session based authentication. For that, we use the koa-session library and it works. But now, we are migrating our API to NestJS, using express as ...
Gustavo Mendonça's user avatar
0 votes
1 answer
61 views

I've seen this question be asked many times, but there is still no answer after I've gone through a dozen similar questions. The core of the problem is I have a node server with a mongodb database, ...
Kavin Bharathi's user avatar
0 votes
1 answer
27 views

I'm currently storing session["username"] in my auth module and then trying to access it from my project module from y backend app, specifically from the home endpoint. Problem is session[&...
nillie_welson's user avatar
2 votes
0 answers
90 views

When creating a Serilog ILogEventEnricher everything works fine until I try to access session. Doing so throws the following error: Session has not been configured for this application or request. ...
Kyle Fuller's user avatar
0 votes
1 answer
85 views

I am currently working on ckan version 2.10 and deployed to a docker. I have 2 machine with google chrome installed and both machine visited the same ckan's website. Let's called it PC1's browser and ...
xxestter's user avatar
  • 519
0 votes
0 answers
27 views

I am using laravel 11 and I seem to be missing something in the authentication setup. I updated all user IDs to uuid instead of the default incremental int approach, unfortunately, Auth::attempt() isn'...
jmakinin's user avatar

1
3 4
5
6 7
886