Error message "An Error occurred while performing this operation" while opening a document.

Hi Adobe..
We are using Live cycle ES and ES2 for applying security on the document..
With latest Mozilla and Chrome versions and with Adobe reader XI, if we try opening a document, we happens to see the below error message..
Please advise us in getting this issue resolved...
Thanks.

To use XFA-based PDF forms on Firefox and Chrome, perform the following steps to configure Firefox and Chrome to open PDFs using Adobe Reader or Adobe Acrobat.
Firefox configuration:
1) Tools -> Options
2) Click Applications
3) In the Applications tab, type PDF in the search field.
4) For Portable Document Format (PDF) content type in the search result, select Use Adobe Acrobat (in Firefox) from the
    Action drop-down list   
Click OK and restart firefox.
Chrome configuration:
1) In Chrome, go to chrome://plugins/.
2) Click Disable under Chrome PDF Viewer, and click Enable under Adobe PDF Plug-In.
probably this would resolve the issue.
Thanks
Shivam

Similar Messages

  • I get an error message that you can't perform this operation

    My client gets an error message that "You can't perform this operation on this page now because someone (me) is currently editing or reviewing it." But I'm not. What is going wrong?

    Please ask your client to clear Contribute preference once and try the same scenario.
    Here are the steps how to clear the Contribute Preferences:
    For Mac, Contribute CS5
    1) Quit Contribute.
    2) (a) Go to "user/Library/Preferences" and delete the file "Adobe Contribute 6 Preferences".
    (b) Go to "user/Library/Application Support/Adobe/" remove "Contribute CS5".
    For Mac, Contribute CS4
    1) Quit Contribute.
    2) (a) Go to "user/Library/Preferences" and delete the file "Adobe Contribute 5 Preferences".
    (b) Go to "user/Library/Application Support/Adobe/" remove "Contribute CS4".
    If you use CS3, then delete "Adobe Contribute 4.1 Preferences" and "Contribute CS3" folder.
    For Win, Contribute CS5
    1) Quit Contribute.
    2) From Command prompt run the below two commands to remove the preferences
    a) reg delete "HKCU\Software\Adobe\Contribute 6" /f
    b) RD /S /Q "%Userprofile%\Local Settings\Application Data\Adobe\Contribute CS5"  
    For Win, Contribute CS4
    1) Quit Contribute.
    2) From Command prompt run the below two commands to remove the preferences
    a) reg delete "HKCU\Software\Adobe\Contribute 5" /f
    b) RD /S /Q "%Userprofile%\Local Settings\Application Data\Adobe\Contribute CS4"
    For CS3
    a) reg delete "HKCU\Software\Adobe\Contribute 4.1" /f
    b) RD /S /Q "%Userprofile%\Local Settings\Application Data\Adobe\Contribute CS3"
    Note: when you clear the preference all the existing connections will be lost. The connections needs to be recreated.
    Hope this helps you.

  • InvalidOperationException - "Cannot perform this operation while dispatcher processing is suspended."

    I have a WPF application in .NET 4.5.  The latest version of the map control (version 1.0.1.0) is causing an issue if it is used within a datatemplate.  This does not happen with the previous version I was using from Nuget (version 1.0.0.0).  As
    an aside, what happened to the Nuget package?  Anyways, it is easy to reproduce the issue:
    MainWindow.xaml:
    <Window x:Class="MicrosoftMapError.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow"
    Content="{Binding ViewModel,
    RelativeSource={RelativeSource Self}}">
    <Window.Resources>
    <ResourceDictionary>
    <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="Views/MapView.xaml" />
    </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
    </Window.Resources>
    </Window>
    MainWindow.cs:
    using MicrosoftMapError.ViewModels;
    using System.Windows;
    namespace MicrosoftMapError
    public partial class MainWindow : Window
    public MainWindow()
    InitializeComponent();
    this.ViewModel = new MapViewModel();
    public object ViewModel
    get { return (object)GetValue(ViewModelProperty); }
    set { SetValue(ViewModelProperty, value); }
    public static readonly DependencyProperty ViewModelProperty = DependencyProperty.Register(
    "ViewModel",
    typeof(object),
    typeof(MainWindow));
    MapView.xaml:
    <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:wpf="clr-namespace:Microsoft.Maps.MapControl.WPF;assembly=Microsoft.Maps.MapControl.WPF"
    xmlns:viewModels="clr-namespace:MicrosoftMapError.ViewModels">
    <DataTemplate DataType="{x:Type viewModels:MapViewModel}">
    <Grid>
    <wpf:Map />
    </Grid>
    </DataTemplate>
    </ResourceDictionary>
    The MapViewModel class is just an empty class, there is nothing to show there.
    And this is the stack trace for the exceptions.
    Outer exception: XamlParseException - The invocation of the constructor on type 'Microsoft.Maps.MapControl.WPF.Map' that matches the specified binding constraints threw an exception.
       at System.Windows.FrameworkTemplate.LoadTemplateXaml(XamlReader templateReader, XamlObjectWriter currentWriter)
       at System.Windows.FrameworkTemplate.LoadTemplateXaml(XamlObjectWriter objectWriter)
       at System.Windows.FrameworkTemplate.LoadOptimizedTemplateContent(DependencyObject container, IComponentConnector componentConnector, IStyleConnector styleConnector, List`1 affectedChildren, UncommonField`1 templatedNonFeChildrenField)
       at System.Windows.FrameworkTemplate.LoadContent(DependencyObject container, List`1 affectedChildren)
       at System.Windows.StyleHelper.ApplyTemplateContent(UncommonField`1 dataField, DependencyObject container, FrameworkElementFactory templateRoot, Int32 lastChildIndex, HybridDictionary childIndexFromChildID, FrameworkTemplate frameworkTemplate)
       at System.Windows.FrameworkTemplate.ApplyTemplateContent(UncommonField`1 templateDataField, FrameworkElement container)
       at System.Windows.FrameworkElement.ApplyTemplate()
       at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
       at System.Windows.UIElement.Measure(Size availableSize)
       at System.Windows.Documents.AdornerDecorator.MeasureOverride(Size constraint)
       at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
       at System.Windows.UIElement.Measure(Size availableSize)
       at System.Windows.Controls.Border.MeasureOverride(Size constraint)
       at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
       at System.Windows.UIElement.Measure(Size availableSize)
       at System.Windows.Window.MeasureOverrideHelper(Size constraint)
       at System.Windows.Window.MeasureOverride(Size availableSize)
       at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
       at System.Windows.UIElement.Measure(Size availableSize)
       at System.Windows.Interop.HwndSource.SetLayoutSize()
       at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)
       at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)
       at System.Windows.Window.SetRootVisual()
       at System.Windows.Window.SetRootVisualAndUpdateSTC()
       at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)
       at System.Windows.Window.CreateSourceWindow(Boolean duringShow)
       at System.Windows.Window.CreateSourceWindowDuringShow()
       at System.Windows.Window.SafeCreateWindowDuringShow()
       at System.Windows.Window.ShowHelper(Object booleanBox)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
       at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
       at System.Windows.Threading.DispatcherOperation.InvokeImpl()
       at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Windows.Threading.DispatcherOperation.Invoke()
       at System.Windows.Threading.Dispatcher.ProcessQueue()
       at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
       at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
       at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
       at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
       at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
       at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
       at System.Windows.Threading.Dispatcher.Run()
       at System.Windows.Application.RunDispatcher(Object ignore)
       at System.Windows.Application.RunInternal(Window window)
       at System.Windows.Application.Run(Window window)
       at System.Windows.Application.Run()
       at MicrosoftMapError.App.Main() in d:\SoftwareDevelopment\Working\MicrosoftMapError\MicrosoftMapError\obj\Debug\App.g.cs:line 0
       at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()
    Inner exception: InvalidOperationException - Cannot perform this operation while dispatcher processing is suspended.
       at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
       at System.Windows.Threading.DispatcherOperation.Wait(TimeSpan timeout)
       at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherOperation operation, CancellationToken cancellationToken, TimeSpan timeout)
       at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
       at System.Windows.Threading.Dispatcher.Invoke(Delegate method, Object[] args)
       at Microsoft.Maps.MapControl.WPF.Core.MapConfigurationFromWeb.ConfigLoaded(String requestKey, Dictionary`2 sections)
       at Microsoft.Maps.MapControl.WPF.Core.MapConfigurationFromWeb.GetConfigurationSection(String version, String sectionName, String culture, MapConfigurationCallback callback, Boolean reExecuteCallback, Object userState)
       at Microsoft.Maps.MapControl.WPF.Core.MapConfiguration.GetSection(String version, String sectionName, String culture, String key, MapConfigurationCallback callback, Boolean reExecuteCallback, Object userState)
       at Microsoft.Maps.MapControl.WPF.Core.MapConfiguration.GetSection(String version, String sectionName, String culture, String key, MapConfigurationCallback callback, Boolean reExecuteCallback)
       at Microsoft.Maps.MapControl.WPF.Map..ctor()

    Are dev team has looked into this and I believe they have found the issue. They are working on putting together a new release. Also, Microsoft never officially released a Nuget package, someone just took some old buggy libraries and posted them on Nuget
    without asking Microsoft. We are planning to make an official Nuget package.
    http://rbrundritt.wordpress.com

  • Error Message: A crash occured on (date) at (time) while running "Applications": Memorymgr.c, Line:5346, Chunk under-locked

    I keep getting the following warning:
    A crash occured on (date) at (time) while running "Applications": Memorymgr.c, Line:5346, Chunk under-locked
    What is causing this? It usually happens overnight while I'm not using my phone... so the first time I touch it in the morning it shuts off and resets. The problem started occuring after Sprint switched from "On Demand" to "Pocket Express". I had no idea of the switch, so when I clicked on it the phone automatically updated to the new application. Since then, my phone has been a mess. I deleted the application, performed a hard reset and downloaded it on my phone again.. but still there's problems. This morning, I deleted the "Pocket Express" for good. I figured it wasn't worth it if it's causing all these problems.
    Help... please. I'm a novice, so please make sure the solution is something I can understand. Also, do I need to go through my Palm Desktop/Hot Sync program on my computer and delet files too?
    Thank you in advance.
    Phone: Treo 755p
    Carrier: Sprint
    P.S. I also just installed the Sprint Treo software update: Treo755p-1.07-SPNT
    It cleaned things up... but not for long.
    Post relates to: Treo 755p (Sprint)

    After a hard reset and after you delete the program on the device, you will need to rename the backup folder in your username folder on the PC. The backup folder contains all 3rd party programs and settings for your device. When you sync, the backup folder is reloaded onto your device and will bring back the 3rd party programs.
    Follow the instructions below for the procedure I described.
    Looks like you may need to hard reset and rename your backup folder if you go
    to http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=887 and follow the
    directions to do a hard reset. Next before you hotsync your data back over
    you will need to rename your backup folder to do that go here
    XP
    C:\program files\palm or palm one\[hotsync username]\ and rename your backup
    folder to backup.old
    Vista
    Start-->documents\Palm OS Desktop\[hotsync username]\ and rename your backup
    folder to backup.old
    Then hotsync to your current hotsync name and all your contacts, calendar,
    tasks, and memos will come back over.
    Show file extensions for XP or Vista
    XP
    If you can not view file extensions on your PC I would like you to open a
    folder go to Tools-->Folder Options--> View (tab) and under show hidden
    files and folders uncheck hide file extensions for known file types.
    Vista
    Open control Panel go to Folder Options--> View (tab) and under show hidden
    files and folders uncheck hide file extensions for known file types.Find your username folder
    Post relates to: Palm i705

  • When trying to apply a Policy, Get Error: An error occurred while performing this operation. contact an administor if this problem continues

    I have just installed ES4 LC with only the Rights Management Module. I have everything setup and can access the Policy server from Acrobat pro XI and can see and create policies.
    however when trying to apply any policy to my PDF I get the Error in the Subject line.
    for all intents and purposes, the setup and configuration looks fine but I seem to be unable to get past the very last step and actually use the policies.
    please can anyone help?

    Try this:
    Fix for Software Update
    See Troubleshooting Automatic Software Update in Mac OS X.
    Delete the following files:
    /Library/Preferences/com.apple.SoftwareUpdate.plist
    /Home/Library/Preferences/ByHost/com.apple.SoftwareUpdate.xxx.plist where "xxx" is a number.
    /Home/Library/Caches/com.apple.SoftwareUpdate/ (delete entire folder)

  • Error occured while performing the operation : Cannot open Service Control Manager on computer FOO. This operation might require other privileges.

    My company is splitting in two, so we're migrating half of our systems and servers to a new domain. I have an application that uses AppFabric. We have 3 Windows servers running AppFabric, each talking to a SQL server for the AppFabric cluster service.
    On the initial domain, everything was working fine. AppFabric service is running under a service account we'll call DOMAIN1\svc_acct that is the dbo on the AppFabric database. The service account is a local admin on all the boxes. Permissions are all working
    fine.
    I've migrating the servers to the new domain and it won't work anymore.
    Now I'm using DOMAIN2\svc_acct that is the dbo on the database again. The exact same app servers have moved to the new domain and once again that service account is a local admin on all the boxes. But AppFabric won't work. I migrated the boxes back to the initial
    domain and it worked again. I migrated it back to the new domain, and it won't work.
    I'm under a time crunch to get this working for the company split. Any help would be greatly appreciated!
    Thanks!

    Lowering UAC is not always the best approach.
    It sounds like you could run the installation elevated by right clicking setup and selecting Run as administrator.
    Jason Warren
    habaneroconsulting.com/Insights
    @jaspnwarren

  • In printer services error message says "unable to perform this operation"

    when I try to check my ink levels in the printer services area, an error message comes up "unable to perform this operation"
    I have deleted and reinstalled my printer.  I have downloaded the lastest driver--all to no avail

    Please read this post then provide some details.  What printer model? What operating system? 
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • TS3221 I am trying to update my iPod touch to the new iOS, but the error message "An error has occurred while backing up this iPod (0xE800067)" and asks me if I want to continue (which will "result in the loss of all contents on this iPod"); what is the p

    I am trying to update my iPod touch to the new iOS, but the error message "An error has occurred while backing up this iPod (0xE800067)" and asks me if I want to continue (which will "result in the loss of all contents on this iPod"); what is the problem?

    Maybe:
    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting
    Also see:
    iOS: Troubleshooting backup issues in iTunes

  • An error 1069 - )The service did not start due to logon failure) occurred while performing this service operation ...

    Hi All,
    We seem to be being plagued by the error below by our SQL Server agent. This happens almost everytime we restart the server that has been running for a day or two.
    Our SQL Server Agent uses a none expiring domain credential. I understand that this problem only happens when the profile being used by the SQL Servr Agent has changed (password change). What puzzles me is that the login is A ok and no changes has been made to it's password.
    We always resolve this problem by changing the login used in the SQL Server Agent to local and after that, returning it back to it's original domain login. Unfortunately, we cant always do this everytime something goes wrong.
    Can anyone please help us shed a light on this? We're using SQL2k with SP3a. Thanks!
    Error:
    An error 1069 - )The service did not start due to logon failure) occurred while performing this service operation on the SQLServerAgent service.
    Regards,
    Joseph

    Ran into this error, and the password was correct. What the System Event Log said:
    Code SnippetEvent Type: Error
    Event Source: Service Control Manager
    Event Category: None
    Event ID: 7041
    Date: 10/8/2008
    Time: 9:33:09 AM
    User: N/A
    Computer: ComputerName
    Description:
    The SQLSERVERAGENT service was unable to log on as DomainName\SQLAgent with the currently configured password due to the following error:
    Logon failure: the user has not been granted the requested logon type at this computer.
    Service: SQLSERVERAGENT
    Domain and account: DomainName\SQLAgent
    This service account does not have the necessary user right "Log on as a service."
    User Action
    Assign "Log on as a service" to the service account on this computer. You can use Local Security Settings (Secpol.msc) to do this. If this computer is a node in a cluster, check that this user right is assigned to the Cluster service account on all nodes in the cluster.
    If you have already assigned this user right to the service account, and the user right appears to be removed, a Group Policy object associated with this node might be removing the right. Check with your domain administrator to find out if this is happening.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp
    ...sure enough it had been removed from the "Logon as a service" list. Hope this helps.

  • My MacBook Air becomes unresponsive when logging in, and I decided to reinstall OS X Lion. When running the installer from OS X Recovery, it gave the error message "An error occurred while preparing the installation. Try running this application again."

    My MacBook Air becomes unresponsive when logging in, and I decided to reinstall OS X Lion. When running the installer from OS X Recovery, it gave the error message "An error occurred while preparing the installation. Try running this application again."
    Checking in the log revealed the following error:
    Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Error!! Error Domain=NSURLErrorDomain Code=-1202 "UNTRUSTED_CERT_TITLE" UserInfo=0x1086bec80 {NSLocalizedDescription=UNTRUSTED_CERT_TITLE, NSLocalizedFailureReason=UNTRUSTED
    The rest of the line is cutted off. Does anyone know what went wrong and how to fix it ?

A: my MacBook Air becomes unresponsive when logging in, and I decided to reinstall OS X Lion. When running the installer from OS X Recovery, it gave the error message "An error occurred while preparing the installation. Try running this application again."

I encountered the same exact problem when I attempted to re-installed OSX Lion on an old laptop. The date was set back in 2000, which rendered the certificate obsolete. Here's how I fixed it:
From the recovery menu, select the Terminal application. Run the 'date' command to confirm the date is wrong, then set the correct date using this command: date {month}{day}{hour}{minute}{year}
e.g. date 1219195613
Exit terminal (type exit). Retry the installation.

I encountered the same exact problem when I attempted to re-installed OSX Lion on an old laptop. The date was set back in 2000, which rendered the certificate obsolete. Here's how I fixed it:
From the recovery menu, select the Terminal application. Run the 'date' command to confirm the date is wrong, then set the correct date using this command: date {month}{day}{hour}{minute}{year}
e.g. date 1219195613
Exit terminal (type exit). Retry the installation.

  • I purchased mountain lion, but after numerous attempts until my fingers all gone numb, i simply cannot install it on my imac. i get this error message: "an error occurred while installing OS X, you cannot install OS X on this disk......". please help.

    I purchased mountain lion, but after numerous attempts until my fingers all gone numb, i simply cannot install it on my imac. i get this error message: "an error occurred while installing OS X, you cannot install OS X on this disk......".
    please help!
    imac specs:
    IMAC 24 inch Mid 2007
    Intel 2.4 GHz 2 duo
    4GB SDRAM
    OS X lion 10.7.4
    200 GB Harddrive space free

    Tell us more about the disk and partition onto which you are trying to install Mountain Lion:
    Open Disk Utility (in Applications > Utilities). The left column should show your disk with its partition(s) indented below it:
    How is the disk (top level container) formatted according to Disk Utility:
    * What Partiton Map Scheme? (Should be "GUID Partition Table".)
    * How many partitions? (Should be 1 unless you have a Boot Camp partition.)
    How is the partition (lower level container) formatted according to Disk Utility? (Should be "Mac OS Extended (Journaled)".)
    Message was edited by: markwmsn
    (image inserted)

  • I am receiving a backup error message" ther backup was not performed because an error occurred while copying files to the backup disk"

    I am receiving an error message: " the backup was not performed because an error occurred while copying files to the backup disk". I have used the Disk Utility tot "Repair Disk" and it appears that there are no problems with the back up file..
    I continue to receive the error message. What can anyone suggest I do?

    One of Apple's less-than-informative messages. 
    Most likely, there's a damaged file on your system; see #C3 in Time Machine - Troubleshooting.  It will show you how to locate the message(s) that describe the problem, then help you fix it.  

  • Since updating to Yosemite my airport express (used for airplay) connects for a short period then drops, the error message "An error occurred while connecting to the AirPlay device "Kitchen". The host cannot be reached."  Has anyone else had this?

    Since updating to Yosemite my airport express (used for airplay) connects for a short period then drops, the error message "An error occurred while connecting to the AirPlay device “Kitchen”. The host cannot be reached."  Has anyone else had this problem

    I'm having the same issue.  Haven't found a workaround.  I use a main TimeCapsule as my main router, also have another TimeCapsule that extends the network, three Airport Express and an AppleTV.  For whatever reason, the two AirportExpress that I have in a different rooms cut out.  I only have 600 square foot apartment so it's not that big, the signal should be strong enough.  Airport Utilitiy reports the signal strength to be strong on all devices.
    I'm using all new equipment, a new MacPro for my music, new TimeCapsules, new Airport Express, new everything with the latest Yosemite software.  Very frustrating.  My Airplay used to work very nice and now I'm constantly having issues and restarting my network.  I did a fresh install of all my software on my MacPro when I got it in January so it's not as if it's an old machine with old software, everything is new within the last 6 months.
    The only workaround I found so far is to unplug the devices and to plug them back in.  Since upgrading to Yosemite, I'm restarting my Airport Express at least twice a week.  Very annoying.

  • During iOS 5 update&restore, I got this error message "An error occurred while restoring this iPhone (-50)".

    After backing up, iTune was restoring and it showed the error message "An error occurred while restoring this iPhone (-50)".
    I have two iPhones; iPhone 4 and iPhone 3GS.
    I successfully upgraded my iPhone4 to iOS 5 with iTune on my Window XP. Everything works well.
    So, I tried to upgrade my iPhone 3GS as well (with the same iTune on the same computer). After backing up,
    iTune was restoring and it showed the error message "An error occurred while restoring this iPhone (-50)".
    I tried to unplug and plug the iPhone. but iTune showed the same error when I click "contrinue restore" button.
    I think backup file would still exist on my computer and I want to restore them all.
    Please help me to fix the problem.
    Thanks,

    Hi...
    Click here >  iTunes: Advanced iTunes Store troubleshooting
    Then click: Specific Conditions and Alert Messagers
    Then click: Error 50 ...

  • I'm uploading a photobook I made to be published.  I need assistance in getting it to apple.  The book is assembled and gets to the end of uploading when I get an error message, an error occurred while uploading.  I have been trying all night.  Help!

    I'm uploading a photobook I made to be published.  I need assistance in getting it to apple.  The book is assembled and gets to the end of uploading when I get an error message, an error occurred while uploading.  I have been trying all night.  Help!

    Welcome to the Apple Community.
    I have seen previous versions mentioned in a pop up message before on iCloud.com, but I'm not really sure at all how it would help, as I couldn't get it to do anything.
    The best advice I have at this time is to back up your work on your iOS device by regularly saving it to iTunes, if anything goes wrong you can then either load it into the numbers app again on the device or recover it via iTunes on your computer.
    My syncs are immediate, I never get chance to see if it works in the background, sorry.

  • Maybe you are looking for

    • TAF creation for insert statement

      Hi, I created a TAF service for select statement but, I have a problem in creating a TAF service for INSERT statement. Can any one say how to create TAF for inserting? Hope i'll get my answer ASAP. Regards, Suri.

    • Lightroom trial running out & waiting for LR6 ?

      I downloaded the LR free trial nearly a month ago and was planning to get the newest version if i like it.   I like it very much but would like to get the new version that is coming out. Thought i timed it right, but no news on LR6.  This will be a s

    • Running a small business--which should I use?

      I would like to keep a business client database. I don't know whether to use AppleWorks, iCal/Address Book, or Palm Desktop, which came with my Mac. I like iCal because of its reliable reminders for meetings and other business related events, but the

    • Storing data out to external file...?

      I have a question I'd like to put forward to anyone who can help me. It's a bit vague, perhaps, but any help would be appreciated... I need to make a Flash application into which you can INPUT data, and then have that data STORED somehow / kept in me

    • Turning on/off JIT

      Hi, Can someone tell me how to ebable or disable JIT in jdk1.5? Is it -Xint? Operate in interpreted-only mode. Compilation to native code is disabled, and all bytecodes are executed by the interpreter.(This is from Sun's java doc. is this mean turnin