read the crash before replying look for the line
Traceback (most recent call last):
read the crash before replying look for the line
Traceback (most recent call last):
not on vavoo plugin.. suptv
Traceback (most recent call last):
File "/usr/lib/enigma2/python/enigma.py", line 8610, in __call__
return ret(*args, **kwargs)
File "/usr/lib/enigma2/python/mytest.py", line 323, in processDelay
self.popCurrent()
File "/usr/lib/enigma2/python/mytest.py", line 438, in popCurrent
self.execBegin(first=False, do_show=do_show)
File "/usr/lib/enigma2/python/mytest.py", line 351, in execBegin
c.enable(do_show) # we must pass the "do_show" boolean to enable because "show" also can be called from within the enable function
File "/usr/lib/enigma2/python/Screens/Screen.py", line 234, in enable
self.__onShow()
File "/usr/lib/enigma2/python/Screens/Screen.py", line 199, in __onShow
x()
File "/usr/lib/enigma2/python/Plugins/Extensions/suptv/plugin.py", line 451, in updateOk
File "/usr/lib/enigma2/python/mytest.py", line 482, in open
self.pushCurrent(is_dialog=is_dialog)
File "/usr/lib/enigma2/python/mytest.py", line 433, in pushCurrent
self.execEnd(last=False, is_dialog=is_dialog)
File "/usr/lib/enigma2/python/mytest.py", line 362, in execEnd
self.current_dialog.execEnd()
File "/usr/lib/enigma2/python/Screens/Screen.py", line 105, in execEnd
for val in active_components:
-------
TypeError: 'NoneType' object is not iterable
Display More
Maybe missing library?
Debug fron Telnet or errori installl is simple
why not make a standalone plugin to make it work without users having to ask for errors. the definition only matters normalize. i dont think it is a big burden
Only example for users not for developer.
import os
from unicodedata import normalize
def sanitizeFilename(filename, maxlen=255):
"""Return a safe version of the filename."""
blacklist = ["\\", "/", ":", "*", "?", "\"", "<", ">", "|", "\0"]
reserved = [
"CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5",
"COM6", "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5",
"LPT6", "LPT7", "LPT8", "LPT9",
]
# Remove blacklisted characters and control chars
filename = "".join(c for c in filename if c not in blacklist and ord(c) > 31)
# Normalize unicode
filename = normalize("NFKD", filename).strip()
# Avoid filenames like ".", ".." or reserved words on Windows
if all(c == "." for c in filename) or filename.upper() in reserved:
filename = "__" + filename
# Split root and extension
root, ext = os.path.splitext(filename.encode("utf-8", "ignore"))
# Ensure space for root+ext within maxlen
if len(ext) > maxlen - (1 if root else 0):
ext = ext[:maxlen - (1 if root else 0)]
filename = root[:maxlen - len(ext)].decode("utf-8", "ignore") + ext.decode("utf-8", "ignore")
# Remove trailing dots or spaces
filename = filename.rstrip(". ")
if not filename:
filename = "__"
return filename
Display More
In image corvoboys i have embedded another type of boulermaker vavoo. Try it an report. ;)
an update online.
test on epg time ;)
When I try to install it, it gives an error. Best regards...
to answer your requests you have to learn to "ask"
-box owned
-image installed
-type of error (it can be seen in the logs or in the image information (atv)
the developer can't ask the same things every time.
And I won't do it
Display MoreHallo guys,
i have an Novaler ARM-Box with installed Egami Image newest version, installed Levi45-Addon-Manager and Levi45 Cam Manager..
I updates regularly via Get-List the Server in CCCAM...and write alle servers to the file, also update the softcam to newest version.
everything works fine...for a few hours...and workaround then is to update the server new in the CCCam file and softcam update.
should this work longer as a few hours...or is there a way to automate this steps...? Or is there is missunderstanding on my side ?
i have read the whole thread here...maybe i am blind..hihi
I appreciate the whole work you are doing...maybe someone can give me an advice...
greetings
Simple ZOOM Panel - Enigma2 Softcam Plugins - Linux Satellite Support Community
last fix Updated
if no work i remove it..
but what do you mean overwrite?
if you launch the ipk or from the wget line.. you shouldn't have any problems..
but i have other fix in next days..
feedback here thank's
There is a problem with displaying the weather on Skin Matrix in the latest update 7.6
be careful what buttons you click ;)
report is a function that alerts moderators.
And it is only used when a reply is not suitable or has dubious content.
;)
it's a monstrous job.
but since piconsupdater creates a file with both the references and the name of the channel, you could do a better search if you wanted
on github I think 220 picons are fine since they are not of great quality, but as I was saying it's "me mom and you", in the sense that no one wants to give a hand. So or later I thought.
What do I care, I have the premium life licenses of echannelizer - isetting etc. I don't lack picons.. So.
... I'm going to relax, then if I see that someone helps it's good otherwise I don't get a headache.
Good work my friend, if you need me give me a whistle, I'm always here for you.
many picons enfact
raw.githubusercontent.com/Belfagor2005/logos/refs/heads/main/txt/logos.txt
Update to v. 2.7.8 successful. I would like to ask why is still old version for download HDF Radio as well as for Youtube (probably Tapaat). Also there is no HDF Radio py3 3.11.2 mipsel32. What about Mediaportal plugin 1.82? Does it still work at all? Also, for example, with Sport tools, which plugins are active (updated), and which ones are maybe old (kicker, live football, formula 1..). In the IPTV Tools category, for example E2iPlayer with year 2022, E2iStream 2019 or Zadmario 2023.. . I would prefer to see current and updated plugins, even if there are fewer of them in various lists. And finally, why do I get this notification before downloading some plugins. Thank you.
With this message I installed AJ Panel. There were no problems.
well usually levi45 takes care of those plugins, it's obvious he didn't have time, I do a lot of things, and believe me, it's not easy on my own.
the Restart command is nothing more than the sum of 2 commands
#!/bin/sh
case "\$1" in
start)
ulimit -s 1024
${CAMSTART}
;;
stop)
${CAMSTOP}
;;
restart|reload)
\$0 stop
sleep 1
\$0 start
;;
version)
echo "${PV}"
;;
info)
echo "${CAMNAME} ${PV}"
;;
*)
echo "Usage: \$0 start|stop|restart"
exit 1
;;
esac
exit 0
EOF
Display More
so I don't understand where you want to get if it's already like this, even if you change the cam management plugin at the next update everything would go back to how it was before
For me, I think this discussion is not useful