Syncing problem help plz....

i keep getting the "disc cannot be read from or written to" message and its really annoying i cant sync any videos

I did it
1st got my ipod reset completely (took 2 hrs)
Then Uninstalled previous version of itunes, installed new one
After dat updated my touch
Now its working

Similar Messages

  • IPad syncing problem - HELP!

    iPad sync problem - HELP!  I keep getting this message "...cannot be synced because there is not enough free space to hold all of the items in the iTunes library (additional ...space needed)"  and yet I seem to have plenty of space on the iPad.  This just started today.  I even tried deleting some things to make even more room, but it didn't help.  Any ideas??? 
    I was thinking of restoring, but I've never done it...  should I? 
    thank you!

    Hello florafromnv,
    Welcome to Apple Support Communities.
    The following article addresses how to resolve the issues related to this message:
    iOS: "Not enough free space" alert when trying to sync
    http://support.apple.com/kb/TS1503
    Regards,
    Jeff D.

  • Table Control Text  fields problem , help plz

    Hello Anand , Rich , John & All
      I hav problem with Text 3 fields( type c)(either L or R aligned )  , it is not geting updated , otherwise everything else is perfectly fine(scrolling,sorting etc ....) .
    Fields giving problem are
    1. Status(20) type c
    2. Fdat  type date
    3. Remark(100) type c
    All numerical fields are working fine .
    <u><b> My yahoo messenger-id is [email protected]</b></u>
    <b>Any light on this will be awarded plz .</b>
    FLOW LOGIC
    PROCESS BEFORE OUTPUT.
    MODULE SET_STATUS.
    LOOP AT      ITAB
          WITH    CONTROL TCL1
          CURSOR  TCL1-CURRENT_LINE .
       MODULE SET_LINE_COUNT .
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE UPD_OK_COD.
    MODULE EXIT_COMAND AT EXIT-COMMAND.
    MODULE SCROLL_SORT.
    LOOP AT ITAB.
          MODULE UPDATE_ITAB.
    ENDLOOP.
    MODULE UPDATE_TABLE.
    REPORT ZSD_REP_ORDER_BANK_CHANGE NO STANDARD PAGE HEADING LINE-SIZE 255.
    TABLES: VBAK,VBAP,VBRK,ZSD_TABL_ORDBANK,MARA,KONV.
    CONTROLS: TCL1 TYPE TABLEVIEW USING SCREEN 0200.
    DATA: ITAB LIKE ZSD_TABL_ORDBANK OCCURS 0 WITH HEADER LINE,
          WA_ITAB LIKE ZSD_TABL_ORDBANK,
          OK_CODE LIKE SY-UCOMM,
          SAVE_OK_CODE LIKE SY-UCOMM,
          UPD_OK_CODE LIKE SY-UCOMM,
          ANSWER TYPE C,
          I LIKE SY-LOOPC ,
          J LIKE SY-LOOPC,
          V_LINES LIKE SY-LOOPC,
          LINE_COUNT LIKE SY-LOOPC,
          STS  TYPE N,
          EMGRP LIKE MARA-EXTWG,
          QTY LIKE ZSD_TABL_ORDBANK-QTY,
          UPRICE LIKE ZSD_TABL_ORDBANK-UPRICE,
          TOT LIKE ZSD_TABL_ORDBANK-TOT,
          INO LIKE VBAP-POSNR,
          COL TYPE CXTAB_COLUMN,
          COPIED_ONCE ,
          FLDNAME(100),HELP(100).
    FIELD-SYMBOLS:
         <FS_ITAB> LIKE LINE OF ITAB,
         <FS_TCL1> LIKE LINE OF TCL1-COLS.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000.
      SELECT-OPTIONS: S_CCODE FOR ZSD_TABL_ORDBANK-CCODE
                              NO INTERVALS NO-EXTENSION  OBLIGATORY,
                      S_SORG  FOR ZSD_TABL_ORDBANK-SORG
                              NO INTERVALS NO-EXTENSION  OBLIGATORY,
                      S_DCHAN FOR ZSD_TABL_ORDBANK-DISTCHAN,
                      S_DIV FOR ZSD_TABL_ORDBANK-DIV,
                      S_MATNO FOR ZSD_TABL_ORDBANK-MATNO,
                      S_CUSTNO FOR ZSD_TABL_ORDBANK-CUSTNO ,
                      S_QTNO FOR ZSD_TABL_ORDBANK-QTNO,
                      S_QTDAT FOR ZSD_TABL_ORDBANK-QTDAT,
                      S_QTVDAT FOR ZSD_TABL_ORDBANK-QTVALDAT,
                      S_SONO   FOR ZSD_TABL_ORDBANK-SONO.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN.
       SELECT * FROM  ZSD_TABL_ORDBANK
                   INTO  TABLE ITAB
                   WHERE CCODE IN S_CCODE
                     AND SORG IN  S_SORG
                     AND DISTCHAN IN  S_DCHAN
                     AND DIV IN S_DIV
                     AND MATNO IN  S_MATNO
                     AND CUSTNO IN  S_CUSTNO
                     AND QTNO IN  S_QTNO
                     AND QTDAT IN  S_QTDAT
                     AND QTVALDAT IN  S_QTVDAT
                     AND SONO IN  S_SONO .
          IF SY-SUBRC EQ 0.
             REFRESH ITAB.
             CLEAR COPIED_ONCE.
             CALL SCREEN 0200.
          ELSE.
             MESSAGE E012(ZQOTBANK) .
          ENDIF.
    *&      Module  SET_STATUS  OUTPUT
    *       text
    MODULE SET_STATUS OUTPUT.
      SET PF-STATUS '0200'.
      SET TITLEBAR '0200'.
        IF COPIED_ONCE IS INITIAL.
          SELECT * FROM  ZSD_TABL_ORDBANK
                   INTO  TABLE ITAB
                   WHERE CCODE IN S_CCODE
                     AND SORG IN  S_SORG
                     AND DISTCHAN IN  S_DCHAN
                     AND DIV IN S_DIV
                     AND MATNO IN  S_MATNO
                     AND CUSTNO IN  S_CUSTNO
                     AND QTNO IN  S_QTNO
                     AND QTDAT IN  S_QTDAT
                     AND QTVALDAT IN  S_QTVDAT
                     AND SONO IN  S_SONO .
          IF SY-SUBRC EQ 0.
            DESCRIBE TABLE ITAB LINES V_LINES.
            TCL1-LINES = V_LINES.
          ENDIF.
          COPIED_ONCE = 'X'.
          REFRESH CONTROL 'TCL1' FROM SCREEN '0200'.
       ENDIF.
          LOOP AT ITAB.
             QTY = ITAB-QTY.
             UPRICE  = ITAB-UPRICE.
             TOT = QTY * UPRICE .
             ITAB-TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-CGL_QTY.
             UPRICE  = ITAB-CGL_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-CGL_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-BHEL_QTY.
             UPRICE  = ITAB-BHEL_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-BHEL_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-ALSTOM_QTY.
             UPRICE  = ITAB-ALSTOM_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-ALSTOM_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-SIEMENS_QTY.
             UPRICE  = ITAB-SIEMENS_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-SIEMENS_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-TELK_QTY.
             UPRICE  = ITAB-TELK_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-TELK_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-OTH_QTY.
             UPRICE  = ITAB-OTH_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-OTH_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             MODIFY ITAB.
          ENDLOOP.
    ENDMODULE.                 " SET_STATUS  OUTPUT
    *&      Module  SET_LINE_COUNT  INPUT
    *       text
    MODULE SET_LINE_COUNT OUTPUT.
      LINE_COUNT = SY-LOOPC.
    ENDMODULE.                 " SET_LINE_COUNT  INPUT
    *&      Module  UPD_OK_CODE  INPUT
    *       text
    MODULE UPD_OK_COD INPUT.
    IF OK_CODE = 'SAVE'.
        UPD_OK_CODE = OK_CODE.
    *    CLEAR OK_CODE.
    ENDIF.
    ENDMODULE.                 " UPD_OK_CODE  INPUT
    *&      Module  EXIT_COMAND  INPUT
    *       text
    MODULE EXIT_COMAND INPUT.
    SAVE_OK_CODE = OK_CODE.
    CLEAR OK_CODE.
    CASE SAVE_OK_CODE.
        WHEN 'BACK'.
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
              TITLEBAR       = 'Order Bank Entry'
              TEXT_QUESTION  = 'Do you want to Go BacK ?'
              TEXT_BUTTON_1  = 'Yes'
              TEXT_BUTTON_2  = 'No'
              DEFAULT_BUTTON = '2'
            IMPORTING
              ANSWER         = ANSWER.
          IF ANSWER = '1'.
            LEAVE TO SCREEN 0.
          ELSE.
          ENDIF.
        WHEN '%EX'.
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
              TITLEBAR       = 'Order Bank Entry'
              TEXT_QUESTION  = 'Do you want to Exit ?'
              TEXT_BUTTON_1  = 'Yes'
              TEXT_BUTTON_2  = 'No'
              DEFAULT_BUTTON = '2'
            IMPORTING
              ANSWER         = ANSWER.
          IF ANSWER = '1'.
            LEAVE TO SCREEN 0.
          ELSE.
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " EXIT_COMAND  INPUT
    *&      Module  UPDATE_MOD  INPUT
    *       text
    MODULE UPDATE_ITAB INPUT.
        MODIFY TABLE ITAB FROM ITAB.
    ENDMODULE.                 " UPDATE_MOD  INPUT
    *&      Module SCROLL INPUT
    *       text
    MODULE SCROLL_SORT INPUT.
    SAVE_OK_CODE = OK_CODE.
    CLEAR OK_CODE.
    CASE SAVE_OK_CODE.
      WHEN 'P--'.
          TCL1-TOP_LINE = 1.
      WHEN 'P-'.
          TCL1-TOP_LINE = TCL1-TOP_LINE - LINE_COUNT.
          IF TCL1-TOP_LINE LE 0.
             TCL1-TOP_LINE = 1.
          ENDIF.
      WHEN 'P+'.
          I = TCL1-TOP_LINE + LINE_COUNT.
          J = TCL1-LINES - LINE_COUNT + 1.
          IF J LE 0.
             J = 1.
          ENDIF.
          IF I LE J.
             TCL1-TOP_LINE = I.
          ELSE.
             TCL1-TOP_LINE = J.
          ENDIF.
      WHEN 'P++'.
          TCL1-TOP_LINE = TCL1-LINES - LINE_COUNT + 1.
          IF TCL1-TOP_LINE LE 0.
              TCL1-TOP_LINE = 1.
          ENDIF.
      WHEN 'SORTUP'.
          READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
          IF SY-SUBRC = 0.
              SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
              SORT ITAB ASCENDING BY (FLDNAME).
          ENDIF.
      WHEN 'SORTDN'.
          READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
          IF SY-SUBRC = 0.
              SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
              SORT ITAB DESCENDING BY (FLDNAME).
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND  INPUT
    *&      Module  TABL_UPD  INPUT
    *       text
      MODULE UPDATE_TABLE INPUT.
       CASE UPD_OK_CODE.
       WHEN 'SAVE'.
         UPDATE ZSD_TABL_ORDBANK FROM TABLE ITAB .
         IF SY-SUBRC EQ 0.
             MESSAGE I002(ZQOTBANK) .
             CLEAR  UPD_OK_CODE.
         ELSE.
             MESSAGE E003(ZQOTBANK) .
         ENDIF.
       ENDCASE.
      ENDMODULE.                 " TABL_UPD  INPUT
    Thnx
    moni<b></b><b></b>
    Message was edited by: md monirujjaman
    Message was edited by: md monirujjaman

    Hi Moni,
    The problem as I had replied in your earlier post is with the MODIFY statement.
    MODIFY TABLE ITAB FROM ITAB. This statement will do the modifications based on the table key. When you have character fields as editable, then some problems are to be anticipated. In such a scenario, you must update the internal table based on the <i>index</i>, rather than based on <i>key</i>.
    So consider using
    MODIFY ITAB FROM ITAB INDEX TCL-CURRENT_LINE.
    Where TCL is the name of the Table Control. Also observe the difference in syntax here, don't use the TABLE keyword for the MODIFY statement.
    Please try it out and let me know.
    Regards,
    Anand Mandalika.

  • Audio Going out of sync problem, Help Please

    Hey all.
    So I have just filmed about 3 hours worth of gaming videos using XSplit recorder,
    in a mp4 format, and when I played it back using VLC it all seemed fine.
    However I went to import it into premiere to start editing it I noticed the sound was completly out.
    I have recorded some audio and video times listed below to show the sync times and how they are out.
    Video          Audio
    00:41:24  -  00:44:09
    47:46:25  -  50:11:12
    As you can see it gets worse over time.
    I could manualy do a time shift on the audio to align it but thats a lot of work as I have multiple clips to edit and would like a proper fix for it
    I did some quick research and found one fix was to make the sequence settings the same as the video file, but that didnt work for me.
    also trying to conform the video file also didnt help me out.
    Anyone have any other ideas?
    Thanks In Advance
    Thomas

    >gaming videos using XSplit recorder
    That is a new one to me, but other messages concering screen capture software discusses LOTS of editing problems
    Some examples... (may or may not help, but at least some ideas based on other problems)
    These are for Premiere Elements, but may help with PPro
    Fraps & Elements http://forums.adobe.com/thread/871095
    -and more Elements http://forums.adobe.com/thread/943772
    -and yet more Elements http://forums.adobe.com/thread/967201
    Camtasia http://forums.adobe.com/thread/836800
    -and http://forums.adobe.com/thread/775288
    -and http://forums.adobe.com/thread/453044
    -and http://forums.adobe.com/message/3202148
    Techsmith codec http://forums.adobe.com/message/3692768
    -and http://forums.adobe.com/thread/1046914?tstart=0
    BB Flashback http://forums.adobe.com/thread/1074014

  • New syncing problem - HELP!

    Suddenly, I cannot sync my nano. Didn't have a problem before. Have turned firewall off and back on. iTunes works fine until I plug in to sync, and then it crashes. Message: "iTunes has stopped working" immediately appears when I try to sync. Very aggravating. BTW - have upgraded to the latest version of iTunes. Am using HP laptop using Vista Home. Thanks for any help.

    BTW - have upgraded to the latest version of iTunes.
    Let's doublecheck that. In iTunes, go "Help > About iTunes" and wait for the version number to scroll up from the bottom of the screen.
    Does it say 10.1.0.54 ? If so, we need to update you to 10.1.0.56 .
    10.1.0.56 won't appear for you in Apple Software Update for Windows if you already have 10.1.0.54 installed. So you'll need to get the installer from the Apple website as per the following document:
    [iTunes 10.1 for Windows: iTunes may stop working and need to quit while importing or syncing audio|http://support.apple.com/kb/TS3591]

  • Hotmail sync problems - HELP! (Nokia N8 - Anna )

    Hi
    I got a problem with my hotmail sync.
    I deleted my account without wanting to, and now i want it back - before I could sync all my folders in the hotmail account, but when i'm trying to make a new account it only syncs the inbox/sent maps? The other maps doesn't even appear on the screen when I go to maps.
    How do I set up the account in a way so all maps are sync?
    Please help!

    I had two hotmail accounts on my nokia c7. one of them stopped to synchronize. I deleted it and I tryed to reconfigure again but it will not let me. I did a soft reset, a hard reset, installed all updates (anna), but still does not leave me. I put the sim in another nokia c7 and let me set up the account correctly. ¿¿¿¿¿¿????????¿¿¿¿¿¿¿¿¿¿¿????????????¿¿¿¿¿¿¿¿¿¿¿¿?​???????????
    In nokia care they told me to delete the account in messaging web, before configuring the account in my phone, but it did not work

  • Nokia 5220 WHITE SCREEN PROBLEM *Help plz*

    hello guys ... my phone's (5220) screen has gone White ... !! i have absolutely no idea what the problem is ! i took out the battery and put it back again .. but when i turn it on ..after the nokia logo the screen goes white again !! i cant do anything except for looking at the white screen...! the phone doesnt even turn off until you take out the battery !
    I tried to connect it to my PC (via data cable) but the phone does not get connected with the PC suite !!  PLZ HELP ME  !!

    Jimmyireland is right - anything that you could do yourself requires the phone to at least boot up properly, at the moment your phone is like PC with no Windows involved, it can't find its OS to start.
    The 5220 is a series 40 phone, there is facility for a forced reboot, it needs its software to be reflashed which is why you need the Nokia service point.

  • Annoying podcast problem help plz

    hi guys,
    first if this is in the wrong place, i apologise, as you can see a new user.
    anyway, heres my problem,
    i just got hold of an ipod mini, and i use my itunes extensively for podcast listening,and i have a problem regarding when it comes to syncing them with my ipod.
    basically i would like my ipod to put any podcast that is listed as new in itunes on my ipod when i connect it.
    and yes it does that fine.
    but what problem i have is, when i come to syncing again, it will get the new ones ok, but it will remove all the ones previously put on there, and its annoying, as there are some i have not listened to yet.
    is there a setting were i can get my ipod/itunes to put all new podcasts on automatically, but leave them on until i decide to remove them.
    i have tried all the settings in the ipod/podcast settings, but none do that.
    so any help guys appreciated.
    is there a way to get my new podcasts on my ipod, but leave the others on.(and then what would be the easiest way to remove them when i do want them off??)

    You should try to restore the iPhone using iTunes make sure you back up, see if it helps.
    iPhones won't show as removable device if you are referring to be able to copy/transfer files similar to a usb flash drive. It is restricted based on Apple's specification altho it should appear as "Digital Camera Device" having access to your captured photo's or "camera roll" you should unlock your iPhone first before connecting to PC or Mac if you do have a password.
    As of saving issues, try to restore the firmware by itunes or resetting through iPhone settings as reset or restore.
    It should fix and work as normal, if it doesnt you can always go back from where you purchased it but it will. Goodluck.

  • IPod/iPhoto syncing problem HELP!!

    I am writing this in desperation. I tried to sync my 30GB iPhoto library onto my iPod video. iTunes started filling up my hard drive. I had 8GB of free space on my hard drive, and now I have nothing. However 25GB of my iPhoto stuff made it to the iPod. I am wondering - does syncing iPhoto with iPod make iTunes double up the iPhoto? Does it place the entire library in the iTunes folder?
    If I freed up more space, and the syncing completed, would the hard drive get back to its original state?` Is iTunes just occupying the space for syncing reasons?
    Please help!! Thanks so much!!!

    I am also having this problem with an 80G iPod. Anyone out there with a suggestion?

  • Syncing problem - HELP!

    Hey all!  My ipod nano, 6th generation, isn't syncing.  It will say "syncing" but isn't doing anything.  What's up??!

    Hello Lily,
    Thank you for the details of the issue you are experiencing with your iPod nano (6th generation).  I recommend following the 5 Rs for an issue like this:
    The 5 Rs: Reset, Retry, Restart, Reinstall, Restore
    Remember these five basic suggestions if you have a problem with iPod nano. Try these steps one at a time until your issue is resolved. If one of the following doesn’t help, read on for solutions to specific problems.
    Reset iPod nano. See “General suggestions,” below.
    Retry with a different USB port if you cannot see iPod nano in iTunes.
    Restart your computer, and make sure you have the latest software updates installed.
    Reinstall iTunes software from the latest version on the web.
    Restore iPod nano. See “Updating and restoring iPod software” on page 56.
    You can find these steps on page 52 of the iPod nano User Guide:
    iPod nano (6th generation) User Guide
    http://manuals.info.apple.com/MANUALS/1000/MA1551/en_US/iPod_nano_6thgen_User_Gu ide.pdf
    Thank you for posting in the Apple Support Communities.
    Best,
    Sheila M.

  • Annoying iphone problems, help plz?

    well, I'm having two annoying problems with my iphone, the first is that when I record a video or a photo, it does not save and the second is that it does not appear as a removable drive on the pc, SOMEBODY HELP ME PLZ :/

    You should try to restore the iPhone using iTunes make sure you back up, see if it helps.
    iPhones won't show as removable device if you are referring to be able to copy/transfer files similar to a usb flash drive. It is restricted based on Apple's specification altho it should appear as "Digital Camera Device" having access to your captured photo's or "camera roll" you should unlock your iPhone first before connecting to PC or Mac if you do have a password.
    As of saving issues, try to restore the firmware by itunes or resetting through iPhone settings as reset or restore.
    It should fix and work as normal, if it doesnt you can always go back from where you purchased it but it will. Goodluck.

  • Shared Photostream Sync Problems - HELP!

    Hi - I have an iphone 4 with ios6.
    I have set up several shared photostreams and added photos to these and invited subscribers.All that seemed fine, but here's the problems I've experienced and would be interested to know if this is a common/known issue:
    1) On one photostream, I have added 187 photos and on the device I added the photos from, I can see all 187 photos. However subscribers can only see 99 of the photos. I looked on my iPad, and I too can only see 99 photos on that device. So...... I deleted the photos and re-added. This time I can see the 187 photos on the source device, and subscribers can only see 129! Is there a known issue with syncing of photos through to a shared photostream.
    2) On a second photostream, I added 35 photos. Subscribers could see all photos, as could I on all devices. One hour later, the photostream is empty on my source device and for all subscribers.
    3) A friend added me as a subscriber to a photostream of his. I cannot see of the photos despite other subscribers seeing them.
    4) Lastly, I deleted one shared stream and started again, but yet again, subscribers can only see a portion of what I have added.
    Any advice?
    Thanks

    Hello jordan0101,
    And welcome to Apple Discussions!
    This article should be able to help you.
    http://support.apple.com/kb/ht1855?viewlocale=en_us
    okay, i went to take a band off my itouch, when you do that you click the box where the check is and it will disappear that way when you sync it will take that particular artist off your itouch. but when i do that it still stays on my itouch.
    That will only remove the song(s) if you have the *Sync all checked songs and videos* option enabled from under the iPod's Summary tab.
    B-rock

  • Sync problems. help?

    okay, i went to take a band off my itouch, when you do that you click the box where the check is and it will disappear that way when you sync it will take that particular artist off your itouch. but when i do that it still stays on my itouch. my problem is i cant add or delete music off my itouch and i dont know why its doing this or how to fix it.

    Hello jordan0101,
    And welcome to Apple Discussions!
    This article should be able to help you.
    http://support.apple.com/kb/ht1855?viewlocale=en_us
    okay, i went to take a band off my itouch, when you do that you click the box where the check is and it will disappear that way when you sync it will take that particular artist off your itouch. but when i do that it still stays on my itouch.
    That will only remove the song(s) if you have the *Sync all checked songs and videos* option enabled from under the iPod's Summary tab.
    B-rock

  • WRH54G linksys setup problem help plz

    i just bought the WRH54G linksys wireless-G home router. I put the cd rom in and i followed every step and i have everything in the right place but when it is at step 9 when u have to choose between DHCP, PPPoE, or Static Ip i dont know which one to choose so i go with DHCP then step 10 after i put in the passwords and click next and it is checking internet connection it says the router is not able to connect to the internet. try turning cable/dsl modem off and back on again. do you want to try again?. that is where i get stuck and i have tried to turn it off and back on again and i doesnt work. can anyone help me out?

    I HAVE A DSL .. ROUTER PROBLEM
    STAYS IN STEP 9 AS WELL .. 
    checking internet connection it says the router is not able to connect to the internet. try turning cable/dsl modem off and back on again. do you want to try again?
    after some research am going to try to put MY MODEM in brigde Mode. maybe that'll fix the problem... Since it apears the linksys WRH54G is trying to connect to the internet DIRECTLY...  i dont knoe .... first time newbe  , i have a high level of computer experties.. but am having pro with dis NAW 25$ discounted outer.lol
    I have DSL from verizon... in there instusction on how to.. the first thing is to put the MODEM that they issued A WESTELL into brigde mode .. and setup..
    if anione gat this thing working after u gat this CANT CONECT TO INTERNET
    the router is not able to connect to the internet. try turning cable/dsl modem off and back on again. do you want to try again?
    please e-mail me with anifinding..
    .thanks in advance

  • Displaying problem Help Plz !!!

    Hi all
    For some reason i cant seem to get any applets to run on my computer, they just wont show up, if any one could help, sorry now if i am in the wrong room for this
    Thanks

    Go tp this Sun website http://java.com and click on Verify Installation. If it does not verify that Java is installed, try clicking on the install arrow, and start an install. If you have any problems, review the help pages there.

Maybe you are looking for