DEV Community

Milan Tarami
Milan Tarami

Posted on

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

Top comments (0)