Laravel New in laravel 6 The Laravel team has release Laravel 6 on 3rd September 2019 and it’s now available for developers. According to the release notes, this release of Laravel framework (laravel/framework) follow Semantic Versioning standard. Also, this release is compatible with Laravel Vapor. Laravel 6 Versioning Schema Laravel 6.0 is the new LTS version of Laravel and a […] Written by Clemence Ayekple September 13, 2019September 16, 2019
Laravel Custom Validation Rules in Laravel 5.5 Custom validation rules introduced in Laravel 5.5. Laravel custom validation makes it possible to add validation rules that are not defined in laravel. In this article, we will try to determine if a phone number is valid or not using laravel custom validation rules. Get started by creating the validation rule using the following artisan […] Written by Clemence Ayekple September 7, 2019September 7, 2019
System Administration Website Enabling HTTP/2 in Apache on Ubuntu The experimental SPDY protocol originally developed by Google gave birth to HTTP/2. Enabling HTTP/2 will greatly improve website performance. However, there are some prerequisites to enabling HTTP/2 for your website. In this article, I will show how to get HTTP/2 working on your site running on Apache webserver. Prerequisites to Enabling HTTP/2 HTTPS First, enable […] Written by Clemence Ayekple July 31, 2019July 31, 2019
Laravel Troubleshooting SYMLINK(): No Such File or Directory Laravel Symlink Problem: No Such File I pulled a laravel project from GitHub that already have the storage symbolic link. Upon running it the browser, the images associated with the post came with errors. And after trying to create the symbolic again I had symlink(): no such file or directory. After searching extensively, I found a […] Written by Clemence Ayekple November 12, 2018August 3, 2020
Database MySQL How to Setup MySQL 5.7 Replication on Ubuntu 16.04 Setting up MySQL 5.7 master-slave replication on Ubuntu 16.04. This article focus on how to setup database replication between two MySQL 5.7 servers on Ubuntu 16.04 LTS server. Database replication is mostly used for backups, improved availability and some also use it to run analytic queries and reports. If you don’t already have MySQL 5.7 […] Written by Clemence Ayekple September 3, 2018September 3, 2018
Database Troubleshooting How to Reset MySql Root password on MacOS 10.13 You might have had a situation where you forgot your MySQL root password. How will you solve such a problem in MacOS High Sierra. Here are some few steps to solving that issue that is resetting mysql root password. Step 1: Stop MySQL service You can do that by simply going to preference pane and click […] Written by Clemence Ayekple June 26, 2018July 10, 2018
Programming Troubleshooting Vue packages version mismatch error fix Approachable, Versatile and Performant are the words used to describe Vue.js on their website. Vue (pronounced /vjuː/, like view) is a progressive framework for building user interfaces. Unlike other monolithic frameworks, Vue is designed from the ground up to be incrementally adoptable. The core library is focused on the view layer only, and is easy […] Written by Allan Philip Barku May 17, 2018August 3, 2020
Frontend Programming Troubleshooting How to fix “Error: Node Sass does not yet support your current environment” Node Sass does not yet support your current environment error normally happens when the node version is updated globally and the necessary update of dependencies on the project level is not done. Maybe you already get this error when compiling sass files. In my case it’s regularly when I updated my node version or switch versions due […] Written by Allan Philip Barku May 17, 2018August 3, 2020
Database How to Backup MySQL Database using mysqldump Backup MySQL Database using mysqldump One of the most common ways to backup MySQL database is to use a command called “mysqldump“. Backing Up The basic syntax of the command to backup mysql with mysqldump is: mysqldump -u your_username -p database_to_backup > backup_file_name.sql Restoring Dumped Data To restore a database backup we created with mysqldump, […] Written by Clemence Ayekple March 23, 2018September 24, 2018
Laravel Programming Custom classes in laravel 5.2, the easy way Custom classes in Laravel 5.2 The PHP Framework For Web Artisans “Love beautiful code? We do too. The PHP Framework For Web Artisans “- well that is all that laravel.com captured about their intuitive and comprehensive framework on their website. If you are a framework fanatic, devotee or even a bigot then I do not have to talk […] Written by Allan Philip Barku August 3, 2016October 7, 2018