Quote:
Originally Posted by Dave
If you use var_dump to dump all the variables to the screen, it might show any errors that indicate why it's not working properly.
|
Thank you for your reply. Here is the result for var_dump($data);
PHP Code:
array(9) { ["userid"]=> int(0) ["password"]=> string(9) "123456789" ["user"]=> array(2) { ["username"]=> string(7) "john123" ["email"]=> string(17) "john123@gmail.com" } [0]=> array(0) { } [1]=> array(0) { } ["userfield"]=> bool(false) [2]=> array(0) { } [3]=> string(0) "" [4]=> array(1) { ["registration"]=> bool(true) } } string(16)
Result of var_dump($response):
PHP Code:
array(2) { ["errors"]=> array(1) { [0]=> array(3) { [0]=> string(38) "signing_up_but_currently_logged_in_msg" [1]=> string(16) "superadmin" [2]=> string(108) "https://mydomain.com/forum/auth/logout?logouthash=1566335006-fc429d00acee1ceab1c9ec1ee196d4569ce5f175" } } ["userid"]=> string(1) "1" }
It looks like it is giving an error about the admin being signed in. Not sure how to fix this.
Any thoughts?