[Thread Prev][Thread Next][Thread Index]

Re: [PilotMgr] problem synchronising



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 *
***********************************************************


SourceForge.net Logo