Navigate to Applications/MAMP/htdocs
folder in terminal & run the following command
composer create-project --prefer-dist laravel/laravel blog
or
composer create-project laravel/laravel blog "6.0.*"
Wait for Laravel install on windows system.
Run the Application on Development Server
In this step to use the php artisan serve command. It will start your server locally
php artisan serve
If you want to run the project diffrent port so use this command
php artisan serve --port=8080
You have successfully install laravel on windows, Now Go to the browser and hit the
URL : http://localhost:8000/blog
If you are not run php artisan server command, direct go to your browser and type the URL
URL : http://localhost/blog/public/
Laravel Installation Process completed go to the browser and hit URL. http://localhost/project-name /public/, you will be seen.
Server Error 500 when accessing Laravel 6 (Solve)
Download New Laravel Setup and Run, It will show server error 500 when accessing Laravel 6
If your using ubuntu machine. open your terminal and go to your project root directory and type the command in command prompt :
sudo chmod -R 777 storage
sudo chmod -R 777 bootstrap
Composer Content-Length Mismatchh
First, run:
composer config --list --global //this will get the composer home path.
[home]
/root/.composer //it’s my composer home path.
And then, edit the config.json, make it like this:
{
"config": {
"github-protocols": [
"https"
]
},
"repositories": {
"packagist.org": {
"type": "composer",
"url": "https://packagist.org"
}
}
}
It will make the packagist connection force https. And also you could config the composer.json in your project, this is a laravel sample would be look like:
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.*"
},
"config": {
"preferred-install": "dist"
},
"repositories": {
"packagist.org": {
"type": "composer",
"url": "https://packagist.org"
}
}
}
Note:
Before Composer v1.2.3 the repository key for packagist was "packagist"
. In v1.2.3 it was changed to "packagist.org"
(see commit e38ebef).