Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Latest commit

 

History

History
70 lines (40 loc) · 1.77 KB

TROUBLESHOOTING.md

File metadata and controls

70 lines (40 loc) · 1.77 KB

Installation Troubleshooting

Quick Checking Your Revision

Make sure your system meets the requirements

Verify that your current revision is passing tests

Specific problems

Uncaught exception 'ReflectionException' when running artisan

Problem

When trying to install, I get this error every time I want to run any php artisan command.

Fatal error: Uncaught exception 'ReflectionException' with message 'Class log does not exist

Background

It seems that dev packages are not installed and Laravel complains when it tries to load them, so the solution is to install them with composer if you are on a development environment.

Solution

Run composer install --dev instead of composer install

Reference

See Issue Report

Call to undefined function locale_get_primary_language()

Problem

When running the app, I get the following error:

FatalErrorException in helpers.php line 17:
Call to undefined function locale_get_primary_language()

Solution

Install PHP intl

Reference

Discussion

This cache store does not support tagging.

Problem

Getting the error This cache store does not support tagging., specially after registering a business.

In your .env file you probably have CACHE_DRIVER=file

Solution

Edit your .env file and set CACHE_DRIVER=array