WhoIsAtHome: http://fhemwiki.de/wiki/FritzBox:_WhoIsAtHome

Begonnen von Guest, 17 August 2012, 14:49:45

Vorheriges Thema - Nächstes Thema

Guest

Originally posted by: <email address deleted>

@Puschel74

Ja, es ist in der Art machbar, unter bestimmten Vorraussetzungen!

Fhem läuft bei mir auf einer FritzBox 7270, meine WLAN-Geräte buchen sich
aber bei meiner FritzBox 6360 ein. Da meine Netzwerkgeräte dann aber auch
in der 7270 als "online" angezeigt werden ist es so wiederrum möglich. Der
Nachteil ist halt nur, das es nach verlassen des WLANs etwa 15 min dauert,
bis die 7270 dies registriert und das Gerät wieder als "offline" setzt.

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

@puschel74

Ja, es ist in der Art machbar, unter bestimmten Vorraussetzungen!

Fhem läuft bei mir auf einer FritzBox 7270, meine WLAN-Geräte buchen sich
aber bei meiner FritzBox 6360 ein. Da meine Netzwerkgeräte dann aber auch
in der 7270 als "online" angezeigt werden ist es so wiederrum möglich. Der
Nachteil ist halt nur, das es nach verlassen des WLANs etwa 15 min dauert,
bis die 7270 dies registriert und das Gerät wieder als "offline" setzt.
Also ist es mit zwei FirtzBoxen schon mal möglich, so wie oben
geschrieben...

Lg

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

@dudler

i try that. I did a shutdown restart and after that i put {FBWLanDevActive('iPhone',
"iPhone_Rene")} in the commandline and press "save" -> nothing change! The
state of my iPhone is "???"

When i set this command via telnet:7072 the state changes to "Abwesend".
 Can it be that some access-rights are not correct set?




--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

UliM

                                                 

instead of hitting the save-button (which only saves the config-files, but does not execute what is in the commandfield), just type the command into the commandline field and hit .

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com
RPi4/Raspbian, CUL V3 (ca. 30 HomeMatic-devices), LAN (HarmonyHub, alexa etc.).  Fördermitglied des FHEM e.V.

Guest

Originally posted by: <email address deleted>

ok, i try that - but the result is the same.

Am Samstag, 18. August 2012 09:26:43 UTC+2 schrieb UliM:
>
> instead of hitting the save-button (which only saves the config-files, but
> does not execute what is in the commandfield), just type the command into
> the commandline field and hit .
>
>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

UliM

                                                 

"The same" meaning "nothing"?
Did you check the log - any entries? Try putting some log-stuff into your code, e.g. add a line at the beginning like
Log 1, "Routine wurde gestartet";
then reload your .pm, re-execute the command and check the log. So you can see if the routine was excuted at all.
If that works, put the log-line further down in your routine, e.g. within a relevant if-statement to see if that part is executes..

Did you post the code of your routine yet?

Otherwise, set verbose 5, enter the command as before and post the log content here, maybe someone can help based on that.

Best, Uli

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com
RPi4/Raspbian, CUL V3 (ca. 30 HomeMatic-devices), LAN (HarmonyHub, alexa etc.).  Fördermitglied des FHEM e.V.

Guest

Originally posted by: <email address deleted>

Deutsch oder englisch? Uli klingt irgendwie deutsch :-)

es sieht so aus, als wenn das Script abbricht?

sub
FBWLanDevActive($$)
{
 my ($net_device1)=@_[0];
 my $myLength=length($net_device1);
 my $number=0;
 my $status=0;
 my $net_device="";
 my $net_device2="";
 my $attendance="";
 while($number <= *25*){
   $net_device=qx(/usr/bin/ctlmgr_ctl r landevice
settings/landevice$number/name);
   *Log $number, $net_device;*
   $net_device2=substr($net_device, 0, $myLength);
   if($net_device2 eq $net_device1){
     $status=qx(/usr/bin/ctlmgr_ctl r landevice
settings/landevice$number/active);
     if ($status == 1) {last;}
   }
   $number++;
 }
 if ($status == 1) {$attendance="Anwesend";}else{$attendance="Abwesend";}
 if(Value("@_[1]") ne $attendance){fhem "set @_[1] $attendance"}
}


Damit müssten doch zumindest 25 Logeinträge kommen und in $netdevice sollte
auch was drin stehen, oder? Sind es aber nicht...

2012.08.18 10:11:59 0: Server started (version 5.2 from 2011-12-31 ($Id:
fhem.pl 1402 2012-03-31 11:20:42Z rudolfkoenig $), AVM Build: 84.05.21, pid
16400)
2012.08.18 10:12:00 4: Connection accepted from FHEMWEB:192.168.21.20:64797
2012.08.18 10:12:01 5: Loading ./FHEM/98_SVG.pm
2012.08.18 10:12:01 4: HTTP FHEMWEB:192.168.21.20:64797 GET /fhem/
2012.08.18 10:12:02 4: /fhem/ / RL: 699 / text/html; charset=UTF-8 /
Content-Encoding: gzip
 /
2012.08.18 10:12:09 4: HTTP FHEMWEB:192.168.21.20:64797 GET
/fhem?cmd=%7BFBWLanDevActive%28%27iPhone%27%2C+%22iPhone_Rene%22%29%7D
2012.08.18 10:12:09 5: Cmd: >{FBWLanDevActive('iPhone', "iPhone_Rene")}<
2012.08.18 10:12:09 0:
2012.08.18 10:12:09 1:
2012.08.18 10:12:09 2:
2012.08.18 10:12:09 3:
2012.08.18 10:12:09 4:
2012.08.18 10:12:09 5:
2012.08.18 10:12:09 4: HTTP FHEMWEB:192.168.21.20:64797 GET /fhem
2012.08.18 10:12:09 4: /fhem / RL: 699 / text/html; charset=UTF-8 /
Content-Encoding: gzip
 /
2012.08.18 10:13:07 4: Connection closed for FHEMWEB:192.168.21.20:64797



Eine Idee?

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

UliM

                                                 

Syntax von Log anschauen:
Log ,

also zB
Log 1, "$number $text";
oder
Log 1, "Beschriftung: " . $text;

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com
RPi4/Raspbian, CUL V3 (ca. 30 HomeMatic-devices), LAN (HarmonyHub, alexa etc.).  Fördermitglied des FHEM e.V.

Guest

Originally posted by: <email address deleted>

I can perfectly read german but not write it. So don´t bother about
english or german.

The script stops if the searched string is found. So it seems it is
found at the 5 th iteration. Like Uli wrote, change
  Log $number, $net_device;
in
  Log 1 "$number, $net_device";
to see what is happening. But it looks as for some reason the result
is not written to the variable.

It could als help if you can put
 Log 1, "$attendance, @_[1], $value{@_[1]}";
as the last line in the procedure.

btw you did a "shutdown restart"or a reload of your perl script before testing?

{HT}
2012/8/18 Rene :
> Deutsch oder englisch? Uli klingt irgendwie deutsch :-)
>
> es sieht so aus, als wenn das Script abbricht?
>
> sub
> FBWLanDevActive($$)
> {
>  my ($net_device1)=@_[0];
>  my $myLength=length($net_device1);
>  my $number=0;
>  my $status=0;
>  my $net_device="";
>  my $net_device2="";
>  my $attendance="";
>  while($number <= 25){
>    $net_device=qx(/usr/bin/ctlmgr_ctl r landevice
> settings/landevice$number/name);
>    Log $number, $net_device;
>    $net_device2=substr($net_device, 0, $myLength);
>    if($net_device2 eq $net_device1){
>      $status=qx(/usr/bin/ctlmgr_ctl r landevice
> settings/landevice$number/active);
>      if ($status == 1) {last;}
>    }
>    $number++;
>  }
>  if ($status == 1) {$attendance="Anwesend";}else{$attendance="Abwesend";}
>  if(Value("@_[1]") ne $attendance){fhem "set @_[1] $attendance"}
> }
>
>
> Damit müssten doch zumindest 25 Logeinträge kommen und in $netdevice sollte
> auch was drin stehen, oder? Sind es aber nicht...
>
> 2012.08.18 10:11:59 0: Server started (version 5.2 from 2011-12-31 ($Id:
> fhem.pl 1402 2012-03-31 11:20:42Z rudolfkoenig $), AVM Build: 84.05.21, pid
> 16400)
> 2012.08.18 10:12:00 4: Connection accepted from FHEMWEB:192.168.21.20:64797
> 2012.08.18 10:12:01 5: Loading ./FHEM/98_SVG.pm
> 2012.08.18 10:12:01 4: HTTP FHEMWEB:192.168.21.20:64797 GET /fhem/
> 2012.08.18 10:12:02 4: /fhem/ / RL: 699 / text/html; charset=UTF-8 /
> Content-Encoding: gzip
>  /
> 2012.08.18 10:12:09 4: HTTP FHEMWEB:192.168.21.20:64797 GET
> /fhem?cmd=%7BFBWLanDevActive%28%27iPhone%27%2C+%22iPhone_Rene%22%29%7D
> 2012.08.18 10:12:09 5: Cmd: >{FBWLanDevActive('iPhone', "iPhone_Rene")}<
> 2012.08.18 10:12:09 0:
> 2012.08.18 10:12:09 1:
> 2012.08.18 10:12:09 2:
> 2012.08.18 10:12:09 3:
> 2012.08.18 10:12:09 4:
> 2012.08.18 10:12:09 5:
> 2012.08.18 10:12:09 4: HTTP FHEMWEB:192.168.21.20:64797 GET /fhem
> 2012.08.18 10:12:09 4: /fhem / RL: 699 / text/html; charset=UTF-8 /
> Content-Encoding: gzip
>  /
> 2012.08.18 10:13:07 4: Connection closed for FHEMWEB:192.168.21.20:64797
>
>
>
> Eine Idee?
>
> --
> To unsubscribe from this group, send email to
> fhem-users+unsubscribe@googlegroups.com

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

Hi,

i did a "shutdown restart" and today a "rereadcfg" every test. Not i have
following:

sub FBWLanDevActive($$) {
 my ($net_device1)=@_[0];
 my $myLength=length($net_device1);
 my $number=0;
 my $status=0;
 my $net_device="";
 my $net_device2="";
 my $attendance="";
 while($number <= 25){
   $net_device=qx(/usr/bin/ctlmgr_ctl r landevice
settings/landevice$number/name);
   $net_device2=substr($net_device, 0, $myLength);
   *Log 1,"$number, $net_device";*
   if($net_device2 eq $net_device1){
    $status=qx(/usr/bin/ctlmgr_ctl r landevice
settings/landevice$number/active);
     if ($status == 1) {last;}
   }
   $number++;
 }
 if ($status == 1) {$attendance="Anwesend";}else{$attendance="Abwesend";}
 if(Value("@_[1]") ne $attendance){fhem "set @_[1] $attendance"}
}

And the log is:

2012.08.19 14:11:40 0: Server started (version 5.2 from 2011-12-31 ($Id:
fhem.pl 1402 2012-03-31 11:20:42Z rudolfkoenig $), AVM Build: 84.05.21, pid
21590)
2012.08.19 14:11:57 1: 0,
2012.08.19 14:11:57 1: 1,
2012.08.19 14:11:57 1: 2,
2012.08.19 14:11:57 1: 3,
2012.08.19 14:11:57 1: 4,
2012.08.19 14:11:57 1: 5,
2012.08.19 14:11:57 1: 6,
2012.08.19 14:11:57 1: 7,
2012.08.19 14:11:57 1: 8,
2012.08.19 14:11:57 1: 9,
2012.08.19 14:11:57 1: 10,
2012.08.19 14:11:57 1: 11,
2012.08.19 14:11:57 1: 12,
2012.08.19 14:11:57 1: 13,
2012.08.19 14:11:57 1: 14,
2012.08.19 14:11:57 1: 15,
2012.08.19 14:11:57 1: 16,
2012.08.19 14:11:57 1: 17,
2012.08.19 14:11:57 1: 18,
2012.08.19 14:11:57 1: 19,
2012.08.19 14:11:57 1: 20,
2012.08.19 14:11:57 1: 21,
2012.08.19 14:11:57 1: 22,
2012.08.19 14:11:57 1: 23,
2012.08.19 14:11:57 1: 24,
2012.08.19 14:11:57 1: 25,


Seems, there is no output from the net device - also when i change the
counter value to 125...    Strange...


Bye, René


Am Samstag, 18. August 2012 15:26:53 UTC+2 schrieb dudler:
>
> I can perfectly read german but not write it. So don´t bother about
> english or german.
>
> The script stops if the searched string is found. So it seems it is
> found at the 5 th iteration. Like Uli wrote, change
>   Log $number, $net_device;
> in
>   Log 1 "$number, $net_device";
> to see what is happening. But it looks as for some reason the result
> is not written to the variable.
>
> It could als help if you can put
>  Log 1, "$attendance, @_[1], $value{@_[1]}";
> as the last line in the procedure.
>
> btw you did a "shutdown restart"or a reload of your perl script before
> testing?
>
> {HT}
> 2012/8/18 Rene >:
> > Deutsch oder englisch? Uli klingt irgendwie deutsch :-)
> >
> > es sieht so aus, als wenn das Script abbricht?
> >
> > sub
> > FBWLanDevActive($$)
> > {
> >  my ($net_device1)=@_[0];
> >  my $myLength=length($net_device1);
> >  my $number=0;
> >  my $status=0;
> >  my $net_device="";
> >  my $net_device2="";
> >  my $attendance="";
> >  while($number <= 25){
> >    $net_device=qx(/usr/bin/ctlmgr_ctl r landevice
> > settings/landevice$number/name);
> >    Log $number, $net_device;
> >    $net_device2=substr($net_device, 0, $myLength);
> >    if($net_device2 eq $net_device1){
> >      $status=qx(/usr/bin/ctlmgr_ctl r landevice
> > settings/landevice$number/active);
> >      if ($status == 1) {last;}
> >    }
> >    $number++;
> >  }
> >  if ($status == 1)
> {$attendance="Anwesend";}else{$attendance="Abwesend";}
> >  if(Value("@_[1]") ne $attendance){fhem "set @_[1] $attendance"}
> > }
> >
> >
> > Damit müssten doch zumindest 25 Logeinträge kommen und in $netdevice
> sollte
> > auch was drin stehen, oder? Sind es aber nicht...
> >
> > 2012.08.18 10:11:59 0: Server started (version 5.2 from 2011-12-31 ($Id:
> > fhem.pl 1402 2012-03-31 11:20:42Z rudolfkoenig $), AVM Build: 84.05.21,
> pid
> > 16400)
> > 2012.08.18 10:12:00 4: Connection accepted from FHEMWEB:
> 192.168.21.20:64797
> > 2012.08.18 10:12:01 5: Loading ./FHEM/98_SVG.pm
> > 2012.08.18 10:12:01 4: HTTP FHEMWEB:192.168.21.20:64797 GET /fhem/
> > 2012.08.18 10:12:02 4: /fhem/ / RL: 699 / text/html; charset=UTF-8 /
> > Content-Encoding: gzip
> >  /
> > 2012.08.18 10:12:09 4: HTTP FHEMWEB:192.168.21.20:64797 GET
> > /fhem?cmd=%7BFBWLanDevActive%28%27iPhone%27%2C+%22iPhone_Rene%22%29%7D
> > 2012.08.18 10:12:09 5: Cmd: >{FBWLanDevActive('iPhone', "iPhone_Rene")}<
> > 2012.08.18 10:12:09 0:
> > 2012.08.18 10:12:09 1:
> > 2012.08.18 10:12:09 2:
> > 2012.08.18 10:12:09 3:
> > 2012.08.18 10:12:09 4:
> > 2012.08.18 10:12:09 5:
> > 2012.08.18 10:12:09 4: HTTP FHEMWEB:192.168.21.20:64797 GET /fhem
> > 2012.08.18 10:12:09 4: /fhem / RL: 699 / text/html; charset=UTF-8 /
> > Content-Encoding: gzip
> >  /
> > 2012.08.18 10:13:07 4: Connection closed for FHEMWEB:192.168.21.20:64797
> >
> >
> >
> > Eine Idee?
> >
> > --
> > To unsubscribe from this group, send email to
> > fhem-users+...@googlegroups.com
>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

Hi Rene

Thanks. I think the issue is that you seem to use the AVM version of
FHEM. As far as I know you have less control on the Fritzbox
functionalities with that version. So I guess you will never be able
to use it unless you switch to the FHEM software provided by FHEM.

{HT}

Btw "reload 99_myUtils.pm" should be sufficient fot this tests.


2012/8/19 Rene :
> Hi,
>
> i did a "shutdown restart" and today a "rereadcfg" every test. Not i have
> following:
>
> sub FBWLanDevActive($$) {
>  my ($net_device1)=@_[0];
>  my $myLength=length($net_device1);
>  my $number=0;
>  my $status=0;
>  my $net_device="";
>  my $net_device2="";
>  my $attendance="";
>  while($number <= 25){
>    $net_device=qx(/usr/bin/ctlmgr_ctl r landevice
> settings/landevice$number/name);
>    $net_device2=substr($net_device, 0, $myLength);
>    Log 1,"$number, $net_device";
>    if($net_device2 eq $net_device1){
>     $status=qx(/usr/bin/ctlmgr_ctl r landevice
> settings/landevice$number/active);
>      if ($status == 1) {last;}
>    }
>    $number++;
>  }
>  if ($status == 1) {$attendance="Anwesend";}else{$attendance="Abwesend";}
>  if(Value("@_[1]") ne $attendance){fhem "set @_[1] $attendance"}
> }
>
> And the log is:
>
> 2012.08.19 14:11:40 0: Server started (version 5.2 from 2011-12-31 ($Id:
> fhem.pl 1402 2012-03-31 11:20:42Z rudolfkoenig $), AVM Build: 84.05.21, pid
> 21590)
> 2012.08.19 14:11:57 1: 0,
> 2012.08.19 14:11:57 1: 1,
> 2012.08.19 14:11:57 1: 2,
> 2012.08.19 14:11:57 1: 3,
> 2012.08.19 14:11:57 1: 4,
> 2012.08.19 14:11:57 1: 5,
> 2012.08.19 14:11:57 1: 6,
> 2012.08.19 14:11:57 1: 7,
> 2012.08.19 14:11:57 1: 8,
> 2012.08.19 14:11:57 1: 9,
> 2012.08.19 14:11:57 1: 10,
> 2012.08.19 14:11:57 1: 11,
> 2012.08.19 14:11:57 1: 12,
> 2012.08.19 14:11:57 1: 13,
> 2012.08.19 14:11:57 1: 14,
> 2012.08.19 14:11:57 1: 15,
> 2012.08.19 14:11:57 1: 16,
> 2012.08.19 14:11:57 1: 17,
> 2012.08.19 14:11:57 1: 18,
> 2012.08.19 14:11:57 1: 19,
> 2012.08.19 14:11:57 1: 20,
> 2012.08.19 14:11:57 1: 21,
> 2012.08.19 14:11:57 1: 22,
> 2012.08.19 14:11:57 1: 23,
> 2012.08.19 14:11:57 1: 24,
> 2012.08.19 14:11:57 1: 25,
>
>
> Seems, there is no output from the net device - also when i change the
> counter value to 125...    Strange...
>
>
> Bye, René
>
>
> Am Samstag, 18. August 2012 15:26:53 UTC+2 schrieb dudler:
>>
>> I can perfectly read german but not write it. So don´t bother about
>> english or german.
>>
>> The script stops if the searched string is found. So it seems it is
>> found at the 5 th iteration. Like Uli wrote, change
>>   Log $number, $net_device;
>> in
>>   Log 1 "$number, $net_device";
>> to see what is happening. But it looks as for some reason the result
>> is not written to the variable.
>>
>> It could als help if you can put
>>  Log 1, "$attendance, @_[1], $value{@_[1]}";
>> as the last line in the procedure.
>>
>> btw you did a "shutdown restart"or a reload of your perl script before
>> testing?
>>
>> {HT}
>> 2012/8/18 Rene :
>> > Deutsch oder englisch? Uli klingt irgendwie deutsch :-)
>> >
>> > es sieht so aus, als wenn das Script abbricht?
>> >
>> > sub
>> > FBWLanDevActive($$)
>> > {
>> >  my ($net_device1)=@_[0];
>> >  my $myLength=length($net_device1);
>> >  my $number=0;
>> >  my $status=0;
>> >  my $net_device="";
>> >  my $net_device2="";
>> >  my $attendance="";
>> >  while($number <= 25){
>> >    $net_device=qx(/usr/bin/ctlmgr_ctl r landevice
>> > settings/landevice$number/name);
>> >    Log $number, $net_device;
>> >    $net_device2=substr($net_device, 0, $myLength);
>> >    if($net_device2 eq $net_device1){
>> >      $status=qx(/usr/bin/ctlmgr_ctl r landevice
>> > settings/landevice$number/active);
>> >      if ($status == 1) {last;}
>> >    }
>> >    $number++;
>> >  }
>> >  if ($status == 1)
>> > {$attendance="Anwesend";}else{$attendance="Abwesend";}
>> >  if(Value("@_[1]") ne $attendance){fhem "set @_[1] $attendance"}
>> > }
>> >
>> >
>> > Damit müssten doch zumindest 25 Logeinträge kommen und in $netdevice
>> > sollte
>> > auch was drin stehen, oder? Sind es aber nicht...
>> >
>> > 2012.08.18 10:11:59 0: Server started (version 5.2 from 2011-12-31 ($Id:
>> > fhem.pl 1402 2012-03-31 11:20:42Z rudolfkoenig $), AVM Build: 84.05.21,
>> > pid
>> > 16400)
>> > 2012.08.18 10:12:00 4: Connection accepted from
>> > FHEMWEB:192.168.21.20:64797
>> > 2012.08.18 10:12:01 5: Loading ./FHEM/98_SVG.pm
>> > 2012.08.18 10:12:01 4: HTTP FHEMWEB:192.168.21.20:64797 GET /fhem/
>> > 2012.08.18 10:12:02 4: /fhem/ / RL: 699 / text/html; charset=UTF-8 /
>> > Content-Encoding: gzip
>> >  /
>> > 2012.08.18 10:12:09 4: HTTP FHEMWEB:192.168.21.20:64797 GET
>> > /fhem?cmd=%7BFBWLanDevActive%28%27iPhone%27%2C+%22iPhone_Rene%22%29%7D
>> > 2012.08.18 10:12:09 5: Cmd: >{FBWLanDevActive('iPhone', "iPhone_Rene")}<
>> > 2012.08.18 10:12:09 0:
>> > 2012.08.18 10:12:09 1:
>> > 2012.08.18 10:12:09 2:
>> > 2012.08.18 10:12:09 3:
>> > 2012.08.18 10:12:09 4:
>> > 2012.08.18 10:12:09 5:
>> > 2012.08.18 10:12:09 4: HTTP FHEMWEB:192.168.21.20:64797 GET /fhem
>> > 2012.08.18 10:12:09 4: /fhem / RL: 699 / text/html; charset=UTF-8 /
>> > Content-Encoding: gzip
>> >  /
>> > 2012.08.18 10:13:07 4: Connection closed for FHEMWEB:192.168.21.20:64797
>> >
>> >
>> >
>> > Eine Idee?
>> >
>> > --
>> > To unsubscribe from this group, send email to
>> > fhem-users+...@googlegroups.com
>
> --
> To unsubscribe from this group, send email to
> fhem-users+unsubscribe@googlegroups.com

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

Hi,

ok... is it necessary to make a new complete flash or did a updatefhem the
same?

Bye and thanks!

René

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

Hi

I am sorry, that is beyond my knowledge. People with more knowledge
about FHEM as I have to answer that.

{HT}

2012/8/19 Rene :
> Hi,
>
> ok... is it necessary to make a new complete flash or did a updatefhem the
> same?
>
> Bye and thanks!
>
> René
>
> --
> To unsubscribe from this group, send email to
> fhem-users+unsubscribe@googlegroups.com

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

rudolfkoenig

                                                   

> > ok... is it necessary to make a new complete flash or did a updatefhem the
> > same?

You have to reinstall it, as updatefhem won't upgrade the startup scripts and
won't convert from the AVM directory structure to the fhem.de structure.

The fhem.de installation script tries to preserve your logfiles and to convert
your fhem.cfg.

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

@Rudolf

ich hab das nun gemacht. Es läuft alles!!!  Nun hab ich aber auf der
Fritzbox diese tolle Meldung "Vom Hersteller nicht unterstützte Änderungen: Weitere
Informationen. <http://192.168.21.1/home/home.lua?sid=49c23d2b86a8d931>
"  Ich denke das ist nun normal und lässt sich auch nicht beseitigen, oder?

Gruß, René


Am Sonntag, 19. August 2012 19:30:22 UTC+2 schrieb Rudolf Koenig:
>
> > > ok... is it necessary to make a new complete flash or did a updatefhem
> the
> > > same?
>
> You have to reinstall it, as updatefhem won't upgrade the startup scripts
> and
> won't convert from the AVM directory structure to the fhem.de structure.
>
> The fhem.de installation script tries to preserve your logfiles and to
> convert
> your fhem.cfg.
>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com