amule and web server #183
-
|
Hallo everybody. I installed amule 3.0.0 into my M2 Mac mini. I went into preferences and enabled both ec and web server. Ec works, the web server doesn't and I would like to use it to connect to amule from my Android devices. It seems no local web server is running. Is there something else I can do or configure? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
@tsolignani — welcome. The "Enable Web Server" checkbox in Preferences is read at aMule startup, so toggling it while aMule is running doesn't actually launch Steps to get it working:
Once that works locally, for the Android side:
If you've done all that and there's still no web UI:
Paste what you see in those two and we can take it from there. |
Beta Was this translation helpful? Give feedback.
-
|
Quick follow-up @tsolignani — coming back to this with a likely culprit. The macOS .app builds shipped to date never bundled the web-template files inside the .app, so even when "Enable Web Server" was set and the GUI auto-launched amuleweb, the binary aborted with Fixed in #195 (just merged). The first CI build of master after the merge produces a universal macOS .app with the templates bundled correctly. If you'd like to try it before the next official release: grab the freshly-built universal Let me know how it goes. |
Beta Was this translation helpful? Give feedback.
Quick follow-up @tsolignani — coming back to this with a likely culprit. The macOS .app builds shipped to date never bundled the web-template files inside the .app, so even when "Enable Web Server" was set and the GUI auto-launched amuleweb, the binary aborted with
FATAL ERROR: Cannot find template: defaultbefore it could bind port 4711. Thepgrep -fl amulewebstep in my earlier reply was the right diagnostic — if you tried it, you'd have seen no amuleweb running for exactly that reason.Fixed in #195 (just merged). The first CI build of master after the merge produces a universal macOS .app with the templates bundled correctly.
If you'd like to try it before the next official release: g…