PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Saturday, February 5, 2022

[FIXED] Cant install laravel on kali linux

 February 05, 2022     composer-php, laravel, php     No comments   

Issue

These codes which I have written terminal

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === 'e115a8dc7871f15d853148a7fbac7da27d6c0030b848d9b3dc09e2a0388afed865e6a3d6b3c0fad45c48e2b5fc1196ae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"

mv composer.phar /usr/local/bin/composer

Composer is working.

After that I downloaded laravel without error.

composer global require "laravel/installer"

But When I write ~/.composer/vendor/bin/laravel in terminal it gives me error

bash: /root/.composer/vendor/bin/laravel: No such file or directory

Where is my problem?I dont get it.

EDIT:

find /root/ -name laravel

./.config/composer/vendor/bin/laravel
./.config/composer/vendor/laravel
./.config/composer/vendor/laravel/installer/laravel
./.cache/composer/files/laravel

Solution

You can simply run composer create-project --prefer-dist laravel/laravel blog to install Laravel in blog directory.

Then you go into blog directory and run php artisan serve. Now your Laravel should already be online.

Check this document for the Laravel installation https://laravel.com/docs/5.3/#installing-laravel.



Answered By - spicydog
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing