Skip to main content
SCE Documentation

File Manager

Installing File Manager

  1. Open Visual Studio Solution. Once the solution is opened, go to “Tools” and select “NuGet Package Manager” then select “Manage NuGet Packages for solution”.
  2. Change the package source to be “FHSS Nuget”, go to “Browse” and search for “ListManager”, then select the package titled “Byu.Fhss.Sce.FileManager” and click “Install” to the right. On any prompts that appear thereafter, make sure to continue the installation.
  3. Once the installation is complete, make sure the solution still builds.
  4. If the solution does not build, install the nuget package "Byu.Fhss.Sce" and "Byu.Fhss.Sce.Util".
  5. Rebuild the solution and make sure there are no errors.

Maximum Upload Size

By default, projects have a maximum upload size of 4MB. To change that, you need to set it in the Web.config for the project like so:

<system.web>
<httpRuntime maxRequestLength="31457280" />
</system.web>
...
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" /><!-- Set maximum request content size to 50MB -->
</requestFiltering>
</security></system.webServer>

Make sure to maintain the right config file structure and merge it with existing tags, as necessary.

Updating File Manager

  1. Open Visual Studio Solution. Once the solution is opened, go to “Tools” and select “NuGet Package Manager” then select “Manage NuGet Packages for solution”.
  2. Change the package source to be “FHSS Nuget”, go to “Updates” and search for “FileManager”, then select the package titled “Byu.Fhss.Sce.FileManager” and click “Install” to the right. On any prompts that appear thereafter, make sure to continue the update.
  3. Once the update is complete, make sure the solution still builds.