You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[x ] I have checked that the bug I am reporting can be replicated, or that the feature I am suggesting isn't already present.
[x ] I have checked the pull requests tab for existing solutions/implementations to my issue/suggestion.
[x ] I realise that server-side connectors are provided by various contributors. The implementations are vary due to programming language features/limitations or other factors. Thus a particular connector may not implement, or partially implement, the API features.
[x ] I realise that any changes in configuration options and/or plugin parameters affect the plugin behavior. I specified all the differences from defaults in details.
I use the following server-side connector (check one):
PHP connector by servocoder
Java connector by fabriceci
Python3 Flask connector by jsooter
Python3 Flask connector by stevelittlefish
NodeJs connector by jlaustill and forestlake
[x ] ASP.NET Core connector by sinanbozkus
ASHX connector by richeflits
Other (specified below)
My familiarity with the project is as follows (check one):
I have never used the project.
I have used the project briefly.
I have used the project extensively, but have not contributed previously.
I am an active contributor to the project.
Files are not uploading. We get a 500 error. When stepping through the filemanagercontroller.cs we noticed that the mode upload was always showing NULL. All other modes are working properly. The filemanager.js file looks like the mode is set to 'upload' properly but it's not passing through on the the post. We modified the c# code as an emergency workaround and the images started uploading. (See snippet below). We have upload as a capability. Is anyone else having an issue with the upload mode not passing through on the connector url?
In raising this issue, I confirm the following (please check boxes):
I use the following server-side connector (check one):
My familiarity with the project is as follows (check one):
Files are not uploading. We get a 500 error. When stepping through the filemanagercontroller.cs we noticed that the mode upload was always showing NULL. All other modes are working properly. The filemanager.js file looks like the mode is set to 'upload' properly but it's not passing through on the the post. We modified the c# code as an emergency workaround and the images started uploading. (See snippet below). We have upload as a capability. Is anyone else having an issue with the upload mode not passing through on the connector url?
///////////////////////////////////////////////////////////////
public IActionResult Index(string mode, string path, string name, List files, string old, string @new, string source, string target, string content, bool thumbnail, string @string)
{
try
{
if (mode == null)
{
mode = "upload"; //Temporary fix for file upload
//return null;
}
The text was updated successfully, but these errors were encountered: