-
Notifications
You must be signed in to change notification settings - Fork 24
Closed
Labels
Description
Summary
The download functionality within the web UI has never worked for me, and after inspecting developer console, I see that the download request yields a HTTP 403.
For example, if I have the following file structure on my PC, and I want to download the test.m
file, the download function would make a request to a URL like http://localhost:port/downloadC%5Cmatlab%5Ctest.m
C:
└── matlab
└── test.m
However, this URL with absolute path simply produces a 403. I am able to confirm that relative path does work:
- if my pwd is
C:\matlab
, this URLhttp://localhost:port/downloadtest.m
works; - if my pwd is
C:
,http://localhost:port/downloadmatlab%5Ctest.m
works.
I am guessing since nobody has reported this, it has to be a weird issue with my setup.
This is with MATLAB 2022b on Windows 11, and matlab-proxy is on the latest version (0.26.0).
Browser(s) used
No response
Script output
No response