Compare commits

..

No commits in common. "4a7c0dc4b7c6520a4f2dc1383b5d3bfbeeca73dc" and "1c658c883b493c1da2e2a2d7401b6d5b463fda4d" have entirely different histories.

1 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@ class Upload extends BaseController
} }
$this->validate = new VUpload(); $this->validate = new VUpload();
$this->uploadPath = Config::get('filesystem.disks.local.url'); $this->uploadPath = Config::get('filesystem.disks.local.url');
if(is_writable(app()->getRootPath() . 'public' . $this->uploadPath)){ if(is_writable(app()->getRootPath() . 'wwwroot' . $this->uploadPath)){
$this->uploadPathIsWritable = 1; $this->uploadPathIsWritable = 1;
} }
} }