Putting Facebook comments and PayPal on both computer and mobile devices

I want to put Facebook and PayPal on the website, but I will need to put them on both the computer and mobile versions. Will there be problems between the two? For instance, if someone comments on the website using a mobile device will it show up on the computer version and vice-versa. And regarding PayPal, a customer should be able to use either to purchase something? I would imagine I am not the first person to face this. Anybody have any ideas?

I have the same concern regarding PayPal - I am going to contact PayPal to see what needs to be done and will let you know.
I would imagine Facebook should be ok on both. With PayPal though, I want to have the "Mobile Express Checkout! on the phone version of my muse site so the paypal/visa payment process is the correct version for mobile. James

Similar Messages

  • Why Firefox 25.0 does not show Google ads and Facebook comments and likes. All other browsers do.

    I've just upgraded to FireFox 25.0 and I have issues viewing Google ads and Facebook comments and likes on my website (wellfitstyle.com). All other browsers show Google adds in the right sidebar and Facebook comments and likes under each post. Great number of people in Eastern Europe (where I am) use FireFox and I would like to know how this issue can be fixed.
    Tnx.

    Hi there,
    Starting in Firefox 23, if a secure page includes certain types of insecure content, Firefox blocks the insecure content and a shield icon will appear in the address bar. See this article for more information about the new mixed content blocker: [[How does content that isn't secure affect my safety?]]
    To temporarily allow the mixed content to be displayed:
    *Click the '''shield icon''' [[Image:Mixed Content Shield]] in the address bar and choose '''Disable Protection on This Page''' from the dropdown menu.
    [[Image:Fx23MixedContentBlocker]]
    To allow insecure content to be displayed in all secure pages, enter '''about:config''' in the address bar and double-click on this preference, to toggle it from true to false:
    '''security.mixed_content.block_active_content'''
    You can also use this add-on instead, to toggle the preference:
    *[https://addons.mozilla.org/firefox/addon/toggle-mixed-active-content/ Toggle Mixed active content] add-on
    You may want to do this only for the current session, then reset the preference back to "true" and check back with the site to see whether it's been fixed, since this is a global setting that exposes you on all sites, not just the one you care about.

  • If I do a creative cloud membership does it give me two computers and other devices like an ipad? Or just one computer one mobile device?

    If I do a creative cloud membership does it give me two computers and other devices like an ipad? Or just one computer one mobile device?
    Thanks

    You can have functional installations on two machines.  The machines have to meet the system requirements for the software.

  • Okay so I'm trying to download Adobe Flash Pro. I've gone to creative cloud and downloaded "Flash Professional CC and Mobile Device Packaging (2014)" and I have no idea what to do afterwords... There's no way to open or run the file. And to be honest, I'm

    Okay so I'm trying to download Adobe Flash Pro. I've gone to creative cloud and downloaded "Flash Professional CC and Mobile Device Packaging (2014)" and I have no idea what to do afterwards... There's no way to open or run the file. And to be honest, I'm not even sure if it's the right download... Help!

    I'm using PC with Windows 8.1. I got onto the Creative Cloud and downloaded "Flash Professional CC and Mobile Device Packaging (2014)". <--- That would be the file. I can't open or run it from CC and I couldn't find a file in my computer either.
    I've also found direct downloads for the trial version and hit the set-up button, it loads up, and then nothing happens.

  • WebtoGo for laptop and mobile device - urgent

    Hi,
    I need to develop a web to Go application for both laptop and mobile device. The code which i generate for laptop should work on mobile device too.
    ie the single application should work for both mobile and laptop devices.
    Now coming to lightweight framework and small footprints what technologies should i use in J2EE.
    If i use struts is that going to be mess in mobile device. Some one guide me here about choosing the technologies.
    Thanks

    our java app that we have just ported from PDA to laptop uses AWT components as these work on the PDA. need to go for what will work on the windows mobile device, abnd this may restrict you to older and less functional components.
    NOTE platform is defined within the application on the server side (the name of the database on the client), and therefore you will need two applications in terms of oracle lite publications, so define the database name external to the code in some kind of a properties/config file

  • You can only authorize this computer with an Adobe id that hasn't been previously used to authorize any other computer or mobile device

    When I try to download a library book on my Kobo reader, I keep getting this message. First it tells me to change the computer's authorization to be associated with an Adobe ID. When I click on authorize after logging in, the message keeps telling my "you can only authorize this computer with an Adobe ID that hasn't been previously used to authorize any other computer or mobile device. I have no idea what this means. Help!

    Sometimes ADE gets its registration/activation confused and in a semi-authorized state.
    Uninstalling and reinstalling does not help, and indeed installation can even trigger this state.
    Unfortunately, it often then gives misleading error messages about what is wrong.
    A common incorrect message informs you that the ID is already in use on another computer and cannot be reused.
    Another is  "E_AUTH_NOT_READY"
    This can often be resolved by completely removing any authorization using ctrl-shift-D to the Library screen on ADE (cmd-shift-D if on Mac).
    Restart ADE, and then reauthorize with your (old) Adobe ID.
    In extreme cases on the mac, the following extra step has helped some people.  Navigate to /Users//Library/Application Support/Adobe/Digital Editions and drag the activation.dat file to the trash. If you are using 10.7, see Access hidden user library files | Mac OS 10.7 Lion. http://forums.adobe.com/thread/1265248?tstart=0

  • Question about bluetooth communication between PC and mobile device

    I am a newbie of bluetooth communication. This time I need to have connumication between PC and mobile device (mainly mobile phone) by sending strings. PC is acted as server and mobile device act as client.
    For using bluetooth in PC, I use bluecove 2.0.1
    I have already connected them successfully.
    When I want to send strings between them, it is found that it can only do one cycle of communication (client -> server -> client).
    For my design, they can communicate multiple times.
    I simulate the core class of the system, the performance is fine.
    Cound anyone help me to watch the code and give me some advices?
    Server Side - ServerBox.java
    public class ServerBox implements Runnable {
       LocalDevice localDevice;
       StreamConnectionNotifier notifier;
       ServiceRecord record;
       boolean isClosed;
       ClientProcessor processor;
       CMDProcessor cmd;
       MainInterface midlet;
       private static final UUID ECHO_SERVER_UUID = new UUID(
               "F0E0D0C0B0A000908070605040302010", false);
       public ServerBox(MainInterface midlet) {
           this.midlet = midlet;
       public void run() {
           boolean isBTReady = false;
           try {
               localDevice = LocalDevice.getLocalDevice();
               if (!localDevice.setDiscoverable(DiscoveryAgent.GIAC)) {
                   midlet.showInfo("Cannot set to discoverable");
                   return;
               // prepare a URL to create a notifier
               StringBuffer url = new StringBuffer("btspp://");
               url.append("localhost").append(':');
               url.append(ECHO_SERVER_UUID.toString());
               url.append(";name=Echo Server");
               url.append(";authorize=false");
               // create notifier now
               notifier = (StreamConnectionNotifier) Connector.open(url.toString());
               record = localDevice.getRecord(notifier);
               isBTReady = true;
           } catch (Exception e) {
               e.printStackTrace();
           // nothing to do if no bluetooth available
           if (isBTReady) {
               midlet.showInfo("Initalization complete. Waiting for connection");
               midlet.completeInitalization();
           } else {
               midlet.showInfo("Initalization fail. Exit.");
               return;
           // produce client processor
           processor = new ClientProcessor();
           cmd = new CMDProcessor();
           // start accepting connections then
           while (!isClosed) {
               StreamConnection conn = null;
               try {
                   conn = notifier.acceptAndOpen();
               } catch (IOException e) {
                   // wrong client or interrupted - continue anyway
                   continue;
               processor.addConnection(conn);
       // activate the set up of process
       public void publish() {
           isClosed = false;
           new Thread(this).start();
       // stop the service
       public void cancelService() {
           isClosed = true;
           midlet.showInfo("Service Terminate.");
           midlet.completeTermination();
       // inner private class for handling connection and activate connection handling
       private class ClientProcessor implements Runnable {
           private Thread processorThread;
           private Vector queue = new Vector();
           private boolean isOk = true;
           ClientProcessor() {
               processorThread = new Thread(this);
               processorThread.start();
           public void run() {
               while (!isClosed) {
                   synchronized (this) {
                       if (queue.size() == 0) {
                           try {
                               // wait for new client
                               wait();
                           } catch (InterruptedException e) { }
                   StreamConnection conn;
                   synchronized (this) {
                       if (isClosed) {
                           return;
                       conn = (StreamConnection) queue.firstElement();
                       queue.removeElementAt(0);
                       processConnection(conn);
           // add stream connection and notify the thread
           void addConnection(StreamConnection conn) {
               synchronized (this) {
                   queue.addElement(conn);
                   midlet.showInfo("A connection is added.");
                   notify();    // for wait() command in run()
       // receive string
       private String readInputString(StreamConnection conn) {
           String inputString = null;
           try {
               DataInputStream dis = conn.openDataInputStream();
               inputString = dis.readUTF();
               dis.close();
           } catch (Exception e) {
               e.printStackTrace();
           return inputString;
       private void sendOutputData(String outputData, StreamConnection conn) {
           try {
               DataOutputStream dos = conn.openDataOutputStream();
               dos.writeUTF(outputData);
               dos.close();
           } catch (IOException e) {
       // process connecion
       private void processConnection(StreamConnection conn) {
           String inputString = readInputString(conn);
           String outputString = cmd.reactionToCMD(inputString);
           sendOutputData(outputString, conn);
    /*       try {
               conn.close();
           } catch (IOException e) {}*/
           midlet.showInfo("Client input: " + inputString + ", successfully received.");
    }For "CMDProcessor" , it is the class of message processing before feedback to client.
    Client side - ClientBox.java
    public class ClientBox implements Runnable, CommandListener{
        StringItem result = new StringItem("","");
        private DiscoveryAgent discoveryAgent;
        private String connString;
        private boolean isClosed = false;
        private boolean boxReady = false;
        StreamConnection conn;
        private static final UUID ECHO_SERVER_UUID = new UUID( "F0E0D0C0B0A000908070605040302010", false);
        Form process = new Form("Process");
        ClientInterface midlet;
        public ClientBox(ClientInterface mid){
            this.midlet = mid;
            process.append(result);
            process.addCommand(new Command("Cancel",Command.CANCEL,1));
            process.setCommandListener(this);
            new Thread(this).start();
        public void commandAction(Command arg0, Displayable arg1) {    
            if(arg0.getCommandType()==Command.CANCEL){
                isClosed = true;
                midlet.notifyDestroyed();
        public synchronized void run() {
            LocalDevice localDevice = null;
            boolean isBTReady = false;
            /* Process Gauge screen */
            midlet.displayPage(process);
            Gauge g=new Gauge(null,false,Gauge.INDEFINITE,Gauge.CONTINUOUS_RUNNING);
            process.append(g);
            showInfo("Initalization...");
            System.gc();
            try {
                localDevice = LocalDevice.getLocalDevice();
                discoveryAgent = localDevice.getDiscoveryAgent();
                isBTReady = true;
            } catch (Exception e) {
                e.printStackTrace();
            if (!isBTReady) {
                showInfo("Bluetooth is not avaliable. Please check the device.");
                return;
            if(!isClosed){
                try {
                    connString = discoveryAgent.selectService(ECHO_SERVER_UUID, ServiceRecord.NOAUTHENTICATE_NOENCRYPT, false);
                } catch (BluetoothStateException ex) {
                    ex.printStackTrace();
            else return;
            if (connString == null) {
                showInfo("Cannot Find Server. Please check the device.");
                return;
            else showInfo("Can Find Server, stand by for request.");
            boxReady = true;
        /* True if the clientbox is ready */
        public boolean getBoxReady(){
            return boxReady;
        /* True if the clientbox is closed in run() */
        public boolean getIsClosed(){
            return isClosed;
        public String accessService(String input) {
            String output = null;
            try {
                /* Connect to server */
                StreamConnection conn = (StreamConnection) Connector.open(connString);
                /* send string */
                DataOutputStream dos = conn.openDataOutputStream();
                dos.writeUTF(input);
                dos.close();
                /* receive string */
                DataInputStream dis = conn.openDataInputStream();
                output = dis.readUTF();
                dis.close();
            } catch (IOException ex){
                showInfo("Fail connect to connect to server.");
            return output;
        private void showInfo(String s){
            StringBuffer sb=new StringBuffer(result.getText());
            if(sb.length()>0){ sb.append("\n"); }
            sb.append(s);
            result.setText(sb.toString());
    }Client side - ClientInterface.java
    public class ClientInterface extends MIDlet implements Runnable, CommandListener{
        private ClientBox cb = new ClientBox(this);
        private Form temp = new Form("Temp");
        private Command select = new Command("Select", Command.OK, 1);
        private Command back = new Command("Back", Command.BACK, 1);
        Alert alert;
        String[] element;
        String out;
        List list;
        public void run(){
            /* Send message and get reply */
            out = cb.accessService("Proglist");
            element = split(out,",");
            /* Use the reply to make list */
            list = createList(element[0], List.IMPLICIT, out);
            list.addCommand(select);
            list.addCommand(back);
            list.setCommandListener(this);
            Display.getDisplay(this).setCurrent(list);
        public void startApp() {
            System.gc();
            waitForBoxSetUp(); /* Recursively check for clientbox status */
            new Thread(this).start();
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
            notifyDestroyed();
        public void displayPage(Displayable d){
            Display.getDisplay(this).setCurrent(d);
        private void waitForBoxSetUp(){
            while(!cb.getBoxReady()){
                if(cb.getIsClosed())
                    notifyDestroyed();
        public void commandAction(Command c, Displayable d){
            if (c.getCommandType() == Command.OK){
                if (d == list){
                    /* Send the choice to server */
                    out = cb.accessService(list.getString(list.getSelectedIndex()));
                    alert = new Alert("Output", "selected = "+out, null, AlertType.ALARM);
                    alert.setTimeout(2000);
                    Display.getDisplay(this).setCurrent(alert,list);
            if (c.getCommandType() == Command.BACK){
                notifyDestroyed();
        public void showWarning(String title, String content){
            alert = new Alert("Output", "selected = "+list.getString(list.getSelectedIndex()), null, AlertType.ALARM);
            alert.setTimeout(3000);
            Display.getDisplay(this).setCurrent(alert,list);
        private List createList(String name, int type, String message){
            List temp;
            String[] source = split(message,",") ;
            temp = new List(name, type, source, null);
            return temp;
        private static String[] split(String original,String regex)
            int startIndex = 0;
            Vector v = new Vector();
            String[] str = null;
            int index = 0;
            startIndex = original.indexOf(regex);
            while(startIndex < original.length() && startIndex != -1)
                String temp = original.substring(index,startIndex);
                v.addElement(temp);
                index = startIndex + regex.length();
                startIndex = original.indexOf(regex,startIndex + regex.length());
            v.addElement(original.substring(index + 1 - regex.length()));
            str = new String[v.size()];
            for(int i=0;i<v.size();i++)
                str[i] = (String)v.elementAt(i);
            return str;
    }

    i haven't worked with devices but only with the toolkit emulators;
    it definitely is possible...
    u have to send the image as a bytestream and receive the image at the jsp end...
    and then reconstruct the image.
    the Stream classes in J2ME AND J2SE are all u will require.
    also the Image class.
    i have not done this but i have successfully sent an image frm a jsp and displayed it on the emulator.

  • Has anyone else had problems since downloading latest update?  My iTunes stopped working and mobile device won't download, I now don't have Apple to backup my iphone?

    Has anyone else had problems since downloading latest update?  My iTunes stopped working and mobile device won't download, I now don't have Apple to backup my iphone?

    As i've posted in this thread:
    http://discussions.apple.com/thread.jspa?threadID=746408&tstart=30
    I've tried everything others have suggested without any luck.
    Now I'm stuck with a 300 bucks mp3 jalopy.
    My big question here is :
    why aren't we hearing from apple? why aren't they saying something like "yeah we messed things up but be patient. we are trying our best to fix it..." ?
    I was thinking to buy the macbook pro but now I'm afraid of the day things will get messy with that too.
    Pentium 4   Windows XP  

  • Javascript created in fireworks doesn't work with touch ipad and mobile devices.

    My website was created in DreamWeaver.
    Navigation is a popup/dropdown menu run by javascript created in FireWorks
    Website: www.woodstockchamber.com
    Problem:
    The mouse over doesn't work on iPads and mobile devices.
    The menu opens up and the category highlights, but that is where the action stops.
    It doesn't complete the action and link.
    It has worked well for years on desk tops and laptops.
    This is a serious issue for me as iPads and mobile devices are so popular and used a lot in this tourist town.
    Thanks,
    Norm

    http://www.smashingmagazine.com/2010/05/28/web-development-for-the-iphone-and-ipad-getting -started/
    http://www.inspiredm.com/2010/02/09/ipad-design/
    http://blogs.sitepoint.com/2010/06/23/develop-for-ipad-with-html5-trial-and-error/

  • IPhone composition   The payload of   and mobile device management is not installable in a utility.

    Hello.
    You.
    And thank you.
    I want you to help me if you please.
    I am not good at English.
    The status code of 201,204 which Apache returns from a MDM server.
    iPhone composition   The payload of   and mobile device management is not installable in a utility.
    iPhone composition   Console of a utility.
    May 1 09:46:15 unknown mc_mobile_tunnel[13281] <Notice>: (Note) MC: mc_mobile_tunnel shutting down.
    May    1 09:46:18 unknown. profiled [13274] <Notice>:   (Note)  MC:   Checking. for. MDM installation ... May 1 09:46:18 unknown profiled[13274] <Notice>: (Note) MC: ...finished checking for MDM installation.
    May    1 09:46:18 unknown. profiled [13274] <Notice>:   (Note)  MC:   Beginning. profile. installation ... May 1 09:46:20 unknown profiled[13274] <Notice>: (Error) MDM: Cannot Authenticate. Error: NSError:Desc     : Since a transaction with the server in "https://www.anetm.com/dav/chkin" was in the situation of "204", it failed.
    US Desc:   A transaction with the server at"https://www.anetm.com/dav/chkin"has failed with the status"204."
    Domain : MCHTTPTransactionErrorDomain
    Code   : 23001
    Type   : MCFatalError
    Params : (
    "https://www.anetm.com/dav/chkin",
    204
    May    1 09:46:20 unknown profiled [13274] <Notice>:   (Error) MC:   Cannot install MDM "mobile device management" .Error:   NSError:
    Desc    :   A payload "mobile device management" was not able to be installed.
    Sugg    :   Since a transaction with the server in "https://www.anetm.com/dav/chkin" was in the situation of "204", it failed.
    US Desc:   The payload "mobile device management" could not be installed.
    US Sugg:   A transaction with the server at"https://www.anetm.com/dav/chkin"has failed with the status"204."
    Domain : MCInstallationErrorDomain
    Code   : 4001
    Type   : MCFatalError
    Params : (
    "\U30e2\U30d0\U30a4\U30eb\U30c7\U30d0\U30a4\U30b9\U7ba1\U7406"
    ...Underlying error:
    NSError:
    Desc    :   Since a transaction with the server in "https://www.anetm.com/dav/chkin" was in the situation of "204", it failed.
    US Desc:   A transaction with the server at"https://www.anetm.com/dav/chkin"has failed with the status"204."
    Domain : MCHTTPTransactionErrorDomain
    Code   : 23001
    Type   : MCFatalError
    Params : (
    "https://www.anetm.com/dav/chkin",
    204
    I would like to solve this problem.
    If you please, please help me.

    Hello Jack,
    Thank you for providing the details about the Apple Mobile Device USB Driver is not being listed.  I found an article with some additional steps you can take. 
    I recommend following the steps in the section titled "If the Apple Mobile Device USB Driver is not listed" in step 5 of the following article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Update Flash Professional CC and Mobile Device Packaging

    The adobe crative cloud app says that I have an upgrade for Flash Professional CC and Mobile Device Packaging.  It has been failing for as long as I can remember.  How do you download and install the update?
    R/Jens

    Here are the individual Flash updates: http://www.adobe.com/support/flash/downloads.html

  • Adobe Air and Flash Future on Desktop and Mobile Devices

    Hello,
    iam interested to develop for mobil and desktop devices with AS3 and Flash Professional and i have any question.
    I see also many benefits to develop in flash as in java because javas gui development is based on swing a old java graphics engine.
    Next reason is the plattform like Linux,Windows,IOS.,the Game Development and other stuff.
    With Flash i can create nextgen interactive stunning cool gui interfaces for apps.
    I dont know why flash sucks for the market and devices.
    My question: is as3 and flash save for the future ?
    Make it really sense to learn as3 and Flash ?
    I have read many blogs,threads on adobe and other forums year 2012 Adobe stop flash development,
    and now 2013 google androids kitkat now have removed api features that kills complete flash !!!
    Other comments says Flash is dead for the market!? Many frustradet flash developers he work 10 years and more with flash are crying.
    So what is really the Future for the A3 and Flash Development ?
    Thanks and greetings

    Hi mc_gfx,
    > You think i can get started with flash and air development without worries?
    Software development always involves risk, so you can't really do much without worries.       AIR in particular is a cutting (bleading?) edge technology. Adobe is attempting to solve a difficult problem with limited resources, and the results aren't always ideal.
    If you want to deploy to Android and iOS, and you write two native apps, you face a 100% risk that you'll have to write your app twice. While this may not take twice as long as writing it once, it will come close.
    If you use AIR, you only have to write your app once, but you face other risks.
    Here's the problem. In AIR, Adobe is attempting to create a framework that translates ActionScript into bytecode for two different platforms. This isn't easy. Every time Apple or Google upgrades their operating system Adobe has to try to refine AIR so that it translates everything correctly for the new OS. AIR also has to maintain backward compatability with all previous OSs (is that the plural of OS?). AIR also has to work with many different models of Android and iOS devices. This includes supporting most, though not all, of the many different capabilities that these OSs support. Adobe, wisely, doesn't try to support every new feature immediately. Instead, it picks and chooses which new features it will support, and how soon. But even taking this approach I have the impression that their task is daunting.
    If you research this forum you'll find numerous examples of people complaining about features that don't quite work correctly. For example, I've put ~6 developer months into developing a language learning app, only to find that AIR's MP3 playback support has some limitations which severely impact the playback of voice recordings, which severely degrades the value of my app. I'm hoping that Adobe will fix this bug, but it's been two months now, with no movement. Another serious bug, involving audio recording using the device microphone, took three months to get fixed. During that period I had no idea whether it would get fixed, or whether I'd have to disable an important feature of my app on iOS.
    So, you want "without worries"?  
    Some people are lobbying Adobe to include support for Windows Phone in the AIR framework. IMHO, this is madness. Adobe clearly has limited resources. Let them first focus on making basic features like MP3 playback work properly on the platforms that they already support.
    The same issues probably apply to all the other cross-platform development frameworks - Sencha, Xamarin, etc. They face the same difficult technical challenges. I can't speak to the question of how well they're addressing them, but I'd want research them carefully before I invested a lot of time into developing with them.
    With regards to AIR, here's my advice: Before you start a non-trivial project using AIR, make a list of all the things that your app will do, then see if you can find existing apps created with AIR that do these things. Make sure that the feature works on both Android and iOS. You won't be able to test on every device that you'd like to support, but pick a few and test on them.
    You don't need to worry about your app's logic - ActionScript is great for that - and AIR translates it just fine. But think carefully about your app's 'skin' - all the ways that you want it to interact with the outside world - input and output - and confirm that apps exist that demonstrate that AIR can handle these features. Also think about the app's infrastructure - network interactions - database interactions - etc.
    You'll probably end up with a list of features that you haven't been able to confirm. You can vet these by creating a proof of concept that confirms that AIR will support these needs. Do this before you start developing the full app. Once that's done, pray that everything that works now will continue to work with future OSs and devices. Adobe has a pretty good record on this sort of things, but there aren't any guarantees.
    Don't worry, be happy        ?
    HTH,
    Douglas

  • Can't install new itunes and mobile device support keeps crashing

    a while ago, i tried getting new quicktime, but my computer crashed in the middle of the updating (also a problem- anyone know why it keeps lagging, freezing, and crashing on me?). i ignored it, and plugged in my ipod a few days later. itunes wouldn't pop up, and when i clicked the icon, i got a popup saying "itunes not found, please reinstall" or something along those lines.
    i tried reinstalling it, but it gets stuck at "copying new files". i also tried getting the new quicktime, but it get stuck about 2/3s through it. also, after leaving my computer on for a night to see if it would install, i started getting a popup from microsoft windows saying that "MobileDeviceService has stopped working". if i try to check online for a solution, the popup dissapears after a while, but pops up again in a few seconds. same with if i just close the popup. this popup has also started to appear the second i log on to my computer.
    i also tried uninstalling mobile device support (using this), but when it's preparing for installation, my computer freezes and stops working.
    tldr: updated to quicktime, but crashed in the middle. now i can't get new itunes or quicktime, and i get popups about apple mobile device support that won't go away. any suggestions?
    and my computer started to lag and freeze a lot about a month ago.. i'm not sure why. but it's been very annoying since i have to keep hitting the power button cause the freezing doesn't allow me to do anything. i ran 3 virus scans, and only 1 managed to finish without crashing, and it's telling me that nothing's wrong. i've also uninstalled and deleted a lot of things, but that hasn't helped either.
    i have vista, and would really appreciate some help.

    anyone?
    *i've managed to download quicktime, but am still unable to download itunes. after reaching a certain point in downloading itunes, (about 1/3 of the way?) it stops at "copying files", and my computer freezes and i have to hold the power button in order to shut it off and do anything, or i get a popup asking me if i want to change something so itunes can finish downloading. i click "yes", but then the download stops completely and i get a message saying "itunes has finished downloading, but with errors" and it tells me to download it again.
    a popup from MobileServiceDevice keeps appearing as well, but it won't go away. the details are:
    Problem Event Name:    APPCRASH
      Application Name:    AppleMobileDeviceService.exe
      Application Version:    17.88.0.7
      Application Timestamp:    4e66ceff
      Fault Module Name:    kernel32.dll
      Fault Module Version:    6.0.6002.18005
      Fault Module Timestamp:    49e038c0
      Exception Code:    c06d007f
      Exception Offset:    0001e124
      OS Version:    6.0.6002.2.2.0.768.3
      Locale ID:    1033
      Additional Information 1:    fd00
      Additional Information 2:    ea6f5fe8924aaa756324d57f87834160
      Additional Information 3:    fd00
      Additional Information 4:    ea6f5fe8924aaa756324d57f87834160
    but the fault module name changes on me. sometimes it's kernel32.dll, and sometimes it's something else, and i've already tried using task manager /find str but it doesn't help.

  • Strange Occurrence: Apple TV and Mobile Devices

    I am on a wireless home network, and what I describe below has now happened twice in one week: I lose internet connectivity (via wifi) on my Apple TV and mobile Apple devices (iPhone 5s, iPad 3), but retain it for my two laptops (both mid 2010 MacBook Pro) and my iMac (early 2009).
    I reset my modem and wireless router and connection is still not there for the aforementioned discconected devices.
    All devices have their most up-to-date operating systems, and the mobile devices are trying to connect strictly through wifi.
    What gives?

    I will start with that, thanks. Was hoping it might be something obvious because I feel they will ask me to direct connect and look at my modem connection for the time I am on the phone with them, and see nothing.
    I should edit my intro slightly; the iMac does lose connection as well, so it is only the laptops that remain connected.

  • Problem with Lion and mobile device

    I can access the web only through a mobile pen drive. Lion can't make the access because need a java run time for the mobile device and can't get the run time because not internet connected!

    So for reference, in case other people are experiencing this problem...
    It seems to be happening to iMacs running Lion and using bluetooth keyboard and/or mouse and/or trackpad. What happens is when you turn the computer on and the bluetooth devices on at the same time Lion can't find them, panics and starts up in Safe Mode. That is why functionality (including network) is limited. Restarting the computer seems to fix the problem and Safe Mode is avoided on the second boot up.
    The fix is apparently (and it works) to turn the iMac on and wait for the grey background and apple logo. Wait for the spinning circle/clock face to stop and vanish, then turn the bluetooth devices on when you see your desktop. I've been doing it for the last ten days and it's worked perfectly every time.
    In the mean time, Apple please can you recognise this as an issue and fix it?!

Maybe you are looking for