Member Since 1 Month Ago
2,870 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Started a new Conversation How Do I Change MAIL_PASSWORD In Development?
I'v changed my email password and need to change it in development to since notification are tested with my own email address.
In config/mail.php:
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
In .env file:
MAIL_DRIVER=same as old
MAIL_HOST=same as old
MAIL_PORT=same as old
MAIL_USERNAME=same as old
MAIL_PASSWORD=new password
MAIL_ENCRYPTION=same as old
php artisan tinker in terminal
Psy Shell v0.10.6 (PHP 7.4.15 — cli) by Justin Hileman
config('mail')
"password" => "new password",
env('mail_password') = new password
ERROR:
Swift_TransportException Failed to authenticate on SMTP server with username "[email protected]" using 2 possible authenticators. Authenticator LOGIN returned Expected response code 235 but got code "535", with message "535 Incorrect authentication data ". Authenticator PLAIN returned Expected response code 235 but got code "535", with message "535 Incorrect authentication data ".
I am not sure what I'm doing wrong.
Replied to Changes Have Been Made Via File Transfer (FileZilla) Instead Of Git. How Do I Pull Those Changes?
Haha ok ;)
Replied to Changes Have Been Made Via File Transfer (FileZilla) Instead Of Git. How Do I Pull Those Changes?
@neilstee I was afraid so... thx for you reply :)
Started a new Conversation Changes Have Been Made Via File Transfer (FileZilla) Instead Of Git. How Do I Pull Those Changes?
A functionality has been made without using git... Someone downloaded files via FileZilla, made some changes and uploaded it again. When pulling with git it doesn't pull the changes made via FileZilla. Does anyone know the best way to include those changes to my git repo?
Replied to Clone Everything From Production To Local?
If I can "git push" and "git pull" from/to the server then I have a repo on the server don't I? So I can just clone that? And so how?
Replied to Clone Everything From Production To Local?
Thank you for your awnser. So just download the whole "site file" and that's it? Vagrant up and then seed the DB?
I've already set up Laravel on my laptop and it works with some old code I found in the cloud and a small dB:seed I made.
Replied to Clone Everything From Production To Local?
I'm on a Windows PC and the server is Ubuntu. Using FileZilla and putty ATM.
Started a new Conversation Clone Everything From Production To Local?
I lost my laptop and so my local development environment.
How do I get my code from production to my local machine?