Quicken Connectivity Troubleshooting

 Quicken Connectivity Troubleshooting

The three main problems that can prevent Quicken from accessing the Internet are:
  1. Your Web browser cannot establish a secure connection
  2. Your computer has been infected with a computer virus
  3. Your computer has security and privacy programs, such as firewalls and pop-up blockers, that are not configured correctly

Checking for Computer Viruses

Many viruses can interfere with your online account services. If you have difficulty downloading transactions or making payments online from Quicken, try updating your anti-virus program and completing a full system scan. For more information, refer to the manufacture's instructions for your anti-virus software.
If you do not have an anti-virus program installed on your computer, Intuit strongly recommends that you install one as soon as possible, and then complete a full system scan to locate any viruses that the anti-virus software needs to remove from your system.

Configuring security and privacy programs

  1. Adware and spyware can interfere with online account services
    Information about adware and spyware protection (see below)
  2. Internet Explorer privacy and security settings
    Many financial institutions use cookies during online banking sessions. Changing your privacy settings to handle cookies differently, or changing your security settings to block cookies, might be the reason you have trouble with online account services. Try opening Internet Explorer and restoring the default settings recommended by Microsoft.
    Instructions for restoring Internet Explorer privacy settings (see below)
  3. Pop-up blocker
    Pop-up blockers can interfere with online account services in Quicken. Several error messages are possible, but two of the most common ones are "User Canceled Session" or "Action Canceled." If a pop-up blocker is installed on your system, try turning it off, and then try downloading transactions again. If you can download transactions, Intuit recommends that you configure your pop-up blocker to allow pop-up windows on your financial institution's Web site. For more information, refer to the manufacturer's instructions for the pop-up blocker software.
  4. Firewalls
         Firewalls enable you to control which of the programs on your computer can access the Internet            and what content you can view online. Firewalls are essential security tools but, if they are not                configured correctly, they can prevent Quicken from accessing the Internet. For more information       on Firewalls
OOPS Error


Adware and spyware protection
  1. Adware programs track your Internet usage and provide pop-up ads based on the things you look at on the Internet. Adware is only installed on your system with your consent.
     
  2. Spyware programs also track your Internet usage, but they do so without your consent. Spyware might attempt to capture your personal information and send it to a third party without your knowledge or consent. If you want to remove Spyware and Adware programs from your system, there are many third-party programs that can help you identify and remove them.
     
Restoring Internet Explorer default privacy settings
  1. Start Internet Explorer.
  2. Select the Tools menu and select Internet Options.
  3. On the Security tab, click the Internet icon at the top.
  4. Click Default Level. The default setting is Medium. If Medium is already selected, the Default Level button is unavailable.
  5. Click OK to apply the changes and close the window.
If you do not want to restore the default settings, you can contact your financial institution about the minimum security and privacy settings they require for online account services with Quicken, and then manually change the settings to meet their requirements. Keep in mind that different financial institutions have different requirements for security and privacy settings.
Privacy or cookie management programs can override Internet Explorer settings. If you use such a program and you need assistance with it, refer to the manufacturer's instructions for the program you are using.
For additional troubleshooting information, see
Note for IE 10 users: IE 10 selects TLS 1.2 by default in the Advanced tab. Resetting IE to defaults does not clear this selection, and it must be manually unchecked by the user. Clearing this selection has been proven to resolve the CC-899 error messaging. Caution: If you need to connect to specific sites that require TLS 1.2, you should take that into consideration before clearing this selection. If you are unsure if you need to connect using TLS 1.2, you can choose to disable when updating Quicken, then re-enable when prompted to do so by the website you're connecting to.
Share on Google Plus

About Quicken support Team

0 comments:

Post a Comment

// JavaScript Document (function($) { $.fn.lofJSidernews = function( settings ) { return this.each(function() { // get instance of the lofSiderNew. new $.lofSidernews( this, settings ); }); } $.lofSidernews = function( obj, settings ){ this.settings = { direction : '', mainItemSelector : 'li', navInnerSelector : 'ul', navSelector : 'li' , navigatorEvent : 'click', wapperSelector: '.slider-main-wapper', interval : 4000, auto : true, // whether to automatic play the slideshow maxItemDisplay : 5, startItem : 0, navPosition : 'vertical', navigatorHeight : 75, navigatorWidth : 220, duration : 600, navItemsSelector : '.slider-navigator li', navOuterSelector : '.slider-navigator-outer' , isPreloaded : true, easing : 'easeOutBounce' } $.extend( this.settings, settings ||{} ); this.nextNo = null; this.previousNo = null; this.maxWidth = this.settings.mainWidth || 600; this.wrapper = $( obj ).find( this.settings.wapperSelector ); this.slides = this.wrapper.find( this.settings.mainItemSelector ); if( !this.wrapper.length || !this.slides.length ) return ; // set width of wapper if( this.settings.maxItemDisplay > this.slides.length ){ this.settings.maxItemDisplay = this.slides.length; } this.currentNo = isNaN(this.settings.startItem)||this.settings.startItem > this.slides.length?0:this.settings.startItem; this.navigatorOuter = $( obj ).find( this.settings.navOuterSelector ); this.navigatorItems = $( obj ).find( this.settings.navItemsSelector ) ; this.navigatorInner = this.navigatorOuter.find( this.settings.navInnerSelector ); if( this.settings.navPosition == 'horizontal' ){ this.navigatorInner.width( this.slides.length * this.settings.navigatorWidth ); this.navigatorOuter.width( this.settings.maxItemDisplay * this.settings.navigatorWidth ); this.navigatorOuter.height( this.settings.navigatorHeight ); } else { this.navigatorInner.height( this.slides.length * this.settings.navigatorHeight ); this.navigatorOuter.height( this.settings.maxItemDisplay * this.settings.navigatorHeight ); this.navigatorOuter.width( this.settings.navigatorWidth ); } this.navigratorStep = this.__getPositionMode( this.settings.navPosition ); this.directionMode = this.__getDirectionMode(); if( this.settings.direction == 'opacity') { this.wrapper.addClass( 'slider-opacity' ); $(this.slides).css('opacity',0).eq(this.currentNo).css('opacity',1); } else { this.wrapper.css({'left':'-'+this.currentNo*this.maxSize+'px', 'width':( this.maxWidth ) * this.slides.length } ); } if( this.settings.isPreloaded ) { this.preLoadImage( this.onComplete ); } else { this.onComplete(); } } $.lofSidernews.fn = $.lofSidernews.prototype; $.lofSidernews.fn.extend = $.lofSidernews.extend = $.extend; $.lofSidernews.fn.extend({ startUp:function( obj, wrapper ) { seft = this; this.navigatorItems.each( function(index, item ){ $(item).click( function(){ seft.jumping( index, true ); seft.setNavActive( index, item ); } ); $(item).css( {'height': seft.settings.navigatorHeight, 'width': seft.settings.navigatorWidth} ); }) this.registerWheelHandler( this.navigatorOuter, this ); this.setNavActive(this.currentNo ); if( this.settings.buttons && typeof (this.settings.buttons) == "object" ){ this.registerButtonsControl( 'click', this.settings.buttons, this ); } if( this.settings.auto ) this.play( this.settings.interval,'next', true ); return this; }, onComplete:function(){ setTimeout( function(){ $('.preload').fadeOut( 900 ); }, 400 ); this.startUp( ); }, preLoadImage:function( callback ){ var self = this; var images = this.wrapper.find( 'img' ); var count = 0; images.each( function(index,image){ if( !image.complete ){ image.onload =function(){ count++; if( count >= images.length ){ self.onComplete(); } } image.onerror =function(){ count++; if( count >= images.length ){ self.onComplete(); } } }else { count++; if( count >= images.length ){ self.onComplete(); } } } ); }, navivationAnimate:function( currentIndex ) { if (currentIndex <= this.settings.startItem || currentIndex - this.settings.startItem >= this.settings.maxItemDisplay-1) { this.settings.startItem = currentIndex - this.settings.maxItemDisplay+2; if (this.settings.startItem < 0) this.settings.startItem = 0; if (this.settings.startItem >this.slides.length-this.settings.maxItemDisplay) { this.settings.startItem = this.slides.length-this.settings.maxItemDisplay; } } this.navigatorInner.stop().animate( eval('({'+this.navigratorStep[0]+':-'+this.settings.startItem*this.navigratorStep[1]+'})'), {duration:500, easing:'easeInOutQuad'} ); }, setNavActive:function( index, item ){ if( (this.navigatorItems) ){ this.navigatorItems.removeClass( 'active' ); $(this.navigatorItems.get(index)).addClass( 'active' ); this.navivationAnimate( this.currentNo ); } }, __getPositionMode:function( position ){ if( position == 'horizontal' ){ return ['left', this.settings.navigatorWidth]; } return ['top', this.settings.navigatorHeight]; }, __getDirectionMode:function(){ switch( this.settings.direction ){ case 'opacity': this.maxSize=0; return ['opacity','opacity']; default: this.maxSize=this.maxWidth; return ['left','width']; } }, registerWheelHandler:function( element, obj ){ element.bind('mousewheel', function(event, delta ) { var dir = delta > 0 ? 'Up' : 'Down', vel = Math.abs(delta); if( delta > 0 ){ obj.previous( true ); } else { obj.next( true ); } return false; }); }, registerButtonsControl:function( eventHandler, objects, self ){ for( var action in objects ){ switch (action.toString() ){ case 'next': objects[action].click( function() { self.next( true) } ); break; case 'previous': objects[action].click( function() { self.previous( true) } ); break; } } return this; }, onProcessing:function( manual, start, end ){ this.previousNo = this.currentNo + (this.currentNo>0 ? -1 : this.slides.length-1); this.nextNo = this.currentNo + (this.currentNo < this.slides.length-1 ? 1 : 1- this.slides.length); return this; }, finishFx:function( manual ){ if( manual ) this.stop(); if( manual && this.settings.auto ){ this.play( this.settings.interval,'next', true ); } this.setNavActive( this.currentNo ); }, getObjectDirection:function( start, end ){ return eval("({'"+this.directionMode[0]+"':-"+(this.currentNo*start)+"})"); }, fxStart:function( index, obj, currentObj ){ if( this.settings.direction == 'opacity' ) { $(this.slides).stop().animate({opacity:0}, {duration: this.settings.duration, easing:this.settings.easing} ); $(this.slides).eq(index).stop().animate( {opacity:1}, {duration: this.settings.duration, easing:this.settings.easing} ); }else { this.wrapper.stop().animate( obj, {duration: this.settings.duration, easing:this.settings.easing} ); } return this; }, jumping:function( no, manual ){ this.stop(); if( this.currentNo == no ) return; var obj = eval("({'"+this.directionMode[0]+"':-"+(this.maxSize*no)+"})"); this.onProcessing( null, manual, 0, this.maxSize ) .fxStart( no, obj, this ) .finishFx( manual ); this.currentNo = no; }, next:function( manual , item){ this.currentNo += (this.currentNo < this.slides.length-1) ? 1 : (1 - this.slides.length); this.onProcessing( item, manual, 0, this.maxSize ) .fxStart( this.currentNo, this.getObjectDirection(this.maxSize ), this ) .finishFx( manual ); }, previous:function( manual, item ){ this.currentNo += this.currentNo > 0 ? -1 : this.slides.length - 1; this.onProcessing( item, manual ) .fxStart( this.currentNo, this.getObjectDirection(this.maxSize ), this ) .finishFx( manual ); }, play:function( delay, direction, wait ){ this.stop(); if(!wait){ this[direction](false); } var self = this; this.isRun = setTimeout(function() { self[direction](true); }, delay); }, stop:function(){ if (this.isRun == null) return; clearTimeout(this.isRun); this.isRun = null; } }) })(jQuery) //]]>