Click here to Skip to main content
15,894,297 members

Comments by nmeri17 (Top 70 by date)

nmeri17 22-Mar-20 12:18pm View    
I couldn't call session_destroy because the session contains other variables I will probably use on other requests. I eventually discovered the problem was because of an warning/error being raised when writing some closure to session. PHP does not permit serializing closures to the session array, so it's some kind of transaction that is `committed` only after response is returned. In my case, the closure was causing the transaction to terminate even though request handler was visibly changing contents of the session array.

Thanks for stopping by
nmeri17 25-Jul-19 7:04am View    
I've already done all this. I also changed the event name in the service provider to "App\Events\Illuminate\Auth\Events\Verified" but it still doesn't work
nmeri17 14-Nov-18 11:34am View    
Sorry, I didn’t mean synchronous Ajax requests. What I intend to make is regular requests/page navigation (instead of the preventdefault they’re using to hijack my links after their Dom manipulations). If I click on “/Xxx”, I want to leave the current page and go to mysite/xxx rather than jqm loading “/xxx” asynchronously. The only links I want jqm to attach events to are page anchors like “#section5” but there’s no way I know of to do specify links to it. It automatically prevents default on all links and tries loading them asynchronously. I can’t remove the listeners on these links because they’re anonymous so my best bet is to disable asynchronous altogether.

The problem with this approach is that I’m having a hard time restarting and repausing asynchronicity.
nmeri17 9-Oct-18 15:09pm View    
This assumes my local machine is always on round the clock which is impossible due to factors majorly electric power. Thank you for your effort.
nmeri17 17-Sep-18 5:44am View    
I've solved it. Thanks