Как добавить разрешения без IIS ?
Когда я вызываю определенную функцию, я получаю следующую ошибку. Мой хостинг находится с 1&1ionos, и у меня нет IIS. Эта функция использует Mediatoolkit.dll, которая находится в папке BIN. Пожалуйста, кто-нибудь может сказать мне, что делать, чтобы исправить эту ошибку?
ConvertFile(Server.MapPath("~/videos/example.MOV"), Server.MapPath("~/videos/test.mp4"), Options.VideoSize.Hd720)
Exception Details: System.UnauthorizedAccessException: Access to the path '\MediaToolkit' is denied. ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user. To grant ASP.NET access to a file, right-click the file in File Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.
Что я уже пробовал:
Я попытался разрешить доступ на запись к Mediatoolkit.dll, а также папка видео, но не повезло. Это dll-файл или папка видео, которая требует разрешений?