Today, during the deployment of an existing Laravel application on LAMP environment, I found the following error on the screen. Please provide a valid cache path. After more debugging and Google it, I found that the storage/framework directory is missing from deployment. Because the .gitignore file has an entry of storage/framework directory to prevent...
Setting the proper file permission for any web application is an important part of web hosting. In this tutorial, you will learn how to properly configure file permissions on a Laravel application hosted on Linux web server. First of all, Identify the user name under which web server is running. Here are some default...
There are two ways available to find the version of Laravel application installed on any system. You can either find it by running a command. If you face an issue with the command line, you can check Laravel version in files. 1. Command to Find Laravel Version Open the terminal on your system. Now...
Laravel is one of the best open source, MVC PHP framework, designed for the faster development of web applications. You can simply install and use on your development system. This article will help you to install Laravel 5 PHP Framework on Debian 10 (Buster) Linux system. Laravel requirements Apache MySQL/MariaDB PHP >= 7.1.3 OpenSSL...
Many times you face an issue that any changes to the Laravel application are not reflecting on web interfaces. This occurred due to the application is being served by the cache. This tutorial will help you to clear cache in the Laravel application. Clear Cache in Laravel (Terminal) Log in to the system running...
Create or edit the .htaccess file in the Laravel root directory and configure the RewriteRule to remove “public/index.php” from the URL. You must have mod_rewrite enable on your Apache server. The rewrite module is required to apply these settings. You also have enabled .htaccess in Apache virtual host for Laravel. Edit the .htaccess file...
Laravel is one of the best open source, MVC PHP framework, designed for the faster development of web applications. You can simply install and use on your development system. This article will help you to install Laravel 5 PHP Framework on Debian 9 (Stretch) system. Laravel required following software and extensions to be installed...
Laravel is an open source PHP framework, designed for the faster development of MVC web applications in PHP. This article will help you to install Laravel 5 PHP Framework on Ubuntu 19.04, 18.04 LTS, 16.04 LTS, 14.04 LTS operating systems. Below is the system requirements for the installation of latest Laravel application on your...
Laravel is an open source PHP framework designed for the faster development of MVC web applications in PHP. This article will help you to install Laravel 6 PHP Framework on CentOS/RHEL 7/6 system. Step 1 – Setup Yum Repositories First of all, you need to add REMI and EPEL rpm repositories in your system....