I'm having some issues uploading .pdf files to Umbraco.
I have tried uploading a .pdf file into a folder via the media section as well as uploading one directly from a field with an upload data type on one of my content pages. Both times I am presented with the following message:
There is nothing that appears in the Stack Trace but I have noticed that if I have Firebug open, the following error is displayed:
Does anyone know why this is occuring and how I would get around it? I need to be able to allow my users to upload PDF files that are then downloadable through an Umbraco page.
Any help would be greatly appreciated.
I'm running the latest version of Umbraco on IIS Express under a development environment.
Cannot upload .pdf files to Umbraco
Hi all,
I'm having some issues uploading .pdf files to Umbraco. I have tried uploading a .pdf file into a folder via the media section as well as uploading one directly from a field with an upload data type on one of my content pages. Both times I am presented with the following message:
There is nothing that appears in the Stack Trace but I have noticed that if I have Firebug open, the following error is displayed:
Does anyone know why this is occuring and how I would get around it? I need to be able to allow my users to upload PDF files that are then downloadable through an Umbraco page.
Any help would be greatly appreciated.
I'm running the latest version of Umbraco on IIS Express under a development environment.
This turned out to be an issue with my Web.config file more than anything. I needed to add the following inside the HttpRuntime tag:
maxRequestLength="204800" executionTimeout="99999"
is working on a reply...