upload my project laravel to a shared host
I have a shared hosting service hostinger. as I can upload my laravel 5.2 and configure project? and I tried using: namespace App\Providers; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { // } /** * Register any application services. * * @return void */ public function register() { $this->app->bind('path.public', function () { return base_path() . '/public_html'; }); } } but still nothing. I guess easiest and better approach in this situation will be creating of a