Error when no Internet Connection

Status
Not open for further replies.

hornet

Member
Hi,

A customer reportet an issue with a publication that I created in HTMLexe. When he turns of the internet connection, which is the standard way of working for him, the publication malfunctions and provides the attached error message.

I could not believe it and tried it with a publication on my own PC and experienced the same issue. Can that be fixed somehow?

Thanks

511fde4be9e67c19.png
 
What is the Windows version? And Internet Explorer version?
This is unexpected because it works offline correctly.
 
Is your jquery compiled inside the EXE file or do you have a reference to it to a third-party online provider?
 
I am not quite sure. Can you please tell me where in HTMLexe I could find that setting so I can check it? I would assume it’s all compiled inside the .exe-file, as the program usually runs offline without any problems.
 
It’s not a setting of HTMLEXE. Open the HTML page that causes the error you mentioned in an HTML editor and look for script resources. Is the jquery script resource local or is it pointing to a remote server (in other words, does the URL begin with http://…)?

Alternatively, please also try the following option:

d8baf048a1995cb5.png
 
Definitively not a bug of our program.

The problem lies here:
hornet said:
Your jquery.min.js is hosted on a remote server, so without an Internet connection, it can’t be downloaded and thus all of your jquery calls will fail.
Just compile jquery.min.js in the same folder as jquery_utils.js and replace with:
Code:
script src="../jquery.min.js">
 
Thanks for your detailed answer! Unfortunately, I am not sure how to do the steps you suggested. Could you please tell me exactly how I would do this? Is it done in HTML.exe? Thanks in advance!
 
Status
Not open for further replies.
Back
Top