[Thread Prev][Thread Next][Thread Index]
Re: [PilotMgr] problem synchronising
- To: Pierre Vouzellaud - Sun france - IC <pv114388@xxxxxxxxxxxxxxxxxxxx>
- Subject: Re: [PilotMgr] problem synchronising
- From: christian gielstrup <christian.gielstrup@xxxxxx>
- Date: Fri, 03 Nov 2000 09:39:54 +0100
- Cc: pilotmgr@xxxxxxxxxxxxxxxxxxxxxx
- Organization: Sun Microsystems
- References: <200010311650.RAA27964@adelf.France.Sun.COM>
- Reply-to: christian.gielstrup@xxxxxx
- Sender: owner-pilotmgr@xxxxxxxxxxxxxxxxxxxx
Hi Pierre,
this is the work around for your problem..
Regards,
Christian Gielstrup
Sun Microsystems Denmark
Shutdown pilotmgr, then change these lines in PilotMgr.pm:
do
{
status("Refreshing Database List", int(100 *
$count++ / $count_max))
if ($count_max);
push(@$result, $dlp->getDBInfo($i,1,0));
$i = $result->[-1]->{"index"}+1;
}
while ($result->[-1]->{"more"});
to this:
my $rec;
eval { do
{
status("Refreshing Database List", int(100 *
$count++ / $count_max))
if ($count_max);
$rec = $dlp->getDBInfo($i,1,0);
push(@$result, $rec) if (exists $rec->{"name"}
and $rec->{"name"});
$i = $rec->{"index"}+1;
}
while ($rec->{"more"}); };
Pierre Vouzellaud - Sun france - IC wrote:
>
> Hello,
>
> I have just installed Pilotmgr for my Palm Vx.
> The message "Error: Modification of a read-only value attempted at PilotManager line 2663" appeared.
> Could you please help me.
>
> Thanks for your help.
>
> Regards
>
> Pierre
>
> ------------------------------------------------------------------------
> ***********************************************************
> * This is a public mailing list! *
> * Please do not publish Sun proprietary information here! *
> * - - - - - - - - - - - - - - *
> * MoreInfo/Unsubscribe @ http://www.moshpit.org/pilotmgr *
> ***********************************************************
--
/\ Christian Gielstrup
\ \ System Consultant
\ \ / Sun Microsystems A/S
/ \// / Linde Allé 7A
/ / \//\ DK-2850 Naerum
\//\ / / Denmark
/ //\ / Voice : +45 45 56 51 32
/ \ \ Mobile : +45 23 33 01 32
\ \ Email : christian.gielstrup@xxxxxx
\/ Fax : +45 45 56 50 01
------------------------------------------------------------------------
***********************************************************
* This is a public mailing list! *
* Please do not publish Sun proprietary information here! *
* - - - - - - - - - - - - - - *
* MoreInfo/Unsubscribe @ http://www.moshpit.org/pilotmgr *
***********************************************************