OP
grahamlthompson
Well-Known Member
Just tried again to open the WebiF and it worked. Something has changed overnight.

From the command line (aftercli) can you try:
opkg install jim-xconv
Code:... Please select option: fixweb Removing package webif from root... Installing webif (1.4.4-1) to root... Downloading [URL]http://hpkg.tv/hdrfoxt2/base/webif_1.4.4-1_mipsel.opk[/URL]. Configuring webif. /mod/webif/lib/system.class:4: Error: error loading extension "/mod/lib/jim/xconv.so": File not found Can't load package xconv at file "/mod/webif/lib/bin/diskattrs", line 3 in procedure 'require' called at file "/mod/webif/lib/setup", line 13 at file "/mod/webif/lib/setup", line 8 at file "/mod/webif/lib/system.class", line 4 /mod/webif/lib/system.class:4: Error: error loading extension "/mod/lib/jim/xconv.so": File not found Can't load package xconv at file "/mod/webif/lib/auto/upgrade", line 3 in procedure 'require' called at file "/mod/webif/lib/setup", line 13 at file "/mod/webif/lib/setup", line 8 at file "/mod/webif/lib/system.class", line 4 ...
...
...
I then used the opb packages posted on
https://wiki.hummy.tv/wiki/Customised_Firmware_-_Features_Available
webif_1.4.2-7_mipsel.opb left a log on the USB stick with errors starting at line 111 as follows:
So, is this something to be concerned about?Code:... /mod/webif/lib/system.class:4: Error: error loading extension "/mod/lib/jim/xconv.so": File not found Can't load package xconv at file "/mod/webif/lib/bin/diskattrs", line 3 in procedure 'require' called at file "/mod/webif/lib/setup", line 13 at file "/mod/webif/lib/setup", line 8 at file "/mod/webif/lib/system.class", line 4 /mod/webif/lib/system.class:4: Error: error loading extension "/mod/lib/jim/xconv.so": File not found Can't load package xconv at file "/mod/webif/lib/auto/upgrade", line 3 in procedure 'require' called at file "/mod/webif/lib/setup", line 13 at file "/mod/webif/lib/setup", line 8 at file "/mod/webif/lib/system.class", line 4 ... <snip>
That one's a bit weird. The jim-xconv and libxconv packages are included in the bundle, so I don't know why you get the errors.
/mod/webif/lib/setup defines the require proc which eventually uses source to load the required code file from /mod/webif/lib, and/mod/webif/lib/setup calls require system.class but in turn/mod/webif/lib/system.class calls source /mod/webif/lib/setup?package require xconv is the significant line after calling source.What is wrong with it?<offtopic>Is the quoting function in this forum software really hopeless, or is it just me?</offtopic>
I find nested quotes are cut off so that I can only read the first few lines.What is wrong with it?
.bbCodeBlock--expandable .bbCodeBlock-expandContent {
overflow-y:visible;
}
The browser cache isn't going to fix a server errorIn hindsight I wonder if clearing the browser cache would have fixed it yesterday
In hindsight I wonder if clearing the browser cache would have fixed it yesterday
This looks OK wrtHope this helps - tried to install chase decrypt again today. Gave the following error
Code:>>> opkg install chasedecrypt ... Collected errors: * pkg_get_installed_files: Failed to open /mod/var/opkg/info/smartmontools.list: No such file or directory. Done.
chasedecrypt but perhaps you should force reinstall smartmontools: either from the command line or using the WebIf>Diagnostics function.Let's seeThanks
Got this
Code:>>> opkg install --force-reinstall smartmontools Removing package smartmontools from root... Installing smartmontools (6.4) to root... Downloading [URL]http://hpkg.tv/hdrfoxt2/base/smartmontools_6.4_mipsel.opk[/URL]. Configuring smartmontools. Collected errors: * pkg_get_installed_files: Failed to open /mod/var/opkg/info/smartmontools.list: No such file or directory. * pkg_get_installed_files: Failed to open /mod/var/opkg/info/smartmontools.list: No such file or directory.
ls -al /mod/var/opkg/info.Is the recording viewable?Also noticed unable to decrypt the last episode of The Long Song. The recording has been indexed by the DLNA server. Copying to Virtual Disc doesn't de-crypt either.
Downloading recording also remains decrypted. I have tried re-building the DLNA Index
stripts -@<key> <programme.ts>?You need to specify the actual key instead of the parameter key.humax# stripts -@<key> <The Long Song_2018_2101.ts>
/bin/sh: syntax error: unexpected redirection
Telnet tools.
Wrong forum; and if you really are talking about an HD-FOX, chase decryption isn't available anyway.
Akin to wanting to knock the house down because one of the light bulbs has blown.Bit harsh prpr?
No, because all the code in /mod/webif/lib/setup is protected by an if test which fails on the second or subsequent pass. And things loaded via require are similarly protected.Is it a problem that
/mod/webif/lib/setupdefines therequireproc which eventually usessourceto load the required code file from/mod/webif/lib, and/mod/webif/lib/setupcallsrequire system.classbut in turn/mod/webif/lib/system.classcallssource /mod/webif/lib/setup?