[OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-16 Thread Matthias Buecher / Germany
I'm using webif (X-Wrt.org) with Backfire from official Backfire
repository, due to a missing WOL page in Luci.

If I connect to the router's web page with a browser, then I'm not asked
for username and password.
It advances directly to the administration interface, saying "Username
not logged in" and all functionalities are available.
Seems to be caused by the new uhttpd server, as it was working before in
trunk (e.g. 19875 from end of February).

Maddes

___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-16 Thread Jo-Philipp Wich
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

What version of uhttpd? What are the contents of /etc/httpd.conf ?

~ Jow
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkvIrvcACgkQdputYINPTPNuZACfXBtNyVRN7NqJZPWE7brAJnlR
NcwAoKVceSSYqHc/q71dr+s7XltzspMd
=T1d1
-END PGP SIGNATURE-
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-16 Thread Matthias Buecher / Germany
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Due to the problem I rebuild a Backfire image from r20886 with the
config from http://downloads.openwrt.org/backfire/10.03/orion/OpenWrt.config

opkg shows the following related to uhttpd and webif:
uhttpd - 8
haserl - 0.9.26-1
webif - 0.3-4893

luci was replaced by webif the following way:
opkg --autoremove --force-removal-of-dependent-packages remove luci-core
luci-theme-base luci-nixio
opkg install webif

A file called "httpd.conf" is nowhere available. Searched via `find /
- -name '*http*'`.
But there is "/etc/config/uhttpd" from uci, so I attached this.

The uci file for uhttpd is available in /rom and /overlay but has no
differences, so it contains still the defaults.

Maddes

On 16.04.2010 20:40, Jo-Philipp Wich wrote:
> What version of uhttpd? What are the contents of /etc/httpd.conf ?
> 
> ~ Jow

-BEGIN PGP SIGNATURE-
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkvIsiwACgkQUXXT+9wZdbVrLACfbvKnF/H8PUDZAY4DGE1AMRzK
pUsAoJ8WuEcv8njteC0Sh+pCEem0Dli1
=CxaS
-END PGP SIGNATURE-
# Server configuration
config uhttpd main

# HTTP listen addresses, multiple allowed
list listen_http0.0.0.0:80
#   list listen_http[::]:80

# HTTPS listen addresses, multiple allowed
list listen_https   0.0.0.0:443
#   list listen_https   [::]:443

# Server document root
option home /www

# Certificate and private key for HTTPS.
# If no listen_https addresses are given,
# the key options are ignored.
option cert /etc/uhttpd.crt
option key  /etc/uhttpd.key

# CGI url prefix, will be searched in docroot.
# Default is /cgi-bin
option cgi_prefix   /cgi-bin

# Lua url prefix and handler script.
# Lua support is disabled if no prefix given.
#   option lua_prefix   /luci
#   option lua_handler  /usr/lib/lua/luci/sgi/uhttpd.lua

# CGI/Lua timeout, if the called script does not
# write data within the given amount of seconds,
# the server will terminate the request with
# 504 Gateway Timeout response.
option script_timeout   60

# Network timeout, if the current connection is
# blocked for the specified amount of seconds,
# the server will terminate the associated
# request process.
option network_timeout  30

# Basic auth realm, defaults to local hostname
#   option realmOpenWrt

# Configuration file in busybox httpd format
#   option config   /etc/httpd.conf


# Certificate defaults for px5g key generator
config cert px5g

# Validity time
option days 730

# RSA key size
option bits 1024

# Location
option country  DE
option stateBerlin
option location Berlin

# Common name
option commonname   OpenWrt

-BEGIN PGP SIGNATURE-
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEABECAAYFAkvIsi0ACgkQUXXT+9wZdbW+YgCgwpAc5sSIwg/Nh2lQ9tJ5I4/F
CncAoMW3iKUtp8j8KhZ295vlH4Hs/mp0
=8NtD
-END PGP SIGNATURE-
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-16 Thread Travis Kemen
You should a /etc/httpd.conf file, if not, then this is the issue.

Travis

On Fri, Apr 16, 2010 at 1:53 PM, Matthias Buecher / Germany
 wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Due to the problem I rebuild a Backfire image from r20886 with the
> config from http://downloads.openwrt.org/backfire/10.03/orion/OpenWrt.config
>
> opkg shows the following related to uhttpd and webif:
> uhttpd - 8
> haserl - 0.9.26-1
> webif - 0.3-4893
>
> luci was replaced by webif the following way:
> opkg --autoremove --force-removal-of-dependent-packages remove luci-core
> luci-theme-base luci-nixio
> opkg install webif
>
> A file called "httpd.conf" is nowhere available. Searched via `find /
> - -name '*http*'`.
> But there is "/etc/config/uhttpd" from uci, so I attached this.
>
> The uci file for uhttpd is available in /rom and /overlay but has no
> differences, so it contains still the defaults.
>
> Maddes
>
> On 16.04.2010 20:40, Jo-Philipp Wich wrote:
>> What version of uhttpd? What are the contents of /etc/httpd.conf ?
>>
>> ~ Jow
>
> -BEGIN PGP SIGNATURE-
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iEYEARECAAYFAkvIsiwACgkQUXXT+9wZdbVrLACfbvKnF/H8PUDZAY4DGE1AMRzK
> pUsAoJ8WuEcv8njteC0Sh+pCEem0Dli1
> =CxaS
> -END PGP SIGNATURE-
>
> # Server configuration
> config uhttpd main
>
>        # HTTP listen addresses, multiple allowed
>        list listen_http        0.0.0.0:80
> #       list listen_http        [::]:80
>
>        # HTTPS listen addresses, multiple allowed
>        list listen_https       0.0.0.0:443
> #       list listen_https       [::]:443
>
>        # Server document root
>        option home             /www
>
>        # Certificate and private key for HTTPS.
>        # If no listen_https addresses are given,
>        # the key options are ignored.
>        option cert             /etc/uhttpd.crt
>        option key              /etc/uhttpd.key
>
>        # CGI url prefix, will be searched in docroot.
>        # Default is /cgi-bin
>        option cgi_prefix       /cgi-bin
>
>        # Lua url prefix and handler script.
>        # Lua support is disabled if no prefix given.
> #       option lua_prefix       /luci
> #       option lua_handler      /usr/lib/lua/luci/sgi/uhttpd.lua
>
>        # CGI/Lua timeout, if the called script does not
>        # write data within the given amount of seconds,
>        # the server will terminate the request with
>        # 504 Gateway Timeout response.
>        option script_timeout   60
>
>        # Network timeout, if the current connection is
>        # blocked for the specified amount of seconds,
>        # the server will terminate the associated
>        # request process.
>        option network_timeout  30
>
>        # Basic auth realm, defaults to local hostname
> #       option realm    OpenWrt
>
>        # Configuration file in busybox httpd format
> #       option config   /etc/httpd.conf
>
>
> # Certificate defaults for px5g key generator
> config cert px5g
>
>        # Validity time
>        option days             730
>
>        # RSA key size
>        option bits             1024
>
>        # Location
>        option country          DE
>        option state            Berlin
>        option location         Berlin
>
>        # Common name
>        option commonname       OpenWrt
>
>
> -BEGIN PGP SIGNATURE-
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iEYEABECAAYFAkvIsi0ACgkQUXXT+9wZdbW+YgCgwpAc5sSIwg/Nh2lQ9tJ5I4/F
> CncAoMW3iKUtp8j8KhZ295vlH4Hs/mp0
> =8NtD
> -END PGP SIGNATURE-
>
> ___
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
>
>
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-16 Thread Matthias Buecher / Germany
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Yes, it is missing.
Where should it come from? OpenWrt or X-Wrt?
Any clues what the content should look like?
Are uci changes needed too?

Maddes

On 16.04.2010 20:56, Travis Kemen wrote:
> You should a /etc/httpd.conf file, if not, then this is the issue.
> 
> Travis
> 
> On Fri, Apr 16, 2010 at 1:53 PM, Matthias Buecher / Germany
>  wrote:
> Due to the problem I rebuild a Backfire image from r20886 with the
> config from http://downloads.openwrt.org/backfire/10.03/orion/OpenWrt.config
> 
> opkg shows the following related to uhttpd and webif:
> uhttpd - 8
> haserl - 0.9.26-1
> webif - 0.3-4893
> 
> luci was replaced by webif the following way:
> opkg --autoremove --force-removal-of-dependent-packages remove luci-core
> luci-theme-base luci-nixio
> opkg install webif
> 
> A file called "httpd.conf" is nowhere available. Searched via `find /
> -name '*http*'`.
> But there is "/etc/config/uhttpd" from uci, so I attached this.
> 
> The uci file for uhttpd is available in /rom and /overlay but has no
> differences, so it contains still the defaults.
> 
> Maddes
> 
> On 16.04.2010 20:40, Jo-Philipp Wich wrote:
 What version of uhttpd? What are the contents of /etc/httpd.conf ?

 ~ Jow
>>
# Server configuration
config uhttpd main
>>
   # HTTP listen addresses, multiple allowed
   list listen_http0.0.0.0:80
#   list listen_http[::]:80
>>
   # HTTPS listen addresses, multiple allowed
   list listen_https   0.0.0.0:443
#   list listen_https   [::]:443
>>
   # Server document root
   option home /www
>>
   # Certificate and private key for HTTPS.
   # If no listen_https addresses are given,
   # the key options are ignored.
   option cert /etc/uhttpd.crt
   option key  /etc/uhttpd.key
>>
   # CGI url prefix, will be searched in docroot.
   # Default is /cgi-bin
   option cgi_prefix   /cgi-bin
>>
   # Lua url prefix and handler script.
   # Lua support is disabled if no prefix given.
#   option lua_prefix   /luci
#   option lua_handler  /usr/lib/lua/luci/sgi/uhttpd.lua
>>
   # CGI/Lua timeout, if the called script does not
   # write data within the given amount of seconds,
   # the server will terminate the request with
   # 504 Gateway Timeout response.
   option script_timeout   60
>>
   # Network timeout, if the current connection is
   # blocked for the specified amount of seconds,
   # the server will terminate the associated
   # request process.
   option network_timeout  30
>>
   # Basic auth realm, defaults to local hostname
#   option realmOpenWrt
>>
   # Configuration file in busybox httpd format
#   option config   /etc/httpd.conf
>>
>>
# Certificate defaults for px5g key generator
config cert px5g
>>
   # Validity time
   option days 730
>>
   # RSA key size
   option bits 1024
>>
   # Location
   option country  DE
   option stateBerlin
   option location Berlin
>>
   # Common name
   option commonname   OpenWrt
>>
>>
- -BEGIN PGP SIGNATURE-
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>>
iEYEABECAAYFAkvIsi0ACgkQUXXT+9wZdbW+YgCgwpAc5sSIwg/Nh2lQ9tJ5I4/F
CncAoMW3iKUtp8j8KhZ295vlH4Hs/mp0
=8NtD
- -END PGP SIGNATURE-
>>
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel
>>
>>
> ___
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
-BEGIN PGP SIGNATURE-
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkvItqMACgkQUXXT+9wZdbU6wgCgsY2jFm7OgPUiov/6NENmzySd
oioAoP2PrTMcrA11xmrraV0uQdjY9Moe
=lIYv
-END PGP SIGNATURE-
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-16 Thread Travis Kemen
It is likely a x-wrt issue, although r4892 should have fixed it.
/etc/httpd.conf should look like the following, restart uhttpd after
adding the lines.

/cgi-bin/webif/:root:\$p\$root
/cgi-bin/webif/:admin:\$p\$root

Travis

On Fri, Apr 16, 2010 at 2:12 PM, Matthias Buecher / Germany
 wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Yes, it is missing.
> Where should it come from? OpenWrt or X-Wrt?
> Any clues what the content should look like?
> Are uci changes needed too?
>
> Maddes
>
> On 16.04.2010 20:56, Travis Kemen wrote:
>> You should a /etc/httpd.conf file, if not, then this is the issue.
>>
>> Travis
>>
>> On Fri, Apr 16, 2010 at 1:53 PM, Matthias Buecher / Germany
>>  wrote:
>> Due to the problem I rebuild a Backfire image from r20886 with the
>> config from http://downloads.openwrt.org/backfire/10.03/orion/OpenWrt.config
>>
>> opkg shows the following related to uhttpd and webif:
>> uhttpd - 8
>> haserl - 0.9.26-1
>> webif - 0.3-4893
>>
>> luci was replaced by webif the following way:
>> opkg --autoremove --force-removal-of-dependent-packages remove luci-core
>> luci-theme-base luci-nixio
>> opkg install webif
>>
>> A file called "httpd.conf" is nowhere available. Searched via `find /
>> -name '*http*'`.
>> But there is "/etc/config/uhttpd" from uci, so I attached this.
>>
>> The uci file for uhttpd is available in /rom and /overlay but has no
>> differences, so it contains still the defaults.
>>
>> Maddes
>>
>> On 16.04.2010 20:40, Jo-Philipp Wich wrote:
> What version of uhttpd? What are the contents of /etc/httpd.conf ?
>
> ~ Jow
>>>
> # Server configuration
> config uhttpd main
>>>
>       # HTTP listen addresses, multiple allowed
>       list listen_http        0.0.0.0:80
> #       list listen_http        [::]:80
>>>
>       # HTTPS listen addresses, multiple allowed
>       list listen_https       0.0.0.0:443
> #       list listen_https       [::]:443
>>>
>       # Server document root
>       option home             /www
>>>
>       # Certificate and private key for HTTPS.
>       # If no listen_https addresses are given,
>       # the key options are ignored.
>       option cert             /etc/uhttpd.crt
>       option key              /etc/uhttpd.key
>>>
>       # CGI url prefix, will be searched in docroot.
>       # Default is /cgi-bin
>       option cgi_prefix       /cgi-bin
>>>
>       # Lua url prefix and handler script.
>       # Lua support is disabled if no prefix given.
> #       option lua_prefix       /luci
> #       option lua_handler      /usr/lib/lua/luci/sgi/uhttpd.lua
>>>
>       # CGI/Lua timeout, if the called script does not
>       # write data within the given amount of seconds,
>       # the server will terminate the request with
>       # 504 Gateway Timeout response.
>       option script_timeout   60
>>>
>       # Network timeout, if the current connection is
>       # blocked for the specified amount of seconds,
>       # the server will terminate the associated
>       # request process.
>       option network_timeout  30
>>>
>       # Basic auth realm, defaults to local hostname
> #       option realm    OpenWrt
>>>
>       # Configuration file in busybox httpd format
> #       option config   /etc/httpd.conf
>>>
>>>
> # Certificate defaults for px5g key generator
> config cert px5g
>>>
>       # Validity time
>       option days             730
>>>
>       # RSA key size
>       option bits             1024
>>>
>       # Location
>       option country          DE
>       option state            Berlin
>       option location         Berlin
>>>
>       # Common name
>       option commonname       OpenWrt
>>>
>>>
> - -BEGIN PGP SIGNATURE-
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>>>
> iEYEABECAAYFAkvIsi0ACgkQUXXT+9wZdbW+YgCgwpAc5sSIwg/Nh2lQ9tJ5I4/F
> CncAoMW3iKUtp8j8KhZ295vlH4Hs/mp0
> =8NtD
> - -END PGP SIGNATURE-
>>>
> ___
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
>>>
>>>
>> ___
>> openwrt-devel mailing list
>> openwrt-devel@lists.openwrt.org
>> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
> -BEGIN PGP SIGNATURE-
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iEYEARECAAYFAkvItqMACgkQUXXT+9wZdbU6wgCgsY2jFm7OgPUiov/6NENmzySd
> oioAoP2PrTMcrA11xmrraV0uQdjY9Moe
> =lIYv
> -END PGP SIGNATURE-
> ___
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
>
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-16 Thread Jo-Philipp Wich
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

> /cgi-bin/webif/:root:\$p\$root
> /cgi-bin/webif/:admin:\$p\$root

/cgi-bin/webif/:root:$p$root
/cgi-bin/webif/:admin:$p$root

No backslashes :)
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkvIuAQACgkQdputYINPTPPgcgCgoAeC8+kkldMuWtYYyf5bAwzH
ZtkAnjPVi/7w59AG9ilHVq1dODFNeeok
=Dr7j
-END PGP SIGNATURE-
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-25 Thread Matthias Buecher / Germany
Still the same issue with Backfire (10.03, r21131).
r21122 didn't help.

Maddes


On 16.04.2010 21:47, Travis Kemen wrote:
> Ahhh, that is why it failed, password was set via the command line,
> hmm I will have see if uhttpd can be changed to mimic the old way
> (better IMO) or work around it.
> 
> Travis
> 
> On Fri, Apr 16, 2010 at 2:41 PM, Matthias Buecher / Germany
>  wrote:
> I set the root password way before I installed packages.
> 
> Here's how I installed Backfire:
> 1. Set root password via telnet to enable ssh
> 2. Configure network
> 3. Install other packages
> 4. Remove luci
> 5. Install webif
> 
> Maddes
> 
> On 16.04.2010 21:38, Travis Kemen wrote:
 It is supposed to be generated when the password is first set.

 Travis

 On Fri, Apr 16, 2010 at 2:29 PM, Matthias Buecher / Germany
  wrote:
 Checked with `opkg files webif | grep httpd` and that file is missing in
 the webif package.

 Maddes

 On 16.04.2010 21:26, Matthias Buecher / Germany wrote:
>>> Created /etc/httpd.conf with the two lines from jow.
>>> Then restarted via `/etc/init.d/uhttpd restart`
>>> It's working now as expected.
>>>
>>> Thanks for the help.
>>> Maddes
>>>
>>> On 16.04.2010 21:18, Jo-Philipp Wich wrote:
> /cgi-bin/webif/:root:\$p\$root
> /cgi-bin/webif/:admin:\$p\$root
 /cgi-bin/webif/:root:$p$root
 /cgi-bin/webif/:admin:$p$root
 No backslashes :)

___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-25 Thread Jo-Philipp Wich
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

> r21122 didn't help.

r21122 wasn't meant to fix it. X-Wrt still has to ship the httpd.conf.

~ Jow
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkvUcZcACgkQdputYINPTPPiUgCgnXC4TRPPQIxnr1vsgqWxw0ot
1RoAnRMht9/vzbRGsR52qW8UeRFWNLKo
=Kj6F
-END PGP SIGNATURE-
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-25 Thread Travis Kemen
This was fixed in x-wrt trunk.

Travis

On Sun, Apr 25, 2010 at 11:45 AM, Jo-Philipp Wich  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
>> r21122 didn't help.
>
> r21122 wasn't meant to fix it. X-Wrt still has to ship the httpd.conf.
>
> ~ Jow
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.9 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iEYEARECAAYFAkvUcZcACgkQdputYINPTPPiUgCgnXC4TRPPQIxnr1vsgqWxw0ot
> 1RoAnRMht9/vzbRGsR52qW8UeRFWNLKo
> =Kj6F
> -END PGP SIGNATURE-
> ___
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
>
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-25 Thread Matthias Buecher / Germany
Unfortunately X-Wrt's r4894 was not added to X-Wrt's Backfire branch.
When I compiled with the X-Wrt feed I still got the unfixed version.

Hence I changed feeds.conf.default to "src-svn xwrt
http://x-wrt.googlecode.com/svn/trunk";, compiled and tested again.
It worked fine for me.

Please consider bring it to the X-Wrt Backfire branch.

Thanks a lot
Maddes

On 25.04.2010 19:52, Travis Kemen wrote:
> This was fixed in x-wrt trunk.
> 
> Travis
> 
> On Sun, Apr 25, 2010 at 11:45 AM, Jo-Philipp Wich  wrote:
 r21122 didn't help.
> r21122 wasn't meant to fix it. X-Wrt still has to ship the httpd.conf.
> 
> ~ Jow


___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-25 Thread linux_pro
yes,me too

On Apr 17, 2010 2:04 AM, "Matthias Buecher / Germany" 
wrote:

I'm using webif (X-Wrt.org) with Backfire from official Backfire
repository, due to a missing WOL page in Luci.

If I connect to the router's web page with a browser, then I'm not asked
for username and password.
It advances directly to the administration interface, saying "Username
not logged in" and all functionalities are available.
Seems to be caused by the new uhttpd server, as it was working before in
trunk (e.g. 19875 from end of February).

Maddes

___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [Backfire] [bug] webif doesn't ask for user and password on initial connection, seems uhttpd related

2010-04-25 Thread Travis Kemen
It will get applied to the x-wrt 10.03 branch shortly.

Travis

On Sun, Apr 25, 2010 at 5:52 PM, Matthias Buecher / Germany
 wrote:
> Unfortunately X-Wrt's r4894 was not added to X-Wrt's Backfire branch.
> When I compiled with the X-Wrt feed I still got the unfixed version.
>
> Hence I changed feeds.conf.default to "src-svn xwrt
> http://x-wrt.googlecode.com/svn/trunk";, compiled and tested again.
> It worked fine for me.
>
> Please consider bring it to the X-Wrt Backfire branch.
>
> Thanks a lot
> Maddes
>
> On 25.04.2010 19:52, Travis Kemen wrote:
>> This was fixed in x-wrt trunk.
>>
>> Travis
>>
>> On Sun, Apr 25, 2010 at 11:45 AM, Jo-Philipp Wich  wrote:
> r21122 didn't help.
>> r21122 wasn't meant to fix it. X-Wrt still has to ship the httpd.conf.
>>
>> ~ Jow
>
>
> ___
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
>
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel