??
You're inside public_html, but wp-admin or wp-content was not found.
Savvy
W
olf -
MANAGER
Edit File: PathTrait.php
<?php namespace Alexusmai\LaravelFileManager\Traits; trait PathTrait { /** * Create path for new directory / file * * @param $path * @param $name * * @return string */ public function newPath($path, $name): string { if (!$path) { return $name; } return $path.'/'.$name; } /** * Rename path - for copy / cut operations * * @param $itemPath * @param $recipientPath * * @return string */ public function renamePath($itemPath, $recipientPath): string { if ($recipientPath) { return $recipientPath.'/'.basename($itemPath); } return basename($itemPath); } /** * Transform path name * * @param $itemPath * @param $recipientPath * @param $partsForRemove * * @return string */ public function transformPath($itemPath, $recipientPath, $partsForRemove): string { $elements = array_slice(explode('/', $itemPath), $partsForRemove); if ($recipientPath) { return $recipientPath.'/'.implode('/', $elements); } return implode('/', $elements); } }