JQuery Cycle issue with IE9

I'm in the process of reworking an old website and wanting to insert a JQuery Cycle slide show from the CS6 DW widget browser.  The slide show looks beautiful on all browsers except, you guessed it, Internet Explorer.
Here's the deal, when loaded on IE9 the images overlap the text in the adjacent div.  I have the same issue on another site whereby the images drop over the div located below.  Again, this only happens on IE9, all other browsers work beautifully.  Yes, adding padding to the widget div is a temp fix, but then creates a new issue by adding too much blank space on all the agreeable browsers.
Suggestions?
Many thanks.
Here's the site: http://www.thethinman1934.com/thethinman.html

Chris Wessling wrote:
Yes, adding padding to the widget div is a temp fix, but then creates a new issue by adding too much blank space on all the agreeable browsers.
If that temp fix helps, then you can apply it to IE9 only via an IE Conditional Comment.

Similar Messages

  • Browser Compatibility Issue with IE9 and IE 10

    Hi Everybody,
    I have a page which contains pageviewer Webpart, which redirects to the other page the problem is in IE 8 this works good but comes to IE9 and IE 10 the page is not displaying on the page but link is working good. Can any one please give me suggestions on
    this?
    Thanks and Regards,
    kadaruSastry

    Hi kadarusastry,
    This issue is about the browser compatibility.
    Please add your SharePoint site into compatibility view in IE 9 or IE 10.
    Or, use IE 8 mode in browser mode for IE 9 or IE 10.
    About how to add site into compatibility view, you can refer to the link:
    http://support.microsoft.com/kb/2536204
    Note: the settings for IE 9 and IE 10 are same.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Issues with certificates with multiple CNs

    Hi,
    I manage my own internal Windows Certificate Authority which I use to sign certificate requests for internal web servers. I have an odd issue.
    If I create a CSR from a server that has multiple CNs (e.g. 10.1.1.25, *.mydomain.local, www.mydomain.local) FF 9 and FF 10 both complain about the certificate "The connection is not trusted". It would appear FF is only using one of the CNs to validate the site in question. i.e. if I visit the site via 10.1.1.25 I get the warning. If I use www.mydomain.local I do not receive the warning.
    Further, I do not have this issue with IE9. Is there something broken with FF and sites that use multiple CNs in their SSL cert? Or perhaps am I doing something wrong when generating the CSR (not that I see how, as it's a standard template I use, and it works flawlessly with IE9 browsers)?

    # curl -v https://areaclienti187.telecomitalia.it
    * Rebuilt URL to: https://areaclienti187.telecomitalia.it/
    * Hostname was NOT found in DNS cache
    * Trying 62.77.57.164...
    * Connected to areaclienti187.telecomitalia.it (62.77.57.164) port 443 (#0)
    * successfully set certificate verify locations:
    * CAfile: /etc/ssl/certs/ca-certificates.crt
    CApath: none
    * SSLv3, TLS handshake, Client hello (1):
    * SSLv3, TLS handshake, Server hello (2):
    * SSLv3, TLS handshake, CERT (11):
    * SSLv3, TLS handshake, Server finished (14):
    * SSLv3, TLS handshake, Client key exchange (16):
    * SSLv3, TLS change cipher, Client hello (1):
    * SSLv3, TLS handshake, Finished (20):
    * SSLv3, TLS change cipher, Client hello (1):
    * SSLv3, TLS handshake, Finished (20):
    * SSL connection using TLSv1.0 / AES128-SHA
    * Server certificate:
    * subject: C=IT; ST=Italy; L=Pomezia; O=Telecomitalia; OU=ADM.AP.PM.WO; CN=areaclienti187.telecomitalia.it; emailAddress=[email protected]
    * start date: 2013-10-08 10:06:37 GMT
    * expire date: 2014-10-08 10:06:37 GMT
    * common name: areaclienti187.telecomitalia.it (matched)
    * issuer: C=IT; O=I.T. Telecom; OU=Servizi di certificazione; CN=I.T. Telecom Global CA
    * SSL certificate verify ok.
    With curl no problem at all.
    Last edited by saronno (2014-08-15 19:10:09)

  • Converting jQuery Cycle slideshow to jQuery Cycle2

    I am trying to convert an existing jQuery Cycle slideshow with page anchors to jQuery Cycle2. I keep getting caught up on converting the Javascript that currently resides in the HTML page:
    <script type="text/javascript">
    $(document).ready(function(){
    $('#slideshow').cycle({
    fx:     'turnDown',
    speed:  'fast',
    timeout: 0,
    pager:  '#nav',
    pagerAnchorBuilder: function(idx, slide) {
    // return selector string for existing anchor
               return '#nav li:eq(' + idx + ') a';
    </script>
    Any ideas?

    Cycle2 is completely different from the older Cycle plugin. C2 uses the latest jQuery core library and HTML5 data attributes to invoke the plugin's features.  The function codes you have there won't work.  I would recommend starting over with a plain, blank HTML5 document.  The code below contains Cycle2 Carousel with Fancybox.
    <!doctype html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <title>HTML5, Cycle2 Carousel with Fancybox Viewer</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--FANCYBOX plugin-->
    <link href="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.css" rel="stylesheet" media="screen">
    <script src="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.pack.js"></script>
    <!--Cycle2 Plugin-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
    <!--Cycle2 Carousel-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.carousel.min.js"></script>
    <style>
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
        box-sizing: border-box;
    aside {
        float: left;
        width: 25%;
        border-right: 1px solid #666;
        padding: 2%;
    section {
        float: left;
        width: 75%;
        padding: 2%;
    .slideshow img { border: 4px solid #999; }
    /* slideshow pager */
    .cycle-pager {
        text-align: center;
        width: 100%;
        z-index: 500;
        position: relative;
        top: 0;
    .cycle-pager span {
        font-family: arial;
        font-size: 75px;
        width: 22px;
        height: 22px;
        display: inline-block;
        color: #ddd;
        cursor: pointer;
    .cycle-pager span.cycle-pager-active { color: #09C; }
    .cycle-pager > * { cursor: pointer; }
    </style>
    </head>
    <body>
    <header> <h1><a href="http://www.malsup.com/jquery/cycle2/">jQuery Cycle 2</a> Responsive Carousel Slider with <a href="http://fancyapps.com/fancybox/">Fancybox2</a> Viewer</h1>
    </header>
    <aside>
    <h2>Left Aside</h2>
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    Mauris vitae libero lacus, vel hendrerit nisi! Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus. Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.
    Aenean tristique enim ut ante dignissim.</p>
    </aside>
    <section>
    <h2>Section</h2>
    <!--begin Cycle2 slideshow-->
    <div class="slideshow"
    data-cycle-pause-on-hover="true"
    data-cycle-fx="carousel"
    data-cycle-timeout="2000"
    data-cycle-pager="#pager"
    data-cycle-carousel-visible="5"
    data-cycle-carousel-fluid="true"
    data-cycle-slides="> a"
    >
    <!--insert thumbnails and links to full size images below-->
    <a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/600x400.jpg" title="optional captions"><img src="http://placehold.it/160x107.jpg" alt="Thumbnail 1" /></a>
    <a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/600x400.jpg" title="optional captions"><img src="http://placehold.it/160x107.jpg" alt="Thumbnail 2" /></a>
    <a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/600x400.jpg" title="optional captions"><img src="http://placehold.it/160x107.jpg" alt="Thumbnail 3" /></a>
    <a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/600x400.jpg" title="optional captions"><img src="http://placehold.it/160x107.jpg" alt="Thumbnail 4" /></a>
    <a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/600x400.jpg" title="optional captions"><img src="http://placehold.it/160x107.jpg" alt="Thumbnail 5" /></a>
    <a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/600x400.jpg" title="optional captions"><img src="http://placehold.it/160x107.jpg" alt="Thumbnail 6" /></a>
    <a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/600x400.jpg" title="optional captions"><img src="http://placehold.it/160x107.jpg" alt="Thumbnail 7" /></a>
    <!--end slideshow-->
    </div>
    <!--begin Cycle2 pager-->
    <div class="cycle-pager" id="pager">
    <!--end pager-->
    </div>
    </section>
    <!--Cycle2 function code-->
    <script>$.fn.cycle.defaults.autoSelector = '.slideshow';</script>
    <!--FancyBox function code-->
    <script>
            $(document).ready(function() {
                $('.fancybox').fancybox();
        </script>
    </body>
    </html>
    Nancy O.

  • Strange CSS behavior with IE9 and JDeveloper 11.1.1.6.0?

    I am working with JDeveloper 11.1.1.6.0 and ADF. There is a single skinning CSS file that is just over 7800 lines. Everything is fine in Chrome, Firefox, IE7, IE8, and IE10. However, when running the application in IE9 some styles are not getting applied.
    I noticed that the elements that were not getting styled were further down in the CSS file (around line 7500). I cut and pasted the styles at the beginning of the CSS file, refreshed, and lo and behold the elements that were not styled before were now getting their styles (I could inspect the page and see that the CSS wasn't getting loaded at all - not an issue with the CSS selectors not matching the HTML being rendered).
    First I thought it may be a file size thing, but after reading this post, I'm not so sure. Plus that wouldn't explain why I only have the problem in IE9.
    Has anyone run into any issues with IE9? It seems very strange to me that this would be a browser problem. My first thought was that there was some error or invalid CSS being used, but I started with a line of CSS and moved it further down in the order until it stopped working (I changed the background on the header to pink). There was one line of CSS where the background would be pink when applied on the line directly before, but when applying directly after the background was gray again. I scoured the CSS but couldn't see anything wrong with it (see below). I removed the CSS in question and the header background showed pink again. Moved it down a few lines and it stopped getting picked up by IE9. Continued this process but wasn't able to find a solution.
    Here is the CSS in question in case something happens to stand out to someone else (I thought maybe "domready" was a reserved word or something):
    table.plan-slab td.cereal-box af|panelGroupLayout.cereal-box-detail af|panelGroupLayout.plan-cost-domready,
    table.cereal-box td.cereal-box-detail af|panelGroupLayout.cereal-box-detail-wrap af|panelGroupLayout.plan-cost-domready {
        position: absolute;
        left: 5px;
        right: 8px;
        bottom: 5px;

    IE 6-9 do have CSS size limits, may be more pronounced in IE 9.
    IE 10 has the limits raised.
    http://blogs.msdn.com/b/ieinternals/archive/2011/05/14/10164546.aspx
    http://support.microsoft.com/kb/262161

  • Firefox 10 & jquery cycle plugin transparency issues

    We have been using the jquery cycle plugin on many sites and after Firefox 10 was released we are noticing a solid black box appearing over the slides during the transitions.
    What happens:
    transition starts
    image area turns solid black
    next image fades in from black color
    In other browsers (FF9.x and under, IE7+, Chrome, Safari) the transition would be from one slide to the next and not from black to the next slide.
    Does anyone have an explanation for this? Thank in advance.

    You're welcome. We have very few support helpers who are anywhere near as familiar with web development issues and Firefox, as that particular forum over at MozillaZine. This forum has only existed for about 4 years now, where MozillaZine was founded in 1998, just a few months after Mozilla.Org was founded. The original audience was Mozilla developers, both Netscape employees and outsiders. Later on, web developers and end users started using MozillaZine fora for a wide variety of discussions and help for Mozilla products.

  • Issue with Adobe Reader/IE9 after upgrade

    Hi,
    We have an application that displays an interactive PDF (generated using Forms ES2) in an IFrame within the browser window (IE).  There is a button in a different frame that passes a String[] to this PDF using the "postMessage" Javascript method on the PDF object.  The setup was working fine all these years in Win XP + IE8 + Adobe Reader 9. But when we upgraded to Win  7 + IE9 + Adobe Reader X, now on click of the button, when the pdf.postMessage is getting executed, IE9 crashes with error "Internet Explorer has Stopped" working. Has any one else encoutered this kind of problem before?
    I tried doing some research. The issue seems to be with IE9, but I couldnt figure out why this is happening. Any ideas will be appreciated.
    Thanks.

    Can you open Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].

  • JQuery Cycle Plugin possible with sliced image site from Photoshop? CS5

    Hi all, I'm in a real pickle here.
    I'm an architecture & interior design graduate.
    I know not a lot about web design.
    I have managed to design my website, slice it in Photoshop and link it in Dreamweaver.
    I am trying to use JQuery Cycle for my slideshow here:
    http://www.paul-munro.com/tcfs/tcfs.html
    I have watched this tutorail several times, and find it very complex and hard to understand:
    http://www.youtube.com/watch?v=F6AWEwiQa6E
    All I am asking is: Is this possible with what I have? As in a site just sliced and 'Save for Web & Devices' from Photoshop?
    Any help much appreciated, I really need this done.
    Thanks,
    Paul.

    Hi all, I'm in a real pickle here.
    I'm an architecture & interior design graduate.
    I know not a lot about web design.
    I have managed to design my website, slice it in Photoshop and link it in Dreamweaver.
    I am trying to use JQuery Cycle for my slideshow here:
    http://www.paul-munro.com/tcfs/tcfs.html
    I have watched this tutorail several times, and find it very complex and hard to understand:
    http://www.youtube.com/watch?v=F6AWEwiQa6E
    All I am asking is: Is this possible with what I have? As in a site just sliced and 'Save for Web & Devices' from Photoshop?
    Any help much appreciated, I really need this done.
    Thanks,
    Paul.

  • Replace flash with JQuery  Cycle plugin on my website

    Hello,
    I am hoping someone can help me with a little programming on my current website www.ci.guilford.ct.us
    I am not a website developer so I am having some difficulty getting the down. I would like to replace my current flash content that scrolls through some photos with the JQuery Cycle plugin. With a lot of mobile devices not sporting flash I am leaning more toward this. Any help would be greatly appreciated and if there is anything else needed please let me know.
    Thanks,
    Tony

    Well I got nailed by Adobe for my last post.
    Here's how all of these jQuery effects plugins work.
    They need to be in a div with a particular id or class. And you tell them, "put the thing there."
    I still use a really old jQuery plugin that has been more than superseeded by Cycle. After I figured it out (and that took about two weeks) these plugins became really easy to understand.
    So, let's look at Nancy's example:
    She establishes a class in the style section (this might also be in your style sheet. It's called cycle-slideshow. It's in her document above with a period before it (which is how you define a class in CSS).
    Now, in the HTML below, she creates the div:
    <div class="cycle-slideshow" ...
    Then she does a couple of commands to make cycle work:
    ... data-cycle-pause-on-hover="true"
         data-cycle-speed="2000">
    Normally, I make these "pause-on-hover things "false" because, like in your own website, you simply want the images to show, one after another.
    Then she does a bunch of images:
    <img src= ...
    Now, of course you have to call two things in your page to get everything to work. First, you need to call jQuery. I generally host my own copy of jQuery for each website, but it is perfectly fine to call one remotelly:
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    And you have to call the jQuery plugin, called Cycle:
    <!--Cycle2 Plugin Script-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
    If you are still having trouble, please respond to my message from yesterday by phone.

  • Issue with magsafe/charging (blinks green, amber, off)

    Having a quirky issue with my mid-2009 Macbook Pro.
    A month or so ago, I began having an issue with my macbook charging. When the computer is up and running and I plug in the magsafe it will say "Calculating..." and then say "Not Charging" and then switch to battery use. It constantly does this as long as the magsafe is connected. The lights on the magsafe will constantly cycle from green to amber to no light.
    At first, it would do it a few times then it would start charging. Now it constantly does this without ever stopping. I was editing video the other day for a while and it never stopped the cycle.
    Thinking it was the battery, I took it into the Apple Store last week and got a new battery because it had been saying "Service battery" for a while and the battery would only last about 20 minutes on a charge. So I just thought the battery finally refused to charge.
    But the problem still exists.
    The magsafe is new (only 3 months old) and here's the quirky thing: the computer will charge if it's asleep (lid closed) or shut down completely. No blinking lights at all. It will charge as long as it's asleep or shut down. So I don't think it's the charger. But as soon as you hit the power button to starting booting up, it will blink.
    I have reset the SMC a couple times actually, but no change.
    Is there something software/firmware related that I haven't tried? Any insight or suggestions would be greatly appreciated before I take it back to the Apple Store (which is about an hour away).
    Thanks!

    Try resetting the system management controller
    http://support.apple.com/kb/HT3964?viewlocale=en_US
    If that did nothing for you,  try resetting the NVRAM
    https://support.apple.com/kb/HT1379

  • HFM 11.1.2.3 Configuration - Issue with Consolidation Administration

    Hi,
    This is regarding a new/fresh installation EPM 11.1.2.3 and have an issue with configuration on HFM; the deployment is distributed as below
    1) Server 1 : Foundation,WebLogic Admin(/OHS) - Workspace/Shared Services/Planning/Calc Manager/EAS/APS
    2) Server 2: Essbase
    3) Server 3 : EPMA/HSF/HFM(FDMee/DRM-Yet, to be installed and configured) - Hadnt used these products and this is totally new to me.
    We have issues with HFM - and while opening the Consolidation Administration.
    We get an error as below, in workspace
    An unexpected error has occured.Check server log or contact your system administrator for more information.
    The web app logs suggested below errors- This is only part of the error log
    E:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\HFMWeb0\logs\oracle-adf.log
    Part of log
    oracle.adf.model.adapter.DataControlFactoryImpl] [SRC_METHOD: createSession] Exception: [[
    oracle.adf.model.adapter.AdapterException: DCA-29000: Unexpected exception caught: oracle.epm.fm.common.exception.HFMException, msg=There is no registered cluster or server
    I hadnt configured 'Configure Cluster' during the HFM configuration; this was a mistake being new to HFM.
    On a further readup online on OTN etc, found that an application cluster is a must have on HFM, even if it is for one server.
    Have one confusion now for fixing this,
    Do a configuration only for 'Configure Cluster', and restart services to fix this issue
    or
    Do a configuration for 'Configure Cluster'and then again re-Configure HFM components
    Configure > Financial Management — Configure Cluster
    Re-Configure > Financial Management — Configure Application Server
    Re-Configure >  Financial Management — Configure Web Server
    Re-Configure >  Financial Management — Configure Web Application
    Re-Configure >  Financial Management — Enable Smart View Provider
    Re-Configure >  Financial Management — Enable Life Cycle Management Provider
    Re-Configure >  Financial Management — Enable Web Services

    Got help from Oracle Support, and this problem is now resolved. The HFM app server was configured fine, earlier.
    Had to follow below steps on the EPM configurator.
    Stop Services
    HFM - Configure Cluster
    HFM - Configure Web Server
    HFM - Deploy to App Server
    Foundation - Configure Web Server.
    Start Services
    Refresh workspace

  • Issues with Home Hub 3 Wireless. And lousy teleph...

    I don't know if this forum is moderated or followed by BT support staff, but I sure hope so.
    After coming from Virgn Media for my BB to BT infinity (Awesome speeds btw!) I'm pleased with the connection and, up until today, the support. I now have issues with my Wireless devices on the HH3.
    This is the outline of my setup:
    I have the Open reach modem connected to the home hub.  I then have the 1Gbps ethernet port from the home hub that is connected to a 1Gbps 5 Port switch that connects my wired network together (Consisting of my Xbox, Networked Printer and my Desktop PC).  Wireless serves 2 Laptops, an Xperia U phone, and a G5 Ipod touch (not all mine, I have a flat mate).
    My issue is that when more than one device connects via WiFi, the WiFi network has serious issues: The connections don't drop per se, but websites are not delivered, data transfer is intermittant at best - i.e. the WiFi network simply does not work.  When there is only one device, there is no issue.
    Now, being a techie (I don't mean to title drop, but I think it's important that technical support know that I know my stuff) I'm an electrical engineer (The graduate type) and I know my IT - so I have my own idea of what's wrong with this.
    Now, as my order was not completed until yesterday, techincal support couldn't/wouldn't help until today.  Yesterday, however, I spent hours trying to solve my issues and got as far semi-solving the problem.  I managed to get everything working nicely together when Wireless N is disabled and only a/b/g is enabled.  Great, but a main selling point is the Wireless N and I want to use this.
    So, today I phoned technical support.  I should also note here, and I made this perfectly clear with support, that when the WiFi starts to missbehave, the wired network still works perfectly and I have no issues with internet connectivity with any wired devices.  So, clearly this is not a line fault - it's on this side, aka, the router WiFi side where the problem resides.  Support decided to do a line test anyway - and of course it got the all clear.  He then asked me to reset the router (Yey, again after I had done it plenty of times before, only this time I had customised the SSID and the LAN IP addresses and now they need done again).  He then went on to state that I should receive an e-mail with instructions on what to do next, and if they are still issues to reply to a text message that will be sent.
    Duly, an email arrived.  It began with "Sorry you had to call us today about your wireless disconnecting. We’re pleased we could help you get it working again." and continued on with with this theme.  No, my problem is not resolved!  I phoned back, this time advising me to change channels, and check individual devices to see if they're any conflicts - I did this pretty quickly and disabled and re-enabled WiFi on my Laptop, phone, ipod and still to no avail.
    I have now been told that I will get a phone call between 3 and 3:30pm to see if the WiFi will settle down. huh!
    I don't mean to be such a pain and sound like such a git, but this is not an issue that I believe the technical support (via the call centre anyway) will be able to solve.  This is an issue with the HH3, mine at least, not being able to handle mutiple WiFi devices conntected simualtaneously - all but one on N, the other on G.  Now, I'm of the understanding that this shouldn't be a problem.  I'm sick of telephone support going through their script without listening to the whole issue either or beleiving that I spent a good 2 hours yesterday getting to the bottom of this.  I don't need line tests, I don't need resetting the router, I don't need changing channels - I've did all this!
    So it looks as though I'm stuck on HH3 in 'G' for now until we solve this issue.
    Further information: I'm using the type A HH3; again wired devices are not impacted in any way from this issue; I have tried multiple different channels; YES! I've reset the router and power cycled it; And this issue happens wether my WiFi devices are 1 meter away from the HH3 or 15 meters away.
    Could this be a bad HH3 or frimware issue? Can someone suggest something or highlight something that I've perhaps overlooked or missed?

    This is only a customer to custome help forum.
    This link may help, although some of the things you may have already tried.
    Wireless can prove quite unreliable, and an separate wireless access point can help.
    Wireless connection problems
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • WiFi issues with Curve 8530

    Hi,
    I am having major WiFi issues with my Curve 8530. Everytime I connect to my wireless router, it takes a long time to connect to BIS, and then if I try to use basically any data at all, my router drops my Curve 8530. Sometimes it stays connected, but I cannot use App World at all, and email, and web browsing is all over the place in terms of speed, sometimes it is fast, while sometimes it is slow, and most of the time it stalls while loading a page. How do I configure my router for use with BIS and have it not drop my Curve 8530 everytime I use data over WiFi? BIS works perfectly over my cellular carriers network, so BIS is activated on my device. I have tried giving my BB a static IP, but that did not solve anything. My router is a Netgear WNR2000. Also, I have the latest device software installed on my BB, and all of my apps are up-to-date.

    Hi,
    Have you had any luck and resolving your problem?
    We have a similar problem but it's with iOS devices where only one can connect at a time. We have about 10 that need to connect. All other laptops and tablets connect fine.
    Power cycling the AX411 fixes it temporarly.
    Darren

  • Issues with data usage Samsung S5

    Over the past few months I have been paying outrageous bills due to one of my lines eating all my data when there is no one even touching the phone. I have 3 phones and a tablet on my plan and I am paying 288.00 a month and last month they charged me 15.00 for overage usages because it went over on the last day of the billing cycle. Once again that one line ate up all the data even though it's connected to our wifi or just sitting dormant. I am getting sick of paying these outrageous prices and am about to go somewhere else. I was tricked into the 10.00 a month tablet fee when I signed two phones up under the verizon edge plan. the sales clerk did not tell me I could not cancel the 10.00 a month fee because it would be under a year contract nor did I sign anything saying that, but when I went back in to change the 3rd line over to the Edge plan they told me it would be a $300 or so disconnect charge. So of course I am still paying 10.00 a month for no reason because I have wifi in my home and I only use the tablet in my home. so i need help with trying to figure out the data issues with just one of my lines. I do not have bluetooth on or location. I have went to the play store and uninstalled everything I could. I constantly close out of my applications and clear history etc.,,

    So you thought they would just give you a free tablet at $10 a month and it didn't need to be in a contract like phones?  I took the free tablet too but common sense told me it was locked into a contract, I didn't even ask as I just knew that would be the case but I didn't care.  Mary

  • Issue with sales order stock that is referencing a non-existing sales order

    We have an issue with sale order stock.
    Due to user error we have ended up with a negative quant of sales order stock in a bin. Further the error was due to mis-keying of sales order number. Hence this negative quant is referencing a sales order that does not exist.
    We need to get rid of this quant.
    I thought of cycling this quant off as a solution. And hence replicated the scenario in the test system. I was able to create a TO to cycle it off but cannot clear the differences from 999 . The error I get while trying to do this is "SD document not in database or has been archived" . This error is true since the sales order actually does not exist. So cycling it off did not work.
    Can anyone suggest how we can get rid of this negative quant of sales order stock ?
    Thanks

    Hi,
    You said that your user mistyped the SO number and it resulted in a -quant. In which transaction was it possible? If I give a non existing no. SAP doesn't allow me to book.
    If I were you I would check both in WM & IM what the user had done...step-by-step...
    Negative quant comes to existance in interim storage type if we book e.g. a GI. It should have started in IM...how was your user be able to do that??? If it was possible cannot you reverse the IM booking?
    (...if all else fails...cannot you create a SO document with external number assignment with the same number?...)
    BR
    Csaba
    Edited by: Csaba Szommer on Jun 24, 2008 8:31 PM

Maybe you are looking for

  • Exchange 2013 SP1 Readiness Checks: No Exchange 2007 server detected

    Hi there, We are planning to upgrade our current Exchange 2007 server with the new Exchange 2013 SP1. I have been following Exchange Server Deployment Assistant to assist me with this task. Only schema update (setup /PrepareSchema) had been done so f

  • Deletion of G/L Account

    Hi When ever the transaction data exists in the G/L Account,it will not allow to delete the G/L Account in by using OBR2 and it will give the message reset transaction data.when i read the OBR1,it is saying the it will delete all the transaction data

  • "Trust this computer" message in iPhone 5 each time it's plugged, not recognized by iTunes

    iPhone 5 using iOS7 is not recognized by iTunes. It keeps popping up "Trust this computer" message each time I plug it in to my laptop (Windows 8). It shows in my devices in my computer. Both my iPad with Retina display and iPod touch 5th generation

  • IChat, Airport and Motorola surfboard modem

    Hi all, I cannot get iChat to work with a particular buddy after moving to another city with another Cable ISP. I use an airport extreme basestation and have a motorola surfboard modem SB5120. The airport extreme is configured to connect to the inter

  • BI 7 : filtered columns

    Hello Experts, I am using query designer BI 7 version, Created a query and have used 2 filters, My question on exection in web, the filltered values come in the corner and no longer the columns are seen in the structure.. Is there a setting to retain