View Single Post
02/15/23, 05:28 AM   #58
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,971
This is how the normal log file should look like:
Code:
DEBUG 2022-12-04 20:33:52,338 [JavaFX Application Thread] gg.minion.util.FeedClient:checkNetworkConnections(106): Starting network check ...
DEBUG 2022-12-04 20:33:52,339 [JavaFX Application Thread] gg.minion.util.FeedClient:getRoutePlanner(61): System Default Http Proxy.
DEBUG 2022-12-04 20:33:52,637 [Thread-9] gg.minion.util.FeedClient:run(159): Ping Status for http://cdn.mmoui.com/: 200
DEBUG 2022-12-04 20:33:52,793 [Thread-8] gg.minion.util.FeedClient:run(159): Ping Status for http://api.mmoui.com/: 200
And your's looks like this:
Code:
DEBUG 2023-02-14 02:27:15,191 [JavaFX Application Thread] gg.minion.util.FeedClient:checkNetworkConnections(106): Starting network check ...
DEBUG 2023-02-14 02:27:15,191 [JavaFX Application Thread] gg.minion.util.FeedClient:getRoutePlanner(61): System Default Http Proxy.
WARN  2023-02-14 02:27:15,307 [Thread-7] gg.minion.util.FeedClient:run(164): IOException: Software caused connection abort: recv failed
WARN  2023-02-14 02:27:15,307 [Thread-8] gg.minion.util.FeedClient:run(164): IOException: Software caused connection abort: recv failed
ERROR 2023-02-14 02:27:15,308 [JavaFX Application Thread] gg.minion.controller.MinionController:<init>(147): Catching javafx.fxml.LoadException:
So it's definately not able to ping the ESOUI Minion server at http://cdn.mmoui.com/: 200 as it seems, and then fails with an error.
Either your IP address might be blocked somehow, or your proxy is the problem (if you use any?) or your firewall blocks it, or the java IP setup is wrong, or there is any other software installed which blocks the network traffic.
It could also be, if you user Wireless conenction (WLAN) that the connection is not stable enough, or you are using LAN (wired) and WLAN (wirelss) at the same time (read this: https://www.esoui.com/forums/showpos...1&postcount=52).

Check your router log files for details about that connections to the Minion server adresses e.g. cdn.mmoui.com (if you got access to the router logs).

Update your JAVA version to a new one, if not done already.


If you visit https://api.mmoui.com/v3/ in your web browser do you get any security warnings? Could be that something is messing with the ESOUI ssl cert on your end. What does it say if you click on the link?


Press the WIN key and type cmd, then run the command line
Enter:
Code:
ping cdn.mmoui.com
Does it provide you such a list?


Or what is the result? Does it say "Cannot be reached"?

What about the command
Code:
ping api.mmoui.com

Last edited by Baertram : 02/15/23 at 05:41 AM.
  Reply With Quote