Graphs not showed

General discussion on all other topics under the sun.

Moderator: Renato

Post Reply
aramacciotti
Senior MMEX User
Posts: 25
Joined: Mon Jun 02, 2014 7:17 am
Are you a spam bot?: No

Graphs not showed

Post 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?
User avatar
GabrieleV
MMEX Developer
Posts: 158
Joined: Wed Apr 09, 2014 7:45 pm
Are you a spam bot?: No
Location: Italy

Re: Graphs not showed

Post 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
wolfsolver
New MMEX User
Posts: 4
Joined: Mon Mar 28, 2022 6:38 pm
Are you a spam bot?: No

Re: Graphs not showed

Post 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?
User avatar
Renato
MVP MMEX User
Posts: 655
Joined: Mon Apr 25, 2011 7:36 pm
Are you a spam bot?: No
Location: near Zurich

Re: Graphs not showed

Post by Renato »

Probably this is already due to a missing javascript.

It is difficult to give advice when the Windows is not original.
Renato Forum Administrator
wolfsolver
New MMEX User
Posts: 4
Joined: Mon Mar 28, 2022 6:38 pm
Are you a spam bot?: No

Re: Graphs not showed

Post 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.
User avatar
Renato
MVP MMEX User
Posts: 655
Joined: Mon Apr 25, 2011 7:36 pm
Are you a spam bot?: No
Location: near Zurich

Re: Graphs not showed

Post 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.
Renato Forum Administrator
Nikolay
MMEX Developer
Posts: 1535
Joined: Sat Dec 06, 2008 2:27 pm
Are you a spam bot?: No
Location: Sankt-Petersburg, Russia

Re: Graphs not showed

Post 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
Post Reply