You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Need session activation from Parse
After logging in with parseUser, it can be fine if you start session automatically and developers don't need to call PHP session_start() function, or define into the documentation the full use of the session, thanks.
* Update users.md
Co-authored-by: Manuel <[email protected]>
Copy file name to clipboardExpand all lines: _includes/php/users.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ Note that this will only send if the account for the email requested has not alr
88
88
89
89
It would be bothersome if the user had to log in every time they open your app. You can avoid this by using the cached current `ParseUser` object.
90
90
91
-
By default, whenever you use any signup or login methods, the user will be saved in PHP Session storage (The`$_SESSION` superglobal.)
91
+
By default, whenever you use any signup or login methods, the user will be saved in PHP Session storage, the`$_SESSION` superglobal. When re-initializing the Parse PHP SDK, you may need to instruct PHP to load the stored session data into the `$_SESSION` superglobal using `session_start()` before initializing the Parse PHP SDK to make Parse use persistent storage and continue the previous user session.
0 commit comments