Related Posts
Laravel Undefined Constant header_x_forwarded_all after upgrading Laravel version
Updated 2nd October 2023

Have you upgraded your Laravel application from Laravel 8 to Laravel 9 and received the “Undefined Constant llluminate\Http\Request::HEADER_X_FORWARDED_ALL” error when running composer update? The error is caused by Laravel dropping the Fideloper/proxy package in Laravel 9, and it can be easy to miss on the official documentation. As of Laravel 9, Fideloper/proxy has been incorporated
How to set up SSH on Raspberry Pi
Updated 16th August 2022

In this post, I am going to show you how to set up SSH on a Raspberry Pi. Step 1: Raspberry Pi config menu First, open a new terminal and execute the command below to open the Raspberry Pi config menu. sudo rasps-config Select “Interfacing Options” and press ENTER. Then select “SSH” and press ENTER.
How to generate an SSH key and add to authorized_keys
Updated 16th August 2022

In this article we explain how to generate a SSH key for your local machine and add your public key to the authorized_keys on a remote server. Generate an SSH key for Windows, MAC and Linux Note: If you are using Windows, we recommend you use a SSH client like PuTTY. For MAC/Linux run: ssh-keygen
0 Comment