I can login with user credentials using
try { $user = ParseUser::logIn("myname", "mypass");
but if I try to get currentUser after
$currentUser = ParseUser::getCurrentUser(); if ($currentUser) { // do stuff with the user } else { // show the signup or login page }
$ currentUser is not installed.
I suspect this is more likely a php issue that I don't know about. I am grateful for any hint that keepUser is saved in my code until I log out.
source share