How to solve this Plug-in/add-on problem? Details inside.

Since short whenever I use firefox I can't click parts of the website I visit. On this site for example. I can't click '''sign in''' or '''register''' That is why I use Internet Explorer atm. However I'd prefer to return to Firefox. How can I solve this problem? Ort what even '''is''' the source of this problem. I tried reinstalling Firefox and update all plug ins. Nothing worked.

Ensure that you have javascript enabled.
* see [[JavaScript#w_enabling-and-disabling-javascript]]_enabling-and-disabling-javascript
* and http://kb.mozillazine.org/Javascript_is_not_Java
Try firefox in [[safe mode]] which you may enter by holding down the shift key as you start firefox
* do not make any changes on the first options window, just click on continue
* use only the default theme
* if problems still persist, then whilst still in safe mode temporarily disable all plugins
Check that you do not have security or add block software that could interfere and block actions. Are you seeing any error messages ?

Similar Messages

  • How to solve this? java.lang.IllegalArgumentException problem

    The midlet compliled successfully..
    Once run,
    I enter 3 different records...
    then after when I 'VIEW' for example I enter recordID: 1..
    by right, all the details about recordId : 1 would be listed out...somehow, this error pops up.
    java.lang.IllegalArgumentException
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.rms.*;
    * @author RyanLCC
    public class cdSeller extends MIDlet implements CommandListener{
    private Display display;
    private Form form;
    private Command add, view, update, delete, exit;
    private TextField rcdId, title, quantity, price, profit, director, publish, actors;
    private RecordStore rs;
    private Alert alert = new Alert("New Data Added !!!");
    private Alert alert1 = new Alert("Database Upated!!!");
    private Alert alert2 = new Alert("Record Deleted!!!");
    private Alert alert3 = new Alert("Looking Data!!!");
    public cdSeller()throws RecordStoreException{
    display = Display.getDisplay(this);
    exit = new Command("Exit", Command.EXIT, 1);
    add = new Command("Add",Command.SCREEN,2);
    update = new Command("Update",Command.SCREEN,2);
    delete = new Command("Delete",Command.SCREEN,2);
    view = new Command("View",Command.SCREEN,2);
    rcdId= new TextField("Record ID :","",5,TextField.NUMERIC);
    title= new TextField("Title :","",11,TextField.ANY);
    quantity= new TextField("Quantity :","",8,TextField.NUMERIC);
    price= new TextField("Retail price :","",8,TextField.ANY);
    profit= new TextField("Profit margin:","",8,TextField.ANY);
    director= new TextField("Director :","",11,TextField.ANY);
    publish= new TextField("Publisher :","",11,TextField.ANY);
    actors= new TextField("Actors :","",11,TextField.ANY);
    rs = RecordStore.openRecordStore("My CD Datbase Directory", true);
    form = new Form("My CD Database");
    form.append(rcdId);
    form.append(title);
    form.append(quantity);
    form.append(price);
    form.append(profit);
    form.append(director);
    form.append(publish);
    form.append(actors);
    form.addCommand(exit);
    form.addCommand(add);
    form.addCommand(update);
    form.addCommand(delete);
    form.addCommand(view);
    form.setCommandListener(this);
    public void startApp() {
    display.setCurrent(form);
    public void pauseApp() {
    public void destroyApp(boolean unconditional) {
    try {
    rs.closeRecordStore();
    } catch (RecordStoreException ex) {
    ex.printStackTrace();
    public void commandAction(Command c, Displayable d) {
    alert.setTimeout(3000);
    alert1.setTimeout(3000);
    String str;
    byte bytes[];
    int recordID;
    try{
    if(c==add){
    str = title.getString()+":"+quantity.getString()+
    ":"+price.getString()+":" +profit.getString()+
    ":"+director.getString()+":"+publish.getString ()+
    ":"+actors.getString();
    bytes=str.getBytes();
    recordID = rs.addRecord(bytes, 0, bytes.length);
    System.out.println("Record of ID:"+recordID+" is added");
    Display.getDisplay(this).setCurrent(alert);
    }else if(c==update){
    recordID = Integer.parseInt(rcdId.getString());
    str = title.getString()+":"+quantity.getString()+
    ":"+price.getString()+":" +profit.getString()+
    ":"+director.getString()+":"+publish.getString ()+
    ":"+actors.getString();
    bytes=str.getBytes();
    rs.setRecord(recordID, bytes, 0, bytes.length);
    Display.getDisplay(this).setCurrent(alert1);
    }else if(c == delete){
    recordID = Integer.parseInt(rcdId.getString());
    rs.deleteRecord(recordID);
    Display.getDisplay(this).setCurrent(alert2);
    }else if(c == view ){
    recordID = Integer.parseInt(rcdId.getString());
    bytes = new byte[rs.getRecordSize(recordID)];
    rs.getRecord(recordID,bytes,0);
    String str1 = new String(bytes);
    int index = str1.indexOf(":");
    title.setString(str1.substring(0));
    quantity.setString(str1.substring(1));
    price.setString(str1.substring(2));
    profit.setString(str1.substring(3));
    director.setString(str1.substring(4));
    publish.setString(str1.substring(5));
    actors.setString(str1.substring(6));
    }else if( c == exit){
    destroyApp(true);
    notifyDestroyed();
    }catch(Exception e){
    e.printStackTrace();
    }

    *To change this template, choose Tools | Templates*
    and open the template in the editor.
    *import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;*
    *import javax.microedition.rms.*;
    *@author RyanLCC*
    public class CdSeller extends MIDlet implements CommandListener{
        private Display display;
        private Form form;
        private Command add, view, update, delete, exit;
        private TextField rcdId, title, quantity, price, profit, director, publish, actors;
        private RecordStore rs;
        private Alert alert = new Alert("New Data Added !!!");
        private Alert alert1 = new Alert("Database Upated!!!");
        private Alert alert2 = new Alert("Record Deleted!!!");
        private Alert alert3 = new Alert("Looking Data!!!");
        public CdSeller()throws RecordStoreException{
        display = Display.getDisplay(this);
        exit = new Command("Exit", Command.EXIT, 1);
        add = new Command("Add",Command.SCREEN,2);
        update = new Command("Update",Command.SCREEN,2);
        delete = new Command("Delete",Command.SCREEN,2);
        view = new Command("View",Command.SCREEN,2);
        rcdId= new TextField("Record ID     :","",5,TextField.NUMERIC);
        title= new TextField("Title         :","",11,TextField.ANY);
        quantity= new TextField("Quantity   :","",8,TextField.ANY);
        price= new TextField("Retail price  :","",8,TextField.ANY);
        profit= new TextField("Profit margin:","",8,TextField.ANY);
        director= new TextField("Director   :","",11,TextField.ANY);
        publish= new TextField("Publisher   :","",11,TextField.ANY);
        actors= new TextField("Actors       :","",11,TextField.ANY);
        rs = RecordStore.openRecordStore("My CD Datbase Directory", true);
        form = new Form("My CD Database");
        form.append(rcdId);
        form.append(title);
        form.append(quantity);
        form.append(price);
        form.append(profit);
        form.append(director);
        form.append(publish);
        form.append(actors);
        form.addCommand(exit);
        form.addCommand(add);
        form.addCommand(update);
        form.addCommand(delete);
        form.addCommand(view);
        form.setCommandListener(this);
        public void startApp() {
            display.setCurrent(form);
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
            try {
                rs.closeRecordStore();
            } catch (RecordStoreException ex) {
                ex.printStackTrace();
        public void commandAction(Command c, Displayable d) {
            alert.setTimeout(3000);
            alert1.setTimeout(3000);
            String str;
            byte bytes[];
            int recordID;
            try{
                if(c==add){
                    str = title.getString()+":"+quantity.getString()+
                          ":"+price.getString()+":" +profit.getString()+
                          ":"+director.getString()+":"+publish.getString()+
                          ":"+actors.getString();+
    +                bytes=str.getBytes();+
    +                recordID = rs.addRecord(bytes, 0, bytes.length);+
    +                System.out.println("Record of ID:"+recordID+" is added");
                    Display.getDisplay(this).setCurrent(alert);
                }else if(c==update){
                    recordID = Integer.parseInt(rcdId.getString());
                    str = title.getString()+":"+quantity.getString()+
                          ":"+price.getString()+":" +profit.getString()+
                          ":"+director.getString()+":"+publish.getString()+
                          ":"+actors.getString();+
    +                bytes=str.getBytes();+
    +                rs.setRecord(recordID, bytes, 0, bytes.length);+
    +                System.out.println("Record of ID:"+recordID+" is updated");
                    Display.getDisplay(this).setCurrent(alert1);
                }else if(c == delete){
                    recordID = Integer.parseInt(rcdId.getString());
                    rs.deleteRecord(recordID);
                    System.out.println("Record of ID:"+recordID+" is deleted");
                    Display.getDisplay(this).setCurrent(alert2);
                }else if(c == view ){
                    recordID = Integer.parseInt(rcdId.getString());
                    bytes = new byte[rs.getRecordSize(recordID)];
                    rs.getRecord(recordID,bytes,0);
                    String str1 = new String(bytes);
                    int index = str1.indexOf(":");
                    title.setString(str1.substring(0));
                    quantity.setString(str1.substring(1));
                    price.setString(str1.substring(2));
                    profit.setString(str1.substring(3));
                    director.setString(str1.substring(4));
                    publish.setString(str1.substring(5));
                    actors.setString(str1.substring(6));
            }else if( c == exit){
                destroyApp(true);
                notifyDestroyed();
        }catch(Exception e){
            e.printStackTrace();
    Starting emulator in execution mode
    Installing suite from: http://127.0.0.1:59543/RecordStore.jad
    Record of ID:1 is added
    Record of ID:2 is added
    java.lang.IllegalArgumentException
    at javax.microedition.lcdui.TextField.setCharsImpl(), bci=79
    at javax.microedition.lcdui.TextField.setString(), bci=37
    at CdSeller.commandAction(CdSeller.java:120)
    at javax.microedition.lcdui.Display$ChameleonTunnel.callScreenListener(), bci=46
    at com.sun.midp.chameleon.layers.SoftButtonLayer.processCommand(), bci=74
    at com.sun.midp.chameleon.layers.SoftButtonLayer.commandSelected(), bci=11
    at com.sun.midp.chameleon.layers.MenuLayer.pointerInput(), bci=170
    at com.sun.midp.chameleon.CWindow.pointerInput(), bci=76
    at javax.microedition.lcdui.Display$DisplayEventConsumerImpl.handlePointerEvent(), bci=19
    at com.sun.midp.lcdui.DisplayEventListener.process(), bci=296
    at com.sun.midp.events.EventQueue.run(), bci=179
    at java.lang.Thread.run(Thread.java:619)
    javacall_lifecycle_state_changed() lifecycle: event is JAVACALL_LIFECYCLE_MIDLET_SHUTDOWNstatus is JAVACALL_OK
    I had tired to change the quantity= new TextField("Quantity   :","",8,TextField.ANY);+ but still giving me the same problem...
    Here again..Thankx alot..

  • I have a 4th gen nano that is loaded with my music library via a prior addition of Windows.  I now have Windows 7 and when I access I-Tunes and plug in my ipod I get a list of my music but cannot play it.  Open to suggests on how to solve this problem.

    I have a 4th gen nano that is loaded with my music library via a prior addition of Windows.  I now have Windows 7 and when I access I-tunes and plug in my Ipod I get a list of my music but cannot play it.  Open to suggestions on how to solve this this problem. 

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • I am in hotel room.  I can see my ipad is connected to AP, but it has no internet connection.  But if I plug the cable directly to my PC, internet works.  How to solve this?

    I am in hotel room.  I can see my ipad is connected to my airport express, but I have no internet connection.  I tried to plug the cable directly to my PC and it worked.  How to solve this?

    You can change a password for an Apple ID. However, now whoever finds the iPod will know his email address and I assume that the email address is his Apple ID.
    Apple ID: Changing your password
    According to the terms of the iTunes Store, you have to be 13 in order to have an Apple ID.

  • How to Solve This in Win8: "Photoshop CS6 has stopped working ... ..."

    Anyone know how to solve this problem?? Please help. It's given me a lot of headache and I need it fixed as soon as possible.
    I have re-installed. And system restore. Everything is up-to-date. And I cannot find the problem to solve it.
    Computer Details:
    Tech Support Guy System Info Utility version 1.0.0.2
    OS Version: Microsoft Windows 8 Pro, 64 bit
    Processor: Intel(R) Core(TM) i7 CPU 960 @ 3.20GHz, Intel64 Family 6 Model 26 Stepping 5
    Processor Count: 8
    RAM: 6142 Mb
    Graphics Card: NVIDIA GeForce GT 240, 1024 Mb
    Hard Drives: C: Total - 122001 MB, Free - 14560 MB; D: Total - 953866 MB, Free - 176631 MB; F: Total - 296441 MB, Free - 8907 MB;
    Motherboard: Gigabyte Technology Co., Ltd., X58A-UD3R
    Antivirus: Windows Defender, Disabled
    Other Details:
    Faulting application name: Photoshop.exe, version: 13.0.0.0, time stamp: 0x4f61c045
    Faulting module name: SelectivePalette.8li, version: 2.1.4.131, time stamp: 0x529e6913
    Exception code: 0xc0000005
    Fault offset: 0x0000000000009582
    Faulting process id: 0x3ac
    Faulting application start time: 0x01cf08a96051f5a5
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\Google\Selective Tool\SelectivePalette.8li
    Report Id: a1a5ffce-749c-11e3-bf7b-1c6f65365a00
    Faulting package full name:

    Your Nik/Google SelectivePalette plugin crashed.
    Disable the Nik/Google plugins for now, and contact Nik/Google for updates/bug fixes.

  • I have a problem in my iphone 4 with wi-fi after update to IOS6 please can help my how can solve this problem?

    I have a problem in my iphone 4 with wi-fi after update to IOS6 please can help my how can solve this problem?

    Nope
    One needs to press the home and sleep / wake keys together for the phone to reset
    The other thing I could recommend
    Let the battery run out and the phone completely "die"
    It may take a day or two with it not being used
    Then plug it in to charge and see if there is any change in behavior
    If you cannot get this to work - you may need to bring it to an Apple store

  • My iPad Mini iOS7 is showing only Apple Logo which happened during software update. I tried to restore using iTunes but it asking me to response from iPad. But my ipad only shows apple logo. How can i response? How to solve this problem?

    My iPad Mini iOS7 is showing only Apple Logo which happened during software update. I tried to restore using iTunes but it asking me to response from iPad. But my ipad only shows apple logo. How can i response? How to solve this problem?

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • My serial number is not registered in apple how to solve this problem?

    My serial number is not registered in apple how to solve this problem?
    Cant update my free apps from the store due to discrepancies with the iTunes, with no reason, although they owe my a great deal of money 

    Register iPad
    1. Open http://supportprofile.apple.com
    2. Log in with your Apple ID
    3. Add Product
    4. Fill in your iPad serial number
    Find your serial number:
    Settings>General>About

  • When I start the Mozilla Firefox I get error message "ReferenceError: Globalstorage is not defined." How to solve this problem?

    When I start the Mozilla Firefox I get error message "ReferenceError: Globalstorage is not defined." How to solve this problem?
    -Vinayak

    Disabling Samsung Caster add-on solved this issue for me.

  • Photoshop Cs6 :: Can't open canon 650D cr2, how I solve this problem ??

    Can't open canon 650D cr2, how I solve this problem ?? 

    Is your CS6 ACR Plug-in up to date at version 8.6?
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • Why only Firefox displays, on Youtube, the "An error ocurred, please try again later" message? How to solve this?

    Hello, I am developer and always stayed videos from my sites and blogs, YouTube.
    Now I'm having trouble "only" with Firefox, because only it is showing now famous message: "An error ocurred, please try again later".
    Ie, the solution to host videos on YouTube to display on websites, no longer "Cross Browser".
    How to solve this? This story clearing cache does not work, useless to sticking with this type of response.
    Please help me. Thank you very much.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • How to solve this snmpwalk issue?

    how to solve this error:
    this is my code for snmpwalk :
    package snmp;
    import java.io.IOException;
    import org.snmp4j.CommunityTarget;
    import org.snmp4j.PDU;
    import org.snmp4j.Snmp;
    import org.snmp4j.TransportMapping;
    import org.snmp4j.mp.SnmpConstants;
    import org.snmp4j.smi.Address;
    import org.snmp4j.smi.Integer32;
    import org.snmp4j.smi.Null;
    import org.snmp4j.smi.OID;
    import org.snmp4j.smi.OctetString;
    import org.snmp4j.smi.UdpAddress;
    import org.snmp4j.smi.VariableBinding;
    import org.snmp4j.transport.DefaultUdpTransportMapping;
    public class SNMPWalk
    // Command line format:
    // java SNMPWalk targetAddress targetOID
    // EX:
    // java SNMPWalk 192.168.76.15/161 1.3.6.1.4.1.517
    public static void main(String[] args)
    Address targetAddress = new UdpAddress("localhost/161");
    OID targetOID = new OID("1.3.6.1.2.1.1.1.0");
    // OID targetOID = new OID("1.3.6.1.4.1.517");
    PDU requestPDU = new PDU();
    requestPDU.add(new VariableBinding(targetOID));
    //requestPDU.setType(PDU.GETNEXT);
    requestPDU.setType(PDU.GETNEXT);
    CommunityTarget target = new CommunityTarget();
    target.setCommunity(new OctetString("demopublic"));
    target.setAddress(targetAddress);
    target.setVersion(SnmpConstants.version2c);
    try
    TransportMapping transport = new DefaultUdpTransportMapping();
    Snmp snmp = new Snmp(transport);
    transport.listen();
    boolean finished = false;
    while (!finished)
    VariableBinding vb = null;
    //line 57 PDU responsePDU = snmp.sendPDU(requestPDU, target);
    if (responsePDU != null)
    vb = responsePDU.get(0);
    if (responsePDU == null)
    System.out.println("responsePDU == null");
    finished = true;
    else if (responsePDU.getErrorStatus() != 0)
    System.out.println("responsePDU.getErrorStatus() != 0");
    System.out.println(responsePDU.getErrorStatusText());
    finished = true;
    else if (vb.getOid() == null)
    System.out.println("vb.getOid() == null");
    finished = true;
    else if (vb.getOid().size() < targetOID.size())
    System.out.println("vb.getOid().size() < targetOID.size()");
    finished = true;
    else if (targetOID.leftMostCompare(targetOID.size(),
    vb.getOid()) != 0)
    System.out.println("targetOID.leftMostCompare() != 0)");
    finished = true;
    else if (Null.isExceptionSyntax(vb.getVariable().getSyntax()))
    System.out.println(
    "Null.isExceptionSyntax(vb.getVariable().getSyntax())");
    finished = true;
    else if (vb.getOid().compareTo(targetOID) <= 0)
    System.out.println("Variable received is not "+
    "lexicographic successor of requested "+
    "one:");
    System.out.println(vb.toString() + " <= "+targetOID);
    finished = true;
    else
    // Dump response.
    System.out.println(vb.toString());
    // Set up the variable binding for the next entry.
    requestPDU.setRequestID(new Integer32(0));
    requestPDU.set(0, vb);
    snmp.close();
    catch (IOException e)
    System.out.println("IOException: "+e);
    line no. 57 as i have indicated.
    the error say: the method sendPDU is undefined for the type snmp
    i have included snmp4j.jar file.
    or atleast can i get snmpwalk example for java to test on eclipse

    This is a clear case of... (*puts on sunglasses*)
    http://www.snmp4j.org/
    RTFM!

  • Neither Safari nor Firefox will display PDF files. Anyone know how to solve this? Safari vs. 5.0.5. MAC User. Thanks

    Since yesterday neither Safari 5.0.5 nor Firefox (latest vs.) will display PDFs in their windows. Black window for Safari, white window for Firefox. Anyone know how to solve this? Thanks

    Quit Safari.
    Go to /Library/Internet Plug-Ins/
    Move these filess to the Trash.
    PDF Browser Plug-in
    AdobePDFVieweer.plugin
    Relaunch Safari. See if that helped.

  • HT4628 my mac would connect to the wifi network, but shows wifi has already stationed ip address.. how to solve this?

    mac conects to the wifi , but shows internet cannot be accesedd because it already has stationed ip address or something similar...
    how to solve this issue

    Hello znk212
    Start with creating a new network location and then try to connect to your network. Also check the settings of your router to ensure a proper connection.
    OS X Mavericks: Add a network location
    http://support.apple.com/kb/PH13788
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/HT4199
    Regards,
    -Norm G.

  • Some voicemail messages will not play - any ideas how to solve this?

    Some voicemail messages will not play on my iphone 4S - any ideas how to solve this?

    People have posted a number of issues recently with HP printers and the TC.
    Do the normal stuff.
    1. Wireless name in the TC by default is not SMB compatible.. make it short no spaces pure alphanumeric.
    2. Lock the channel.. the TC on auto can go crazy.. fix it to 1, 6, or 11 in turn.
    3. Test without security.. if it will not join without security.. you can be pretty sure it never will join with.
    4. If you get nowhere.. highly probable.. lock the wireless mode to a/n - b/g
    This is reducing 2.4ghz to G compatibility. Much more likely to work than N.
    If after all this you have started having ticks in your cheeks and approaching nevous breakdown levels.. give up.. the TC is not 100% compatible with the windows world.. and ALL HP belong to the windows world.
    The solution is simple.. a cheap wireless router.. not apple.. your average garden day, netgear, dlink, even a belkin.. although that is the bottom of the barrel.. in wan bypass. ie fix the IP to same range as the TC.. turn off dhpc.. and plug LAN TC to LAN wireless router. Setup the wireless on this.. fixed channel.. G wireless will be fine.. suitable network name and security.. The HP printer will then be available to the network.. and you didn't even have to slit your wrists.

Maybe you are looking for

  • Dynamically loading text into SWF

    I'm building a flash web site and here are a couple parts of the site the client is going to want to update regularly. Is there a simple way that I can have an external file (XML?) that a client can edit to update parts of the site without having to

  • WLC 8500 SSO HA not working

    Hi there, We're running AireOS 8.0 in a  WLC 8500 series and we're getting problems trying to enable HA scenario. These are the scenarios we have tested: management interface tagged + switchport trunk tagged + HA tagged + switchport trunk tagged = SS

  • Photos is not working. cannot access my pics!

    Just got the new "upgrade" to 10.10.3 and the new Photos is shutting down every time it opens. I cannot access my old iPhoto pics. Anyone else? This is like having Windows, not Apple...

  • ¿Puedo restaurar una copia de seguridad hecha en iCloud en un iPhone con IOS 5.1 en un iPod Touch 4G con IOS 6.1.3?

    Tengo un iPhone 3GS con IOS 5.1 y realizo copias de seguridad en iCloud. Mi consulta es si puedo restaurar esa copia de seguridad en un iPod Touch 4G con IOS 6.1.3 Gracias!

  • How to determine memory board type and speed

    Hello. How can I determine the type of board and connector (e.g., SIMM, SODIMM, etc.) my Thinkpad W700 uses? How can I determine what the bus speed is, and then what speed memory I need? Thanks.