I Web speed issues

www.mckinneyontheweb.com
Arghhh.
I built this page with websafe fonts and they still do not format correctly for PC's ***?
Next, My page consists of approx 20 pages which I link to with text. How I built the page was to add a text box and type in text and then link that textBOX to "one of my pages". That's what I thought you were supposed to do. After finishing the site, the page takes SOOOO long to load. And on an air card is totally unacceptable. What is the suggested workflow for linking? I was told the page is slow because a lot of "objects" have to download. Should I use 1 big text box and add text then Hyperling the text? Or should I create JPG buttons and hyperling them?
Any help would be greatly appreciated.
Jeff

Hi alscook11. Have you tried settings up the AE100 on another computer to isolate what's causing this? If you think the computer is causing this, there's probably too many saved files that the computer's processor is having a hard time coping. Try storing some of these files to an external hard drive and check if there's any improvement. If it's the AE1000, try resetting/reconfiguring the device. You can also try uninstalling/reinstalling your web browser. By the way, is Windows 7 your computer's opreating system?

Similar Messages

  • Speed Issues

    Greetings and Salutations,
    I'm having speed issues with my Adobe AIR application. From what I've read on the web, AIR is supposed to be fast at drawing graphics. I am writing an application which has multiple screens. On one of the screens I have a tab (SuperNavigator) which has a canvas on it. That canvas has a series of other canvases (built with a repeater) that have graphics in them. I am having speed issues when I have more than 50 of these children canvases. I've tried running it without the graphics (code below is without the graphics) to see how it performs. When I have 954 of these canvases being drawn it takes about 2.5 minutes to draw. This is unacceptable and I'm wondering if this is something I've induced or if AIR was never meant to handle such a large amount of canvases (actually this isn't a large amount, in a real world environment there could be a lot more). I've included relevant clips from the code. There are a couple empty boxes that in the real application will hold graphics.
    The class withing the Tab Navigator is a canvas.
    In the action Script (the setter line takes 2.5 minutes to get past) (it's binding to the repeater that seems to be my problem).
    [Bindable]  private
    private  var _assetList:Array;
    [Bindable]  
    public function get timelineAssetList():Array{ 
         return this._assetList;
    public function set timelineAssetList(ac:Array):void{ 
         this._assetList = ac;
    The MXML code that is being bound to:
     <mx:Canvas id="labelCanvas" left="0" right="0" top="0" height="65" verticalScrollPolicy="off" scroll="scrolling(event)">
          <mx:HBox horizontalGap="1" left="10" right="10" top="10">  
              <mx:Spacer width="2"/>  
                <mx:Canvas width="{getHeaderWidth()}" height="40" borderStyle="solid" borderColor="{StaticVariables.borderColor.getColorUint()}" horizontalCenter="0">
                <PastDataView:ColorBarScale id="scale" bottom="10"/>   
         </mx:Canvas>  
              <mx:Canvas width="20" height="40">  
                   <mx:Spacer width="20" />  
              </mx:Canvas>  
         </mx:HBox>  
    </mx:Canvas>
    <mx:Canvas id="assetCanvas" left="0" right="0" bottom="0" top="65" scroll="scrolling(event)">
         <mx:VBox y="10" right="16" left="10" verticalGap="0">  
              <mx:Repeater id="assetRepeater" dataProvider="{timelineAssetList}">  
                   <mx:HRule width="100%"/>
                   <PastDataView:ColorBarBar  id="barArray" width="100%" height="170" asset="{assetRepeater.currentItem}"/>  
              </mx:Repeater>
         </mx:VBox>  
    </mx:Canvas>
    The ColorBarBar consists of:
    <?xml version="1.0" encoding="utf-8"?><mx:Canvas  xmlns:mx="http://www.adobe.com/2006/mxml" width="400" height="300" xmlns:PastDataView="org.XXXXXX.CenterScreen.PastDataView.*" horizontalScrollPolicy="off" click="clicked()">
         [Bindable] 
         public static var _colorBarHeight:int = StaticVariables.colorBarHeight;
         [Bindable] 
         private var _asset:Object;
         [Bindable] 
         public function set asset(a:Object):void{ 
              this._asset = a;          getBackgroundColor();
         public function get asset():Object{ 
              return _asset;     }    
          private function getBackgroundColor():void { 
              var color:String = asset.color; 
              if (color == null) color = "Black"; 
              if( color.toLowerCase() == "blue" ) {
                   lblAssetTag.setStyle("color", 0x1674cc);               lblAsset.setStyle(
    "color", 0x1674cc);          }
    else if( color.toLowerCase() == "red" ) {
                   lblAssetTag.setStyle("color", 0xe35353);               lblAsset.setStyle(
    "color", 0xe35353);          }
    else if(color.toLowerCase() == "grey" || color.toLowerCase() == "gray") {               lblAssetTag.setStyle(
    "color", 0xe55555);               lblAsset.setStyle(
    "color", 0xe55555);          }
    else { // give it a default color                lblAssetTag.setStyle(
    "color", 0x000000);               lblAsset.setStyle(
    "color", 0x000000);          }
          private function calculateActivityRepeaterHeight():int{ 
              return this.height-50-_colorBarHeight;     }
          public function clicked():void{
              dispatchEvent(new SelectAssetEvent(this._asset, false, false, true));     }
         ]]>     </mx:Script>
           <mx:VBox left="0" top="0" right="0">
               <mx:Spacer height="1"/>
               <mx:HBox>
                    <mx:Spacer width="2"/>               <mx:Label id="lblAssetTag" text="{asset.type}: " fontWeight="bold" fontSize="12" doubleClickEnabled="true" doubleClick="titleClicked()"/>  id="lblAssetTag" text="{asset.type}: " fontWeight="bold" fontSize="12" doubleClickEnabled="true" doubleClick="titleClicked()"/> id="lblAssetTag" text="{asset.type}: " fontWeight="bold" fontSize="12" doubleClickEnabled="true" doubleClick="titleClicked()"/> 
                   <mx:Label id="lblAsset" text="{asset.name}" fontSize="12" doubleClickEnabled="true" doubleClick="titleClicked()"/>
                    <mx:Label id="lblAssetId" text="{'(' + asset.id + ')'}" fontSize="12" visible="{mx.core.Application.application.debugMode}"/>
               </mx:HBox>
              <mx:HBox horizontalGap="1">
                    <mx:Spacer width="2"/>
                    <mx:Spacer width="10" />
                    <mx:VBox  width="100%">                    <mx:VBox>
                        </mx:VBox>   
                        <mx:VBox  id="displays" verticalScrollPolicy="auto" height="{calculateActivityRepeaterHeight()}" horizontalScrollPolicy="off">
                        </mx:VBox>   
                   </mx:VBox>   
              </mx:HBox>
              <mx:Spacer height="2"/>
          </mx:VBox></mx:Canvas>
    I would appreciate any thoughts or feedback you could provide.
    ~martin

    The Canvas is a very heavy object that has lots of overhead.  Even worse is the VBox object that is in there multiple times. 
    What exactally are you trying to accomplish?  Just looking over the code, it seems that the same could be done directly with the Graphics API, at a much faster rate.
    For each of the VBoxes and Canvases you have, the entire size of each child and parent need to be re-evalulated each time you add or change something.  This is a HUGE overhead, and probably why the app is running so slow.  You may need to convert this app to use simpler objects (UIComponent or something lower-level like that) to get any speed.
    Are you using Flex Bulder?  Take a look at the app while the Profiler is running to see what I'm talking about.

  • Safari slow to open as application(not web speed)

    I get the beach ball for about 45 seconds when opening safari, once it's opened web speeds are fine but the initial startup lags and sometimes gives me a frozen screen. What could be the problem? I've reset safari and emptied cache in terminal. thanks people.

    I had problems with my Safari as well, it was about the same issue that you're talking about, where it took a long time to open but actual web surfing wasn't affected.
    After that happened for awhile no window would pop up (I had to go to go to my bookmarks to get anywhere) and there was no address bar on anything in Safari, as it turned out my harddrive was failing. So I would say be safe and back everything up and if it gets worse, go take it in for somebody to see. I hope that isn't what's going on, but if it is, it's better to catch it now rather than later.

  • Add ons disabled. have firefox4. Running extremely slow. Love using firefox but am using chrome right now because of the speed issue.

    When typing it is slow or delayed. When loading web pages it takes forever. I have disabled all add ons. I had no issues with using firefox until I downloaded the new 4 version. I've had to switch to using chrome and I don't like using that but at least I have no speed issues. Please help so I can use firefox again.

    see: [[Firefox is slow - How to make it faster|Firefox is slow - How to make it faster]]

  • Speed Issues Fixed In 9.1.2

    Lost all my thumbnails updating to iPhoto 9.1.2 but rebuilding the thumbnail database solved the problem. Best of all, the speed issues are finally gone in iPhoto 9.1.2. Opening the application is way faster again (2 seconds as opposed to 12 seconds or more). Scrolling is way faster again. Can't believe it took this long for Apple to fix this mess. Nevertheless, iPhoto '11 feels like iPhoto '09 once again. Thanks Apple.

    Lost all my thumbnails updating to iPhoto 9.1.2 but rebuilding the thumbnail database solved the problem. Best of all, the speed issues are finally gone in iPhoto 9.1.2. Opening the application is way faster again (2 seconds as opposed to 12 seconds or more). Scrolling is way faster again. Can't believe it took this long for Apple to fix this mess. Nevertheless, iPhoto '11 feels like iPhoto '09 once again. Thanks Apple.

  • Iteration Speed issue when Indexing 3D array wried to a while-loop

    Brief Description of my Program:
    I am working on the real-time signal generation by using LabView and DAQmx (PCI-6110 card). My vi reads the big data file (typically 8MB txt file containing about 400,000 samples (complex double precision). Then, the signal is pre-processed and I end up with a huge 3D array to feed while-loop (typically 3D array dimension is N x 7 x M where N & M >> 7). Inside the loop, that 3D array is indexed and processed before the results are written to the DAQmx outputs. I have a speed issue when indexing the large 3D array (i.e, 3D array having a large sub-array size). My while-loop could not run fast enough to top-up the DAQmx AO buffer (at the output rate of 96kHz). It could run faster only if I use smaller 3D array (i.e, smaller-sized sub-arrays). I do not quite understand why the size of 3D sub-array affects the rate of looping although I am indexing same sub-array size at each iteration. I really appreciate your comments, advices and helps.
    I include my 3D array format as a picture below.
    Question on LabView:
    How does indexing an 3D array which wires to the while-loop affect the speed of the loop iteration? I found that large dimension of sub-arrays in the 3D array slows down the iteration speed by comparing to indexing the same size of sub-array from smaller-sized sub-arrays of the 3D array to perform signal processing inside the while-loop. Why? Is there any other way of designing LabView Program to improve speed of iteration?
    attachment:

    Thank you all for your prompt replies and your interests. I am sorry about my attachment. But, I have now attached a jpg format image file as you suggested.
    I had read the few papers on large data handling such as "LabVIEW Performance and Memory Management". Thus, I had already tried to avoid making unnecessary copies of data and growing arrays in my while-loop. I am not an expert on LabView, so I am not sure if the issues I have are just LabView fundamental limitations or there are any other ways to improve the iteration speed without reducing the input file size and DAQ output rate.
    As you request, I also attach my top-level vi showing essential sections such as while-loop and its indexing. The attached file is as an image jpg format because the actual vi including Sub-VIs are as big as 3MB in total. I hope my attachment would be useful for anyone who would like to reply my question. If anyone would like to see my whole vi & llb files, I would be interesting to send it to you by an e-mail privately and thus please provide your e-mail address.
    The dimension of my 3D array is N x 7 x M (Page x Row x Column), where N represents number of pages in 3D array, and M represents the size of 1D array.  The file I am currently using forms 3D array of N = 28, & M = 10,731.  Refering to the top-level vi picture I attached, my while-loop indexes each page per iteration and wrap-around.  The sub-VI called "channel" inside the while-loop will further index its input (2D array) into seven of 1D arrays for other signal processsing.  The output from that "channel" sub-VI is the superposition of those seven arrays.  I hope my explaination is clear. 
    Attachement: 3Darray.jpg and MyVi.jpg
    Kind Regards,
    Shein
    Attachments:
    3Darray.jpg ‏30 KB
    MyVI.jpg ‏87 KB

  • Home Hub 3 Speed Issue

    Some 6 weeks ago I had an issue with losing my internet connection completly, and eventually after a long session with the help desk I magaged to reconnect using the direct port on the main phone socket. However since then I have had a speed issue and Ive been only getting speeds in the order of 2.3Mb.
    However running the BT speed test tells me that the connection to my Home Hub 3 is running at 8.13Mb, but the connection to my computer is running at 2.18Mb.
    I have tried every thing  I can think of. Followed all the advice to improve the connection but nothing works. Reseting the Home Hub, reseting the factory defaults. I've closed down every program running in the background, disconnected the rest of the hardwired network, fitted a new shorter cat 6 cable. All to no avail. The speed still stays firmly at 2.18 to 2.15. down and 0.37 up.
    Could their be a fault with my Home Hub?
    Thaks for any advice.
    Roy
    Solved!
    Go to Solution.

    23:38:00, 29 Jul.
    ( 5932.320000) CWMP: Session start now. Event code(s): '4 VALUE CHANGE'
    23:37:29, 29 Jul.
    ( 5901.890000) CWMP: session closed due to error: No response
    23:37:28, 29 Jul.
    ( 5900.920000) CWMP: Server URL: https://pbthdm.bt.mo; Connecting as user: ACS username
    23:37:28, 29 Jul.
    ( 5900.910000) CWMP: Session start now. Event code(s): '4 VALUE CHANGE'
    23:37:28, 29 Jul.
    ( 5900.480000) CWMP: Initializing transaction for event code 4 VALUE CHANGE
    23:37:24, 29 Jul.
    ( 5896.840000) DSL is down after 2 minutes uptime
    23:37:24, 29 Jul.
    ( 5896.840000) ETHoA is down after 2 minutes uptime
    23:37:24, 29 Jul.
    ( 5896.200000) PPPoA is down after 2 minutes uptime [Waiting for Underlying Connection (WAN DSL - Up)]
    23:37:20, 29 Jul.
    ( 5892.820000) PPP LCP Send Termination Request [User request]
    23:36:35, 29 Jul.
    ( 5847.820000) CWMP: session completed successfully
    23:36:34, 29 Jul.
    ( 5846.940000) CWMP: HTTP authentication success from https://pbthdm.bt.mo
    23:36:32, 29 Jul.
    IN: BLOCK [16] Remote administration (TCP [116.10.191.167]:6000->[81.154.29.9]:22 on ppp0)
    23:36:32, 29 Jul.
    ( 5844.670000) CWMP: Server URL: https://pbthdm.bt.mo; Connecting as user: ACS username
    23:36:32, 29 Jul.
    ( 5844.660000) CWMP: Session start now. Event code(s): '6 CONNECTION REQUEST,4 VALUE CHANGE'
    23:36:32, 29 Jul.
    ( 5844.050000) CWMP: Initializing transaction for event code 6 CONNECTION REQUEST
    23:35:08, 29 Jul.
    ( 5760.150000) CWMP: session completed successfully
    23:35:07, 29 Jul.
    ( 5759.850000) CWMP: HTTP authentication success from https://pbthdm.bt.mo
    23:34:55, 29 Jul.
    ( 5746.980000) CWMP: Server URL: https://pbthdm.bt.mo; Connecting as user: ACS username
    23:34:55, 29 Jul.
    ( 5746.970000) CWMP: Session start now. Event code(s): '4 VALUE CHANGE'
    23:34:48, 29 Jul.
    ( 5740.780000) PPP IPCP Receive Configuration ACK
    23:34:48, 29 Jul.
    ( 5740.580000) PPP IPCP Send Configuration ACK
    23:34:48, 29 Jul.
    ( 5740.580000) PPP IPCP Receive Configuration Request
    23:34:48, 29 Jul.
    ( 5740.290000) PPP IPCP Send Configuration Request
    23:34:48, 29 Jul.
    ( 5740.290000) PPP IPCP Receive Configuration NAK
    23:34:47, 29 Jul.
    ( 5739.870000) PPP IPCP Send Configuration ACK
    23:34:47, 29 Jul.
    ( 5739.870000) PPP IPCP Receive Configuration Request
    23:34:47, 29 Jul.
    ( 5738.990000) PPP IPCP Send Configuration ACK
    23:34:47, 29 Jul.
    ( 5738.990000) PPP IPCP Receive Configuration Request
    23:34:45, 29 Jul.
    ( 5737.420000) PPP IPCP Send Configuration Request
    23:34:45, 29 Jul.
    ( 5737.410000) WAN operating mode is DSL
    23:34:45, 29 Jul.
    ( 5737.410000) Last WAN operating mode was DSL
    23:34:43, 29 Jul.
    ( 5735.310000) PPPoA is up - VPI: 0, VCI:38
    23:34:43, 29 Jul.
    ( 5735.290000) CHAP authentication successful
    23:34:43, 29 Jul.
    ( 5735.260000) CHAP Receive Challenge
    23:34:43, 29 Jul.
    ( 5735.250000) Starting CHAP authentication with peer
    23:34:43, 29 Jul.
    ( 5735.250000) PPP LCP Receive Configuration ACK
    23:34:43, 29 Jul.
    ( 5735.240000) PPP LCP Send Configuration Request
    23:34:42, 29 Jul.
    ( 5734.110000) PPP LCP Send Configuration ACK
    23:34:42, 29 Jul.
    ( 5734.110000) PPP LCP Receive Configuration Request
    23:34:40, 29 Jul.
    ( 5732.210000) PPP LCP Send Configuration ACK
    23:34:40, 29 Jul.
    ( 5732.210000) PPP LCP Receive Configuration Request
    23:34:40, 29 Jul.
    ( 5732.090000) PPP LCP Send Configuration Request
    23:34:37, 29 Jul.
    ( 5729.230000) ETHoA is up - VPI: 0, VCI:35
    23:34:37, 29 Jul.
    ( 5729.230000) DSL is up
    23:34:36, 29 Jul.
    ( 5728.350000) DSL noise margin: 21.00 dB upstream, 10.90 dB downstream
    23:34:36, 29 Jul.
    ( 5728.280000) DSL line rate: 448 Kbps upstream, 8128 Kbps downstream
    23:34:12, 29 Jul.
    ( 5704.670000) CWMP: session closed due to error: No response
    23:34:12, 29 Jul.
    ( 5704.640000) CWMP: Server URL: https://pbthdm.bt.mo; Connecting as user: ACS username
    23:34:12, 29 Jul.
    ( 5704.630000) CWMP: Session start now. Event code(s): '4 VALUE CHANGE'
    23:33:42, 29 Jul.
    ( 5674.150000) CWMP: session closed due to error: No response
    23:33:41, 29 Jul.
    ( 5673.000000) CWMP: Server URL: https://pbthdm.bt.mo; Connecting as user: ACS username
    23:33:41, 29 Jul.
    ( 5672.990000) CWMP: Session start now. Event code(s): '4 VALUE CHANGE'
    23:33:40, 29 Jul.
    ( 5672.560000) CWMP: Initializing transaction for event code 4 VALUE CHANGE
    23:33:36, 29 Jul.
    ( 5668.110000) DSL is down after 92 minutes uptime
    23:33:36, 29 Jul.
    ( 5668.100000) ETHoA is down after 92 minutes uptime
    23:33:35, 29 Jul.
    ( 5667.670000) PPPoA is down after 92 minutes uptime [Waiting for Underlying Connection (WAN DSL - Up)]
    23:33:32, 29 Jul.
    ( 5664.200000) PPP LCP Send Termination Request [User request]
    23:29:51, 29 Jul.
    OUT: BLOCK [7] ICMP replay (ICMP type 3 code 1 81.153.31.203->69.171.248.65 on ppp0)
    23:28:50, 29 Jul.
    ( 5382.020000) CWMP: session completed successfully
    23:28:48, 29 Jul.
    ( 5380.950000) CWMP: HTTP authentication success from https://pbthdm.bt.mo
    23:28:46, 29 Jul.
    ( 5378.860000) CWMP: Server URL: https://pbthdm.bt.mo; Connecting as user: ACS username
    23:28:46, 29 Jul.
    ( 5378.850000) CWMP: Session start now. Event code(s): '6 CONNECTION REQUEST,4 VALUE CHANGE'
    23:28:46, 29 Jul.
    ( 5378.230000) CWMP: Initializing transaction for event code 6 CONNECTION REQUEST
    23:26:03, 29 Jul.
    ( 5215.090000) CWMP: session completed successfully
    23:26:02, 29 Jul.
    This is some of the event log.

  • Windows 7 64bit speed issues

    Hi,
    Our company have been purchasing iMacs for the past 4-5 years and installing Windows XP without any problems.  Last year we started installing Windows 7 64 bit onto, the then current, leopard model without any issues.
    We have recently purchased a whole batch of i5 iMacs with lion installed. I have installed Windows 7 64 bit without any problems but have started noticing huge slowdown with what seems to be hard drive access o every single machine.  Even a single one we purchased when they first came out.
    Using Perfmon I cant see any stress on the CPU, GFX card or RAM but there seems to be something odd with the hard drive access.  I have stripped Windows 7 down to its bare minimum services removing Aero, themes, and all non essential services but still the speed issues occur.
    I have messed around with the pagefile size, indexing, etc, but nothing is having any impact.
    For example, when I save a simple spreadsheet the saving window appears in Windows 7 with the spinning circle for around 30 seconds.  This is a tiny file, why is it taking so long.  Its virtually instant if done on a Windows XP bootcamp machine or even in Windows 7 on an older Leopard iMac.
    There really isnt a great deal regarding this problem oin the internet but it has occurred on all the new i5 Lion iMacs we have.
    Does anyone have any other suggestions (serious ones ) that I could try?
    I am currently installing the 32 bit version to see if it is a driver issue.
    Cheers

    isn't apple now using propritary drive firmware in 2011 imac?
    I suspect 30 sec is drive delay spinup and is frequently happens with green drives, I have some and do this. swap for WD black or something.
    www.hardmac.com talks about imac drives

  • Office Web Apps Issue - "Sorry, something went wrong" message when opening a document (any MS docx,ppt etc) in IE. With Chrome, it pops (Microsoft Office needs your permission) message and on RUN, it opens the document.

    When opening any Microsoft documents ( docx, ppt etc) in SharePoint 2013,
    Internet Explorer behavior : "Sorry, something went wrong" An unexpected error has occurred message and then nothing happens. 
    In Chrome : Pops (Microsoft Office needs your permission) message and on clicking RUN, it opens the document.
    In Firefox : the documents opens, after asking which application do you want to use to open it.
    The feature (Open Documents in Client Applications by Default) is not activate.
    Why the MS documents are not working in IE 10?

    Hi,
    According to your post, my understanding is that you failed to open Microsoft documents in SharePoint 2013.
    I recommend to Run the following PowerShell in OWA Server :
    Remove-OfficeWebAppsHost # To Remove any restriction
    Or
    New-OfficeWebAppsHost -Domain <String> # To allow specific domain Name
    In addition, you can allow OAuth via HTTP using the following commands:
    $config = (Get-SPSecurityTokenServiceConfig)
    $config.AllowOAuthOverHttp = $true
    $config.Update()
    Here are two similar articles for you to take a look at:
    http://blogs.msdn.com/b/fabdulwahab/archive/2013/10/30/office-web-apps-with-sharepoint-2013-issues.aspx
    http://stevemannspath.blogspot.in/2013/03/sharepoint-2013-office-web-apps-issue.html
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Upgrade to ECC6 & Unicode: IE Web Browser Issues?

    Has anyone experienced web browser issues at display time? We are on IE7. We are now using the internal ITS. Our carriage returns are totally being ignored by the browser. Thus, we have a dropdown box to pick one of the businesses multiple partners, and because the HTML is not formatted correctly in the browser, the dropdown doesn't work, and we get an "array not created" error messsage in IE7.
    I know that there are options in the IE 7 browser under the menu item "view". I've tried changing these to some different Unicode settings, but without luck.
    Has anybody some experience with this issue?
        Thank-You

    Hi Tim,
        this might be problem with Support package, by default Sap neweaver 2004s application comes with SP6, u can upgrade to higher SP to solve these type of problems.patch your system up to SP12 or SP13 and try.
    Thanks & Regards,
    Manikandan Dhanakoti
    Edited by: Dhanakoti.M on Oct 23, 2009 7:45 PM

  • Facing speed issue in my iphone 4, 16gb

    Hi Guys
    I am facing speed issue in my iphone 4, 16gb. may after updating ios 7, currenly i am using 7.0.4 update.
    please help me if anyone have soltion.
    Regards
    Parveen

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    The iPhone4 runs iOS7 without any issues or performance problems.
    Apple does not provide a method to downgrade the iOS on any iDevice.  Discussion of such matters in these forums is against the terms of use.

  • Web Query issues

    Hi All,
    I have created a web query and assigned it to a role. I have moved the role, web templete and the query from dev to QA was able run the query fine without issues.
    The problem I am having is when I make changes to the query and transport it to QA...when I run the query from the role menu it still shows the old query instead of the changed query.
    Can someone please explain what are the steps I need to take when I make changes to exsisting web query in dev and move to QA and be able to see the changes. What are all the objects I need to collect. Also would like to know if there are any settings on the role menu or web templete that need to be changed and also any buffers that I need to cleared??
    Any help is appriciated and will give max points.
    Thanks

    BWdesi,
    please avoid reposts - it could be that due to network issues the post got posted twice... close one of them as answered and then proceed with the other one...
    Web Query issues
    Arun

  • Guest Anchor - Web Passthrough - Apple device web redirect issue

    Hi All,
    I've setup a Guest Mobility Anchor at DMZ with 5508 WLC. I've setup the EoIP mobility tunnel and everything works so far.
    Now, I was testing multiple clients to connect to the Guest SSID and observed that Apple devices are not redirecting url, resulting unsuccessful connection.
    I looked Cisco docs and added the command "config network web-auth captive-bypass enable" on the Anchor as recommended.
    Even after executing the command, I'm still facing web redirect issue with Apple Devices. I don't have any issues with other devices, except Apple.
    My controller running code AirOS 7.6.130.0. I'm using DMZ controller as DHCP server for Guests and public DNS servers as 8.8.8.8 & 8.8.4.4
    How to solve this web redirect issue? Will a Third-party generated CSR solves the problem?
    Thanks,
    CJ

    Hi All,
    The issue was with WISPr Protocol with iOS Clients. After upgrading the AirOS Code on the controller to 8.0.100.0; the issue with Web Redirect is resolved.
    Jagan

  • Audio pitch / playback speed issue, MacBook Pro 10.4.10

    I experienced a very strange audio pitch and speed issue that affected a recording I was making in Ableton Live 6.0.3.
    Setup is MacBook Pro 2.16GHz, Mackie Onyx Satellite FW interface for audio, recording straight to internal HD.
    I made two multitrack recordings (3-4 tracks each) which played back fine initially within Live. I then rendered the audio to AIFF in order to burn data and audio CDs.
    Testing the playback in iTunes, the audio was strangely pitched lower than what we originally recorded. Checking other tracks from my iTunes library, they were playing back FASTER or higher-pitched than normal, and so did audio streamed from MySpace that I was familiar with.
    CDs burnt from these AIFFs exhibited the same "lower pitch" / slower playback.
    Reopening the Live Set, they were now also playing back lower pitched than what we had heard just minutes beforehand during the recording / mixing.
    After I let the computer sleep for a few hours, I came back and checked -- system and internet audio was now playing back at normal speed, but the Live Set was still lower-pitched - the individual WAV files in the set were all pitched lower.
    The Live recording prefs were stock standard - set to record 24 bit WAV at 44.1Khz. Since the issue seemed to affect non-Live audio as well, I'm guessing it was something more at the CoreAudio level?
    I managed to salvage the session by taking the exported AIFFs into Tracktion 3 and using the pitch change function in the Clip Properties pane. One track was 1.5x off, the other was 1.125x off.
    I'm at a complete loss as to why this would happen. It's a first (and hopefully only) occurrence. Has anyone had this happen to them? Could this be some sort of intermittent hardware (clock) glitch? Something to do with 6.0.3 and OS 10.4.10?
    I do need to take this MacBook Pro in for servicing - it experienced the "bulging battery" issue and has a partially dead keyboard (the keys near the upper right) - but even with those issues I've not had audio issues like this.

    In any case, if my Mac had problems, I'd send it in for service....!!!
    About your problem, I don't think that it depends on hardware.
    I'd check Live configuration and the SR of the audio files: you know, Live has so many features to modify speed and a lot of other parameters that bacomes easy to forget something.
    Try recording something with Garage Band so you will be sure if there is a real problem.
    cheers
    rob

  • Another Yosemite speed issue

    This is yet another Yosemite speed issue. I've done some reading around and read the FileVault can cause an issues, I took a look and I've always have FileVault disabled.  I installed EtreCheck and the results came up with a lot of RED and "FAILED". Unfortunately, I have no clue how to being to read this and was hoping someone could shed some light onto this for me.
    Here are my results: (Just trying to right-click and paste this took almost a minute)
    Problem description:
    Installed OS X Yosemite and now Macbook runs extremely slow. I have had FileVault disabled the entire time.
    EtreCheck version: 2.0.11 (98)
    Report generated November 13, 2014 at 12:26:09 PM EST
    Hardware Information: ℹ️
      MacBook (13-inch, Late 2009) (Verified)
      MacBook - model: MacBook6,1
      1 2.26 GHz Intel Core 2 Duo CPU: 2-core
      2 GB RAM Upgradeable
      BANK 0/DIMM0
      1 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      1 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 9400M - VRAM: 256 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 23:21:15
    Disk Information: ℹ️
      TOSHIBA MK2555GSXF disk0 : (250.06 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 249.20 GB (143.68 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898
    USB Information: ℹ️
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.devguru.driver.SamsungComposite (1.4.25 - SDK 10.6) Support
      /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.25 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungACMData (1.4.25 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungMTP (1.4.25 - SDK 10.5) Support
      [not loaded] com.devguru.driver.SamsungSerial (1.4.25 - SDK 10.6) Support
    Problem System Launch Agents: ℹ️
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.CallHistorySyncHelper.plist
    [failed] com.apple.cloudd.plist
      [failed] com.apple.cmfsyncagent.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.EscrowSecurityAlert.plist
      [failed] com.apple.gamed.plist
      [failed] com.apple.Maps.pushdaemon.plist
      [failed] com.apple.nsurlsessiond.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
      [failed] com.apple.xpc.loginitemregisterd.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.AssetCacheLocatorService.plist
      [failed] com.apple.awdd.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.findmymac.plist
      [failed] com.apple.icloud.findmydeviced.plist
      [failed] com.apple.ifdreader.plist
      [failed] com.apple.nehelper.plist
      [failed] com.apple.nsurlsessiond.plist
      [failed] com.apple.periodic-daily.plist
      [failed] com.apple.softwareupdate_download_service.plist
      [failed] com.apple.systemstats.analysis.plist
      [failed] com.apple.wdhelper.plist
      [failed] com.apple.xpc.smd.plist
    Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.macpaw.CleanMyMac.helperTool.plist Support
      [loaded] com.macpaw.CleanMyMac.trashSizeWatcher.plist Support
      [loaded] com.macpaw.CleanMyMac.volumeWatcher.plist Support
    User Login Items: ℹ️
      smcFanControl Application (/Applications/smcFanControl.app)
      Dropbox Application (/Applications/Dropbox.app)
      Mail Application (/Applications/Mail.app)
      KiesAgent ApplicationHidden (/Applications/Kies.app/Contents/MacOS/KiesAgent.app)
      fuspredownloader ApplicationHidden (/Users/[redacted]/Library/Application Support/.FUS/fuspredownloader.app)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 Support
      Default Browser: Version: 600 - SDK 10.10
      npTGEQPlugin: Version: 7.5.1 Support
      Silverlight: Version: 5.1.20513.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Mismatch! Adobe recommends 15.0.0.223
      QuickTime Plugin: Version: 7.7.3
      googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 Support
      SharePointBrowserPlugin: Version: 14.4.3 - SDK 10.6 Support
      AdobePDFViewer: Version: 9.5.5 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
      fbplugin_1_0_3: Version: (null) Support
      ATTConnectEventEntry: Version: 1.0.0 - SDK 10.6
      fbplugin_1_0_1: Version: (null) Support
    Safari Extensions: ℹ️
      Searchme
      Slick Savings
      Amazon Shopping Assistant
      Ebay Shopping Assistant
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 249.20 GB Disk used: 105.52 GB
      Destinations:
      Time Machine Backups [Local]
      Total size: 0 B
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Too small
    Backup size 0 B < (Disk used 105.52 GB X 3)
    Top Processes by CPU: ℹ️
          3% Google Chrome
          2% WindowServer
          1% coreaudiod
          0% airportd
          0% smcFanControl
    Top Processes by Memory: ℹ️
      84 MB Google Chrome Helper
      79 MB Google Chrome
      43 MB Finder
      39 MB mds
      32 MB Mail
    Virtual Memory Information: ℹ️
      79 MB Free RAM
      571 MB Active RAM
      447 MB Inactive RAM
      385 MB Wired RAM
      46.88 GB Page-ins
      1.25 GB Page-outs

    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, EasyFind, instead.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
        1. AppZapper
        2. AppDelete
        3. Automaton
        4. Hazel
        5. AppCleaner
        6. CleanApp
        7. iTrash
        8. Amnesia
        9. Uninstaller
      10. Spring Cleaning
    For more information visit The XLab FAQs and read the FAQ on removing software.

Maybe you are looking for

  • Error in Bootstrap

    Hi, I have J2EE add-in will install a own Abap stack on the NW04S. Step "start Java Engine" error on the bootstrap DWEBMGS\work\....bootstrap.log. Detail log ; Exception occurred: com.sap.engine.bootstrap.SynchronizationException: Database initializa

  • How to get rid of add-on that won't go away?

    Somehow the Quiknowledge add-on (or is it a plugin?) reactivated itself in my Firefox browser. How can I make it go away for good? I went into Firefox, checked the box to deactivate, and restarted Firefox. I even rebooted my PC. These steps were supp

  • Neither dreamweaver nor photoshop will update.  I get this error for both, "U44M1P7"

    Neither dreamweaver nor photoshop will update.  I get this error for both, "U44M1P7"

  • How to return cursor from procedure to jdbc

    plz help me through example of code as wl as procedure where.... return cursor from procedure to jdbc

  • Bluetooth wont Discover

    Hi,        Bluetooth wont discover my girlfriend's Samsung Galaxy after pairing with it five minutes ago. I find bluetooth truly is tiresome on every device I've owned, and not sure why it never seems to work with me. Tried USB, and the Macbook Air i