N95 Maps - bug or fault on me???

I just got my N95 couple of days ago and I must say I just love it:-). I haven´t noticed any bugs or faults on the phone so far. It´s been working very nicely. But when I go to MAPS it sais: "Network usage disabled. You can enable it from application settings."
I have tried to change settings but I haven´t really found the right settings - I guess. I have been to applications but there isn´t anything to change that would fix my problem. Anyhow, I can start the Map- application although this sentence will pop up every time I will go there.
If someone could help me with this I would be really greatful.

Hi,
If you open maps, get past that message and goto options>settings>network change the option in Network to "when needed"
Beware though of data transfer though, as depending on what you do or if you have a map already in your phone if will attempt to download maps, voices etc
Data transfer through the network in most cases means £££, unless you choose wlan...
Hope this helpsMessage Edited by luckieb on 22-Apr-200703:16 PM

Similar Messages

  • N95 Maps bugs

    This is *almost* a usable satnav, but some points need fixing:
    - Charge via USB cable!
    - Need a menu option "navigate to this contact" from inside contacts
    - Maps navigate to contact fails because searches return no match, no default country, doesn't use postal code
    Anyone working on these?

    bugs and all problems depends how often you droped phone on the ground
    indeed theres plenty of improvements and bugs, just nokia experts can say this my friend.
    Nokia N95 v.20.0.15 + 2 Gb microS + RotateMe beta7 + Nokmote beta1+ ShutUp beta1

  • No mapping at the fault address error while accessing the string variable

    Hi
    we have a application which runs fine on AIX and HP but is throwing error on SOLARIS.
    the application runs well (and use of string variables are also working fine ) till it hits Zone.cpp file
    where the string variable is not getting initialized and throws no mapping at the fault address
    the code snippet is as follows
    #include <string>
    #include <vector>
    const string ZONE_ATTR_TYPE_ZN("ZN");
    const string ZONE_ATTR_TYPE_FC("FC");
    const string ZONE_ATTR_TYPE_ST("ST");
    void Zone::AddAttributeValueAndCountryCode(const string &attributeValue,
                                                      Int attribSeq,
                                                      const string &countryCode,
                                                      ZoneSearchLocMap& zoneSearchLocMap)
         string key = "";
         if ((_attributeType == ZONE_ATTR_TYPE_FC) ||
              (_attributeType == ZONE_ATTR_TYPE_CT))
              key = _attributeType+DELIM+attributeValue;
    we are running it on
    CC: Sun C++ 5.9 SunOS_sparc Patch 124863-04 2008/04/16
    compiled with these option
    -g0 -xspace -KPIC -D_XPG5 -m32 -xarch=sparcvis -mt -DNCURSES -DEXC_HANDLING -DRW_NO_BOOL
    and the created the execuatble with these option
    -i -z rescan -g0 -xspace -mt -D_XPG5 -m32 -xarch=sparcvis -mt -DNCURSES -DEXC_HANDLING -DRW_NO_BOOL -lpthread -lsocket -lnsl -ldl -lposix4 -lCrun -lCstd -lc -lm -lnsl -lsocket
    the dbx output
    t@1 (l@1) program terminated by signal SEGV (no mapping at the fault address)
    where -h
    Current function is Zone::AddAttributeValueAndCountryCode
    56 if ((_attributeType == ZONE_ATTR_TYPE_FC) ||
    (dbx) where -h
    current thread: t@1
    =>[1] Zone::AddAttributeValueAndCountryCode(this = 0x194c088, attributeValue = CLASS, attribSeq = 1, countryCode = CLASS, zoneSearchLocMap = CLASS), line 56 in "Zone.cpp"
    [2] ZoneLoader::Load(trans = CLASS, zoneList = CLASS, prZoneList = CLASS, zoneSearchLocMap = STRUCT, planningCompany = 0x1890f20), line 90 in "ZoneLoader.cpp"
    [3] ZoneManager::ZoneManager(this = 0x1933e28, shipperId = 1000, consDBConnection = CLASS), line 24 in "ZoneManager.cpp"

    I see you are compiling with -KPIC. Is the code going into a shared library?
    Run "ldd" on all the C++ shared libraries you create, and on the main program. You should see a dependency on /usr/lib/libCrun.so.1 and /usr/lib/libCstd.so.1, and no dependency on any other libCrun or libCstd.
    Do you have a particular reason for using -D_XPG5? Changing the Unix version presented by the system headers in /usr/include can sometimes create incompatibilities with the C++ headers and runtime libraries that are intended for the default Unix version.
    Are all of the object files created with the same options, especially the -mt option?
    If none of the above considerations raise any red flags, you might have run into a bug in the compiler or the C++ runtime libraries, or you might have a bug in your code that by accident does not show up in other environments.
    There is no way to evaluate whether you have a compiler or runtime library bug without a test case that demonstrates the problem.
    You might have heap or other data corruption in your program due to invalid pointer use, use of an uninitialized variable, reading or writing outside the bounds of an object, double deletion of an object, use of an object after it has been deleted. You might also have an MT programming error where a critical region is not properly guarded, or where a shared variable is not declared volatile.
    By accident, data can be read or written incorrectly, or a data-race condition can exist, but without causing program failure. A program containing these errors can appear to run successfully on one platform and fail on another, or on the same platform under other conditions.
    Running the program under dbx with Run-Time Checking enabled will show many of these errors.
    The Thread Analyzer can find data race conditions.
    If you think you have found a problem with the compiler or libraries, please file a bug report at
    [http://bugs.sun.com]
    with a test case that can be compiled and run to show the problem.

  • Dbx SIGSEGV (no mapping at the fault address)

    Hello,
    I have the following error on Suse 10.0 (32bit and 64bit also) which is appear when I try to load a program with lots of linked libraries for debug.
    Reading libEG.so
    Reading libHtml.so
    Reading libGeom.so
    Reading libGraf3d.so
    Reading libGpad.so
    Reading libTree.so
    Reading libRint.so
    Reading libMatrix.so
    Reading libGui.so
    Reading libstdc++.so.6
    Reading libm.so.6
    Reading libgcc_s.so.1
    Reading libc.so.6
    Reading libcrypt.so.1
    dbx: internal error: signal SIGSEGV (no mapping at the fault address)
    dbx's coredump will appear in /tmp
    No problems with small programs..
    I've just read there is a same problem on Solaris also....
    Maybe memory problem?
    Any solution?
    Thanks,
    TRS

    Is this happening in Sun Studio 11?
    Dbx will try to run in 64-bit mode on any 64-bit
    system. If you are debugging a 32-bit program,
    try starting dbx with the -x exec32 option to prevent
    hand off to the 64-bit binary.
    Can you get a stack trace from the core file?
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • SIGSEGV signal (no mapping at the fault address) :  in _XmAddHashEntry

    I have ported a motif based program from Compaq Tru 64(in Tru 64 program is running without any problem) to Solaris 8. I have used Forte developer 6 C++ compiler. Program compiled & linked successsfull. But during runtime 'XmCreateMainWindow' method call generating SIGSEGV signal. Debugger says 'signal SEGV (no mapping at the fault address) in _XmAddHashEntry at 0xfee79ff0
    0xfee79ff0'.
    Program :
    Widget children[6]; /* Children to manage */
    Arg al[64]; /* Arg List */
    register int ac = 0; /* Count */
    XtPointer tmp_value; /* ditto */
    if ( !widget_name )
    widget_name = (char *)"mainWindow1";
    XtSetArg(al[ac], XmNscrollingPolicy, XmAUTOMATIC);
    mainWindow1 = XmCreateMainWindow ( parent, widget_name, al, ac );
    Stack :
    main(argc = 11, argv = 0xffbef1c4)
    mMainAppShell_c::create(this = 0xef508, display =
    0xeaf70, app_name = 0xeeae8 "IP AGENT- QNR002",
    app_argc = 11, app_argv = 0xffbef1c4,
    app_class_name = 0xc3a49 "XApplication")
    mainWindow1_c::create(this = 0xef520, parent =
    0xe9b08, widget_name = 0xc1d81 "mainWindow1")
    XtCreateWidget(0xc1d81, 0x0, 0xe9b08, 0xffbee12c,
    0x0, 0xfef0e768)
    _XtCreateWidget(0xc1d81, 0xfef0e768, 0xff0f7c74,
    0xffbee12c, 0x0, 0x0)
    XtInitializeWidgetClass(0xfef0e768, 0x4925c,
    0xff0f4000, 0x1f, 0xfef0e768, 0xfed1b86b)
    XtInitializeWidgetClass(0xfef10dbc, 0x2afe,
    0xff0f4000, 0x1f, 0xfef10dbc, 0xff094ae2)
    XtInitializeWidgetClass(0xfef14290, 0x2afe,
    0xff0f4000, 0x1f, 0xfef14290, 0x0)
    ClassPartInitialize(0xfef14354, 0xfef14350,
    0xfef1434c, 0xfef04000, 0xfef14290, 0xff0f787c)
    XmeTraitSet(0xfef14290, 0x0, 0xe78a8, 0xfef19934,
    0xfef04000, 0xfef1434c)
    _XmAddHashEntry(0x0, 0xe78a8, 0xfef19934, 0xd,
    0xf541c, 0xc)
    Error :
    t@1 (l@1) signal SEGV (no mapping at the fault address) in _XmAddHashEntry at 0xfee79ff0
    0xfee79ff0: _XmAddHashEntry+0x0004:     ld      [%i0 + 0xc], %l0
    Current function is mainWindow1_c::create
    0xfee79ff0: _XmAddHashEntry+0x0004:     ld      [%i0 + 0xc], %l0
    0xfee79ff0: _XmAddHashEntry+0x0004:     ld      [%i0 + 0xc], %l0
    (dbx) (dbx)

    Tough to debug this from the information that you posted but it appears that _XmAddHashEntry is being called with NULL (0x0) as the first parameter and the instruction that is causing problems is the load at 0xfee79ff0 that is trying to use the first parameter (%i0) with the offset of 0xc.  This address is going to be in the kernel space somewhere and the segmentation violation is pointing out that the kernel isn't happy about you peeking at it's unders.
    Perhaps you can backtrack from the call to XmAddHashEntry to see what object or class is expected as the first parameter and deduce how that parameter might be getting set (or not set as it were) to NULL.
    Also, you mentioned that you're moving from a 64-bit OS. Did you compile your program with the -xarch=v9 flag?
    Another thing to check is your stacksize variables. There are two which control the size of various aspects of the stack.
    from the C-shell you should type:
    unlimit stacksize
    and
    setenv STACKSIZE 40000
    The first sets the overall process stacksize to whatever the system will allow (unlimited). The second, controls how much any individual thread can take for its stack. The second won't effect your application unless it's multi-threaded.

  • Dbx : terminated by signal SEGV (no mapping at the fault address)

    hi everyone
    when I use dbx to analyze a core
    it shows : terminated by signal SEGV (no mapping at the fault address)
    but how to directly show the value of fault address ?
    I know that it can be calculated by $pc , but is there any direct way?
    is there any dbx subcommand or solaris command to do this ?
    Thanks.

    Some time we do see below stack trace caused by coherence ,
    Current function is coherence::native::NativeAtomic64::peek
    79 return m_lAtomic;
    (dbx) where
    =>[1] coherence::native::NativeAtomic64::peek(this = 0x3844119f), line 79 in "NativeAtomic64.hpp"
    [2] coherence::lang::Object::_detach(this = 0x38441197, fEscaped = false), line 761 in "Object.hpp"
    [3] 0xfa2a7fc0(0x3192d5b0, 0x0, 0xc0000000, 0xfdf88a80, 0x0, 0x4f5ca40), at 0xfa2a7fc0
    [4] 0xfa7c5570(0x3192d528, 0x1, 0x1000, 0x3f1728, 0x3f1400, 0xfdf88a80), at 0xfa7c5570
    [5] 0xfab9537c(0x3192d5c8, 0x1ffffe0, 0xfdf88a80, 0x80000000, 0xc0, 0x80), at 0xfab9537c
    [6] coherence::lang::Object::_detach(this = 0x3192d5c8, fEscaped = false), line 774 in "Object.hpp"
    [7] 0xfa7ccd34(0xf71fa288, 0x2, 0x18, 0xfdf88a80, 0x1, 0x1), at 0xfa7ccd34
    [8] 0xfa886744(0x2c0d4e0, 0xf71f9d14, 0xf71f9d14, 0xfdf88a80, 0x0, 0xf71fa134), at 0xfa886744
    [9] 0xfa90c320(0x655adb0, 0xfe476544, 0x2bc2a40, 0xf71fa380, 0x2, 0xf71fa458), at 0xfa90c320
    [10] 0xfad8f044(0x867800, 0x655ae78, 0xf71fb500, 0xf71fa670, 0xf71fb500, 0xf71fa5b0), at 0xfad8f044
    [11] 0xfad838dc(0x2bc28f8, 0xf71fb234, 0xfe7f165c, 0xfdf88a80, 0xf71fad6c, 0xf71fae44), at 0xfad838dc
    [12] 0xfb293ed0(0x2c09620, 0x2bc28f8, 0xc54400, 0xf71fb500, 0xf71fb4d0, 0xfdf88a80), at 0xfb293ed0
    [13] 0xfa758038(0x2c09638, 0xfe6ea03c, 0xfe6ea03c, 0xf71fb5a0, 0x1, 0xf71fb5c0), at 0xfa758038
    [14] 0xfa9d9918(0xf71fbed0, 0x2c09948, 0xfdf88a80, 0x2c0e9c8, 0xf71fbf28, 0xfe4eab9c), at 0xfa9d9918
    [15] 0xfa614f74(0x256e910, 0xf71fc000, 0x0, 0x0, 0xfa629ee8, 0xfe275df0), at 0xfa614f74
    (dbx)
    Please advice.

  • Signal SEGV (no mapping at the fault address)

    Hi,
    I have a similar problem of exception in the pro* c code..
    Actually I have 2 functions one for selecting the data from the database and another for
    Formatting the selected data. since I have large data in run time of the compliable the compliable gets killed after some 10th request. Could not able to get the problem where it lies. When putting in the dbx it shows the following error:
    t@1 (l@1) signal SEGV (no mapping at the fault address) in t_splay at 0xfe1c7474
    0xfe1c7474: t_splay+0x0014: ld [%o2 + 16], %o4
    Current function is ProcessSQLReleaseLock
    3080     sqlcxt((void **)0, &sqlctx, &sqlstm, &sqlfpn);
    Actually the program fails in the select statement. But that is not the actual place of error. Please help me what are the other things I have to look in to find out this error..
    I have freed the memory also..could not get the error ..Please give me a solution as soon as possible..
    System Configuration:
    Oracle 9i
    Here is the code..
    Select Function:
    typedef struct
    long len;
    char buf[MAX_APPDF_DET_SIZE + 4];
    } char_vardf;
    int ProcessSQLRequestSelectAppDF(PAPPREQUEST pRequest, PAPPRETURN pReturn)
    /* need to be removed */
    FILE *fpDisp;
    fpDisp=fopen("/appdata/genasys/ap01/batch/log/AppDispDet.log","a+");
    fprintf(fpDisp,"************ProcessSQLRequestSelectAppDF Starts******************************\n");
    /* cast the request filler to an APPRAW structure */
    int rc;
    int i;
    char szLength[8];
    PAPPDISPFMT pAppDispFmt = (PAPPDISPFMT) pReturn->Filler;
    rc=DBCommonCheckConnection(); /* check for database connection */
    if (rc)
    return rc;
    /* clear the return code and number of selected records */
    memset(pReturn->Unix.Num_Rows,'0',sizeof pReturn->Unix.Num_Rows);
    memset(pReturn->Unix.Return_Code,' ',sizeof pReturn->Unix.Return_Code);
    PrimeKeys(pRequest); /* set up database key host variables */
    fprintf(fpDisp,"Before Select Stmt : %s\n", szId_Refnum.arr);
    fflush(fpDisp);
    /* Execute SELECT */
    EXEC SQL select
    appdf_id_refnum,
    appdf_bureau_id,
    appdf_cde_applicant,
    appdf_bureau_data_detail
    into
    :szId_Refnum,
    :szId_Bureau,
         :chCde_Applicant,
    :lDfDetData
    from vappdispfmt
    where appdf_id_refnum = :szId_Refnum
    and appdf_cde_applicant = :chCde_Applicant
    and appdf_bureau_id = :szId_Bureau;
    fprintf(fpDisp,"Inside Select Stmt : %s\n", szId_Refnum.arr);
    fflush(fpDisp);
    /* check SELECT return code, return if no goood */
    sqlcode = abs(sqlca.sqlcode);
    if (DBCommonCheckSelectSQLCODE(pReturn, "APPDISPFMT") == SQL_REQUEST_BAD)
    return (SQL_REQUEST_BAD);
    /* move host variable fields into return structure */
    memcpy(pAppDispFmt->szId_Refnum, szId_Refnum.arr, szId_Refnum.len);
    memcpy(pAppDispFmt->szId_Bureau, szId_Bureau,sizeof szId_Bureau);
    memcpy(pAppDispFmt->chCde_Applicant, chCde_Applicant, sizeof chCde_Applicant);
    memcpy(pAppDispFmt->szBureau_Det_Data,lDfDetData.buf,lDfDetData.len);
    pAppDispFmt->szBureau_Det_Data[lDfDetData.len] = 0;
    fprintf(fpDisp,"Detail Data : \n" );
    fflush(fpDisp);
    fflush(fpDisp);
    fprintf(fpDisp,"%s \n", lDfDetData.buf);
    fflush(fpDisp);
    fprintf(fpDisp,"*************************************************************\n");
    fflush(fpDisp);
    memset(szLength,'0',6);
    sprintf(szLength, "%-7.7d", lDfDetData.len);
    memcpy(pAppDispFmt->szDfLength, szLength, 6);
    memset(lDfDetData.buf,'\0',lDfDetData.len);
    lDfDetData.len=0;
    fprintf(fpDisp,"************Function End******************************\n");
    return 0;
    } /*end of ProcessSQLRequestSelect */
    Formatting Function:
    int UnixDB::ProcessdispfmtRequest()
    char szDfPageRequested[3];
    int iDfPageRequested;
    int iDfPageTotal;
    long iDfFormattedSize;
    int iDfPageReturnSize;
    int iDfCharOnThisPage;
    /* determine the maximum return page size */
    iDfPageReturnSize = sizeof pRequest->Filler;
    /* convert the requested the page number to integer */
    memcpy(szDfPageRequested, pRequest->Unix.Num_Rows, 2);
    szDfPageRequested[2] = 0;
    iDfPageRequested = atoi(szDfPageRequested);
    /* allocate space for the display format report data */
    /* note: this function is located in unixdb.h */
    AllocateDFReturn(16000);
    /* pre setup the return page number to 0 incase of oracle error */
    memset(pDFReturn, 0, 16000);
    memcpy(pDFReturn, pRequest, sizeof (UNIX_HEADER));
    memcpy(pReturn->Unix.Num_Rows, "00", 2);
    /* allocate pointer to go into temporary structure at raw data offset */
    PAPPRETURN pDispFmt = (PAPPRETURN) pDFReturn;
    PAPPDISPFMT pAppDispFmt = (PAPPDISPFMT) &pDispFmt->Filler;
    PAPPDISPFMT pAppdfReq = (PAPPDISPFMT) pRequest->Filler;
    /* retrieve the display format data into the temporary space */
    rc = ProcessSQLRequestSelectAppDF(pRequest, (PAPPRETURN) pDFReturn);
    if (rc == 0)
    char* szDfReport = new char[MAX_APPDF_DET_SIZE];
    memset(szDfReport, 0, MAX_APPDF_DET_SIZE);
    memcpy(szDfReport,pAppDispFmt->szBureau_Det_Data,sizeof pAppDispFmt->szBureau_Det_Data);
    /* get the size of the formatted display report */
    iDfFormattedSize = atol(pAppDispFmt->szDfLength);
    /* calculate the total number of pages that can be returned */
    iDfPageTotal = iDfFormattedSize / iDfPageReturnSize;
    /* if the formatted display report is execatly divisible by return page size */
    /* increase the total pages by one */
    if ((iDfFormattedSize % iDfPageReturnSize) != 0)
    iDfPageTotal++;
    int linenum=0;
    int SpaceInc=1;
    int limit=iDfFormattedSize/MAX_LINE_LENGTH;
    char* returnptr=new char[iDfFormattedSize];
    memset(returnptr,' ',iDfFormattedSize);
    char* tempptr;
    char* parseptr;
    /* need to be removed */
    FILE *fpTemp;
    fpTemp=fopen("/appdata/genasys/ap01/batch/log/DispDtlRpt.log","w");
    while(linenum <= limit )
    tempptr=szDfReport+(MAX_LINE_LENGTH*linenum)+SpaceInc;
    parseptr=tempptr;
    fprintf(fpTemp,"Linenum :%d\n", linenum);
    fprintf(fpTemp,"Space Inc :%d\n", SpaceInc);
    if ( *tempptr == 'H')
    tempptr++;
    if (*tempptr != ' ')
    tempptr--;
    else
    tempptr=parseptr;
    memcpy(returnptr+(MAX_LINE_LENGTH*linenum),tempptr,MAX_LINE_LENGTH);
    linenum++;
    SpaceInc++;
    fprintf(fpTemp,"ReturnPtr:%s\n", returnptr);
    fflush(fpTemp);
    /* set a pointer to the proper page address to be returned */
    returnptr = returnptr + ((iDfPageRequested - 1) * iDfPageReturnSize);
    if (iDfPageRequested == iDfPageTotal)
    /* if last page how many characters should be returned */
    iDfCharOnThisPage = iDfFormattedSize - (iDfPageReturnSize * (iDfPageTotal - 1));
    /* set the page return size to this value */
    iDfPageReturnSize = iDfCharOnThisPage;
    /* copy page to be returned into return buffer */
    memcpy(pReturn->Filler, returnptr, iDfPageReturnSize);
    /* set the return page number to be the number of pages left */
    sprintf(szDfPageRequested, "%2.2d", (iDfPageTotal - iDfPageRequested));
    memcpy(pDispFmt->Unix.Num_Rows, szDfPageRequested, 2);
    returnptr = NULL;
    szDfReport = NULL;
    delete [] returnptr;
    delete [] szDfReport;
    // (szDfPageRequested == 0 ) /* The Value of the return Pointer should be cleared at the end of the report */
    /* if (returnptr != NULL)
    memset(returnptr,' ',iDfFormattedSize);
    delete [] returnptr;
    /*if (szDfReport != NULL)
    memset(szDfReport,' ',MAX_APPDF_DET_SIZE);
    delete [] szDfReport;
    /* need to be removed */
    fclose(fpTemp);
    /* copy the DB information in UNIX structure to data area returned */
    memcpy(pReturn, (char *) pDFReturn, sizeof (UNIX_HEADER));
    /* get rid of temorary structure */
    DeallocateDFReturn();
    return rc;
    }

    Hi,
    I am getting a similar error pasted below:
    signal SEGV (no mapping at the fault address) in strlen at 0xfeb331bc
    0xfeb331bc: strlen+0x0080: ld [%o1], %o2
    It says that the issue is in the 'strlen' function but I am nowhere using this function in my code.
    The OS details are :
    CC: WorkShop Compilers 4.2 30 Oct 1996 C++ 4.2
    SunOS inad01 5.8 Generic_108528-19 sun4u sparc SUNW,Ultra-5_10
    The test case is I have a MQ receiver code ( server ) reading some text/string from an IBM MQ series. This receiver server is crashing while after reading that text and filling up some other permanent tables.
    Please let me know if i need to provide some more info.
    Cheers,
    Vivek

  • Interface-Mapping with a Fault Message Type

    Hi,
    we have an abap-proxy and some messages generated errors. The errors can be displayed via sxmb_moni. The proxy raises an "Application Error (Restart possible)".
    Now I wanna transform the generated fault message (of the proxy) with a message mapping and send the output to a file.
    My problem is, that it is not possible to define an interface mapping with the fault message as well as it is not possible to define a receiver determination.
    Any ideas?
    Thanks a lot
    Regards
    Wolfgang Hummel

    Hello
    As far as I know you can propogate the application error back to the calling application only in case of a Synch Interface? Are you making a Synch call where the proxy triggers a fault message,  if yes then all you need to do is to make the change in XI to have the fault message for both the outbound and inbound message interfaces and then a corresponding fault message mapping and select this in the Interface Mapping and then the fault message will be sent to the source / calling application.
    In the case of Asynch calls I don't think this is possible until you use a BPM. Have not tried this myself though.
    Regards,
    Bhavesh

  • N95 Maps Program Help and Suggestions Anybody??

    N95 Maps Program Help and Suggestions Anybody??
    havnt updated to firmware v12 yet
    Why can't I search my Address or Current Location and then save this as HOME or say my Start_Point_01?
    I have managed to save my HOME as a PEOPLE LOCATION and my friends address etc and worked out
    how to plan a route etc, BUT Maps GPS POSITION thinks I live 20 miles away??
    I dont seem to be able to simply set my HOME or Current Location myself,
    I have seen some Satelite activity but insists I live 20 miles away :/ how do I fix this,
    it's realy annoying. any handy tips people??
    cant upgrade firmware as need phone plugged into wall socket
    at webcafe, will have to wait for firmware :/
    N95-1 (8GB-MicroSD),LCG-Audio,Fring,Nimbuzz,Skype,Youtube,iPlayer,Garmin4-GPS.Googlemaps,SkyFire,ZoneTag,Gravity, Sennheiser CX-400-IIs,500-IIs,TR-120 Wireless,HD215'S.AudioTechnica ATX-M50's.BT B-Tube BT Speaker.

    The least problems you'll have with miniDV cameras. About any miniDV camera will connect to a Mac via Firewire. HDD cameras are an open invitation to trouble, especially as you speak of older computers.
    There are well-featured models out there now for 2-300 bucks. But watch out for cameras that connect to the computer via a dock. I had two Sony with these @#$% docking stations .... both docks broke and rendered the cameras useless for capturing. replacing the dock was nearly the price of a new cam.

  • When will the maps bug in IOS6 be fixed?

    When will the maps bug in IOS6 be fixed?

    richard0801 wrote:
    Thats not where they are thats where Apple think they are, try coming out of Victoria walking straight across the road and you are in ?????   god knows where on apple but its not where you acually are, I have tried it and its total crap. By the way there are 2 Hammersmith underground stations. Your map just shows 1 pin
    You explicity claimed that "all 400 stations are missing" in Apple Maps. I only needed to locate one to prove you wrong. Instead, I proved you doubly wrong. I didn't realize I needed to prove you triply-wrong. Oh well...
    Naming subway stops is not Apple's responsibility and obviously not London's strenths. The pin shows the general location of "hammersmith".
    Okay I am in Holloway road, where is the nearest station to me?, if I don't know the name I cant find the station.  I know there are 6 but Apple does not show any of them
    When I enter "holloway road london", I get a bunch of pins and the first one that automatically gets selected is the subway station. Since that is one of "any of them", you have been proved wrong 4 times over.
    Etre have you ever been out and used walking maps? I think you need specsavers
    Do you actually own an iPhone? Are you aware it has GPS? Have you really ever actually tried it? Because when I manually nagivate to one end of Holloway road and search for "underground", I get this:
    Strangely, if I go to the other end of the street and do the same thing, I get an entirely different station:
    I wonder what would happen if I did a similar search for "underground" while zoomed in on the "hammersmith" pin?
    Well what do you know? But how would I ever get there? Hmmm, you mentioned "walking maps". Maybe I should try walking directions from "hammersmith" to one of the underground stations.
    By my count, I have proved your anti-Apple Maps misinformation to be wrong 6 times over. Wanna try for a lucky seven?

  • N95 map for iran

    hi
    I have a nokia N95 cell phone. It had built in map for middle east countries including UAE, Qatar and Iran. Recently I have downloaded new version of Nokia Map software from Nokia website directly to my phone but unfortunately after installation of that version, all map detail information especially for Iran has been deleted and I couldn't restore it even by using Nokia Map loader (Nokia Map Loader doesn't have Iran Map).
    Does everybody have any comment to recover initail map details?

    hi
    I have a nokia N95 cell phone v 10.0.0.18 15-03-07 rm-159 (c7.01)pleas for n95 map for iran
    thank you

  • Ruby-enterprise 1.8.7-12: timeout.rb:60: [BUG] Segmentation fault

    Something in timeout.rb is making gem segfault.  There's discussion around the Internet about glibc 2.14 giving ruby a hard time, so perhaps this is relavant to the issue, being that we're on 2.15 now?
    $ sudo gem update --system
    /opt/ruby-enterprise/lib/ruby/1.8/timeout.rb:60: [BUG] Segmentation fault
    ruby 1.8.7 (2012-02-08 MBARI 8/0x6770 on patchlevel 358) [x86_64-linux], MBARI 0x6770, Ruby Enterprise Edition 2012.02
    Where line 60 lives:
    52 def timeout(sec, klass = nil)
    53 return yield if sec == nil or sec.zero?
    54 raise ThreadError, "timeout within critical session" if Thread.critical
    55 exception = klass || Class.new(ExitException)
    56 begin
    57 x = Thread.current
    58 y = Thread.start {
    59 begin
    60 sleep sec
    61 rescue => e
    62 x.raise e
    63 else
    64 x.raise exception, "execution expired" if x.alive?
    65 end
    66 }
    67 yield sec
    68 # return true
    69 rescue exception => e
    70 rej = /\A#{Regexp.quote(__FILE__)}:#{__LINE__-4}\z/o
    71 (bt = e.backtrace).reject! {|m| rej =~ m}
    72 level = -caller(CALLER_OFFSET).size
    73 while THIS_FILE =~ bt[level]
    74 bt.delete_at(level)
    75 level += 1
    76 end
    77 raise if klass # if exception class is specified, it
    78 # would be expected outside.
    79 raise Error, e.message, e.backtrace
    80 ensure
    81 if y and y.alive?
    82 y.kill
    83 y.join # make sure y is dead.
    84 end
    85 end
    86 end

    Yeah! Solved!
    Install gcc45 from the AUR, compile and install it, then download the ruby-enterprise from the AUR and compile it like so:
    CC=gcc-4.5 makepkg
    Install the compiled Ruby EE package, and wham, it works.

  • Wacom Tablet Mapping Bug Only in Photoshop

    I am using a Graphire Wireless Wacom Tablet on a Windows 7 PC at work. I installed the most recent drivers, and it works flawlessly in a duel monitor setup, and I have no trouble mapping it however I would like.
    This is all great until I launch Adobe Photoshop (CS4). Upon launch of the program there is some kind of bug, and suddenly the mapping acts as if both displays were squished into only the primary display. I can toggle between displays, and instead of toggling between display 1, 2, and both, it toggles between the left and right half of the screen and the whole screen. The other monitor is still functioning normally, only the mapping of the tablet is effected, and as soon as I close Photoshop, it reverts back to normal.
    I did find one posting with the same problem, but it was resolved my installing the updated drivers, which I already have, and the discussion was closed. Any help I can get would be great.

    Wacom has per-appliation settings, and somewhere you've changed the tablet mapping for Photoshop.
    Photoshop does not know about the tablet mapping, only the Wacom driver knows about and controls the tablet mapping.
    Check the Wacom control panel/preferences.  If you can't figure it out, contact Wacom technical support.

  • Has anyone noticed this V-Drums mapping bug in Drum Designer?

    Hi guys
    There seems to be a bug in the v-drums mapping for Drum Designer... wondering if anyone else has noticed this?
    On standard Roland V-Drums kits, the toms are mapped as follows:
    High tom: C2
    Low tom: A1
    Floor tom: G1
    On some of the Drum designer kits, such as "Neo Soul" and "Retro Rock", the above tom mapping works correctly.
    However, for other kits, such as "SoCal" and "Roots Kit", the low tom is played when either the low tom (A1) or the floor tom (G1) is played on the V-Drums kit.
    It appears that for some reason, there are some kits such as the two mentioned above, that are mapped incorrectly so that the same low tom sound is played when the drummer is either hitting the low tom or the floor tom. I am using a standard Roland TD12 kit.
    I've raised this as a bug using Apple's "Logic Feedback" page - hopefully they will check it out soon!
    Cheers,
    Mike

    There are 2 work arounds for this situation.
    - edit the midi note sent by the module to set it to F1 (kit - inst - F4 - F5 - note number)
    - insert a midi transformer between your Roland module and the drummer track in logic's midi environnement window
    The second option is more tricky but it opens up a whole word of other tranformations which are worth exploring.
    HTH
    (I'm french, I hope this explanation  was clear enough ...)

  • N95 8GB bug?

    Over the last few days, I experienced a few call related problems:
    1. Calls made and the caller can't hear me but I could hear them.
    2. Calls made and I couldn't hear the ringing tone but the receiver's phone rang.
    3. Calls received and I can't hear the caller but they could hear me.
    When it began, I thought it was because I was surfing. But now I am sure it's happening randomly.
    Anyone experiencing the same issue? I thought this was a long-gone-N95 bug.
    Firmware:
    V10.0.021
    29-09-07
    RM-320
    Nokia N95 (12.0.1)

    After formatting the mass storage, it was fine for the first few times. However, until someone sms me or call me when i was recording video, the bug came back again!!~~ Any other solutions? and please release new fw update. This fw 30 is buggy. Full of bug!!~~

Maybe you are looking for

  • Just Doesn't Work

    I've had my Macbook for a 2 months now and ever since then I have not been able to open the Imovie application. Every time I try to open it I get the same message. The application iMovie quit unexpectedly. Click Relaunch to launch the application aga

  • How to install third-party SSD as boot disk in MacPro 5,1

    I had so much trouble with this that I thought I'd post a recipe that others could follow. The first thing you should know is that it's not possible to get a non-Apple SSD recognized in a sled slot of a MacPro 5,1.  It just doesn't see them at all, e

  • Oracle JDBC receiver error

    Hi, I am trying to setup a file to Oracle JDBC receiver scenario.  In this case I am trying to just insert a single line to Oracle.  I get no error in SXMB_MONI, no error in the message mapping test, and no error in the Test configuration in the ID.

  • How to get the information of the framerate and bitrate in receiving side

    Hi, I want to know if anyone here know how to get the frame rate and the bit rate statistic on the receiving side. I know that it will be displayed on the info panel with the control component, but actually where can I obtain the stats into my progra

  • How to use an internal table of a calling program in to a called program

    Hi Experts,             I am calling a report in another report through SUBMIT .           I want to use the internal table of calling prog into          called   prog but problem is i have to do it without exporting to memory id and importing it. Pl