nik2208
nik2208
I've quite struggled with php mail function, ended up using phpmailer instead
I've added this: session_set_cookie_params(['samesite' => 'None', 'secure' => true]); at line 7864.. just before start_session(); this seems to do the trick.. there are other start_session() on other middleware (maybe 3...
what about this approach? ``` if (session_status() == PHP_SESSION_NONE) { if (!headers_sent()) { $sessionName = $this->getProperty('sessionName', ''); if ($sessionName) { session_name($sessionName); } if(isset($body->allowSameSite)) { session_set_cookie_params(['samesite' => 'None', 'secure' => true]);...
Exactly.. since nosql databases use uuid as a standard, I'm setting things up to make it support (eventually) hybridisation with ease.
now that I practiced with simple things, show me the path to work this out ;)
well.. most of the times I try to find myself around..maybe I'm missing something.. but if u set the foreign key as unique key you get a 1 to 1...
I would use php-crud-auth instead of auth0 (they should actually do the same job, right?), but I actually don't really figure out how to mix (e.g) users coming from google...
`you will have to build those social login integrations for yourself` that is already done: I can successfully login with google and get the user's email back (and the token,...
I've implemented my own auth provider using multiple instances of api.php. I'll be sharing my general approach and the mods I've done to auth.php to achieve the goal.
sembra tutto aperto anche qui comunque: post request su: `https://www.lefrecce.it/Channels.Website.BFF.WEB/website/ticket/solutions` request body: ```{"departureLocationId":830008608,"arrivalLocationId":830000219,"departureTime":"2022-07-20T15:00:00.000+02:00","adults":1,"children":0,"criteria":{"frecceOnly":false,"regionalOnly":false,"noChanges":false,"order":"DEPARTURE_DATE","offset":0,"limit":10},"advancedSearchRequest":{"bestFare":false}}```