So I have a c# project that can convert textbox text into .ePub file (using 3rd party library) to download.
Testing on localhost works fine. The ePub file is created locally inside the project folder then transmitted to the users (browser download).
(path)\Document_Data\125028197077241091041102140245040098055209043040\testing word goal.epub"
But after uploading the project to a live site that Download feature breaks.
It's hard to debug on a live site but normally, does an IIS installation allow for creating files (that temp .ePub file to transmit) in the server's file system from code?
Is a storage solution required? This project used to have an azure storage account but not anymore.
I don't see any other reason why it wouldn't work other not being able to create the file.
My site just shows a blank page. Any tips on how to show actual errors? In web.config I did not set it to not show errors.
Thanks!