??
You're inside public_html, but wp-admin or wp-content was not found.
Savvy
W
olf -
MANAGER
Edit File: CheckTrait.php
<?php namespace Alexusmai\LaravelFileManager\Traits; use Illuminate\Support\Facades\Storage; trait CheckTrait { /** * Check disk name * * @param $name * * @return bool */ public function checkDisk($name): bool { return in_array($name, $this->configRepository->getDiskList()) && array_key_exists($name, config('filesystems.disks')); } /** * Check Disk and Path * * @param $disk * @param $path * * @return bool */ public function checkPath($disk, $path): bool { // check disk name if (!$this->checkDisk($disk)) { return false; } // check path if ($path && !Storage::disk($disk)->exists($path)) { return false; } return true; } /** * Disk/path not found message * * @return array */ public function notFoundMessage(): array { return [ 'result' => [ 'status' => 'danger', 'message' => 'notFound', ], ]; } }