V. 9.1.1 - error about an extension being lost

I installed latest version and get error 'system/library/Extensions/CNQL4801_ClassicNotSeize.kext" was installed improperly and cannot be used .... try reinstalling etc. Contact vendor.
What does this mean because when I closed this window another came up and said iTunes installed ok.?
Thanks.

what's your version of iTunes ? go iTunes > about iTunes and check if you're on 9.1.1 (11).
if so, get 9.1.1 (12) from here http://www.apple.com/itunes/download/ and run the installer over the existing installation.
JGG

Similar Messages

  • Safari (6.0) issues an error message re extension being disabled.

    Since installing the 'latest' version of Safari - an extension I had running is creating an error when Safari starts up. However, when I got to the Extension tab in Safari Preferences, the extension is NOT there (anymore) so I cannot remove it.
    Where could I find this extension - to remove - and hence stop the error message from coming up?
    The extension was 'Safari OmniBar' which gave Google-like search from the URL field.

    I've been dealing with the exact same omnibar issue since updating Safari. I've tried going to the Safari extensions folder in Finder (Home>Library>Safari>Extensions) but can't locate the actual extension (even though all my other extensions are there).
    Apple? Any thoughts?
    UPDATE: just found this on the author's website: http://hackemist.com/SafariOmnibar/#faq
    How to uninstall?
    Remove the extension by running the following command:
    sudo rm -rf /Library/Application\ Support/SIMBL/Plugins/SafariOmnibar.bundle
    Alternatively you may download this uninstaller and run it. Note that uninstaller won't remove SIMBL Agent as you may use some other SIMBL plugin and we don't want to break them.

  • I am unable to install the newest update for itunes and quicktime because of a bonjour error about path not being located

    I have windows 7 and I have been trying to install the newest update for itunes and quicktime but I keep receiving the same Bonjour error. I even tried to do it manually and no luck. I also tried to unistall bonjour but it would not even allow me to unistall it either. No matter what I do I get the same error listed below:
    The path C:\users\owner\appdata\local\apple\apple software update\bonjour64.msi cannot be found. verify that you have access to this location and try again or try to find the installation package "bonjour64.msi" in a folder from which you can install the product bonjour.
    I would greatly appreciate any help because this appears whether i am trying to install the updates or remove bonjour to reinstall. I am stuck.
    Thank You in advance!!!

    The path C:\users\owner\appdata\local\apple\apple software update\bonjour64.msi cannot be found. verify that you have access to this location and try again or try to find the installation package "bonjour64.msi" in a folder from which you can install the product bonjour.
    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on 25 June 2010. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove".
    Quit out of CleanUp. Restart the PC, and try another iTunes install. Does it go through properly this time?

  • When I try to sync my ipod to itunes I keep getting an error about the software being incorrect

    i cannot get itunes to recognize my ipod.  I get a software error.  I think I am missing Apple Mobile Device but have no idea where to go to install it

    This may help:
    iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows
    Also try the driver section of:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • I get an error when starting firefox on several user profiles: the bookmarks and history are not functional something about the file being in use.

    Windows Server 2008 R2, Windows 7 workstations, the appdata folder is redirected to a network share at \\server\profiles and several users are unable to use bookmarks getting an error about the file being in use. I'm wondering if maybe my antivirus (Trend Micro) or my backups (Symantec) might be locking up the places.sqlite for these users? Though I don't understand why it would be for some users and not others. I can't be the first one and I'm not coming up with anything searching google endlessly. Anybody else run into this?

    hello, yes this is likely caused by an external program locking access to the bookmarks/history database. you could try renaming the file in question & see if it is working when it is regenerated, this will clear bookmarks and the history though, so keep a backup...
    [[Fix "The bookmarks and history system will not be functional" error message]]
    http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Problem Create ANE,ArgumentError: Error #3500: The extension context does not have a method with the name

    I little confuse about build ANE, I already follow all the direction, but the error always #3500 when I try to call the ANE.
    I create ANE using java android.
    The tools I use : Flash Builder running on Win-64 win.7. I think I must straight to the point, here what i made it first step by step;
    1. I create the JAVA application first, with package senigo.extension.android then I create 3 file, Sample.java, SampleContext.java, PassTextFunction.java
    Sample.Java Source Code
    package senigo.extension.android;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    public class Sample implements FREExtension {
      @Override
      public FREContext createContext(String arg0) {
      // TODO Auto-generated method stub
      Log.i("Sample", "createContext");
      return new SampleContext();
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Dispose");
      @Override
      public void initialize() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Initialize");
    SampleContext.Java Source Code
    package senigo.extension.android;
    import java.util.HashMap;
    import java.util.Map;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREFunction;
    public class SampleContext extends FREContext {
      public SampleContext()
      Log.i("SampleContext", "constructor");
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "dispose");
      @Override
      public Map<String, FREFunction> getFunctions() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "getFunctions");
      Map<String, FREFunction> functionMap = new HashMap<String, FREFunction>();
      functionMap.put("passText", new PassTextFunction());
      return functionMap;
    PassTextFunction.Java Source Code
    package senigo.extension.android;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    import com.adobe.fre.FREFunction;
    import com.adobe.fre.FREObject;
    public class PassTextFunction implements FREFunction {
      @Override
      public FREObject call(FREContext arg0, FREObject[] arg1) {
      // TODO Auto-generated method stub
      FREObject result = null;
      try{
      result =  FREObject.newObject("Hello World");
      }catch(Exception e)
      return result;
    after all the file I create the jar file using click right on the tree view >> Export >> Jar File >> Sample.Jar (i already create jar file that just contain the src folder and after i frustrated, i create .jar file contain all the whole project folder but still didn't work out).
    Ok, After that I create project Flex Library Project, That's contain the actionscript to call the native and the extension.xml, here the code.
    Test.as Source Code, FYI : i already create public function and the static function the error still same #3500.
    package senigo.extension.android
      import flash.external.ExtensionContext;
      public class test
      private static var extContext:ExtensionContext = null;
      public function test()
      trace ("Test Constructor");
      if (!extContext)
      initExtension();
      public static function get passText():String
      trace ("Test Pass Text");
      if (!extContext)
      initExtension();
      return extContext.call("passText") as String;
      private static function initExtension():void
      trace ("Vibration Constructor: Create an extension context");
      extContext = ExtensionContext.createExtensionContext("senigo.extension.android", null);
    extension.xml source code
    FYI: in Flex when i put the Native Extension, they said must have Windows-x86 so I already create 3 ANE, that just contain Android-ARM , Contain Android-ARM and Default, Contain Android-ARM,Default and Windows-x86 but the error still same. I didn't got it where is the error.
    <extension xmlns="http://ns.adobe.com/air/extension/3.1">
      <id>senigo.extension.android</id>
      <versionNumber>1.0.0</versionNumber>
      <platforms>
      <platform name="Android-ARM">
      <applicationDeployment>
      <nativeLibrary>Sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      <!-- <platform name="Windows-x86">
      <applicationDeployment>
      <nativeLibrary>sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      -->
       <platform name="default">
    <applicationDeployment/>
    </platform>
      </platforms>
    </extension>
    After I create it, I copy the .swc file and extension file sample with the Sample.jar file.
    I extract the .swc file, copy the library.swf to folder Android-ARM,Default,Windows-86 and I create build.bat that contain the command like this
    adt -package  -storetype PKCS12 -keystore senigo.p12 -storepass l10nk1ng -target ane senigo.extension.android.ane extension.xml -swc AndroidLib.swc -platform Android-ARM -C ./Android-ARM/ . -platform default -C ./default/ .
    the I put the ane to Flex mobile project that I created:
    I run it but got error #3500, I really confuse?? what's wrong with my code? is there something I wrong or I Miss it?
    Please any one help me.. and when is already ane file can I debug it in Flex Mobile Project? I wanna looks the log.i code that i wrote but i confuse how to looking up in flash builder.
    at the end, I wanna said Sorry if my english not very goods, and thanks, because wanna see my problem and thank you very much if You can gave me a solution's

    Alex Rekish wrote:
    Why you comment Windows-x86 in your extension.xml ?
    I think that is a problem. You launch your application on Windows but ANE haven't got Windows-x86 implementation (also you don't include it while packaging). So your application use default implementation. But default implementation don't use any native code and cannot use ExtensionContext. And you got error.
    If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation.
    Thanks for you answer Alex Rekish, Sorry I didn't screen shoot all about the extension.xml. I comment it because the latest ANE that I build is contain Android-ARM and default. so I commented. but I already try it using just ANE that's just contain Android-ARM, with Android-ARM and windows-x86,and Android-ARM, and default, and Android-ARM,default,Windows-x86 the error still the same.
    here the screen shoot, I embeded the ane that's i contain Windows-x86
    in action script test.as I didn't change it anythings, I just play it on extension.xml to build the ane. is there any mistake over there? I interact with your answer that "If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation." I didn't need to user ExtensionContext? is means? in the actionscript? or in extension.xml? can you explained

  • Adobe air windows/C++:Error #3500: The extension context does not have a method with the name

    I created a C++ dynamic dll called by air.
    If the dll depends on other dlls, then the error#3500 occured. However removed other dlls, it works.
    Could that mean the air can only call one dynamic dll that doesn't depend any other dlls?
    does anybody met this problem before, or let me know what can I do?

    Alex Rekish wrote:
    Why you comment Windows-x86 in your extension.xml ?
    I think that is a problem. You launch your application on Windows but ANE haven't got Windows-x86 implementation (also you don't include it while packaging). So your application use default implementation. But default implementation don't use any native code and cannot use ExtensionContext. And you got error.
    If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation.
    Thanks for you answer Alex Rekish, Sorry I didn't screen shoot all about the extension.xml. I comment it because the latest ANE that I build is contain Android-ARM and default. so I commented. but I already try it using just ANE that's just contain Android-ARM, with Android-ARM and windows-x86,and Android-ARM, and default, and Android-ARM,default,Windows-x86 the error still the same.
    here the screen shoot, I embeded the ane that's i contain Windows-x86
    in action script test.as I didn't change it anythings, I just play it on extension.xml to build the ane. is there any mistake over there? I interact with your answer that "If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation." I didn't need to user ExtensionContext? is means? in the actionscript? or in extension.xml? can you explained

  • Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service. 

    Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service.  I would prefer to talk to someone directly.

    Are you using any disk cleaner or optimization tools like CleanMymac or Mackeeper?
    Regards,
    Ashutosh

  • How do you know if trust certificate error about imap.aol server is the result of an imposter or the "real" aol imap server?

    I keep receiving a trust certificate error about imap.aol server. Says it may be the result of an imposter or the "real" aol imap server?  How do you determine if the trust certificate is for an imposter?

    Please post a direct link to the page you're having trouble with.

  • After getting the latest update I recieve an error about MSVCR80.dll missing has anyone found the solution as uninstalling and re installing doesnt work

    after getting the latest update I recieve an error about MSVCR80.dll Missing, has anyone found the solution as uninstalling and then installing doesnt seem to work

    Doublechecking. Have you tried the following user tip?
    Troubleshooting issues with iTunes for Windows updates

  • Confused about kernel extensions

    I've learned two things about kernel extensions from Google searches:
    1. Kernel extensions are stored in System/Library/Extensions
    2. You can list all Apple extensions with the Terminal command kextstat and all third party extensions with the command kextstat | grep -v com.apple.
    But something doesn't add up: the files listed by the kextstat command all begin with "com.apple". No files in System/Library/Extensions begin with "com.apple". In fact, none of the kernel extensions listed by the kextstat command seem to reside in System/Library/Extensions. So where are they?

    I have the following result with the terminal command kextstat
    Index Refs Address            Size       Wired      Name (Version) <Linked Against>
      111    0 0xffffff7f80b71000 0x5000     0x5000     com.Cycling74.driver.Soundflower (1.6.6) <101 5 4 3>
      126    0 0xffffff7f820f4000 0x3000     0x3000     com.bresink.driver.BRESINKx86Monitoring (9.0) <5 4 3>
    I found the Soundflower driver in /System/Library/Extensions/
    But ccould not find the other one BRESINKx86Monitoring anywhere .
    where is it hidden?

  • HT1539 I have tried to download a digital copy that came with a movie I purchased and I keep getting the an error about HD purchase vs. SD purchase.  I push redeem again and it has the same message and I cant download the movie.  What can I do?

    I have tried to download a digital copy that came with a movie I purchased and I keep getting the an error about HD purchase vs. SD purchase.  I push redeem again and it has the same message and I cant download the movie.  What can I do?

    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • Graphics tab in REBDBU: Internal error when implementing extension

    Hello,
    Seek your kind help please.
    I have entered in the building master data using REBDBE. We have a tab called Graphics. The pictures etc of the building are uploaded using a software called Korasoft. When i am clicking on the Graphics tab, it is entering the screen but immediately afterwards flashing the following message, "Internal error when implementing extension".
    Doing a F1 on the error message shows the foll details:
    "Diagnosis
    An internal error occurred during the implementation of a customer-specific enhancement. A CHANGE-API module was called with an object reference (parameter IO_OBJECT) that was not instantiated in the required activity for changing (02). The API modules are function modules and begin with API_RE_.
    Procedure
    Within the BAdI implementation, transfer the parameter IO_OBJECT from the BAdI method directly to the API module. Make sure that the transferred instance is allowed to be changed."
    I found that the SAP note 1139014 causes this error message to be generated. Note 1139014 forms a part of support pack level 13 (release 600). Recently we have upgraded our systems from support pack level 8 to support pack level 13. Naturally even this note got implemented at that time.
    But now this note is causing this error message and so I will be grateful if someone can please tell me how to rectify the error.
    Regards,
    Suvarghya Dutta
    Edited by: Suvarghya Dutta on Feb 11, 2009 5:30 PM

    Hi Fabio,
    I would kindly ask you appy the SAP note [1521903|https://service.sap.com/sap/support/notes/1521903] and proceed as described in the note to resolve the issue.
    Hope this information is helpful for you.
    Regards, Franz

  • Internal error when implementing extension

    Hello everyone
    At the moment I create a new contract (transaction RECN) an error occurs and I can not solve.
    Someone could help me?
    Internal error when implementing extension (see long text)
    Message no. RECAAP093
    Diagnosis
    Call of GET_EXTENSION( ) method for enhancement CL_FILACI_VICN01_EXTENSION failed.
    It tried to use an add-on or customer-specific enhancement that is not implemented in your system.
    To be able to determine the technical attributes of enhancement CL_FILACI_VICN01_EXTENSION, the RECA_STORABLE_EXT Business Add-In has to supply the desired information. However, this was not the case. In an implementation of RECA_STORABLE_EXT, the GET_OBJNAME_EXT( ) method must supply the required enhancement CL_FILACI_VICN01_EXTENSION.
    Below is example code for GET_OBJNAME_EXT( ):
    CASE ID_OBJNAME_STD.
        WHEN '...'.
          APPEND 'CL_FILACI_VICN01_EXTENSION' TO CT_OBJNAME_EXT.
      ENDCASE.
    For more information, refer to the documentation for the RECA_STORABLE_EXT Business Add-In.
    Start BAdI Builder
    Procedure
    Contact your system administrator.
    tks a lot!

    Hi Fabio,
    I would kindly ask you appy the SAP note [1521903|https://service.sap.com/sap/support/notes/1521903] and proceed as described in the note to resolve the issue.
    Hope this information is helpful for you.
    Regards, Franz

  • TS3694 i am getting error :1621 while trying to restore it. any one know wat this is error about?

    i am getting error :1621 while trying to restore iphone 3gs it. any one know wat this is error about?

    1621: Are you thinking of a different error? Or is the iTunes screen definitely saying 1621?

Maybe you are looking for

  • Printing to a Windows print server on a domain

    I work at a computer lab at my school and for a long while I don't think anyone has really researched this topic well enough. We charge for print jobs based on username; whoever logs in get chraged for the prints they do. For windows machines this wo

  • 2 Front End Servers with reporting enabled in topology but only one server shows reports

    Hi, We have 2 Front End Standard pool servers with resiliency enabled between them. The monitoring service is configured in the topology so that both Front End Servers point to the same monitoring database. We have half our users homed on 1 Front end

  • Capture Video from Panasonic AG-HMC40

    I am having trouble capturing video from my camera - Panasonic AG-HMC40 HD camera I keep getting a message:  Capture Device Offline. I am able to capture from iMovie and Final Cut X.... Does anyone know the correct capture settings?

  • HT4436 How do I Unsubcribe from iCloud account

    Accidentally clicked on iCloud when doing back up (and setup) on new iphone (3G) - how do I know if I have "suscribed" to icloud, and, if I have, how do I unsubscribe, as I don't require it.?? Thanks! VJ

  • Paper tray selection for copies won't stay

    I'm having problems setting the paper tray for copies.  I go into settings on the printer LED screen and select Tray 2 for copies, but it doesn't stick.  Since I have envelopes loaded in Tray 1, I'm constantly getting "wrong tray" error messages.