how to run storage:link in shared hosting

milantarami

Milan Tarami

Posted on December 2, 2020

how to run storage:link in shared hosting

In shared hosting, if you don't have ssh access there is one way to run the artisan command is using Artisan Facade but wait Artisan::call('storage:link') throws an error

We are going to solve this issue, add this code to web.php within a route or to any controller

use Illuminate\Support\Facades\File;

File::link(storage_path('app/public'), public_path('storage'));
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
milantarami
Milan Tarami

Posted on December 2, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related