Moneybird koppelen met PayPal transacties

Doe je ook je boekhouding met Moneybird en ben je online actief? Grote kans dat je dan wel eens een PayPal transactie hebt moeten koppelen in Moneybird. Daarvoor heb je twee mogelijkheden: Aan de PayPal transactie de één of meerdere facturen die erachter horen koppelen in het tabblad “banktransacties”. Een aparte PayPal-bankrekening bijhouden waarin alle transacties […]

Moneybird koppelen met PayPal transacties Read More »

Resetting Linux Root Password with TransIP / VPS on Ubuntu

Option 1 – Using bootloader Use this guide: http://www.howtogeek.com/196520/grub2-101-how-to-access-and-use-your-linux-distributions-boot-loader/ . In my case this did not work. Option 2 – Using SystemRescueCD It might be that your VPS has a Linux Recovery Mode (not rescue mode) using a SystemRescueCD. If so, use this guide: http://ubuntuportal.com/2011/07/reset-password-ubuntu-using-sytemrescuecd.html In my case the /dev/vda5 was not mountable, because it

Resetting Linux Root Password with TransIP / VPS on Ubuntu Read More »

Laravel Speed and Performance Optimization 101 – The Guideline

I am working with a pretty heavy Laravel site with many requests and lots of Eloquent/SQL calls. Even though the high-memory and high-cpu VPS, I felt there is room for performance improvement. That is why I would like to write out some improvements to speed up Laravel: 1. Use Database or Redis for cache and sessions

Laravel Speed and Performance Optimization 101 – The Guideline Read More »

Laravel 5.3 change login path and prevent registration

Prevent that /login is the default path for login Thanks to Stackoverflow. Go to your routes/web.php And change: Auth::routes(); Into: // Login Route::group([‘middleware’ => [‘web’]], function() { Route::get(‘login-new-address’, [‘as’ => ‘login’, ‘uses’ => ‘Auth\LoginController@showLoginForm’]); Route::post(‘login-new-address’, [‘as’ => ‘login.post’, ‘uses’ => ‘Auth\LoginController@login’]); Route::post(‘logout-new-address’, [‘as’ => ‘logout’, ‘uses’ => ‘Auth\LoginController@logout’]); }); // Registration Routes… Route::get(‘register’, [‘as’ =>

Laravel 5.3 change login path and prevent registration Read More »

Laravel Eloquent Triple Pivot Relations

Solving the HasManyTriple problem Sometimes you find yourself in the situation where you have a table like shop_country_category, which has the following structure: countries – id – name shop – id – name products – id – name shop_country_product – id – country_id – shop_id – product_id In this case a shop has specific products

Laravel Eloquent Triple Pivot Relations Read More »

Laravel Forge Ubuntu Update and Upgrade Manual with OpenSSL bugfixes

Be careful: Not all commands have been fully tested, you use these instructions with care and on your own risk. To repeat, as goes for all our articles, using our instructions is on your own risk! This article primarily focuses on Ubuntu 14.04 and 16.04 servers that are working with Laravel Forge, but it can

Laravel Forge Ubuntu Update and Upgrade Manual with OpenSSL bugfixes Read More »

3 of the best Javascript Searchable Select Boxes compared – Select2 vs Chosen vs Selectize.js performance

When having large amounts of jQuery/javascript select boxes that need to be searchable it is wise looking at the performance of them. I compared the following select replacement boxes: Select2, Chosen, Selectize.js, Bselect. Default Safari browser select box: initializing about 0.5s. Setup Having a backend page that has about 1000 select boxes that need to be

3 of the best Javascript Searchable Select Boxes compared – Select2 vs Chosen vs Selectize.js performance Read More »

Laravel, Beanstalkd and an overview of queues

In my project I am using Beanstalkd for queue processing. Sometimes jobs get stuck, while I’d like to debug these queue jobs. Mark Needham wrote a great blog about how to get an overview of Beanstalkd jobs. Connecting Assuming that Beanstalkd is installed, connect to the console through telnet: telnet localhost 11300 Getting an overview

Laravel, Beanstalkd and an overview of queues Read More »

Laravel 5.1 logout custom message and redirect to previous page

When you’re logging out in Laravel 5 and 5.1 the AuthenticatesUsers is called and the getLogout method. Since, it’s in the Illuminate directory it’s not nice to write in this file directly. It’s better to rewrite the getLogout method from an Auth\AuthController. Normally AuthCntroller, it might use this traits: use AuthenticatesAndRegistersUsers, ThrottlesLogins; Now we’ll rename

Laravel 5.1 logout custom message and redirect to previous page Read More »

en_USEnglish
Scroll to Top