I have a problem with plugin container

when I play a game on facebook.com my plug-in container starts using almost half of my core i5 cpu. I have found that in internet explorer doesn't have that problem. I have windows 7 home premium.

Here's an explanation of what those processes are. 
Inside Flash Player Protected Mode for Firefox
I'm curious about what you did to uninstall just those.

Similar Messages

  • Having problems with plugin-container.exe!

    The Plugin-container.exe is causing firefox to crash after every page load. I have isolated it as the root cause because every time I terminate the process firefox starts working again.

    It's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem does not disappear when all add-ons are disabled, please tell me, so we can work from there. Please have no fear of following my instructions to the line, as all can be easily undone.

  • I have a problem with JDBC Realm in Tomcat/Oracle/Win XP

    I have a problem with JDBC Realm in Tomcat.
    I have attached my server.xml file located in the
    C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\server.xml
    The Problem is that when I login I get the user name and password prompt but it does not resolve.
    When I enter in the tomcat-users.xml password with memory realm uncommented it works fine.
    C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\tomcat-users.xml
    Is there a cache or something I need to reset for the JDBC Realm to work?
    I have attached my tables and contents as well...
    Did I miss something????
    Thanks
    Phil
    server.xml
    <Server port="8005" shutdown="SHUTDOWN">
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
    <Listener className="org.apache.catalina.storeconfig.StoreConfigLifecycleListener"/>
    <!-- Global JNDI resources -->
    <GlobalNamingResources>
    <!-- Test entry for demonstration purposes -->
    <Environment name="simpleValue" type="java.lang.Integer" value="30"/>
    </GlobalNamingResources>
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Catalina">
    <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
    <Connector
    port="8080" maxHttpHeaderSize="8192"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" redirectPort="8443" acceptCount="100"
    connectionTimeout="20000" disableUploadTimeout="true" />
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009"
    enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
    <!-- Define the top level container in our container hierarchy -->
    <Engine name="Catalina" defaultHost="localhost">
    <!--
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    -->
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="oracle.jdbc.driver.OracleDriver"
    connectionURL="jdbc:oracle:thin:@localhost:1521:orcl"
    connectionName="testName" connectionPassword="testPass"
    userTable="users"
    userNameCol="user_name"
    userCredCol="user_pass"
    userRoleTable="user_roles"
    roleNameCol="role_name" />
    <!-- Define the default virtual host
    Note: XML Schema validation will not work with Xerces 2.2.
    -->
    <Host name="localhost" appBase="webapps"
    unpackWARs="true" autoDeploy="true"
    xmlValidation="false" xmlNamespaceAware="false">
    </Host>
    </Engine>
    </Service>
    </Server>
    Tables
    create table users
    user_name varchar(15) not null primary key,
    user_pass varchar(15) not null
    create table roles
    role_name varchar(15) not null primary key
    create table user_roles
    user_name varchar(15) not null,
    role_name varchar(15) not null,
    primary key( user_name, role_name )
    select * from users;
    ----------------------+
    | user_name | user_pass |
    ----------------------+
    | tomcat | tomcat |
    | user1 | tomcat |
    | user2 | tomcat |
    | user3 | tomcat |
    ----------------------+
    select * from roles;
    | role_name |
    | tomcat |
    | role1 |
    select * from user_roles;
    -----------------------+
    | role_name | user_name |
    -----------------------+
    | tomcat | user1 |
    | role1 | user2 |
    | tomcat | tomcat |
    | role1 | tomcat |
    -----------------------+

    Jan 2, 2008 11:49:35 AM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8080
    Jan 2, 2008 11:49:35 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 734 ms
    Jan 2, 2008 11:49:35 AM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Jan 2, 2008 11:49:35 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.9
    Jan 2, 2008 11:49:35 AM org.apache.catalina.realm.JDBCRealm start
    SEVERE: Exception opening database connection
    java.sql.SQLException: oracle.jdbc.driver.OracleDriver
         at org.apache.catalina.realm.JDBCRealm.open(JDBCRealm.java:684)
         at org.apache.catalina.realm.JDBCRealm.start(JDBCRealm.java:758)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1004)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:683)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:537)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:271)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:409)
    Jan 2, 2008 11:49:35 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    Jan 2, 2008 11:49:36 AM org.apache.catalina.core.StandardContext resourcesStart

  • I have a Problem with Romming Between SSIDs withing the same WLC but with deferent VLAN .

    HI All,
    I have a Problem with Romming Between SSIDs withing the same WLC but with deferent VLAN . the WLC are providing the HQ and one of the Branches the Wireless services .
    Am using all the available 9 SSIDs at the HQ , and am using only 4 of it at the Brnche.
    The problem that i have are happening only at the Branch office as i cant room between the SSIDs within Diferent VLANs but i can do it with the one that pointing to the same VLAN. Once the client ( Laptop/Phone ) connected to one of the SSIDs. it imposiible to have him connected to the other ones with Different VLAN. meanwhile, It says its connected to the other SSID but its not getting IP from that pool.
    here is the Show Run-Config from my WLC .. and the Problem happening between the SSID AMOBILE and ASTAFF. i have the Debug while am switching between the SSIDs if needed .
    =~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2013.11.04 10:20:47 =~=~=~=~=~=~=~=~=~=~=~=
    show run-config
    Press Enter to continue...
    System Inventory
    NAME: "Chassis"   , DESCR: "Cisco 5500 Series Wireless LAN Controller"
    PID: AIR-CT5508-K9, VID: V01, SN: FCW1535L01G
    Burned-in MAC Address............................ 30:E4:DB:1B:99:80
    Power Supply 1................................... Present, OK
    Power Supply 2................................... Absent
    Maximum number of APs supported.................. 12
    Press Enter to continue or <ctrl-z> to abort
    System Information
    Manufacturer's Name.............................. Cisco Systems Inc.
    Product Name..................................... Cisco Controller
    Product Version.................................. 7.0.235.0
    Bootloader Version............................... 1.0.1
    Field Recovery Image Version..................... 6.0.182.0
    Firmware Version................................. FPGA 1.3, Env 1.6, USB console 1.27
    Build Type....................................... DATA + WPS
    System Name...................................... WLAN Controller 5508
    System Location..................................
    System Contact...................................
    System ObjectID.................................. 1.3.6.1.4.1.9.1.1069
    IP Address....................................... 10.125.18.15
    Last Reset....................................... Software reset
    System Up Time................................... 41 days 5 hrs 14 mins 42 secs
    System Timezone Location......................... (GMT -5:00) Eastern Time (US and Canada)
    Current Boot License Level....................... base
    Current Boot License Type........................ Permanent
    Next Boot License Level.......................... base
    Next Boot License Type........................... Permanent
    Configured Country............................... US - United States
    --More or (q)uit current module or <ctrl-z> to abort
    Operating Environment............................ Commercial (0 to 40 C)
    Internal Temp Alarm Limits....................... 0 to 65 C
    Internal Temperature............................. +36 C
    External Temperature............................. +20 C
    Fan Status....................................... OK
    State of 802.11b Network......................... Enabled
    State of 802.11a Network......................... Enabled
    Number of WLANs.................................. 10
    Number of Active Clients......................... 61
    Burned-in MAC Address............................ 30:E4:DB:1B:99:80
    Power Supply 1................................... Present, OK
    Power Supply 2................................... Absent
    Maximum number of APs supported.................. 12
    Press Enter to continue or <ctrl-z> to abort
    AP Bundle Information
    Primary AP Image  Size
    ap3g1             5804
    ap801             5192
    ap802             5232
    c1100             3096
    c1130             4972
    c1140             4992
    c1200             3364
    c1240             4812
    c1250             5512
    c1310             3136
    c1520             6412
    c3201             4324
    c602i             3716
    Secondary AP Image      Size
    ap801             4964
    c1100             3036
    --More or (q)uit current module or <ctrl-z> to abort
    c1130             4884
    c1140             4492
    c1200             3316
    c1240             4712
    c1250             5064
    c1310             3084
    c1520             5244
    c3201             4264
    Press Enter to continue or <ctrl-z> to abort
    Switch Configuration
    802.3x Flow Control Mode......................... Disable
    FIPS prerequisite features....................... Disabled
    secret obfuscation............................... Enabled
    Strong Password Check Features:
           case-check ...........Enabled
           consecutive-check ....Enabled
           default-check .......Enabled
           username-check ......Enabled
    Press Enter to continue or <ctrl-z> to abort
    Network Information
    RF-Network Name............................. OGR
    Web Mode.................................... Disable
    Secure Web Mode............................. Enable
    Secure Web Mode Cipher-Option High.......... Disable
    Secure Web Mode Cipher-Option SSLv2......... Enable
    OCSP........................................ Disabled
    OCSP responder URL..........................
    Secure Shell (ssh).......................... Enable
    Telnet...................................... Disable
    Ethernet Multicast Forwarding............... Disable
    Ethernet Broadcast Forwarding............... Disable
    AP Multicast/Broadcast Mode................. Unicast
    IGMP snooping............................... Disabled
    IGMP timeout................................ 60 seconds
    IGMP Query Interval......................... 20 seconds
    User Idle Timeout........................... 300 seconds
    ARP Idle Timeout............................ 300 seconds
    Cisco AP Default Master..................... Enabled
    AP Join Priority............................ Disable
    Mgmt Via Wireless Interface................. Disable
    Mgmt Via Dynamic Interface.................. Disable
    --More or (q)uit current module or <ctrl-z> to abort
    Bridge MAC filter Config.................... Enable
    Bridge Security Mode........................ EAP
    Mesh Full Sector DFS........................ Enable
    AP Fallback ................................ Enable
    Web Auth Redirect Ports .................... 80
    Web Auth Proxy Redirect ................... Disable
    Fast SSID Change ........................... Enabled
    AP Discovery - NAT IP Only ................. Enabled
    IP/MAC Addr Binding Check .................. Enabled
    Press Enter to continue or <ctrl-z> to abort
    Port Summary
               STP   Admin   Physical   Physical   Link   Link
    Pr Type   Stat   Mode     Mode     Status   Status Trap    POE   SFPType  
    1 Normal Forw Enable Auto       1000 Full Up     Enable N/A     1000BaseTX
    2 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    3 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    4 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    5 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    6 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    7 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    8 Normal Disa Enable Auto       Auto       Down   Enable N/A     Not Present
    Press Enter to continue or <ctrl-z> to abort
    AP Summary
    Number of APs.................................... 8
    Global AP User Name.............................. Not Configured
    Global AP Dot1x User Name........................ Not Configured
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    KNOWLOGY_DC01       2     AIR-LAP1131AG-A-K9   00:1d:45:86:ed:4e KNOWLOGY_DC_Serv 1       US       1
    KNOWLOGY_DC02       2     AIR-LAP1131AG-A-K9   00:21:d8:36:c5:c4 KNOWLOGY_DC_Serv 1       US       1
    KN1252_AP01         2     AIR-LAP1252AG-A-K9   00:21:d8:ef:06:50 Knowlogy Confere 1       US       1
    KN1252_AP02         2     AIR-LAP1252AG-A-K9   00:22:55:8e:2e:d4 Server Room Side 1       US       1
    Anham_AP03           2     AIR-LAP1142N-A-K9     70:81:05:88:15:b5 default location 1       US       1
    ANHAM_AP01          2     AIR-LAP1142N-A-K9     70:81:05:b0:e4:62 Small Conference 1       US       1
    ANHAM_AP04           2     AIR-LAP1131AG-A-K9   00:1d:45:86:e1:b8   Conference room 1       US       1
    ANHAM_AP02           2     AIR-LAP1142N-A-K9     70:81:05:96:7a:49         Copy Room 1       US       1
    AP Tcp-Mss-Adjust Info
    AP Name             TCP State MSS Size
    KNOWLOGY_DC01       disabled   -
    KNOWLOGY_DC02       disabled   -
    --More or (q)uit current module or <ctrl-z> to abort
    KN1252_AP01         disabled   -
    KN1252_AP02         disabled   -
    Anham_AP03           disabled   -
    ANHAM_AP01           disabled   -
    ANHAM_AP04           disabled   -
    ANHAM_AP02           disabled   -
    Press Enter to continue or <ctrl-z> to abort
    AP Location
    Total Number of AP Groups........................ 3  
    Site Name........................................ ANHAM8075
    Site Description................................. ANHAM 8075 Location
    WLAN ID         Interface         Network Admission Control         Radio Policy
    1               knowlogy_ogr         Disabled                         None
    6               knowlogy_ogr         Disabled                         None
    9               knowlogy_ogr         Disabled                         None
    7               knowlogy_ogr         Disabled                         None
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    Anham_AP03           2     AIR-LAP1142N-A-K9   70:81:05:88:15:b5 default location 1     US       1
    ANHAM_AP01           2     AIR-LAP1142N-A-K9   70:81:05:b0:e4:62 Small Conference 1     US       1
    ANHAM_AP04           2     AIR-LAP1131AG-A-K9   00:1d:45:86:e1:b8   Conference room 1     US       1
    ANHAM_AP02           2     AIR-LAP1142N-A-K9   70:81:05:96:7a:49         Copy Room 1     US       1
    Site Name........................................ Knowlogy_DC
    --More or (q)uit current module or <ctrl-z> to abort
    Site Description................................. DC Center Access points
    WLAN ID         Interface         Network Admission Control         Radio Policy
    2               knowlogy_ogr         Disabled                         None
    4               knowlogy_ogr         Disabled                         None
    3               knowlogy_ogr         Disabled                         None
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    KNOWLOGY_DC01       2     AIR-LAP1131AG-A-K9   00:1d:45:86:ed:4e KNOWLOGY_DC_Serv 1     US       1
    KNOWLOGY_DC02       2     AIR-LAP1131AG-A-K9   00:21:d8:36:c5:c4 KNOWLOGY_DC_Serv 1     US       1
    Site Name........................................ OGR
    Site Description................................. 1934 OGR Office
    WLAN ID         Interface         Network Admission Control         Radio Policy
    1               knowlogy_ogr         Disabled                         None
    2               knowlogy_ogr         Disabled                        None
    4               knowlogy_ogr         Disabled                         None
    6               knowlogy_ogr         Disabled                         None
    --More or (q)uit current module or <ctrl-z> to abort
    7               knowlogy_ogr        Disabled                         None
    9               knowlogy_ogr         Disabled                         None
    8               knowlogy_ogr         Disabled                         None
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    KN1252_AP01         2     AIR-LAP1252AG-A-K9   00:21:d8:ef:06:50 Knowlogy Confere 1    US       1
    KN1252_AP02         2     AIR-LAP1252AG-A-K9   00:22:55:8e:2e:d4 Server Room Side 1     US       1
    Site Name........................................ default-group
    Site Description................................. <none>
    WLAN ID        Interface         Network Admission Control         Radio Policy
    1               knowlogy_ogr         Disabled                         None
    2               knowlogy_ogr         Disabled                         None
    3               knowlogy_ogr         Disabled                         None
    4               knowlogy_ogr         Disabled                         None
    5               knowlogy_ogr         Disabled                         None
    6               knowlogy_ogr         Disabled                         None
    7               knowlogy_ogr         Disabled                         None
    8               knowlogy_ogr         Disabled                          None
    --More or (q)uit current module or <ctrl-z> to abort
    9               knowlogy_ogr         Disabled                         None
    10             management           Disabled                         None
    AP Name             Slots AP Model             Ethernet MAC       Location         Port Country Priority
    Press Enter to continue or <ctrl-z> to abort
    AP Config
    Cisco AP Identifier.............................. 6
    Cisco AP Name.................................... KNOWLOGY_DC01
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:1d:45:86:ed:4e
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.22.1.100
    Gateway IP Addr.................................. 10.22.1.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Disabled
    Ssh State........................................ Disabled
    Cisco AP Location................................ KNOWLOGY_DC_ServerRoom
    Cisco AP Group Name.............................. Knowlogy_DC
    Primary Cisco Switch Name........................ wireless.knowlogy.com
    Primary Cisco Switch IP Address.................. 10.125.18.15
    Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    --More or (q)uit current module or <ctrl-z> to abortIP Address.................. 10.125.18.15
    Tertiary Cisco Switch Name.......................
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W Version .................................... 7.0.235.0
    Boot Version ................................... 12.3.8.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Disabled
    PoE Power Injector MAC Addr...................... Disabled
    Power Type/Mode.................................. Power injector / Normal mode
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1131AG-A-K9
    AP Image......................................... C1130-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    --More or (q)uit current module or <ctrl-z> to abort
    Reset Button..................................... Enabled
    AP Serial Number................................. FTX1134T0QG
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 22
          WLAN 2 :........................................ 21
          WLAN 4 :........................................ 25
          WLAN 3 :........................................ 25
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    AP Up Time....................................... 48 days, 20 h 19 m 18 s
    AP LWAPP Up Time................................. 40 days, 13 h 58 m 18 s
    Join Date and Time............................... Tue Sep 24 21:24:33 2013
    Join Taken Time.................................. 0 days, 00 h 10 m 47 s
    --More or (q)uit current module or <ctrl-z> to abort
    Attributes for Slot 0
        Radio Type................................... RADIO_TYPE_80211b
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
       Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 3
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
         CFP MaxDuration ........................... 60
         BSSID ..................................... 00:1d:71:09:8f:90
         Operation Rate Set
           1000 Kilo Bits........................... MANDATORY
           2000 Kilo Bits........................... MANDATORY
           5500 Kilo Bits........................... MANDATORY
           11000 Kilo Bits.......................... MANDATORY
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
    --More or (q)uit current module or <ctrl-z> to abort
         Multi Domain Capability Enabled ........... TRUE
         Country String ............................ US
        Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 1
         Number Of Channels ........................ 11
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
       Tx Power
         Num Of Supported Power Levels ............. 8
         Tx Power Level 1 .......................... 20 dBm
         Tx Power Level 2 .......................... 17 dBm
         Tx Power Level 3 .......................... 14 dBm
         Tx Power Level 4 .......................... 11 dBm
         Tx Power Level 5 .......................... 8 dBm
         Tx Power Level 6 .......................... 5 dBm
         Tx Power Level 7 .......................... 2 dBm
         Tx Power Level 8 .......................... -1 dBm
    --More or (q)uit current module or <ctrl-z> to abort
         Tx Power Configuration .................... AUTOMATIC
         Current Tx Power Level .................... 1
       Phy DSSS parameters
         Configuration ............................. AUTOMATIC
         Current Channel ........................... 11
         Extension Channel ......................... NONE
         Channel Width.............................. 20 Mhz
         Allowed Channel List....................... 1,2,3,4,5,6,7,8,9,10,11
         Current CCA Mode .......................... 0
         ED Threshold .............................. -50
         Antenna Type............................... INTERNAL_ANTENNA
         Internal Antenna Gain (in .5 dBi units).... 8
         Diversity.................................. DIVERSITY_ENABLED
       Performance Profile Parameters
         Configuration ............................. AUTOMATIC
         Interference threshold..................... 10 %
         Noise threshold............................ -70 dBm
         RF utilization threshold................... 80 %
         Data-rate threshold........................ 1000000 bps
         Client threshold........................... 12 clients
         Coverage SNR threshold..................... 12 dB
    --More or (q)uit current module or <ctrl-z> to abort
         Coverage exception level................... 25 %
         Client minimum exception level............. 3 clients
       Rogue Containment Information
       Containment Count............................ 0
       CleanAir Management Information
           CleanAir Capable......................... No
    Cisco AP Identifier.............................. 6
    Cisco AP Name.................................... KNOWLOGY_DC01
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:1d:45:86:ed:4e
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.22.1.100
    Gateway IP Addr.................................. 10.22.1.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Disabled
    Ssh State........................................ Disabled
    --More or (q)uit current module or <ctrl-z> to abort
    Cisco AP Location................................ KNOWLOGY_DC_ServerRoom
    Cisco AP Group Name.............................. Knowlogy_DC
    Primary Cisco Switch Name........................ wireless.knowlogy.com
    Primary Cisco Switch Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    Tertiary Cisco Switch Name.......................
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W Version .................................... 7.0.235.0
    Boot Version ................................... 12.3.8.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Disabled
    PoE Power Injector MAC Addr...................... Disabled
    --More or (q)uit current module or <ctrl-z> to abort
    Power Type/Mode.................................. Power injector / Normal mode
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1131AG-A-K9
    AP Image......................................... C1130-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    Reset Button..................................... Enabled
    AP Serial Number................................. FTX1134T0QG
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 22
          WLAN 2 :........................................ 21
          WLAN 4 :........................................ 25
          WLAN 3 :........................................ 25
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    --More or (q)uit current module or <ctrl-z> to abort
    AP Up Time....................................... 48 days, 20 h 19 m 18 s
    AP LWAPP Up Time................................. 40 days, 13 h 58 m 18 s
    Join Date and Time............................... Tue Sep 24 21:24:33 2013
    Join Taken Time.................................. 0 days, 00 h 10 m 47 s
    Attributes for Slot 1
       Radio Type................................... RADIO_TYPE_80211a
       Radio Subband................................ RADIO_SUBBAND_ALL
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
       Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 3
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
          CFP MaxDuration ........................... 60
         BSSID ..................................... 00:1d:71:09:8f:90
         Operation Rate Set
           6000 Kilo Bits........................... MANDATORY
    --More or (q)uit current module or <ctrl-z> to abort
           9000 Kilo Bits........................... SUPPORTED
           12000 Kilo Bits.......................... MANDATORY
           18000 Kilo Bits.......................... SUPPORTED
           24000 Kilo Bits.......................... MANDATORY
          36000 Kilo Bits.......................... SUPPORTED
           48000 Kilo Bits.......................... SUPPORTED
           54000 Kilo Bits.......................... SUPPORTED
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
         Multi Domain Capability Enabled ........... TRUE
         Country String ............................ US
       Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 36
         Number Of Channels ........................ 20
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
    --More or (q)uit current module or <ctrl-z> to abort
       Tx Power
         Num Of Supported Power Levels ............. 7
         Tx Power Level 1 .......................... 15 dBm
         Tx Power Level 2 .......................... 14 dBm
         Tx Power Level 3 .......................... 11 dBm
         Tx Power Level 4 .......................... 8 dBm
         Tx Power Level 5 .......................... 5 dBm
         Tx Power Level 6 .......................... 2 dBm
         Tx Power Level 7 .......................... -1 dBm
         Tx Power Configuration .................... AUTOMATIC
         Current Tx Power Level .................... 1
       Phy OFDM parameters
         Configuration ............................. AUTOMATIC
         Current Channel ........................... 44
         Extension Channel ......................... NONE
         Channel Width.............................. 20 Mhz
         Allowed Channel List....................... 36,40,44,48,52,56,60,64,100,
           ......................................... 104,108,112,116,132,136,140,
           ......................................... 149,153,157,161
         TI Threshold .............................. -50
         Antenna Type............................... INTERNAL_ANTENNA
         Internal Antenna Gain (in .5 dBi units).... 8
    --More or (q)uit current module or <ctrl-z> to abort
         Diversity.................................. DIVERSITY_ENABLED
       Performance Profile Parameters
         Configuration ............................. AUTOMATIC
         Interference threshold..................... 10 %
         Noise threshold............................ -70 dBm
         RF utilization threshold................... 80 %
          Data-rate threshold........................ 1000000 bps
         Client threshold........................... 12 clients
         Coverage SNR threshold..................... 16 dB
         Coverage exception level................... 25 %
         Client minimum exception level............. 3 clients
       Rogue Containment Information
       Containment Count............................ 0
       CleanAir Management Information
           CleanAir Capable......................... No
    Press Enter to continue or <ctrl-z> to abort
    Cisco AP Identifier.............................. 3
    Cisco AP Name.................................... KNOWLOGY_DC02
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:21:d8:36:c5:c4
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.22.1.101
    Gateway IP Addr.................................. 10.22.1.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Disabled
    Ssh State........................................ Disabled
    Cisco AP Location................................ KNOWLOGY_DC_ServerRoom
    Cisco AP Group Name.............................. Knowlogy_DC
    Primary Cisco Switch Name........................
    Primary Cisco Switch IP Address.................. Not Configured
    Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    Tertiary Cisco Switch Name.......................
    --More or (q)uit current module or <ctrl-z> to abort
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W  Version .................................... 7.0.235.0
    Boot Version ................................... 12.3.8.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Enabled
    PoE Power Injector MAC Addr...................... Disabled
    Power Type/Mode.................................. Power injector / Normal mode
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1131AG-A-K9
    AP Image......................................... C1130-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    Reset Button..................................... Enabled
    --More or (q)uit current module or <ctrl-z> to abort
    AP Serial Number................................. FTX1230T24F
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 22
          WLAN 2 :........................................ 21
          WLAN 4 :........................................ 25
          WLAN 3 :........................................ 25
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    AP Up Time....................................... 48 days, 20 h 24 m 41 s
    AP LWAPP Up Time................................. 40 days, 13 h 58 m 18 s
    Join Date and Time............................... Tue Sep 24 21:24:35 2013
    Join Taken Time.................................. 0 days, 00 h 10 m 48 s
    --More or (q)uit current module or <ctrl-z> to abort
    Attributes for Slot 0
       Radio Type................................... RADIO_TYPE_80211b
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
        Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 3
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
         CFP MaxDuration ........................... 60
         BSSID ..................................... 00:22:55:a5:0c:30
         Operation Rate Set
           1000 Kilo Bits........................... MANDATORY
           2000 Kilo Bits........................... MANDATORY
           5500 Kilo Bits........................... MANDATORY
           11000 Kilo Bits.......................... MANDATORY
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
         Multi Domain Capability Enabled ........... TRUE
    --More or (q)uit current module or <ctrl-z> to abort
         Country String ............................ US
       Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 1
         Number Of Channels ........................ 11
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
       Tx Power
         Num Of Supported Power Levels ............. 8
         Tx Power Level 1 .......................... 20 dBm
         Tx Power Level 2 .......................... 17 dBm
         Tx Power Level 3 .......................... 14 dBm
         Tx Power Level 4 .......................... 11 dBm
         Tx Power Level 5 .......................... 8 dBm
         Tx Power Level 6 .......................... 5 dBm
         Tx Power Level 7 .......................... 2 dBm
         Tx Power Level 8 .......................... -1 dBm
         Tx Power Configuration .................... AUTOMATIC
    --More or (q)uit current module or <ctrl-z> to abort
         Current Tx Power Level .................... 1
       Phy DSSS parameters
         Configuration ............................. AUTOMATIC
         Current Channel ........................... 1
         Extension Channel ......................... NONE
         Channel Width.............................. 20 Mhz
         Allowed Channel List....................... 1,2,3,4,5,6,7,8,9,10,11
         Current CCA Mode .......................... 0
         ED Threshold .............................. -50
         Antenna Type............................... INTERNAL_ANTENNA
         Internal Antenna Gain (in .5 dBi units).... 8
         Diversity.................................. DIVERSITY_ENABLED
       Performance Profile Parameters
         Configuration ............................. AUTOMATIC
         Interference threshold..................... 10 %
         Noise threshold............................ -70 dBm
         RF utilization threshold................... 80 %
         Data-rate threshold........................ 1000000 bps
         Client threshold........................... 12 clients
         Coverage SNR threshold..................... 12 dB
         Coverage exception level................... 25 %
    --More or (q)uit current module or <ctrl-z> to abort
         Client minimum exception level............. 3 clients
       Rogue Containment Information
       Containment Count............................ 0
       CleanAir Management Information
           CleanAir Capable......................... No
    Cisco AP Identifier.............................. 3
    Cisco AP Name.................................... KNOWLOGY_DC02
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:21:d8:36:c5:c4
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.22.1.101
    Gateway IP Addr.................................. 10.22.1.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Disabled
    Ssh State........................................ Disabled
    Cisco AP Location................................ KNOWLOGY_DC_ServerRoom
    --More or (q)uit current module or <ctrl-z> to abort
    Cisco AP Group Name.............................. Knowlogy_DC
    Primary Cisco Switch Name........................
    Primary Cisco Switch IP Address.................. Not Configured
    Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    Tertiary Cisco Switch Name.......................
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W Version .................................... 7.0.235.0
    Boot Version ................................... 12.3.8.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Enabled
    PoE Power Injector MAC Addr...................... Disabled
    --More or (q)uit current module or <ctrl-z> to abort
    Power Type/Mode.................................. Power injector / Normal mode
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1131AG-A-K9
    AP Image......................................... C1130-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    Reset Button..................................... Enabled
    AP Serial Number................................. FTX1230T24F
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 22
          WLAN 2 :........................................ 21
          WLAN 4 :........................................ 25
          WLAN 3 :........................................ 25
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    --More or (q)uit current module or <ctrl-z> to abort
    AP Up Time....................................... 48 days, 20 h 24 m 41 s
    AP LWAPP Up Time................................. 40 days, 13 h 58 m 18 s
    Join Date and Time............................... Tue Sep 24 21:24:35 2013
    Join Taken Time.................................. 0 days, 00 h 10 m 48 s
    Attributes for Slot 1
       Radio Type................................... RADIO_TYPE_80211a
       Radio Subband................................ RADIO_SUBBAND_ALL
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
       Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 3
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
         CFP MaxDuration ........................... 60
         BSSID ..................................... 00:22:55:a5:0c:30
         Operation Rate Set
           6000 Kilo Bits........................... MANDATORY
    --More or (q)uit current module or <ctrl-z> to abort
           9000 Kilo Bits........................... SUPPORTED
           12000 Kilo Bits.......................... MANDATORY
           18000 Kilo Bits.......................... SUPPORTED
           24000 Kilo Bits.......................... MANDATORY
           36000 Kilo Bits.......................... SUPPORTED
           48000 Kilo Bits.......................... SUPPORTED
           54000 Kilo Bits.......................... SUPPORTED
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
         Multi Domain Capability Enabled ........... TRUE
         Country String ............................ US
       Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 36
         Number Of Channels ........................ 20
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
    --More or (q)uit current module or <ctrl-z> to abort
       Tx Power
         Num Of Supported Power Levels ............. 7
         Tx Power Level 1 .......................... 15 dBm
        Tx Power Level 2 .......................... 14 dBm
         Tx Power Level 3 .......................... 11 dBm
         Tx Power Level 4 .......................... 8 dBm
         Tx Power Level 5 .......................... 5 dBm
         Tx Power Level 6 .......................... 2 dBm
         Tx Power Level 7 .......................... -1 dBm
         Tx Power Configuration .................... AUTOMATIC
         Current Tx Power Level .................... 1
       Phy OFDM parameters
         Configuration ............................. AUTOMATIC
         Current Channel ........................... 36
         Extension Channel ......................... NONE
         Channel Width.............................. 20 Mhz
         Allowed Channel List....................... 36,40,44,48,52,56,60,64,100,
           ......................................... 104,108,112,116,132,136,140,
           ......................................... 149,153,157,161
         TI Threshold .............................. -50
         Antenna Type............................... INTERNAL_ANTENNA
         Internal Antenna Gain (in .5 dBi units).... 8
    --More or (q)uit current module or <ctrl-z> to abort
         Diversity.................................. DIVERSITY_ENABLED
       Performance Profile Parameters
          Configuration ............................. AUTOMATIC
         Interference threshold..................... 10 %
         Noise threshold............................ -70 dBm
         RF utilization threshold................... 80 %
         Data-rate threshold........................ 1000000 bps
         Client threshold........................... 12 clients
         Coverage SNR threshold..................... 16 dB
         Coverage exception level................... 25 %
         Client minimum exception level............. 3 clients
       Rogue Containment Information
       Containment Count............................ 0
       CleanAir Management Information
           CleanAir Capable......................... No
    Press Enter to continue or <ctrl-z> to abort
    Cisco AP Identifier.............................. 5
    Cisco AP Name.................................... KN1252_AP01
    Country code..................................... US - United States
    Regulatory Domain allowed by Country............. 802.11bg:-A     802.11a:-A
    AP Country code.................................. US - United States
    AP Regulatory Domain............................. -A
    Switch Port Number .............................. 1
    MAC Address...................................... 00:21:d8:ef:06:50
    IP Address Configuration......................... DHCP
    IP Address....................................... 10.125.18.101
    IP NetMask....................................... 255.255.255.0
    Gateway IP Addr.................................. 10.125.18.1
    NAT External IP Address.......................... None
    CAPWAP Path MTU.................................. 1485
    Telnet State..................................... Enabled
    Ssh State........................................ Disabled
    Cisco AP Location................................ Knowlogy Conference Rooms Side
    Cisco AP Group Name.............................. OGR
    Primary Cisco Switch Name........................
    Primary Cisco Switch IP Address.................. Not Configured
    Secondary Cisco Switch Name......................
    Secondary Cisco Switch IP Address................ Not Configured
    --More or (q)uit current module or <ctrl-z> to abort
    Tertiary Cisco Switch Name.......................
    Tertiary Cisco Switch IP Address................. Not Configured
    Administrative State ............................ ADMIN_ENABLED
    Operation State ................................. REGISTERED
    Mirroring Mode .................................. Disabled
    AP Mode ......................................... H-Reap
    Public Safety ................................... Disabled
    AP SubMode ...................................... Not Configured
    Remote AP Debug ................................. Disabled
    Logging trap severity level ..................... informational
    Logging syslog facility ......................... kern
    S/W Version .................................... 7.0.235.0
    Boot Version ................................... 12.4.10.0
    Mini IOS Version ................................ 3.0.51.0
    Stats Reporting Period .......................... 180
    LED State........................................ Enabled
    PoE Pre-Standard Switch.......................... Disabled
    PoE Power Injector MAC Addr...................... Disabled
    Power Type/Mode.................................. PoE/Medium Power (15.4 W)
    Number Of Slots.................................. 2
    AP Model......................................... AIR-LAP1252AG-A-K9
    AP Image......................................... C1250-K9W8-M
    IOS Version...................................... 12.4(23c)JA5
    --More or (q)uit current module or <ctrl-z> to abort
    Reset Button..................................... Enabled
    AP Serial Number................................. FTX122990L5
    AP Certificate Type.............................. Manufacture Installed
    H-REAP Vlan mode :............................... Enabled
          Native ID :..................................... 118
          WLAN 1 :........................................ 111
          WLAN 2 :........................................ 111
          WLAN 4 :........................................ 112
          WLAN 6 :........................................ 112
          WLAN 7 :........................................ 111
          WLAN 9 :........................................ 112
          WLAN 8 :........................................ 112
    H-REAP Backup Auth Radius Servers :
    Static Primary Radius Server.................... Disabled
    Static Secondary Radius Server.................. Disabled
    Group Primary Radius Server..................... Disabled
    Group Secondary Radius Server................... Disabled
    AP User Mode..................................... AUTOMATIC
    AP User Name..................................... Not Configured
    AP Dot1x User Mode............................... Not Configured
    AP Dot1x User Name............................... Not Configured
    Cisco AP system logging host..................... 255.255.255.255
    AP Up Time....................................... 26 days, 00 h 24 m 39 s
    --More or (q)uit current module or <ctrl-z> to abort
    AP LWAPP Up Time................................. 26 days, 00 h 23 m 48 s
    Join Date and Time............................... Wed Oct 9 10:59:07 2013
    Join Taken Time.................................. 0 days, 00 h 00 m 50 s
    Attributes for Slot 0
       Radio Type................................... RADIO_TYPE_80211n-2.4
       Administrative State ........................ ADMIN_ENABLED
       Operation State ............................. UP
       Radio Role .................................. ACCESS
       CellId ...................................... 0
       Station Configuration
         Configuration ............................. AUTOMATIC
         Number Of WLANs ........................... 7
         Medium Occupancy Limit .................... 100
         CFP Period ................................ 4
         CFP MaxDuration ........................... 60
         BSSID ..................................... 00:22:55:df:a5:90
         Operation Rate Set
           1000 Kilo Bits........................... MANDATORY
           2000 Kilo Bits........................... MANDATORY
           5500 Kilo Bits........................... MANDATORY
    --More or (q)uit current module or <ctrl-z> to abort
           11000 Kilo Bits.......................... MANDATORY
         MCS Set
           MCS 0.................................... SUPPORTED
           MCS 1.................................... SUPPORTED
           MCS 2.................................... SUPPORTED
           MCS 3.................................... SUPPORTED
           MCS 4.................................... SUPPORTED
           MCS 5.................................... SUPPORTED
           MCS 6.................................... SUPPORTED
           MCS 7.................................... SUPPORTED
           MCS 8.................................... SUPPORTED
            MCS 9.................................... SUPPORTED
           MCS 10................................... SUPPORTED
           MCS 11................................... SUPPORTED
           MCS 12................................... SUPPORTED
           MCS 13................................... SUPPORTED
           MCS 14................................... SUPPORTED
           MCS 15................................... SUPPORTED
         Beacon Period ............................. 100
         Fragmentation Threshold ................... 2346
         Multi Domain Capability Implemented ....... TRUE
         Multi Domain Capability Enabled ........... TRUE
         Country String ............................ US
    --More or (q)uit current module or <ctrl-z> to abort
       Multi Domain Capability
         Configuration ............................. AUTOMATIC
         First Chan Num ............................ 1
         Number Of Channels ........................ 11
       MAC Operation Parameters
         Configuration ............................. AUTOMATIC
         Fragmentation Threshold ................... 2346
         Packet Retry Limit ........................ 64
       Tx Power
         Num Of Supported Power Levels ............. 8
         Tx Power Level 1 .......................... 20 dBm
         Tx Power Level 2 .......................... 17 dBm
         Tx Power Level 3 .......................... 14 dBm
         Tx Power Level 4 ..........

    Well you need to understand the behavior of h-reap or what it's called now, FlexConnect. In this mode, the clients are still remembers on the WLC until the session timer/idle timer expires. So switching between SSID's in h-reap will not be the same when switching when the AP's are in local mode.
    Take a look at the client when connected in FlexConnect in the WLC GUI monitor tab. Thus will show you what ssid and vlan the client is on. Now switch to a different ssid and compare this. It's probably the same because the client has not timed out. Now go back to the other ssid and look again. Now on the WLC, remove or delete the client and then switch to the other ssid at the same time. Or switch SSID's and then remove the client. The client will join the new ssid and in the monitor tab, you should see the info.
    There is no need to have clients have multiple SSID's unless your testing. Devices should only have one ssid profile configured to eliminate any connectivity issues from the device wanting to switch SSID's.
    Sent from Cisco Technical Support iPhone App

  • I have a problem with my 4s camera which has come up recently. Everytime I take a picture and look it up via the 'Photos' app, it shows as blank. But when I click on edit on the blank picture, it comes up and I am able to save it back on my photo album.

    I have a problem with my 4s camera which has come up recently. Everytime I take a picture and look it up via the 'Photos' app, it shows as blank. But when I click on edit on the blank picture, it comes up and I am able to save it back on my photo album as a proper image. Besides, I have also experiences the camera working a bit wiered (slow and often blanks out the moment I am ready to take a photo). Any help on this pls?

    Hi Noob Søren
    There are a few things that are confusing in your question.
    As far as I know, you dont have to install Time Machine on this OS as it is already installed for you. You only need to connect a hard drive to your computer via firewire or usb, click on the Time Machine icon, Open Time Machine Preference in the drop down menu and select a disk: your connected hard drive.
    You can of course reformat this connected device, partition it into a few volumes to organise data if you so wish.
    I find it strange that your mac's hard drive is divided into two volumes... perhaps this was created through bootcamp?
    You can access the configuration of your hd through Applications/Utilities/Disk Utilities.
    Clicking on one of the icons on the right hand panel will bring the details of the contents of your hardDrive and volumes. From there you can decide to erase a partition, reformat etc....
    If your hd contains more than one volume, and one of them is empty, you could decide to remove it. Back up all your important data before doing so.
    Hope this helps
    WN

  • I have a problem with iMovie since the last update to 9.0.7

    I have a problem with iMovie since the last update to 9.0.7 when you press the camera button to import iMovie vypíče stops and an error message. Or he'll file> import from camera so iMovie also quits.

    Process:         iMovie [892]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.7 (1768)
    Build Info:      iMovieApp-1768000000000000~2
    App Item ID:     408981434
    App External ID: 9556074
    Code Type:       X86 (Native)
    Parent Process:  launchd [268]
    User ID:         501
    Date/Time:       2012-07-29 20:23:32.029 +0200
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Interval Since Last Report:          8984 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  280 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:                      0EBB5AAE-B67D-4EFD-AA84-E30FBE793426
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000007bef5184
    VM Regions Near 0x7bef5184:
        __LINKEDIT             000000007016d000-00000000701d2000 [  404K] r--/rwx SM=COW  /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    --> MALLOC_TINY            000000007be00000-000000007bf00000 [ 1024K] rw-/rwx SM=COW 
        MALLOC_SMALL           000000007c000000-000000007c800000 [ 8192K] rw-/rwx SM=PRV 
    Application Specific Information:
    Performing @selector(a_noCaptureDevicesAvailable:) from sender MediumButton 0x7cd87010
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                           0x7bef5184 0 + 2079281540
    1   com.apple.CMIOQTUnits         0x0eeff19b 0xeed4000 + 176539
    2   com.apple.CMIOQTUnits         0x0eeff5bf 0xeed4000 + 177599
    3   com.apple.CMIOQTUnits         0x0eedca8c 0xeed4000 + 35468
    4   com.apple.CMIOQTUnits         0x0eef9caa 0xeed4000 + 154794
    5   com.apple.QTKit               0x9a4e936c +[QTCaptureVDIGDevice _refreshDevices] + 470
    6   com.apple.QTKit               0x9a4e8ff4 +[QTCaptureVDIGDevice devicesWithIOType:] + 78
    7   com.apple.QTKit               0x9a44c8c6 +[QTCaptureDevice devicesWithIOType:] + 199
    8   com.apple.QTKit               0x9a439508 +[QTCaptureDevice inputDevices] + 41
    9   com.apple.QTKit               0x9a43944f +[QTCaptureDevice inputDevicesWithMediaType:] + 36
    10  com.apple.iMovieApp           0x000b5d83 0xaa000 + 48515
    11  com.apple.iMovieApp           0x000b4195 0xaa000 + 41365
    12  com.apple.iMovieApp           0x000ca004 0xaa000 + 131076
    13  com.apple.iMovieApp           0x000cc720 0xaa000 + 141088
    14  com.apple.iMovieApp           0x000c9cac 0xaa000 + 130220
    15  com.apple.iMovieApp           0x000cc9b8 0xaa000 + 141752
    16  com.apple.iMovieApp           0x000baa8b 0xaa000 + 68235
    17  com.apple.iMovieApp           0x000e32a3 0xaa000 + 234147
    18  libobjc.A.dylib               0x9a3285d3 -[NSObject performSelector:withObject:] + 70
    19  com.apple.AppKit              0x94f019a2 -[NSApplication sendAction:to:from:] + 436
    20  com.ecamm.iglasses            0x054d14ef newsendAction + 63
    21  com.apple.iMovieApp           0x000fbbdc 0xaa000 + 334812
    22  com.apple.AppKit              0x94f017b0 -[NSControl sendAction:to:] + 102
    23  com.apple.AppKit              0x94f016bf -[NSCell _sendActionFrom:] + 159
    24  com.apple.AppKit              0x94effc30 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1895
    25  com.apple.AppKit              0x94eff46f -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 511
    26  com.apple.AppKit              0x94efeb89 -[NSControl mouseDown:] + 867
    27  com.apple.AppKit              0x94ef6841 -[NSWindow sendEvent:] + 6968
    28  com.apple.iMovieApp           0x002219db 0xaa000 + 1538523
    29  com.apple.AppKit              0x94ef181f -[NSApplication sendEvent:] + 4278
    30  com.apple.iMovieApp           0x000fb90c 0xaa000 + 334092
    31  com.apple.AppKit              0x94e0b73c -[NSApplication run] + 951
    32  com.apple.AppKit              0x94dae8e6 NSApplicationMain + 1053
    33  com.apple.iMovieApp           0x000ac62a 0xaa000 + 9770
    34  com.apple.iMovieApp           0x000ac195 0xaa000 + 8597
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x97819c02 __select_nocancel + 10
    1   libdispatch.dylib             0x9a006a5c _dispatch_mgr_invoke + 376
    2   libdispatch.dylib             0x9a0067fd _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib        0x9781a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib             0x92f7004c _pthread_workq_return + 45
    2   libsystem_c.dylib             0x92f6fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib             0x92f57cca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib        0x9781a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib             0x92f7004c _pthread_workq_return + 45
    2   libsystem_c.dylib             0x92f6fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib             0x92f57cca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.CoreFoundation      0x984efcc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation      0x984f56af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation      0x984f4d6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation      0x98504781 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate        0x039c672f AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 266
    7   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    8   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib        0x9781a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib             0x92f7004c _pthread_workq_return + 45
    2   libsystem_c.dylib             0x92f6fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib             0x92f57cca start_wqthread + 30
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x97819be6 __select + 10
    1   com.apple.CoreFoundation      0x98539320 __CFSocketManager + 1632
    2   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    3   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x987e36b9 TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore 0x987e3190 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore 0x987e3419 TSWaitOnSemaphoreRelative + 24
    6   ???                           0x9412758c 0 + 2484237708
    7   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    8   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 8:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio     0x959e3536 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio     0x959de07c HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio     0x959dc8bb HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio     0x959dc2a1 HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio     0x959e626a ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio     0x959dc1c3 HALB_IOThread::Entry(void*) + 69
    8   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    9   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   ???                           0x945e17ce 0 + 2489194446
    2   ???                           0x94195e06 0 + 2484690438
    3   ???                           0x945e1560 0 + 2489193824
    4   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    5   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x987e36b9 TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore 0x987e3190 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore 0x987e3419 TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore 0x9878481a AIOFileThread(void*) + 892
    7   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    8   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 11:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92fffb08 pthread_cond_wait + 48
    3   ???                           0x9423e536 0 + 2485380406
    4   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    5   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x91fb4506 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation          0x91fb432d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation          0x91fb9880 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO         0x0de5c487 -[PluginLockPair scanPaths] + 540
    7   com.apple.Foundation          0x91f86318 -[NSThread main] + 45
    8   com.apple.Foundation          0x91f8629b __NSThread__main__ + 1396
    9   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    10  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x91fb4506 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation          0x91fb432d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation          0x91fb9880 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO         0x0de5c487 -[PluginLockPair scanPaths] + 540
    7   com.apple.Foundation          0x91f86318 -[NSThread main] + 45
    8   com.apple.Foundation          0x91f8629b __NSThread__main__ + 1396
    9   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    10  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.framework.IOKit     0x9227ccd6 io_connect_method + 404
    3   com.apple.framework.IOKit     0x9222503d IOConnectCallMethod + 520
    4   com.apple.framework.IOKit     0x922252f1 IOConnectCallStructMethod + 84
    5   com.apple.iokit.SCSITaskLib   0x0ee92a8a MMCDeviceUserClientClass::ModeSense10(unsigned char, unsigned char, unsigned char, unsigned char, void*, unsigned short, SCSITaskStatus*, SCSI_Sense_Data*) + 220
    6   com.apple.iokit.SCSITaskLib   0x0ee91e77 MMCDeviceUserClientClass::sModeSense10(void*, unsigned char, unsigned char, unsigned char, unsigned char, void*, unsigned short, SCSITaskStatus*, SCSI_Sense_Data*) + 81
    7   com.apple.DiscRecording       0x95e07f43 DRDevicePlugIn::ExecuteMMCDeviceTask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 815
    8   com.apple.DiscRecording       0x95e07b13 DRDevicePlugIn::ExecuteSCSITask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 71
    9   com.apple.DiscRecording       0x95e07984 DROpticalDevice::ExecuteSCSITask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 250
    10  com.apple.DiscRecording       0x95e0761b DROpticalDevice::ModeSense10(unsigned char, void*, unsigned short*) + 323
    11  com.apple.DiscRecording       0x95e074a8 DROpticalDevice::GetCDCapabilitiesPage(__CDCapabilitiesPage*) + 120
    12  com.apple.DiscRecording       0x95e0629a DROpticalDevice::InitializeState() + 924
    13  com.apple.DiscRecording       0x95e00c78 DROpticalDevice::Initialize(void*, __CFData const*, __CFString const*) + 228
    14  com.apple.DiscRecording       0x95e008e0 _DRDeviceCreate(void*, __CFData const*, __CFString const*, __CFDictionary const*) + 253
    15  com.apple.DiscRecording       0x95e007c0 -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:usingProfile:] + 46
    16  com.apple.DiscRecording       0x95e0078d -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:] + 55
    17  com.apple.DiscRecording       0x95e41ad6 _DRDeviceCreate + 172
    18  com.apple.DiscRecording       0x95dffd14 DROpticalDevice::Create(__CFData const*, __CFString const*) + 24
    19  com.apple.DiscRecording       0x95dffc53 DRDeviceManager::RegisterAuthoringDevice(__CFData const*, __CFString const*) + 57
    20  com.apple.DiscRecording       0x95dffba7 DRDeviceManager::IOCDDeviceMatched(DRDeviceManager*, unsigned int) + 209
    21  com.apple.DiscRecording       0x95dff812 DRDeviceManager::DRDeviceManager() + 402
    22  com.apple.DiscRecording       0x95dff666 DRDeviceManager::Create() + 30
    23  com.apple.DiscRecording       0x95dfe1a9 DRAutoInit::Initialize() + 759
    24  com.apple.DiscRecording       0x95dfdcdf DRDeviceCopyDeviceForBSDName + 126
    25  com.apple.MPEG2PSRADPlugin    0x0e73067d FenwayIsFolderSupported + 613
    26  com.apple.MPEG2PSRADPlugin    0x0e723c71 -[FenRAD pathIsValidVolume:] + 120
    27  com.apple.proapps.MIO         0x0de5c642 -[PluginLockPair mountPath:] + 290
    28  com.apple.proapps.MIO         0x0de5c3d6 -[PluginLockPair scanPaths] + 363
    29  com.apple.Foundation          0x91f86318 -[NSThread main] + 45
    30  com.apple.Foundation          0x91f8629b __NSThread__main__ + 1396
    31  libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    32  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 15:: com.apple.bdplayback-DVDEventCallbackThread
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin         0x0dfcdc9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin         0x0dfdb2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 16:: com.apple.bdplayback-TFThread
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72220 _pthread_cond_wait + 833
    2   libsystem_c.dylib             0x92ff80ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.AVCHDPlugin         0x0e0eb58c WindowsEvent::Wait(int) + 86
    4   com.apple.AVCHDPlugin         0x0e11b4e1 IdleFiberEntry(void*) + 305
    5   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    6   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 17:: com.apple.bdplayback-OSXMessageThread
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin         0x0dfcdc9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin         0x0dfdb2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 18:: com.apple.bdplayback-DDPTask
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin         0x0dfcdc9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin         0x0dfdb2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin         0x0df88bc1 ScheduleRoutine + 81
    4   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    5   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 19:
    0   libsystem_kernel.dylib        0x9781991a __psynch_mutexwait + 10
    1   libsystem_c.dylib             0x92f7313b pthread_mutex_lock + 595
    2   com.apple.DiscRecording       0x95dfdefc DRAutoInit::Initialize() + 74
    3   com.apple.DiscRecording       0x95dffa40 DRDiskArbitor::DiskAppearedCallback(__DADisk*, void*) + 30
    4   com.apple.DiskArbitration     0x902f6b8b _DADispatchCallback + 99
    5   com.apple.DiskArbitration     0x902f68c0 _DASessionCallback + 320
    6   com.apple.CoreFoundation      0x984c01ef __CFMachPortPerform + 303
    7   com.apple.CoreFoundation      0x984c00a5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
    8   com.apple.CoreFoundation      0x984bfcd2 __CFRunLoopDoSource1 + 146
    9   com.apple.CoreFoundation      0x984f59c6 __CFRunLoopRun + 2038
    10  com.apple.CoreFoundation      0x984f4d6a CFRunLoopRunSpecific + 378
    11  com.apple.CoreFoundation      0x98504781 CFRunLoopRun + 129
    12  com.apple.DiscRecording       0x95dff285 DRWorkLoop::WorkLoop() + 273
    13  com.apple.DiscRecording       0x95dff15d DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    14  com.apple.DiscRecording       0x95dfeefe DRThreadObject::StartRoutine(DRThreadObject*) + 142
    15  com.apple.DiscRecording       0x95dfee6f DRThreadObject::SymbolRoutine(DRThreadObject*) + 17
    16  libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    17  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.CoreFoundation      0x984efcc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation      0x984f56af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation      0x984f4d6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation      0x984f4bdb CFRunLoopRunInMode + 123
    6   com.apple.CoreMediaIO         0x92f1139f CMIO::DAL::RunLoop::OwnThread(void*) + 151
    7   com.apple.CoreMediaIO         0x92f08938 CAPThread::Entry(CAPThread*) + 176
    8   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    9   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x008505a7  ebx: 0x0eefc77d  ecx: 0x0ef386a0  edx: 0x0ef3869c
      edi: 0x857aa140  esi: 0x00000000  ebp: 0xbff55388  esp: 0xbff54b3c
       ss: 0x00000023  efl: 0x00010246  eip: 0x7bef5184   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x7bef5184
    Logical CPU: 0
    Binary Images:
       0xaa000 -   0x52ffef  com.apple.iMovieApp (9.0.7 - 1768) <5BA2C2F7-B62A-3813-AC63-01FF73AF04A0> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x5f2000 -   0x608ff3  com.apple.iLifeFaceRecognition (1.0 - 21.1) <B06AF65E-3188-3361-BD75-3EE9B2DF4A68> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x618000 -   0x619ff3  com.apple.Helium (3.1.0 - 18567.3) <72A242AC-3BA7-3DD5-A043-000C7A9DCD11> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x61e000 -   0x64cfe3  com.apple.MPEG2TSDecoder (1.0 - 84) <7E230E93-F7F6-34A2-8B60-E6F79E353426> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x686000 -   0x705ff7  com.apple.iLifeMediaBrowser (2.7.1 - 543) <679D1492-6CE0-3A36-85E7-B0B612CED18F> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x749000 -   0x867ff3  com.apple.WebKit (8536 - 8536.25) <5365AA39-A1A7-315D-AA1C-0C564909C0E0> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
      0x919000 -   0x91aff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x922000 -   0x923fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x928000 -   0x94dff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x955000 -   0x989fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x98f000 -   0xaf6fff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xafd000 -   0xd00feb  com.apple.Helium.HeliumRender (2.1.0 - 18567.3) <A20BE37C-2987-3BB8-AA52-0607FE7CCF8C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xd56000 -   0xdd7fe7  com.apple.Helium.Heliumfilters (2.1.0 - 18567.3) <3DCC7DCF-8734-31A0-9B6F-0139CC6CB71C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumFilters.framework/Versions/A/HeliumFilters
    0x110e000 -  0x12cbfeb  com.apple.Helium.HeliumSensoCore (2.0.2 - 18567.3) <BFA19728-C6DD-3D2D-BFF5-1099CBB20679> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
    0x1301000 -  0x1f8bff3  com.apple.WebCore (8536 - 8536.24) <06F7EC1E-A7F2-37F1-ADC6-687284E661D8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x39c2000 -  0x39f3ff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
    0x3a69000 -  0x3a76ffb  com.apple.Librarian (1.1 - 1) <C8D82AA3-AE5E-3B6D-A8D1-847856057186> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x3ab9000 -  0x3abcfef  com.apple.LiveType.component (2.1.3 - 2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x3ac1000 -  0x3b26fde  com.apple.LiveType.framework (2.1.3 - 2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x3b9e000 -  0x3b9ffff +com.ecamm.pluginloader (Ecamm Plugin Loader v1.0.5 - 1.0.5) /Library/InputManagers/*/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x3bac000 -  0x3badffe  com.apple.AddressBook.LocalSourceBundle (2.0 - 1143) <2D6A1C52-95F6-3BDF-BBEF-74A09A2642C1> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3bb2000 -  0x3bb5ffe  com.apple.DirectoryServicesSource (2.0 - 1143) <74F9B668-8028-334F-AC25-6A4588C5AFC9> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x4478000 -  0x447fffc  com.apple.AppleGVAHW.component (1.1 - 1) <FC1BC394-2ACC-3611-B476-C3E991A901DE> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x4527000 -  0x4549ffe  libssl.0.9.7.dylib (106) <FC1F6C04-EAD3-39D1-8E25-B1192E89D98B> /usr/lib/libssl.0.9.7.dylib
    0x54cc000 -  0x5500ff7 +com.ecamm.iglasses (v2.1.5 - 2.1.5) <3472A39E-58E9-1A03-6F10-E90966DE5D96> /Library/InputManagers/*/iGlasses.plugin/Contents/MacOS/iGlasses
    0x551b000 -  0x5563ffb  com.apple.CoreMediaIOServices (171.0 - 3244) <9563BB38-F23A-3FC6-855D-05487E700465> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/CoreMediaIOServ ices
    0x5584000 -  0x55abff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D963392A-4B4C-3B81-A873-E1C06C6829E6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/CoreMediaPrivate
    0x5869000 -  0x58bafff  com.apple.AddressBook.CardDAVPlugin (10.8 - 320) <8A8BD10E-04F2-385A-B93B-CD03E13BA4B6> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x58d7000 -  0x5937fff  com.apple.coredav (1.0.1 - 179.4) <3E62FDFC-D3A7-3196-A11F-93F54FF44EB8> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x5970000 -  0x597dffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x5987000 -  0x5996ffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <A9BF8310-F1D2-38EC-AA1A-5ECB479B89CE> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x59a1000 -  0x59a8ff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x59b2000 -  0x5a0efff  com.apple.corelocation (1.0 - 1239.35) <6E266E57-FA31-3B35-9CFD-29AA45B52C7B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x5a3b000 -  0x5a6dff3  com.apple.GeoServices (1.0 - 1) <5D61BA20-171C-373D-A8F0-BCC02AD1DD81> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x5a7f000 -  0x5a88fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x8cda000 -  0x8e66ff8  GLEngine (8.5) <23C1BECF-D0EF-339D-B312-EFACB26C5983> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x8e9d000 -  0x8feeff7  libGLProgrammability.dylib (8.5) <27E2DAE2-DECE-364C-A1C2-138735A3869E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x901c000 -  0x9028ffb  libGPUSupport.dylib (8.5) <DCEDB13E-6E2C-3D14-965E-70522403723B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x902f000 -  0x905bffa  GLRendererFloat (8.5) <1E69D3D7-1782-3FF8-AB52-3F23DC4F617B> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x9064000 -  0x906cff2  libcldcpuengine.dylib (2.1.16) <61717F57-9AAC-31B4-8894-27A1BF7987B9> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x9073000 -  0x9075fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x90f6000 -  0x91b4ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x94a1000 -  0x94a1fff  com.apple.iLMBAppDefPlugin (2.7.1 - 327) <F64F0E0D-1124-30F2-8964-A930DC52448D> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x94a6000 -  0x94a7fff  com.apple.iLMBFolderPlugin (2.7.1 - 327) <2B5245FC-4009-3AF0-9046-3CA2CC9382BE> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x94ae000 -  0x94b5ff8  com.apple.iLMBAperturePlugin (2.7.1 - 327) <CF4434CB-6D74-3D2A-9763-A9E510C117CA> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x94bc000 -  0x94bffff  com.apple.iLMBGarageBandPlugin (2.7.1 - 327) <79CFDFDA-6C6C-3005-8B93-C0DDFEB091A6> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x9523000 -  0x9672ff7  com.apple.iLMBAperture31Plugin (2.7.1 - 327) <E019FCC1-82E9-3B5C-8857-C400E2A0C542> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x96ba000 -  0x985effb  com.apple.iLMBAperturePlugin2012 (2.7.1 - 327) <B478A96B-9977-38B0-90CF-6295DEAD35AC> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0x98de000 -  0x98e7ffd  com.apple.iLMBFinalCutPlugin (2.7.1 - 327) <AADD0E89-19B5-3B28-97F8-7EB1D3415D42> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x98ee000 -  0x98f9ffd  com.apple.iLMBiMoviePlugin (2.7.1 - 327) <9D46F8D8-DF2B-3FC5-A370-7E9392D82181> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x9901000 -  0x9914fff  com.apple.iLMBiPhoto8Plugin (2.7.1 - 327) <AF08A61A-B994-34C5-A266-E53382D3C3B5> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x991c000 -  0x9a6dfff  com.apple.iLMBiPhoto9Plugin (2.7.1 - 327) <23389FAA-EF09-3E96-9E56-9599C7C777D5> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x9ab5000 -  0x9abdffb  com.apple.iLMBiPhotoPlugin (2.7.1 - 327) <0BCB9184-2CF4-3E30-AB5B-BC54CA0A459D> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x9ac4000 -  0x9c69ff3  com.apple.iLMBiPhotoPlugin2012 (2.7.1 - 327) <A10C2006-1338-3D88-A367-5AE4A0AB7BAB> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0x9cc4000 -  0x9cccffe  com.apple.iLMBiTunesPlugin (2.7.1 - 327) <E7755FD8-BEAA-3A4C-973F-273432FBA0CD> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x9cd3000 -  0x9d8aff7  com.apple.iTunesAccess (10.6.3 - 10.6.3) <20F54184-69D0-468A-CEA5-1665192AF5BA> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9dba000 -  0x9dbbfff  com.apple.iLMBMoviesFolderPlugin (2.7.1 - 327) <9EDCCFF3-FEA7-3F34-8711-A1078D1DE025> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x9dc0000 -  0x9dc2ffb  com.apple.iLMBPhotoBooth2Plugin (2.7.1 - 327) <98886D3A-BB21-3939-9DA2-0793D05B799A> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x9dc8000 -  0x9dc9ffd  com.apple.iLMBPhotoBoothPlugin (2.7.1 - 327) <5C980E93-FB91-31E0-849F-F403A1B9A898> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0xa5af000 -  0xa5c1fd9  com.apple.FCP Uncompressed 422.component (1.5 - 1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xb28b000 -  0xb290fff  com.apple.audio.AppleHDAHALPlugIn (2.3.0 - 2.3.0f2) <D971DBC9-B1D6-3F20-A6EA-B165C32A4E69> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xbf30000 -  0xbf30ff7 +cl_

  • I have big problems with mountain lion. you can not have a boot disk system I resulted in the need to re-download the os from scratch impiegandoci 8 hours, it is outrageous even with windows 95.

    I have big problems with mountain lion. you can not have a boot disk system I resulted in the need to re-download the os from scratch impiegandoci 8 hours, it is outrageous even with windows 95.
    at least that the operator has confirmed to me that he called me. I also have problems with either the start of the mac with the power off. I can not understand if it crashes or is just very very slow.
    Finally, I have a problem with the external hard disck. I often said to have been ejected incorrectly (not true) and I start to restore the startup recovery disk because disk utility is ineffective from the normal operating system .. is a shocking thing, but how you reduced. in four years it had never happened. seem to have windows or worse. Wake up.
    I am an Italian, alas, and then I would like an answer to my language because my € are the same as German French or English.

    You are on Windows 2000, you do not have a "Firefox" button, and should consider yourself to be fortunate in that you still have menus and don't have to do anything to get the menus back instead of the "Firefox" button. (The same applies to Windows XP users).
    Use the "File" menu to get to Import. You are not on Windows 7 or Vista, and don't have to put up with the nonsense added for Aero.
    If you want the "Firefox" button you can get it with View -> toolbars -> (uncheck) Menu Bar. The menu bar and the "Firefox" button were supposed to be mutually exclusive (which is impossible in some cases without being incompatible).
    Once you are using the "Firefox" button ...
    Use the "Alt" key to view the menu bar (temporarily) containing File, Edit, View, History, Bookmarks, Tools, and Help. On Windows 7 and Vista, the menu bar was hidden by default in Firefox 4 and above. These menu items are more or less available under the "Firefox" button which has the most used of the built-in Firefox menu items available in a different format.
    To get back to having menus again. "Firefox" button -> Options (second column) -> (check) Menu Bar
    You can make '''Firefox 7.0.1''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 8.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface

  • HT6030 I have many problems with my mail since I moved to mavericks. The filter is very sensitive, read mail appears as unread, I can't drag mail to the folders and more. I can't update the mail program as directed on this page, update says my system is u

    I have many problems with my mail since I moved to mavericks. The filter is very sensitive, read mail appears as unread, I can't drag mail to the folders and more. I can't update the mail program as directed on this page, update says my system is updated

    I don't think that a software update from Apple will solve the issues that you are having. You have a rogue installation. After you posted I have just done the following:
    Disk Utility can verify  my partitioned Volume (including my boot disk) AND REPAIR the non-boot disks on the same Volume without a glitch. It repairs the non-boot disks containing data smoothly.
    I have used Mail to send some mails from some Yahoo and Hotmail accounts to my Thunderbird client containing GMail accounts - absolutely normal.
    I have iLife '09 but my iMovie '09 and iPhoto '09 open in a jiffy and I see no issues here. I have 6GB RAM (Maximum) on an early 2008 Macbook Pro with a 750GB hard drive partitioned with 120GB reserved for the Boot Drive.
    I am sorry that I cannot help further but I am sure there must be a way to reinstall the software without having to revert to restoring your ML backup. I have two clones and if you have such I would attempt to do that through that rather than through Time Machine - that is of course if you have a cloned drive.
    Good luck!

  • HT5678 I have problems saving pdf files in the web when I use Safari. I don't have this problem with firefox

    I have problems saving pdf files in the web when I use Safari.  I don't have this problem with firefox.

    do they save ok if Safari - Preferences - Security - Allow all other plug-ins is unchecked ?
    If so, likely an adobe or other pdf plugin
    Re-check the setting above & quit any browsers,
    Look in this folder by triple-clicking the line below, then ctrl-clicking it & choosing Services - Open
    /Library/Internet Plug-Ins/
    remove anything with pdf in the filename & test again
    Sometimes, plug-ins can be in the User Library folder :
    ~/Library/Internet Plug-Ins/

  • I have a problem with loading the PNG image

    I have a problem with loading the PNG image from site. For ex. go to icefilms com and is starts to load png like crazy CPU is huge and you can not shut down Firefox at least a minute. This is not just in this site but whit any one whit lots of pictures.
    Image from firefox: Picture [http://img836.imageshack.us/img836/9910/7312011103147pm.jpg 1] [http://img28.imageshack.us/img28/8505/7312011103249pm.jpg 2] [http://img706.imageshack.us/img706/5615/7312011103348pm.jpg 3 ][http://img827.imageshack.us/img827/8483/7312011103533pm.jpg 4]
    This is my Task Manager [http://img217.imageshack.us/img217/5715/7312011103621pm.jpg 1]
    - I try safe mode, same thing
    -All addons and plugins are ok
    Any idea why is this so big problem.

    i did both of them, but still the while sending the mail the diolog box is not showing up and also the spelling and grammer does not do the spelling check. 
    This problem just started for about 3 to 4 days now.  earlier it was working normally.

  • I have a problem with the effect gallery and the saving libraries in Illustrator CS6

    Hi everybody
    I have a problem with the effect gallery and the saving libraries in Illustrator
    1. When you go to to effects > effect Gallery the the sketch filter always is black and white. Is this normal? In Photoshop you can set your background and foreground and the sketch effects takes those colors. Is there any way to do this in Illustrator? I have tried changing the colour of the fill and stroke but nothing...
    2. In the same area as before effects > effect Gallery .... In Photoshop you can add multiple filters with the create new button. Always is off is there anyway to make it available? or the only way is to by creating several individual ones and manage then in the appearance panel ...
    3. I saved a brush library and now it appears in the user defined area so I can get it in any document, that is good but any one knows how to delete a user undefined library?
    Many thanks in advance for the help .... I look forward for the reply =)

    I see that it is six months ago that I first posted this. Nothing has changed. When I use affixa to create a message with an attachment from my gmail account in firefox, the message is created in drafts, but the gmail window is closed and I have to re-open it. Not critical, but annoying.
    Now there is a plug-in on the affixa site that is supposed to be designed for Firefox, and which affixa support claims should take care of this. And I've downloaded it twice. When you download it and open it, it says that it will be installed when Firefox restarts, and gives you a button to restart Firefox. But after you click that button and firefox disappears and re-appears, the affixa plug-in is NOT in the plugin list.
    Please, somebody, HELP.

  • Problems with OLE Container in QUERY

    Hi all,
    I have problem with OLE Container when I am trying to retrieve data from the database. Inserting is no problem and commit is done. I am doing it with
    initialize_container('block.ole_object','C:\test.doc');
    I have only one column of BLOB type and it is last in the block as it was suggested somewhere on the forum.
    When I am trying to retrieve the already inserted data I get error with the following
    Description:
    FRM-40505: Oracle ERROR: unable to perform query and CTRL+F1 says the following:
    ORA-00932: inconsistent data types: expected got
    The forms and the database are as follow:
    Forms [32 Bit] Version 6.0.8.24.1 (Production)
    Oracle Database 10g Enterprise Edition Release 10.1.0.4.2 - Production
    I need immediate help!!!

    This may be related to the 10g database, I'm not sure as there is no way for me to test it. I know that it works with a 9i database.
    One thing to check is to make sure that you don't have the FORMS60_DISABLE_DESCRIBE set to 1 within the Oracle registry.
    If this doesn't work, your only option might be to use a LONG RAW instead of a BLOB column type in the database.

  • Hi Guys, I have a problem with Importing Pictures onto my Mac mini with Lion installed by using a Card Reader, What is the problem here so I can get Pictures onto my Computer. ,

    Hi Guys,
    I have a problem with Importing Pictures onto my Mac mini with Lion installed by using a Card Reader,
    What is the problem here so I can get Pictures onto my Computer. ,

    Hi Noob Søren
    There are a few things that are confusing in your question.
    As far as I know, you dont have to install Time Machine on this OS as it is already installed for you. You only need to connect a hard drive to your computer via firewire or usb, click on the Time Machine icon, Open Time Machine Preference in the drop down menu and select a disk: your connected hard drive.
    You can of course reformat this connected device, partition it into a few volumes to organise data if you so wish.
    I find it strange that your mac's hard drive is divided into two volumes... perhaps this was created through bootcamp?
    You can access the configuration of your hd through Applications/Utilities/Disk Utilities.
    Clicking on one of the icons on the right hand panel will bring the details of the contents of your hardDrive and volumes. From there you can decide to erase a partition, reformat etc....
    If your hd contains more than one volume, and one of them is empty, you could decide to remove it. Back up all your important data before doing so.
    Hope this helps
    WN

  • I have a problem with macbook pro OS 10.5.8 and cannot play youtube anymore, before Yes

    i have a problem with macbook pro mac os 10.5.8 and cannot play youtube but before ther is no problem abou this. now there is warning sign to install adobe flash player, but when i install adobe it said cannot be compatible, and I went to the apple store, they sid need to upgrade the system to mac IOS 10.6 and i dont want to spend much... somebody to help me this

    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mavericks if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.
    Upgrading from Snow Leopard to Lion or Mavericks
    To upgrade to Mavericks you must have Snow Leopard 10.6.8, Lion, or Mountain Lion installed. Purchase and download Mavericks (Free) from the App Store. Sign in using your Apple ID. The file is quite large, over 5 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mavericks- System Requirements
           Macs that can be upgraded to OS X Mavericks
             1. iMac (Mid 2007 or newer) — Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) —
                 Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) — Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) — Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) — Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) — Model Identifier 3,1 or later
             7. Xserve (Early 2009) — Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
    Are my applications compatible?
             See App Compatibility Table — RoaringApps.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mavericks, it may still meet the requirements to install Lion.
    You can purchase Lion at the Online Apple Store. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.
    This, Adobe Flash Player 12.0.0.70, is the current version of Flash. It should work with Snow Leopard or later.

  • I HAVE NO PROBLEM WITH FIREFOX. I JUST WANT THE SPACE FOR OTHER SERVICE.

    I HAVE NO PROBLEM WITH FIREFOX. I JUST HAVE TOO MANY THINGS ON MY BROWSER AND WANT TO MAKE POSITIVE CHANGES. HOW CAN I UNINSTALL FIREFOX SUCCESSFULLY? THANK YOU.

    if you want to make a clean start again, create a new profile!
    see [[Managing profiles]]
    edit: and afterwards you might want to go into addons-manager > plugins & disable all stuff in there you won't need/use any longer...

Maybe you are looking for

  • GRC AC 10.0: Info about rejected roles in the CUP Email

    Hello all, the GRC componetent CUP seems to be technically mature in comparison to Role Management component, but there is one thing where I am not sure, is it an error or did I miss some config parameters: When the CUP Request ist closed, the user g

  • Iphoto 6.06 crash problem

    I am truly bewildered. I have read all of the relevant posts and still no joy. Here's the deal - since installing System 10.4.11, I cannot use iPhoto 6.06. The application opens but when I try to scroll in my library or any album the program crashes.

  • Custom mail format

    Dear All, We are creating custom mail format to receive alert in case job got cancelled. We have designed job chain with 2 steps. First step has job name and second one has custom mail send job definition. 1) I am able to get the job name for the ste

  • Error trying to deploy a jsp application in a cluster

              Iam getting the following error when I tried deploy my jsp app. in a cluster with           two servers(one administrative and one managed). I have no problem with the administrative           server. But the managed server through this exc

  • Why is print selection so big?

    I'm using the Safari service Print Selection. Text through this feature is always very large. For example, if you highlight the middle column (main context) here http://www.alistapart.com/articles/previewofhtml5 and do Print Selection | Print | Previ