Problems navigating through old posts

I am having problems navigating through old posts.  The slower the forums get, the longer it takes me to read them, and the further behind I get in reading them.  Eventually, when trying to read posts that are a couple of months old in the SQL and PL/SQL forum, when trying to navigate from one post to the other, I frequently get an error message.  This happens whether I try to use my browser's back arrow to the previous page or click on a page number on the forum page, or change the start number in the url.  However, sometimes I actually get back to the page and can select the next post.  It is not consistent.  Sometimes I can click on the same thing four times in a row and the first three times I get the error, but the fourth time I get a page of posts.  So, the error message is not actually saying what is really going on.  The following is the error message that I keep getting:
"You have reached the maximum amount of pages in this set of content results. If you are looking for something specific, try applying a content type filter or entering a search term."

Yes, I am still seeing the problem sporadically.

Similar Messages

  • Problem based on old post about JNI sysHook.c,PollThread,KeyboardHook...

    Hello nice people,
    I am having a hard time solving my boring problem related to JNI. Please consider the exception of this PollThread class:
    //PollThread.java
    package sysHookJNI;
    import java.io.*;
    public class PollThread extends Thread
         public native void checkKeyboardChanges();
         private KeyboardHook kbh;
         public PollThread( KeyboardHook kh )
              kbh = kh;
              System.loadLibrary("syshook");
         public void run()
              for(;;)
                   checkKeyboardChanges();   //  <--- this is line 21.
                   yield();
         void Callback( boolean ts, int vk, boolean ap, boolean ek )
              KeyboardEvent event = new KeyboardEvent( this, ts, vk, ap, ek );
              if( ts )
                   kbh.keyPressed( event );
              else
                   kbh.keyReleased( event );
    }* Exception in thread "Thread-0" java.lang.UnsatisfiedLinkError: sysHookJNI.PollThread.checkKeyboardChanges()V*
    *     at sysHookJNI.PollThread.checkKeyboardChanges(Native Method)*
    *     at sysHookJNI.PollThread.run(PollThread.java:21)*
    I tried so many possible ways to solve above problem either by regenerating my header file and every related classes: KeyboardEvent, KeyboardEventListener, KeyboardHook, PollThread, Test. Then I run Test which contains main() then stuck at PollThread class. In fact, it works perfectly w/o locating in a package, but I need to put it into a package to work with my java project.
    Please help me out with your suggestion!! It has been a week searching for the solution..
    Edited by: Nethie on Nov 1, 2009 3:06 PM

    Nethie wrote:
    In fact, it works perfectly w/o locating in a package, but I need to put it into a package to work with my java project. When means that you did not in fact redo the signature. If the package changes the signature changes which means
    1. The generated h file changes
    2. Your implementation of the signature must change.

  • Problems navigating through DVD menu

    Hi! DVD is burned and runs fine. But... When I select a scene, after playing this part of the DVD, the movie continues with the next scene and doesn't return to the menu. What am I doing wrong? Thanks for any help!

    Hi Rene,
    To be honest, I have no idea why it happens, but I have seen it on different players. One of my projects (and only one) plays fine on 95% of the players I have played it on, but I have had the same problem on a couple of different players, however, al of my other projects work fine on the same players. I would assume that it is a player issue and not an iDVD issue. Sorry I can't give you any advice, but now you know you are not alone. I will be following the progress of this question to see if there is a more technical answer.

  • Navigating Through Groups of Radio Buttons

    Hi,
    I am having a problem navigating through groups of radio buttons.
    I have several groups of radio buttons, I tab to the first radio button and then press the down arrow to move to the next radio button in the list.
    When I press the down arrow the focus does not go to the next radio button in the list. The radio buttons appear to be selected in a random order.
    I have made sure that the buttons are listed in the same order in the hierarchy. I have also arranged the buttons so they appear in alphabetic order. This doesn't seem to make any difference.
    Any ideas???
    Thanks in advance,
    Emma

    I was trying to use the script in this example to solve a similar problem I'm having with a radio button group that started acting strange when I added a script to it. However, the checkboxes are not acting like radio buttons. Meaning I can click multiple values and I only want 1 of the 4 options clicked. So, when I check the 2nd box I want the 1st to go away and it doesn't.
    Here is my code, I've got 4 checkboxes (used to be radio buttons) and a text field at the end that appears if the last option is checked. Can someone tell me what I've done wrong?
    1st checkbox:
    if (this.rawValue == "Yes") {
    this.access = "protected";
    form1.subform3.TruthDataDIS.access = "open";
    form1.subform3.TruthDataDIS.rawValue = "No";
    form1.subform3.TruthDataTENA.access = "open";
    form1.subform3.TruthDataTENA.rawValue = "No";
    form1.subform3.TruthDataOther.access = "open";
    form1.subform3.TruthDataOther.rawValue = "No";
    2nd checkbox:
    if (this.rawValue == "Yes") {
    this.access = "protected";
    form1.subform3.TruthDataHLA.access = "open";
    form1.subform3.TruthDataHLA.rawValue = "No";
    form1.subform3.TruthDataTENA.access = "open";
    form1.subform3.TruthDataTENA.rawValue = "No";
    form1.subform3.TruthDataOther.access = "open";
    form1.subform3.TruthDataOther.rawValue = "No";
    3rd checkbox:
    if (this.rawValue == "Yes") {
    this.access = "protected";
    form1.subform3.TruthDataDIS.access = "open";
    form1.subform3.TruthDataDIS.rawValue = "No";
    form1.subform3.TruthDataHLA.access = "open";
    form1.subform3.TruthDataHLA.rawValue = "No";
    form1.subform3.TruthDataOther.access = "open";
    form1.subform3.TruthDataOther.rawValue = "No";
    4th checkbox:
    if (this.rawValue == "Yes") {
    form1.subform3.TruthDataOtherName.presence = "visible";
    form1.subform3.StaticText36.presence = "visible";
    this.access = "protected";
    form1.subform3.TruthDataHLA.access = "open";
    form1.subform3.TruthDataHLA.rawValue = "No";
    form1.subform3.TruthDataDIS.access = "open";
    form1.subform3.TruthDataDIS.rawValue = "No";
    form1.subform3.TruthDataTENA.access = "open";
    form1.subform3.TruthDataTENA.rawValue = "No";
    else {
    form1.subform3.TruthDataOtherName.presence = "invisible";
    form1.subform3.StaticText36.presence = "invisible";
    Thanks in advance for your assistance,
    Debra

  • Navigating through iTunes browser with keyboard problem

    It used to be that if I clicked in the Artists browser window and typed PAT, the window would scroll down to Patricia Kass. This is no longer the case. The strange thing is that it does this (or does not) on both computers of mine (G4 MDD and 12" PB). So it is probably due to something I installed. I tried a little bit of everything: repairing permissions, creating a new user account, deleting preferences, deleting additional pref panes… with no success. Keyboard navigating through a finder window works perfectly. Anywhere else to look? Or should I just buy a new Mac Pro? Thanks for any help!

    If you are on the iphone there is a blue "app store" and a purple "itunes app" They are completely separate from each other, so if you are looking for music in the app store thats your problem. If you are in itunes on your mac or pc then there should be there should be a yellow area at the top with an apple logo in it, literally right beneath that there is a bar with two arrows, a home icon, and what probably says app store. Click on the home icon and you should be back to the main itunes store. Hope this helps.

  • Do any of you experience Im having with my ipad? I can't make a comment in Facebook for older posts and I can't open numerous comments from old posts of my friends. but everything works perfectly when I use laptop. is there problem between apple and FB?

    do any of you experience Im having with my ipad? I can't make a comment in Facebook for older posts and I can't open numerous comments from old posts of my friends. but everything works perfectly when I use my laptop(non-apple). is there problem between apple and FB?

    Facebook apparently has their site coded poorly for tablets with touch screens. Try using the Facebook app. It is not perfect either but it is better than view in a browser lately.

  • Page navigation when looking at old posts

    when I browse old pages in forums I can always jump up to 10 pages ahead at the bottom of the page.
    However, when I browse my old post, the page navigation allows me to jump only to pages 1-9 and the next (or the previous) page. This means that the only way to get to the messages page 10 and up is by repeatedly pressing the "Next page" button. This might not matter to people with less than 100 posts but is VERY inconvenient for those of us who post a lot.
    I'd like to have either a "go to a particular page" button or the same navigation system which is used in regular forum browsing which allows to jump in 10 page increments.

    thanks, this is helpful although it produces a slightly different behavior from hat I hand in mind. the forum settings page allows up to 50 posts per page but this gives more.
    Still having 100+ posts on a single page is not the most convenient arrangement and my original request stands. One needs a built in way to jump to more than one page ahead.
    Message was edited by: V.K.

  • Centro restarts when navigating through photos

    I purchased my Centro a couple of months ago.  Recently, the Centro has been restarting when navigating through photos I've taken using the Centro's camera.  It will also restart when I try to save a photo that has been sent to me via text message, or when I try to send a photo via text message.  I have cleaned out my previous text messages and deleted the message backup file on my computer.  I've also tried a soft reset and a system reset, but the same thing keeps happening.  As an aside, my husband bought his centro at the same time and he is not experiencing these issues.  Is there anything I can do, short of taking the phone back to Verizon?
    Post relates to: Centro (Verizon)

    Hello and thank you for using the Palm Help Forums!
    Well, there are several things that can cause the device to reset.
    One, corrupted data. If you have corrupted data on the device, when trying to access it, it can and most likely will, cause the device to reset.
    Two, Low memory. If the device has low memory, the device will operate slow and most likely reset because it doesn't have a lot of free space. The free space remaining on the device is it's thinking room you could say. The smaller the thinking margin, the more likely it will not perfrom correctly. Best way to fix memory issues is to get an SD card and save all media files to the SD card.
    Three, incompatible software. If there is incompatible 3rd party programs installed on the device this can cause several problems. Resets, missing data, and other functions not performing correctly.
    The best thing I can recommend you do is a hard reset. A hard reset will erase all data on the device but restore all settings to default. Be sure to backup your data on a PC before performing a hard reset. For further information and instructions on how to do a hard reset go to kb.palm.com and look up article number 42094 in the solution ID search field.
    I hope this helps and let me know if you have any further questions or issues.
    -Pat
    Post relates to: Treo 800w (Sprint)

  • Old posts not linked to this account.

    I'd like to report that my old posts are not associated with this account (even 'though I've got the same e-mail address than on the old forums.sun.com account).
    Is the migration complete or should we wait a bit more before complaining?

    Joachim Sauer wrote:
    oracletechnet wrote:
    Did you read the FAQ?
    http://wikis.sun.com/display/ForumsMigration/Home
    Yes, I did, but is rather vague. And I don't know which item specifically you are referring to:
    It could be
    - Item 2 "not all users are going to migrated": I think I can safely assume that I'm well within the range of transferred users, having had 10k+ posts on forums.sun.com
    - Item 3 "the migration take some time": that's why I asked how long the migration is expected to take, it's very unclear what timeframe to expect from the migration. Specifically, I've seen some accounts having previous posts associated while others had none. That could either mean the migration is not complete yet or something went wrong.
    - Item 6 "reporting log in issues": I can log in just fine, that's not the problem
    I'm not trying to be a nuisance, if the answer is "be patient", that's perfectly fine with me. But I have been unable to find any "this is the current status" posts about this migration. And in all honestly: I was expecting a somewhat more transparent migration experience here.Yes, they do need to be more transparent. They may have a bit of a quandary about it, there are so many watching them so closely they might be thinking opacity overrides public relations - they surely don't want to be caught up in flamefests while trying to solve problems, not to mention an overwhelming amount of "advice" not as helpful as people would think. There was a fellow named Warticki who made a slightly humorous comment about the support upgrade, was just vilified online and the press picked up on it. Numerous other examples show that this opacity is standard operating procedure: jive upgrade here, licensing changes there, feature changes everywhere. I don't see how they can avoid it, honestly, as a public corp they have to watch out for forward looking statements. Technical people aren't PR or legal people, and need to be insulated somewhat from screaming users to get anything done. But someone needs to step up and manage expectations here. A tough job, to be sure.

  • Problems Navigating this Discussion Website

    Using either Safari or Firefox I have big problems navigating this site. I can log in OK but it keeps hanging. With Firefox I sometimes get the message box 'This document contains no data'. With Safari I get 'Safari can't open the page "http:/discussions.apple.com/post!post.jspa". The error was: "lost network connection" (NSURLErrorDomain:-1005) Please choose Report Bug to Apple from the Safari menu, note the error number, and describe what you did before you saw this message'. Also it seems to navigate a bit better if I don't log in and use the site as a guest. Could it be something with my account? I've had great difficulties posting this query, also when changing my settings. It's like the address bar doesn't colour over past the http part when I click. No problems with other sites - I have phoned Apple and they can navigate round it OK. I've tried clearing the cache and cookies which improves it slightly but only for a short time. It has taken me days to submit this and I'm finally doing it from a Windows PC with Internet Explorer. Maybe I need to delete my account and start a new one? Please can anyone help?

    This site is frequently slow, sometimes incredibly so. I can only hope that sometime soon, Apple will finish their tinkering (actually, I don't know what was wrong with the previous iteration, it seemed fine to me), restore levels and mark the page construction "solved"!
    Miriam
    FYI, there is a Discussions page devoted to Discussions Feedback

  • Aperture speed? I C old posts, R there new ones for 3.2.2??

    I am thinking about picking up Aperture, but I see all sorts of posts that say
    it bogs down with very large libraries of images.
    I would like to know if there really is a significant difference running Aperture on Lion & SnowLeopard.
    Are there setting to turn off -- that I would WANT to turn off that help with speed?
    Is the new 3.2.2 an improvement in speed?
    Is there a threshold library size that is affected?
    I found an old archived list of 32 things you can do, which was useful, but the post was several years old and
    suggests all sorts of options which really are pretty extreme & do not make any sense for most users.
    Archiving raw as jpeg - sorry, that seems silly.
         Why would I archive my images in a downsized format?
    Turn off firewall - again, a silly option for most people.
    Well, that was an old post.
    Am I overlooking a FAC about this? My searches did not corroborate the premise that this is still an issue.

    Sorry, limited Web access so short answers.
    CroMagnum wrote:
    Hello,
    Thanks, for the reply.
    I guess then I need to know the minimum system requirements of the app.
    I want a decent tool to catalog & tag, the image editing is secondary, but of course its presumably faster than Photoshopping & ostensibly not destructive, or leaving multiple copies of similar files all over the place, as I do now. Adobe Bridge doesn't cut it for long as a stand-in.
    I don't know about number of images at the moment - a lot.
    Old legacy images are jpeg. In recent years its be both Raw & jpeg copies simultaneously.
    3GB ram 4 yr old iMac 2GHz. Its long in the tooth. Hard drive space is are external USB 2 or
    possibly firewire, but right now my predominant exterrnal drives are USB.
    How is Aperture for removables? (DVD storage).
    For an application comparative, the system requirements are what they are.
    I'm not buying an app AND a new machine in the short term.
    Is there a big speed difference between disk space on the main drive & a USB external?
    3 GB is too little.  Aperture + OS eats 4 GB min.  More is you want to multitask.
    USB 2.0 throughput acceptable for Referenced Masters only, and even then below recommended.  Firewire 800 works well.  For a Library, FW 400 at a minimum -- but also below recommended.
    DVDs a waste of time and money today.
    Number of images is not a concern for most users.  Aperture does a fabulous job with resource allocation after you give it enough.  I have tested Aperture 3 up to 400,000 Images over FW 400.  It works.  (Loading "Photos" view takes half a minute -- that should be expected.  For access to Projects and other small subsets, no problems.  I don't know how many Images would cripple Aperture.  If you don't have more than half a million, I wouldn't worry about number of Images.
    While you get started, turn of Faces and Sharing Previews.  After your Library is wholly processed and stable, these can be enabled.

  • Navigateing through controls

    Hi Everybody,
    I want to use the RETURN Key to navigate through my controls instead of the TAB key. How do I do that.
    Thanks in advance

    This is a duplicate post.
    I posted a response to the other one:
    "navigating through controls using RETURN Key"
    - Steev.

  • Lightroom 5.3 problems, downloading through Creative Cloud.

    Lightroom 5.3 problems, downloading through Creative Cloud.  Error 1624
    ERROR: Install MSI payload failed with error: 1624 - Error applying transforms. Verify that the specified transform paths are valid.
    MSI Error message:
    ERROR: Third party payload installer Adobe_Lightroom_x64.msi failed with exit code: 1624

    this is from emma at https://blogs.adobe.com/lightroomjournal/2013/12/lightroom-5-3-now-available.html
    I had this same error and managed to get around it by running the .msi file that the CC app downloaded to a temp folder on my own. Steps were:
    1. Find the location Adobe_Lightroom_X64.msi (in a a temp folder)
    2. Run it and install (serial number was already pre-filled out)
    3. Restart the CC desktop app
    It then appeared as installed under ‘Your Apps’ and works as usual.

  • I get error (-15006) when I try to connect air play true Apple TV. No problem with my old PC.mit with my Mac i get that error.

    Hi, I get error (-15006) when I try to connect air play true Apple TV. No problem with my old PC. with my Mac i get that error.
    It is true the Ithunes I get the problem.
    What can I do to fix this.
    I also have problem some times to conect to my Ipad to Apple tv. Some time I have to restart my Ipad to get conection to Apple t. whay is that ?
    can some one help me ?

    Hi whitwick,
    If you are having issues with your network connection when attempting to use AirPlay, you may want to use the steps in this article to troubleshoot -
    iTunes: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS5209
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • How can I get my old posts back

    I recently upgraded to Leopard and ILIFE08. I am in a frenzy bc the iweb does not have any of my old posts. I even tried to publish a new BLOG entry and now my entire webpage is back to the main template erasing all of my original info. Before the upgrade, I save all of the back end files from iWeb. I tried to drag it into the new iWeb thinking it would then add the info in, but now. Any help on getting my original blog and webpage back? Thanks

    Hi miafrommidlothian,
    I apologize, I'm a bit unclear on the exact nature of your question. If you are talking about an iBooks Author account (used for publishing books to the iBooks Store), you may find the information in the following pages helpful, including the phone number/email address for contacting iBooks account support directly if necessary:
    Apple - iTunes - Working with iTunes - Sell Your Content - Sell Your Books - Authors & Book Publishers: FAQs
    Apple - iTunes - Working with iTunes - Sell Your Content - Sell Your Books
    Regards,
    - Brenden

Maybe you are looking for

  • Problem with copy control from sales document to billing document

    Hi, I have a copy control from a sales document to a billing document, which is copying everything from the sales document, except the conditoin values. Any ideas on why will a copy routine won't copy the condition values from a source document? I do

  • Value mapping : target value need to be blank

    Hi, I have a requirement like below (just example). Source                        Target A                                 Z B                                 Y C                                 X N                                 BLANK or "" When I

  • Why can i not print from my ipad i do not have a wireless network

    How do i get my ipad 2 to print to Hp 6500A without wireless network

  • How to display html in SBO forms

    Dear Developers, I would like to know how can I display html content in a SBO form. Has anyone any experience in this theme? Html viewer in active x or else? I have a UDF with <html> code. Is it possible to showing content in B1 forms? Thank you in a

  • Oracle-xi - bw integration. message size limitation

    Hello, Iu2019ve got following scenario(sap xi 3.0) 1.     Get Data from Oracle DB(jdbc adapter) 2.     Put it to BW(xi adapter (http protocol) + bw extractor) Every think working well, but when the oracle send more then 400 rows,  BW(in rsa7) doesn`t