Bill Ryder
Bill Ryder
I had the same problem with 1.5. It sends the connectivity test fine (it says anyway). But nothing happens after that on the web client. From what I could tell...
That fixed it. The website says communication with the Harmony One has been confirmed And loading the update into the remote worked fine. Thanks!
I'll try reverting it and testing it again. The harmony web pages aren't looking the same as they were a couple of days ago. Perhaps something else is different today....
With the old version - just sending the the one response it works now. I cleared all of my cookies and tried https://members.harmonyremote.com/EasyZapper/New/ProcLogin/Start.asp?BrowserIsChecked=True I got the login page - but...
I believe you are missing the '-' before the D I think you need: ``` sudo ./stapxx/samples/lj-lua-stacks.sxx --arg time=30 -DMAXSKIPPED=409600 -DMAXMAPENTRIES=4096000 ``` Also those are very large values. I'm not...
Works well for me thanks (checked on linux)
I'm reasonably sure it is the key count - but I'll do some experiments and report my results. From what I saw random tests were failing - but I didn't...
Using this in check_maxkeys.bash: ```bash #!/usr/bin/bash set_maxkeys(){ local maxkeys="${1:?"You must set the maxkeys count as \$1"}" local maxkeys_file="/proc/sys/kernel/keys/maxkeys" echo "${maxkeys}" | sudo tee ${maxkeys_file} echo "Maxkeys: $(< ${maxkeys_file})" } run_tests(){...
And the error is always ``` panicked at 'called `Result::unwrap()` on an `Err` value: Errno { code: 122, description: Some("Disk quota exceeded") }' ```
Using this ```bash #!/usr/bin/bash maxkeys_file="/proc/sys/kernel/keys/maxkeys" set_maxkeys(){ local maxkeys="${1:?"You must set the maxkeys count as \$1"}" echo "${maxkeys}" | sudo tee ${maxkeys_file} >/dev/null } # shellcheck disable=SC2120 run_tests(){ # only run...