Trouble with Youtube using WRT54GL

I'm not sure if this is a problem with the router, but I'm wondering if anyone can help with this situation. I'm using a WRT54GL with stock firmware and occasionally some videos on Youtube won't load. Although, they'll load at other times. My ISP is Optimum Online and I'm using a wired connection.

Try using other browser like firefox or opera. Seems more like browser issue.

Similar Messages

  • With the latest update, i have some trouble with youtube. Every videos that i watch are shaking. Is there something to fix it?

    With the latest update, i have some trouble with youtube. Every videos that i watch are shaking. Is there something to fix it?

    Instantly worked, found this on other thread!!
    1. System Preferences >  Flash Player > Advanced >  Delete  All
         Press the "Delete All" button
    2. Safari > Preferences > Privacy
        Press the button “ Remove All Website Data”.
    *Dont forget to restart Safari

  • I have had trouble with scrollbars using netbeans 5.5.1

    I have had trouble getting a vertical and horizontal scrollbar working in my GUI. I am new to programming but I have books but I find them difficult to follow because they follow the old netbeans GUI models that requires all of the code to be written for example the scrollbar has to be created and then the parameters have to be set. However with the 5.5.1 the scrollbar has already been created and the parameters of the maximum the minimum and the event have already been set.
    Therefore when you follow the books they explain the whole process rather than the last part which is all that is needed. I have selected the scrollbar and then pressed the right mouse button to get the menu up where I selected Events and then Adjustments, which then displayed the following script,
    " private void jScrollBar1AdjustmentValueChanged(java.awt.event.AdjustmentEvent evt) {
    // TODO add your handling code here:"
    I know that I have to delete the //TODO add your handling code here and then insert the event handling code. I have tried to put in a lot of different event handler codes to try to get it to work but I have had no luck. Can anybody help. I have asked a few people but they have had trouble with it too.

    Please can somebody provide me with a scirpt example.
    I would really appreciate it.This was not made in Netbeans but it shows you how to use scrollpanes with a viewportview and listeners.
    import java.awt.Dimension;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTextPane;
    import javax.swing.WindowConstants;
    public class SwingExample {
         public static void main(String[] args) {
              JFrame frame = new JFrame("Test");
              //Create scrollpane
              JScrollPane scrollpane = new JScrollPane();
              //Create textpane to embed in Scrollpane
              JTextPane textPane = new JTextPane();
              //Add listener to textpane to listen for a KeyEvent
              textPane.addKeyListener(new KeyListener() {
                   //unimplemented methods, not reuqired for example
                   public void keyPressed(KeyEvent arg0) {}
                   public void keyReleased(KeyEvent arg0) {}
                   //Implemented method - prints current key typed.
                   public void keyTyped(KeyEvent arg0) {
                        char myChar = arg0.getKeyChar();
                        System.out.println("You Typed: "+myChar);
              //Add textpane to scrollpane
              scrollpane.setViewportView(textPane);
              //add scrollpane to frame
              frame.add(scrollpane);
              frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
              frame.setVisible(true);
              frame.setSize(new Dimension(400,400));
    }

  • Ipad3 trouble with youtube

    Have an ipad3. When I am watching youtube on wifi the videos keep stalling.Would getting a higher speed internet service remedy this?

    I dont  think its a google problem. I am in Florida, but when I was in NY i had no trouble with verizon wi fi. -Youtube on ipad3 was fine there.

  • I'm having trouble with activation using over drive  fore books

    II'm having trouble with activation I've tried too many time wit no luck

    Reader doesn't need activation. I think you should ask in the Digital Editions forum, Adobe Digital Editions

  • Troubles with YouTube app

    If I try to access YouTube through the built-in app it will not show me all my subscriptions although  will get video updates for all my subscriptions under "new videos" - but it will tell me I am not subscribed to them, and hitting the "subscribe" button gets an error message of "YouTube is not available"
    If I access my YouTube account through safari the YouTube page shows ALL my subscriptions without an issue although there is an annoying bar going across my desktop view that I can't seem to get rid of ...
    The question is - why is there not an available APP SUPPORT/UPDATE for the BUILT IN APPS through the apple store? It would be very nice if a person could REINSTALL a built-in app if they are having issues without having to hook up to another computer - it would also be great if there was a better way to let Apple know when there is an issue with one of these apps as well ...
    How the heck to I get the BUILT IN YOUTUBE APP to recognize ALL my subscriptions? (it's an app issue because the same problem occurs across ALL 4 of our iPads no matter the IOS or model)

    Since you'd like Apple to hear you, use the following link:
    http://www.apple.com/feedback/ipad.html

  • Troubles with youtube

    I just installed the new flash, because youtube said i needed to update.  I did so, but now when I try to access youtube it says waiting for s.ytimg.com. and firefox then says it is not responding.  I have been on google but couldnt really find anything that worked.  If there are any suggestions it would be appreciated.  Thanks 

    Hi - Can't help because having simliar problem...  Firefox updated to 3.6.14 and then advised Flash 10 be  installed. I did this and now on YouTube videos all I see is a black  screen with no play or pause button. Using System is OS X10.4.11. Went to Adobe and followed Uninstall Flash and re-install  Flash10. Did this, re-started browsers and told to Install Flash 10 when I just had! Would really appreciate help so sad not to be able to view any YouTube. Thanks, Clare

  • Troubles with timeout using java.nio.channels and non-blocking sockets

    Hello.
    I have a server application that employs java.nio.channels with non-blocking sockets.
    The server waits for connections. The client should connect and be first in sending data.
    Timeouts are significant! If client exceeds the allowed time to send data, the server should break the connection.
    The huge trouble I've discovered that I cannot control the timeout when client connects but remains silent.
    My code looks as follows:
    <pre>
    Selector oSel;
    SocketChannel oSockChan;
    Socket oSock;
    SelectionKey oSelKey;
    Iterator<SelectionKey> oItSelKeys;
    int iCurrState, iMask, iCount;
    iCurrState = INT_SERVER_WORKING;
    iMask = SelectionKey.OP_ACCEPT | SelectionKey.OP_CONNECT | SelectionKey.OP_READ | SelectionKey.OP_WRITE;
    while ( iCurrState == INT_SERVER_WORKING )
    try
    *// retrieving next action*
    iCount = oSel.select();
    if ( iCount > 0 )
    oItSelKeys = oSel.selectedKeys().iterator();
    while ( oItSelKeys.hasNext() )
    oSelKey = oItSelKeys.next();
    oItSelKeys.remove();
    if ( oSelKey.isValid() )
    switch ( oSelKey.readyOps() & iMask ) {
    case SelectionKey.OP_ACCEPT :
    oSockChan = oSSockChan.accept();
    oSockChan.configureBlocking(false);
    oSock = oSockChan.socket();
    oSock.setKeepAlive(true);
    oSockChan.register(oSel,SelectionKey.OP_READ,new MyPacket(oSock.getInetAddress(),oSock.getPort()));
    break;
    case SelectionKey.OP_READ :
    oSelKey.interestOps(0);
    ((MyPacket) oSelKey.attachment()).inRequest(); *// preparing request*
    this.getReader().add(oSelKey); *// sending key to reading thread*
    break;
    case SelectionKey.OP_WRITE :
    oSelKey.interestOps(0);
    ((MyRequest) oSelKey.attachment()).inResponse(); *// preparing response*
    this.getWriter().add(oSelKey); *// sending key to writing thread*
    break;
    case SelectionKey.OP_CONNECT :
    default :
    *// nothing to do*
    catch ( IOException oExcept )
    *// do some actions*
    </pre>
    Timeouts are easily controlled by reading and writing threads (see OP_READ and OP_WRITE ).
    But when a client just connects without consequent data send, the state of this connection remains as OP_ACCEPT. The connection remains open for arbitrarily large time and I cannot control it!
    Please help with idea how can I terminate such connections!

    How can I process the keys that weren't selected at the bottom of the loop? Should I use the method keys() ?Yes. Form a new set from keys() and removeAll(selectedKeys()). Do that before you process selectedKeys().
    And the second moment: as I understood a single key may contain several operations simultaneously? Thus I should use several if's (but not if/else 'cause it's the equivalent of switch ... case ).If there is anything unclear about 'your switch statement is invalid. You need an if/else chain' I fail to see what it is. Try reading it again. And if several ifs were really the equivalent of "switch ... case", there wouldn't be a problem in the first place. They're not, and there is.

  • Trouble with people using my e-mail link on my contact page

    Some people using my e-mail link on my contact page aren't able to reach my e-mail account. I use statcounter so I can see that they have exited through the e-mail link, but then I never get the e-mail. I use g-mail and anytime I test the link it seems to work.
    Anyone else have trouble like this?
    Is there a more reliable way to have email access using iWeb?
    Here's the contact page: http://web.me.com/phelpssculpture/Site/Contactpage_DavidPhelps.html
    If anyone is willing to take the time, please respond to this post in this forum and try to send me an e-mail from my contact page. I'd like to find out if this is a widespread problem. If so I need to find a better way for people to reach my e-mail.
    Thanks, David

    Just sent you an email from that link.
    Happy Holidays

  • I'm having trouble with youtube working on my Mac Pro

    Youtube doesn't play audio or video.  Any suggestionS?

    Are you using the latest version of Flash Player?
    Mac Pro is a desktop computer.  Your system profile shows you actually have a Macbook Pro.  Typo?  You have both?

  • Trouble with Paths using Gallery

    I have a very large site with lots of images. I can put my
    images, thumbnails and photo.xml in the galleries folder of the
    demo and it works just fine. I use the recommended file structure.
    I can add as many galleries as I like and they all work.
    If I copy that exact galleries folder containing both the
    demo galleries and my galleries to my site, only some work. There
    seems to be no logical reason for it. One of demo galleries and
    some of mine fail. I've changed the index.html to show the location
    of the four javacript files in the site's main script folder. I've
    changed the XML dataset paths to show the location of the galleries
    folder like this:
    <script type="text/javascript">
    var dsGalleries = new
    Spry.Data.XMLDataSet("images/vac_lam/galleries/galleries.xml",
    "galleries/gallery");
    var dsGallery = new
    Spry.Data.XMLDataSet("images/vac_lam/galleries/{dsGalleries::@base}{dsGalleries::@file}",
    "gallery");
    var dsPhotos = new
    Spry.Data.XMLDataSet("images/vac_lam/galleries/{dsGalleries::@base}{dsGalleries::@file}",
    "gallery/photos/photo");
    </script>
    The non-working galleries fail to show the thumbnail image or
    main image and don't advance to the next image when Play is active.
    The main image size changes and some description data I've added
    which means the photo.xml is being seen. Copy this non-working
    folder main into the demo galleries folder and it works fine.
    Am I allowed to move the .js files and extend the folder
    paths?

    I got the galleries to work after much trial and error.
    The thumbnail image path is hard-coded in the index.html at
    line 40 as well as lines 12, 13, 14.
    The main image path is hard-coded in the gallery.js at line
    198.
    I don't want a separate gallery.js for each set of galleries.
    I'll declare a path variable just before the XMLDataSet's are
    declared in each of the index pages. One declaration - everybody is
    happy.
    I still don't understand why some galleries worked and some
    didn't.

  • Trouble with OWA using CAC

    I use Safari to access my email on OWA. Using a CAC Smart Card, I'm able to get into my email where I see the emails in my in box. The problem is when I click on an email to read it, the browser just hangs up. I'm assuming that there's a problem with my Keychain not allowing me to move around my email. Does anyone have any ideas?

    Try using other browser like firefox or opera. Seems more like browser issue.

  • Trouble with output using AI

    Hello,
    We have problem when printing out files using AI from CS6 on a HP 4700 dn with PCL 5.1 as a driver. The black backround is not printing out uniformly. If we convert the .ai file to
    a .jpeg and printout the image the backround is correct. Any suggestions on why this is happening? See below for a sample .jpeg picture that printed out correctly. On the original .ai file you have a smaller lighter inner black backround color surrounding the object. This happens on several different files we have tried. We also occasionally get thin black line throughout the image. Not like banding but some lines vertical or diaganol. Any suggestions appreciated. I wish I could attach the AI file but it is too big to upload.
    Thanx

    The Document contains artwork that requires flattening. <- This means that there is transparency in the file, It's fine.
    The Document contains RGB images <- Also fine as long as your printer can handle it
    The Document Raster Effects resolution is 72 ppi or less <- Depending on your final intent for the file this MIGHT be ok. If you are designing for web then you're golden, if you're designing for print you should change your Document Raster Effects settings
    Go to 300 ppi. This might change the appearence of your effect, if it does, play with your effect settings until it is back where you want it.
    As far as your original issue, have you set the effect to "multiply"?
    Double click on Drop Shadow

  • Safari 5.1.1 has trouble with Youtube, Grooveshark

    Does anyone else running Safari 5.1.1 have problems playing any Youtube video or Grooveshark tunes? Mine stays black or says there was a problem loading Flash. According to Grooveshark, I might have a flash blocker installed, but I haven't intentionally installed anything of the sort. Is there something with the latest update that might have done this?
    I don't think it's my computer, because I can watch Youtube videos and play Grooveshark music on Chrome. Just not on Safari.

    Do you have ClickToFlash installed?
    Check ~/Library/Internet Plug-Ins
    Just not on Safari.
    And check Safari > Preferencees - Extensions. If you have any installed, turn that off, quit then relaunch Safari. Try a video.
    Open System Preferences > Flash
    Select the Storage tab.
    Click Delete All
    Reluanch Safari.
    Empty the Safari cache then try a video.

  • Flash player problems with youtube - using firefox

    I have been having these problems for a while now, at least over 6 months I'd say. Everytime I want to watch any youtube video, I get this:
    "Hello, you either have JavaScript turned off or an old version of  Adobe's Flash Player. Get  the latest Flash player."
    I have scoured the internet for answers. I have cleared cookies, done clean uninstalls/installs, and java script is enabled. I somehow fixed it yesterday, when I cleared out cookies and also cleared file cache in firefox. It was also fixed after I uninstalled flash player, and upgraded to firefox 3.6. However, the problem has returned and after clearing cookies and the file cache again, it's still not working. I am hoping someone has a permanent fix for this. Also, I can watch videos on google, dailymotion, metacafe, etc. Only youtube gives me these problems.
    I am using Windows XP SP2 and Firefox 3.6. Thank you

    I wish that worked :[
    I forgot to add that I am also using Norton Antivirus 2005. I already went to the Personal Firewall settings and I configured it to permit all adobe programs.

Maybe you are looking for

  • Smb server for multiple interfaces

    I have IFS 1.2 installed on a Linux box running RedHat 7.1. There are two ethernet cards in the box. By default, when iFS is started, it grabs both interfaces and uses their port 139. Is there a way to make it only use one of them? I configured lisen

  • ABAP String processing using normal methods

    I have a string like this: A:12345;B:34324;C:443232; Question 1) How do I extract B:34324 from the above string? Note: I can only use methods provided in ABAP programming (BC-ABA) such as split, CO, CA,etc Question 2) How do I know how many ';' chara

  • Links will not open in new window from iPad but work in IE on desktop.

    I am trying to set some links to open in a new tab but for some reason they just keep opening in the original tab. External links work fine but when I try to make another page from my website open in new tab, it will not work. I have looked at the co

  • Where does iCloud store my photos on my PC?

    If iCloud is a replacement for me connecting my iPhone4S to my iTunes for backup and downloading my pictures on my PC. Then where are the photos that I backup to iCloud with my photostream on in the settings of my iPhone4S? When I go to iCloud.com, t

  • Insertion balloons with time stamp in Word 2013

    Does anyone know how to turn these off? They appear when the cursor is over an insertion. I do not want customers tracking my time. Thanks