Mark Wass
Mark Wass
I'm experiencing the same issue. I rolled back to 1.26.0 and it works again.
I can confirm that adding this value to the settings.json file worked. ``` JSON "sshfs.flags": [ "-OPENSSH-SHA1" ] ```
DOH!!!! Got it working. I decided to test using Postman just to make sure I could create a user. I found that in my RegisterController.php file I was missing this...
Just found out my new users are not having their password hashed before it is saved to the Data base. Got to work that out now.
Great got that sorted also I ended up doing this. ``` protected function register(Request $request) { $user = User::create([ 'name' => $request['name'], 'email' => $request['email'], 'password' => Hash::make($request['password']), ]); }...
Still getting this error if I try and register the same user twice. This is obviously because the email address needs to be unique. ``` bluebird.min.js:29 Unhandled rejection TypeError: Cannot...
Garrrr! Found the problem. I spelled response wrong! I'm making progress, now I'm getting this error ``` bluebird.min.js:29 Unhandled rejection Error: Request failed with status code 500 ``` How do...
Hi Afik This I have registration working however I don't know how to handle the error message when I try to register a new client using the same email address....
Thanks for getting back to me, I'd forgotten all about this request. This is a sample of the embed code for vimeo. `` This is a sample URL link to...