I keeping running into websites that will either, A) not load at all, or B) display incorrectly, on our XD232 units.
In every case that I am having these issues I find this error in the BrightPlayer log:
Installed Qt WebEngine locales directory not found at location /share/qt5/translations/qtwebengine_locales. Trying application directory...
[ 35.914] Qt WebEngine locales directory not found at location /bin/qtwebengine_locales. Trying fallback directory... Translations MAY NOT not be correct.
[ 36.381] [0307/161518:WARNING:resource_bundle.cc(291)] locale_file_path.empty() for locale
An example site that is not displaying properly and is generating this message is:
Another one is:
I have tried adding these sites as through a presentation in BrightAuthor as well as through this autorun:
Sub Main()
msgPort = CreateObject("roMessagePort")
r = CreateObject("roRectangle", 0, 0, 1920, 1080)
h = CreateObject("roHtmlWidget", r)
h.SetPort(msgPort)
h.SetURL("https://www.wsj.com/")
sleep(10000)
h.Show()
while true
msg = wait(0, msgPort)
print "type(msg)=";type(msg)
if type(msg) = "roHtmlWidgetEvent" then
eventData = msg.GetData()
if type(eventData) = "roAssociativeArray" and type(eventData.reason) = "roString" then
print "reason = ";eventData.reason
if eventData.reason = "load-error" then
print "message = ";eventData.message
endif
endif
endif
end while
End Sub
Why are none of these working? I can view the sites without issue on various computers.