Wifi Password probem with 3.0.1.F Vu+

Jotne

Vu+ Newbie
I have a problem with WPA2 Wifi password with the 3.0.1.F image.

It does not support parentheses in password like this:
Mypass(322)
This works fine with 2.1.6, so back to old 2.x version again.
When you press OK after set it up, you get a message some like this:
Cold not create password.

I have seen this in older image before.
 

Jotne

Vu+ Newbie
Same error in the plugin.py
/usr/lib/enigma2/python/Plugins/SystemPlugins/WirelessLanSetup/plugin.py

It miss two ' around %s

Wrong data:

cmd = "wpa_passphrase '%s' %s" % (wlanconfig.hiddenessid.value,wlanconfig.key.value)
cmd = "wpa_passphrase '%s' %s" % (wlanconfig.essid.value,wlanconfig.key.value)

should be:
cmd = "wpa_passphrase '%s' '%s'" % (wlanconfig.hiddenessid.value,wlanconfig.key.value)
cmd = "wpa_passphrase '%s' '%s"' % (wlanconfig.essid.value,wlanconfig.key.value)

Edit this file (line number 727 and 729), and you are good to go.
 

angelofsky1980

BlackHole Driver Specialist
Same error in the plugin.py
/usr/lib/enigma2/python/Plugins/SystemPlugins/WirelessLanSetup/plugin.py

It miss two ' around %s

Wrong data:

cmd = "wpa_passphrase '%s' %s" % (wlanconfig.hiddenessid.value,wlanconfig.key.value)
cmd = "wpa_passphrase '%s' %s" % (wlanconfig.essid.value,wlanconfig.key.value)

should be:
cmd = "wpa_passphrase '%s' '%s'" % (wlanconfig.hiddenessid.value,wlanconfig.key.value)
cmd = "wpa_passphrase '%s' '%s"' % (wlanconfig.essid.value,wlanconfig.key.value)

Edit this file (line number 727 and 729), and you are good to go.
I'll check into Vu+ sources and I report to Vu+
 
Top