Page 1 of 1

IFrame URL and Kerberos

Posted: Tue Nov 13, 2018 7:38 am
by dabeda
Hi!

I'm uploading files with dropzone.js to our system. We use an iFrame in the screen and as iFrame URL the path to the dropzone.html which is located in userdata/custom/html. If our users connect to the system with kerberos, then it tries to find it in auth/userdata/custom/html. How can I tell it to not do that? There is no folder auth on the system.
What am I missing?

Regards Peter

Re: IFrame URL and Kerberos

Posted: Tue Nov 13, 2018 12:58 pm
by Scott Klement
Start the iframe url with a slash. i.e. make it /profoundui/userdata/custom/html/dropzone.html -- so that it begins with a slash like that. this way it will not be relative to the path in the URL.

Re: IFrame URL and Kerberos

Posted: Tue Nov 13, 2018 1:18 pm
by dabeda
Wow, it's really that simple. :$

Thank you very much Scott, you've saved my day.