Page 1 of 1

Graphs not showed

Posted: Fri Jul 04, 2014 8:03 pm
by aramacciotti
I've one laptop where all is working fine and two computers (one is a tablet), all are Windows, where graphs are not showed but browsing http://localhost:8080.

Any suggestion?

Re: Graphs not showed

Posted: Fri Jul 04, 2014 10:37 pm
by GabrieleV
You need to add a registry key that you can found here on forum. Or you can wait version 1.1.0-RC3 that will include registry patch

Re: Graphs not showed

Posted: Mon Mar 28, 2022 6:46 pm
by wolfsolver
Hi all,
I have similar issue on Version: 1.5.13 64-bit (installed). The issue appars after some change in my windows acount domain.
Until yesterday is all ok, grah, and so on. From today (same pc, completly reset, windows 11 but with policy handled from my company) no grah and number format. Seems that some policy block javascript or similar.

I take a look also to localhost:8080 but without any result.

Right now on my pc there is no Internet Explorer, only edge and chrom (my company does not want IE since it will be discontinued).

Any suggestion?

Re: Graphs not showed

Posted: Mon Mar 28, 2022 7:34 pm
by Renato
Probably this is already due to a missing javascript.

It is difficult to give advice when the Windows is not original.

Re: Graphs not showed

Posted: Tue Mar 29, 2022 8:22 am
by wolfsolver
I have some technical skill, but I didn't found any way to "debug" html page on MMEX. This is the test i do:
* Disable windows firewall
* take a look on properties on MMEX page (for example for chasflow daily source is memory:rep0.htm)
* the syntoms is the javascript is not loaded (or run), but I didn't find any way to debug. Just set an allert into home_page.htt work, but if you have any idea to how to check if script is loaded, or check what is the error. Seems that <script> tag work while <script src= not work.

Re: Graphs not showed

Posted: Tue Mar 29, 2022 10:12 am
by Renato
If I were you, I would contact the company's IT manager, who will surely know which restrictions he has configured.
MMEX works perfectly under the original Windows 11.

Re: Graphs not showed

Posted: Wed Mar 30, 2022 11:19 am
by Nikolay
Could you try to run mmex as administrator?
there is a special key should be created in a Windows registry.

Code: Select all

#if defined (__WXMSW__)
    // https://msdn.microsoft.com/en-us/library/ee330730(v=vs.85).aspx
    // https://kevinragsdale.net/windows-10-and-the-web-browser-control/
    wxRegKey Key(wxRegKey::HKCU, R"(Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION)");
    if (!(Key.Create(true) && Key.SetValue(wxFileName(wxStandardPaths::Get().GetExecutablePath()).GetFullName(), 11001)))
        wxASSERT(false);
#endif