I have been attempting to make an installer for an application where the required files are on a server. I am using Inno Setup with Inno Download Plugin. During the download portion of the setup I'm getting the following error:
Download failed: Cannot create file %tempFileLocation%\%filename%.zip".
I'm not sure if the error is an ability not to connect to the server, permission issue within the temp directory, or what the problem is. If I put the URL used directly into a browser I can download the file with no problems.
procedure InitializeWizard;
begin
idpAddFile('%URL', ExpandConstant('{tmp}\%directory%\%filename%.zip'));
idpDownloadAfter(wpReady);
end;
Everything with the '%' signs are actual hard coded values. Any help either resolving this issue or pointing me to a better resource than what I've found on my own would be appreciated.