Illegal instruction: 4 while installing passport package in laravel - laravel

I have a project created in reactjs as frontend and laravel as backend, I have used two packages for authentication in backend I have used Jetstream package and in frontend I need to user Passport package, now when a run php artisan passport:install it when I get this error Illegal instruction: 4 I have tried to find different resource but I have not get any working. Please any help on how to fix this. Thanks

Did you already try removing the passport package & reinstalling it?
composer remove laravel/passport
composer require laravel/passport
You could also try:
composer dump-autoload

Related

Install Laravel 8 without Jetstream

Is there any chance to install Laravel 8 without Jetstream? I want to use Laravel 8 + Inertiajs + Vue.js + Tailwind. Unfortunately Orchid admin panel compatible just with Laravel 8; that's why I have to use Laravel 8.
Yes, you can install laravel 8 without Jetstream, Jetstream is used for Auth, if you decide to create your auth by yourself you are free, or you can use Laravel Breeze if you are anti-Jetstream for Auth
composer create-project laravel/laravel nameofprojectt --prefer-dist
if I get your question very well, that will just install a laravel project without Jetstream
Yes, Laravel 8 is by default getting installed without Jetstream.
You can run the following command to start working without Jetstream.
Windows / MacOS:
curl -s https://laravel.build/example-app | bash
Don't forget to repalce "example-app" with the project/directory name you want to give it.
Laravel installation
Also I recommend to look at Laravel Sail for an easy development server:
Laravel Sail
yeah you can
create project laravel
$ laravel new blog
replace blog by your project name
then go to inertia website, follow the steps and install inertia and vuejs
then install tailwindcss
it's work
Yes you can
with composer
composer create-project laravel/laravel example-app
cd example-app
php artisan serve
First Install new Laravel project using the below command:
composer create-project --prefer-dist laravel/laravel YourProject
After that install InertiaJS in your project. For more information go to the below link:
https://inertiajs.com/server-side-setup
if you have composer installed you can use this command line:
composer create-project laravel/laravel App_Name

How to install Laravel Passport with no error that is the following one

I am trying to install Passport in Laravel. I follow exactly all the guides and I facing this problem
I already put in app.php the follow
I try to follow advice from here on similar problems but nothing resolving, I try composer dump-autoload. ecc. Any help please?
Run composer dump-autoload
Then run php artisan serve
composer dump-autoload won’t download a thing. It just regenerates the list of all classes that need to be included in the project
(autoload_classmap.php). Ideal for when you have a new class inside
your project.

Installing Laravel auth in an already existing app

I have an existing Laravel app running version 6.2
How would I do the equivalent of composer require laravel/ui in an already existing Laravel app.
You can run
composer require laravel/ui
in existing app as well.
After that, you can run the following command:
php artisan ui vue --auth
This command will create the necessary views for authentication and put them in the resources/views/auth folder.

Error on installing backpack for laravel 6.0.3

I did a fresh Laravel 6.0.3 install on laragon and I am trying to install backpack.
I did
composer require backpack/crud correclty
but then when I tried to do the next step
php artisan backpack:base:install
I get an error
Symfony\Component\Process\Exception\ProcessFailedException : The command "composer require backpack/generators --dev" failed.
Exit Code: 2(Misuse of shell builtins)
I tried to delete the cache, to add timeout 600 and I do not know what else to do.
There was indeed a problem with installing backpack/generators - composer did not fall back to an appropriate version, but it is now fixed. You should be able to run php artisan backpack:base:install without problems.
If you hit any roadblocks during the installation, I recommend you follow the manual installation procedure, instead of php artisan backpack:base:install.
Backpack v3.4 is a collection of packages for Laravel 5.5 / 5.6.
Right under requirement in Backpack.io it says it requires laravel 5.5 or 5.6 and PHP7.
It's not compatible with laravel 6.*

Error laravel tinker 5.4

I have error when update composer, please help me to fix it. Here is the picture.
Since Laravel v5.4 Tinker is a stand-alone package. You can install it with:
composer require laravel/tinker
You also need to add service provider in your config/app.php file:
Laravel\Tinker\TinkerServiceProvider

Resources