brew install mongodb
Set up launchctl to auto start mongod
$ ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
/usr/local/opt/mongodb/ is a symlink to /usr/local/Cellar/mongodb/x.y.z (e.g., 2.4.9)
| I'll start with the basics and proceed to addressing the common problems | |
| faced while setting up private channels with laravel-echo & laravel-echo-server. | |
| If you are getting these errors while setup; 401, 403, 419 etc, as I did in my experience. | |
| this gist will help you fix these errors. | |
| Although this gist addresses common problems of laravel-echo-server setup, some problems are similar with Pusher setup. | |
| So it might also be useful if you're having problems with setting up Pusher with Echo. | |
| I'll try to cover eveything and try to use appropriate highlighting to single out each common problem. |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
| // This particular code works with html that looks like this: | |
| <div class="upload_container" id="photo_number_1"> | |
| <div><input name="upload" class="photo_upload_field" type="file" /></div> | |
| <div><input type="button" class="upload_photo_submit" value="Upload Photo"></div> | |
| <p class="center loading hidden"><img src="/assets/loading.gif"></p> | |
| <script> | |
| // yes, I know, don't actually put this in a script tag here. It's for illustration purposes only | |
| $('.upload_photo_submit')[0]).click(function(event){ajaxFileUpload(event);}); | |
| </script> |