I use Ajax reload an captcha code image. $('.load_captcha').click(function(){ var formData = { // CSRF token _token : csrf_token }; $.ajax({ // The URL where we want to POST url : captcha_url, // Define the type of HTTP verb we…
Adding a Queue Worker in Laravel
Queue in laravel are no different with other queue services, it use easy and common procedures: There is a place to store the queue information, a PHP process at runtime writes tasks, another guard PHP polling process queue information, will…
Upgrade PHP on Ubuntu via PPA
If you want to take advantage of the new awesomeness, you can do so very easily thanks to a PPA. If you've never added a PPA before, you will want to make sure that you have python-software-properties installed so you…
Website Optimization Related Books
Even Faster Web Sites: Performance Best Practices for Web Developers Steve Souders | O'Reilly Media | June 2009 | 256 pages Performance is critical to the success of any web site, and yet today's web applications push browsers to their…