Hi all,
We didn't expected but the last firmware upgrade broke the libraries used by WWN plugin. We found an workaround until we fix this issue but please note the following:
- This workaround is not fully tested. It worked on every test I made but I cannot guarantee that this solution is bug free until we run some more tests.
- Using this workaround will disable the new added Digest Authentication. You will no longer be able to use it.
If you chose to use this workaround, please copy paste the following code in "Apps/Develop Apps/Test Luup Code", hit "GO" button, reload the engine and authorize the plugin.
os.execute("opkg install http://downloads.openwrt.org/barrier_breaker/14.07-rc3/ramips/mt7620a/packages/libcurl_7.36.0-1_ramips_24kec.ipk")
os.execute("opkg install http://downloads.openwrt.org/barrier_breaker/14.07-rc3/ramips/mt7620a/packages/curl_7.36.0-1_ramips_24kec.ipk")
os.execute("opkg install http://downloads.openwrt.org/barrier_breaker/14.07-rc3/ramips/mt7620a/packages/libpolarssl_1.3.7-1_ramips_24kec.ipk")
In order to revert the changes(for enabling Digest authentication) you can use the following code in "Test Luup Code" :
os.execute("opkg remove --force-depends libpolarssl")
os.execute("opkg remove --force-depends curl")
os.execute("opkg remove --force-depends libcurl")
os.execute("opkg update")
os.execute("opkg install libpolarssl")
os.execute("opkg install curl")
os.execute("opkg install libcurl")
We are sorry for the inconvenience, we are working to provide you a fix as soon as possible.
Thank you for understating!
Best regards,
- Andrei -