I need to install and configure an existing Laravel 4 project.
I tried to do, but when I ran composer update
or composer install
a lot of issues appear.
I have the database too (with data) so I ran the migration but doesn't work because the console show me an issue about the "table doesn't exist".
Can anyone tell me the complete process to configure the App?.
I mean, what its first, second and so and so because maybe in some step I made a mistake
Install Laravel Make sure to place the ~/. composer/vendor/bin directory in your PATH so the laravel executable is found when you run the laravel command in your terminal. Once installed, the simple laravel new command will create a fresh Laravel installation in the directory you specify.
To install and configure an existing project, you'd typically
Check out its source code
Run composer install
Run php artisan migrate
Check the README
for specific instructions on installing 3rd party assets, or any additional steps you'd need to take
If the above creates errors, its either because of something in your environment (installing over an old project?) or some problem with the way the Laravel developer created their project.
To install and configure an existing project, you'd typically check those things first :
app/config/database.php
check file and verify username and password.vendor
folder and composer.json
file exist then remove it (that remove old configuration now we going to fresh configuration).composer update
and that download some dependent file download.php artisan serve
that tricks work for me last time when I migrate another host.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With