Dans ton cas, le port 8888 est défini dans le script /usr/lib/enigma2/python/Plugins/Extensions/ProjectValerie/DMC_Plugins/DMC_WebInterface.py
A prioris, si l'interface WEB n'est pas disponible, tu devrais avoir un message dans le fichier log
...
try:
from twisted.web.server import Site
from twisted.web.static import File
from twisted.internet import reactor, threads
from twisted.web.resource import Resource
try:
from Plugins.Extensions.ProjectValerieSync.Manager import Manager
from Plugins.Extensions.ProjectValerieSync.MediaInfo import *
from Plugins.Extensions.ProjectValerieSync.Utf8 import *
except:
from ..ProjectValerieSync.Manager import Manager
from ..ProjectValerieSync.MediaInfo import *
from ..ProjectValerieSync.Utf8 import *
gAvailable = True
except Exception, ex:
printl("DMC_WebInterface::isAvailable Is not available", None, "E")
printl("DMC_WebInterface::isAvailable Exception: " + str(ex), None, "E")
gAvailable = False
config.plugins.pvmc.plugins.webinterface = ConfigSubsection()
config.plugins.pvmc.plugins.webinterface.port = ConfigInteger(default = 8888, limits=(1, 65535) )
...