Cannot perform this operation stopping my editing dead.

I'm running an Imac mid 2011, 2.8ghz I7 with 24gb of ram. All my media is externally stored. I installed FCPX 10.1.1. on top of a clean installation of Mavericks.
My problem: Just after I build a compound clip with a solid backqround and one title over the top, I invariably get this message popping up..."Cannot perform this operation: The application detected an error that prevents changed from being saved. To avoid losing your work, quit FCP"....then the program disappears.
I've been reading that this could be coming from updated projects and events so I created a new library for my latest job but the problem persists. Has anyone else encountered this? Seems like yet another bug to me.

Hi dpcam1,
I agree - a bug ...I have had that error randomly recently. Hopefully the dumps that apple gets may yield a fix down the track :/
Bam

Similar Messages

  • Your system is low on disk space and elements organizer cannot  perform this operation

    your system is low on disk space and elements organizer cannot  perform this operation is the error message i keep getting. i have emptied my recycle bin and got rid of some software that i don't use and im still getting the error. Any Suggestions?

    As you might be aware, when you apply auto-fix, a new file (of almost equal size) is created on HDD. This issue might arise if you don't have sufficient hard disk space on the drive which contains the source image. Do you have enough storage space available on your HDD?
    ~Andromeda

  • 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

  • "changes to the distribution list membership cannot be saved. you do not have sufficient permission to perform this operation on this object"

    Running Exchange 2010/latest updates on Windows 2008 R2 servers.
    When I create a new DL that I want someone to manage, they received the following message when trying to add/remove from the DL:
    "changes to the distribution list membership cannot be saved.  you do not have sufficient permission to perform this operation on this object"
    I have followed everything in "http://msexchangeteam.com/archive/2009/11/18/453251.aspx" with no luck
    Any suggestions?

    Piggybacking off of the discussion above, with our deployment of Exchange 2007, we created a set of web-based tools that allowed people to create Exchange Resources including distribution lists.  To allow multiple people to manage the lists for a given
    department, we programmatically created a group, which is populated with one or more users from the "resource department".  We then set the following AD permissions to allow members of the group to manage membership of departmental distribution lists:
    Add-ADPermission -User DepartmentalGroup -AccessRights ReadProperty, WriteProperty -Properties 'Member' -DomainController dc.contoso.com
    Fast forward to Exchange 2010 and the landscape has changed with Exchange 2010's implementation of Role Based Access Control and I'm struggling to come up with a way to programmatically allow a group of users to manage distribution list membership for a
    subset of distribution lists - note that we have approximately 75 departments, with each having its own set of coordinators who should be able to manage distribution lists for their department but not lists created by other departments.  The specific
    error we receive in Outlook when attempting to modify group membership is the same as the title of this thread - "Changes to the distribution list membership cannot be saved.  You do not have sufficient permission to perform this operation on this object". 
    I implemented the settings referred to at
    http://sysadmin-talk.org/2010/06/omg-allowing-end-users-to-manage-distribution-group-membership-in-exchange-2010-2/ which details the process of creating a new management role and revoking the role's ability to create new distribution lists and remove distribution
    lists (which we want because we want those actions to be performed using our web tools). 
    All that to say that the ultimate problem we have is that the above relies on the "ManagedBy" field of a distribution list (viewable by Get-DistributionList Listname | fl *ManagedBy*) to determine group ownership.  When "ManagedBy" is set to a user,
    the user CAN edit a distribution list's membership from Outlook and OWA.  When "ManagedBy" is set to a group, members of the group are UNABLE to edit the membership of the distribution list via Outlook or Outlook Web Access/ECP.   Furthermore,
    Set-DistributionGroup does not allow you to specify a list of users to assign to the ManagedBy field.  However, if "ManagedBy" was set to a specific user and that user logs in to the Exchange Control Panel and adds additional "owners" of the distribution
    list, which I can then see from EMS - both the original owner and any additional owners added can in turn modify group membership for the list using Outlook or Outlook Web Access/ECP.
    My questions:
    1) Is it "expected" behavior that while I can assign a group to the "ManagedBy" property of distribution list, members of that group are still unable to edit the group membership?  ...or is there a fix for the behavior I'm seeing?
    2) Can multiple values be assigned to the "ManagedBy" property when using Set-DistributionList - ex: Set-DistributionList DLName -ManagedBy:user1,user2
    3) Any other suggestions?
    Thanks,
    -Lance

  • Microsoft Outlook 2010 The delegates settings were not saved correctly. Cannot activate Send-on-behalf-of list. You do not have sufficient permission to perform this operation on this object.

    I am trying to assign delegation to a user and I receive the following message.
    The delegates settings were not saved correctly.  Cannot activate Send-on-behalf-of list.  You do not have sufficient permission to perform this operation on this object.
    We are using 2010 for the server and client.  There are only specific mailboxes that this is happening for after being migrated from Lotus Notes.  The user can use their mailfile fine however it is just the delegation that appears corrupted somehow. 
    I'm not sure how to fix this.  I have checked the access through the security tab in ad and that looks fine.
    Any help would be appreciated.

    I did some more digging and I solved it.
    This would be the solution:
    In Active Directory Users and Computers
    -Click on VIEW
    -Click on ADVANCE FEATURES  (this is important otherwise you won't see
    the complete list in the next steps)
    -Click on the USERS container
    -Find the problem user's account
    -Right mouse the account and click on PROPERTIES
    -Click on the SECURITY tab
    -In the top box, click on the SELF account
    -In the bottom portion of the screen make sure the READ PERSONAL
    INFORMATION  & WRITE PERSONAL INFORMATION  should both be checked for
    ALLOW
    If you can compare the permissions for 'SELF' with another user you probably should set them accordingly to be safe. I noticed that for the user where setting delegates (SOB) did
    not work, more than those 2 permissions were missing.
    Good luck!
    David

  • Cannot move the items. You don't have appropriate permission to perform this operation.

    Recently, I upgraded outlook from 2007 to 2010, but I got a problem that I cannot move any mails to personal folder and the error msg is "Cannot move the items. You don't have appropriate permission to perform this operation.".Even I create a new personal
    folder in 2010 and try to move mails to it, I still get that error message. 
    Can anyone help me out please?
    Thanks so much in advance.

    I've experienced the same thing and was unable to find this key that Tony mentioned.  After searching numerous sites, i found this instruction set below and tried it and it worked.  Per my case, the key PstDisableGrow was set to 1 under ...\Software\Polices\...
    instead.  I disabled it and bam, it worked.  Give this a try...
    Your System Administrator has either enforced a group policy to prevent pst files growing in size or a registry key is present preventing the growth of pst files. One of the following
    registry keys will be present based on your version of office (11.0 for Office 2003, 12.0 for Office 2007 and 14.0 for Office 2010). The example below is for Office 2010 (14.0):
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\PST  - DWord Value: 'PstDisableGrow', Value: 1
    HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Outlook\PST  - DWord Value: 'PstDisableGrow', Value: 1
    Best of luck!

  • "Your computer must be connected to the internet to perform this operation" during sync.

    My curve had this error message:
    "your computer must be connected to the internet to perform this operation. Please ensure that you are able to connect to the internet and try again".
    Worked fine with desktop manager 4.6...
    update to 4.7 blew it up...
    found an article to fix.. regedit and change hklm \ software \ reasearch in motion \ blackberry\ syncronize
    change State from 1 to 0
    worked fine....
    till the 5.0 update ...
    now it does not work again and this key does not even exist anymore.
    Of course there is internet and there is no firewalling enabled or any application which would block this traffic, no proxy settings, routing issues etc....
    There has to be answer to this issue.. I know I am not the only person with this issue.
    Craig
    Solved!
    Go to Solution.

    Hi,
    You only need to connect onve, and then you satisfy the request.
    I have run into this twice, and I cannot logically explain why it occurs.
    On the first install I finally connected the PC directly to the cable modem, after disabling the firewall software.
    It did take about 6 hours with Kapersky to ensure it hadn't got infected. That was a friends DM 4.5
    The second was was out of total frustration with version 4.7. On my network.
    I , like you,have routers and firewalls in front of the cable router if I had had a packet sniffer it would have been easier to trace.
    I reasoned that the PC and applications like explorer and Outlook could access the internet with out fail.
    I then tracked the default IP gateway address for my PC.
    In Windows click on Start, then on Run, and then type "cmd" and press Enter to open a DOS window.
    - In this window type "ipconfig" and press Enter.
    - The screen will display the IP options for Ethernet the submask, etc.  "Default Gateway." is what you need.
    - Copy the the default gateway's IP address.
    I then started the Blackberry device manager and opened the Blackberry Hardware properties icon in the systray.
    I was trying to see if I could find what the desktop manager was trying to access or at least what path it wanted.
    I found the Blackberry Router configuration tab.Click on the bottom right "turn on user defined routes".
    So basically you can provide a bypass route "static route". I entered my PC default gateway address, hit apply and OK.
    I did a cold boot of the system, started the DM and it never whimpered, just hit the internet and I could access the 
    sync options. This worked without changing any firewall or router settings. I purposely left it all in place as that
    IP gateway worked for any other program on both my PC's. (I have setup mu PC to device the home network.
    After running steady for a couple of weeks, I went in and removed the bypass address. The 4.7 install has yet to miss a
    beat. 
    Well I probably broke 87 FCC regulations, all of the RIM agreements but it worked for me.!
    If I'm not here tommorow have a drin for me at the party! 
    I have just installed the Desktop manager 5.0 and never had the problem.
    So basically it's your call !
    The worst that can happen is it doesn't work and you narrow it down further, the best that happens is you get connected.
    I would recommend getting a  " sniffer" program. This is the one suggested by Blackberry in the KB article
    (Packet capture  tool (such as Wireshark®)
    Let us know what you think.
    Thanks,
    Bifocals
    Message Edited by Bifocals on 08-03-2009 07:15 PM
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Your computer does not have sufficient memory to perform this operation in Captivate

    I am currently new to Captivate 4 and I keep getting this error message "Your computer does not have sufficient memory to perform this operation. Do the following"
    I am trying to publish a large project were I recorded voice discussions over a power point presentation. The project is about 41 slides long and recorded using the video camera option. What can I do to stop getting this error message and publish this project. Help!

    Hi,
    Please check the memory available in your system.
    Also please try the following -
    - Open your Captivate project which you wish to publish
    - Go to menu item Edit > Preferences
    - In the Preferences dialog, go to Project > SWF Size and Quality
    - Uncheck the checkbox Advanced project compression
    Now try publishing the project.
    Regards,
    Mukul

  • The permissions granted to user '' are insufficient for performing this operation. (rsAccessDenied)

    when I try to connect to the "http://localhost:8080/ReportServer " I get this error.
    The permissions granted to user 'DOMAIN/USERNAME' are insufficient for performing this operation. (rsAccessDenied).
    I have configered the Reporting services Configuration manager.
    I am an administrator on my machine and on the reportserver DB. when I try to log on the my 2008 R2 reporting services I get a simalar error.
    does any one have an idea of what I am missing?
    thank you.
    Jeff
    Jeff

    Hi There
    Please also have a look on this thread
    http://tanveeronline.blogspot.co.nz/2011/07/ssrs-2008-r2-unable-to-connect-to.html
    http://social.msdn.microsoft.com/Forums/hu-HU/sqlreportingservices/thread/f8a0a3f5-3985-4356-8404-3b408f790747
    http://www.networksteve.com/enterprise/topic.php?TopicId=24217
    In the last section of this thread it get resolved by
    "Changing the ports. Configured TCP port to 9000 and SSL port to 9001.
    And then
    <Add Key="SecureConnectionLevel" Value="0"/>
    Its value was 2, changed it to 0."
    Please have alook on this thread that might help you
    Many thanks
    Syed
    http://tanveeronline.blogspot.co.nz/2011/07/ssrs-2008-r2-unable-to-connect-to.html
    Does not work. I already had the settings which are mentioned in that blog - 
    Try doing the following things
    Go to Reporting Services Conf. Manager.
    1. Change the server account to local account.
    2. Remove the SSL if configured.
    3. Go to C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer
    4. Change the  SecureConnectionLevel value to 0 in rsreportserver.config
    Try refreshing the page, it should work now!
    Also tried answer at - http://social.msdn.microsoft.com/Forums/sqlserver/en-US/f8a0a3f5-3985-4356-8404-3b408f790747/ssrs-2008-unable-to-connect-to-remote-server?forum=sqlreportingservices
    Same thing there. SecureConnectionLevel value to 0 is already set for me.
    Third link comment at end says  - 
    Hi Chaitanya, Changing the ports worked for me. Configured TCP port to 9000 and SSL port to 9001. And then <Add Key="SecureConnectionLevel"
    Value="0"/> Its value was 2, changed it to 0. Thanks for all your support Best Regards, Arka Mitra.
    You can set TCP and SSL like this from Reporting services config manager - 
    Web Service URL option (left pane) > Advanced settings button > put the values.
    The TCP can be changged to 9000, but the SSL requires a certificate file. I am stuck here.
    The clue to make your own SSL certificate is here - 
    http://johnhennesey.blogspot.com/2010/10/reporting-services-2008-over-ssl.html
    But, this post is not for windows 7 64 bit, ie my personal pc os. I tried to make the cert on win, 7, but options are complicated. Lets see.
    Here is the issue for the same - https://stackoverflow.com/questions/22314341/cannot-see-self-created-certificate-in-certmanager

  • V4.1 "You cannot perform this action in this region of the page" Bug?

    I am receiving an "You cannot perform this action in this
    region of the page" error when I try to add a link to an image. And
    yes I am in an editable region.
    The weird thing is, for the images that already have links, I
    can edit them successfully, but if I remove them I cannot add a
    link back to it.
    This site was originally being administered using contribute
    3.11 but the client is now using 4.1 could that have something to
    do with it?
    Thank you,

    I was also having this problem but I was able to confirm that it wasn't old code or javascript problems. In the process of troubleshooting we realized that some links were editable and others were not. Turns out all the links that used PHP (in this case an echo for the site url) were the ones that were uneditable.
    Since I've been creating pages and content with this method for years and have only had a problem in the last month, I don't really feel like this has been "solved". I certainly don't want to go back and edit all my pages using php for site organization but at least this will allow the client to make edits for now.

  • SSRS 2012: The permissions granted to user '' are insufficient for performing this operation. (rsAccessDenied)

    Hello
    Can you please help me with this error that I'm getting with SSRS 2012.  I've searched the forums and I can only find solutions for SQL Server 2008 and not 2012.
    When I try to go to the url on our server
    http://server:port/ReportServer, I get the following error.
    "The permissions granted to user 'WW004\z0008x5e' are insufficient for performing this operation. (rsAccessDenied)". 
    Can you please help me troubleshoot this.  I have not been able to find a solution.
    Andy

    Hi AndyMcV,
    According to your description, when you try to go to the URL
    http://server:port/ReportServer, the error occurred: The permissions granted to user 'WW004\z0008x5e' are insufficient for performing this operation. In fact, reporting Services uses role-based security to grant user access to a report server, and there
    are two types of roles: Item-level roles and System-level roles. On a new installation, only local administrators have access to a report server. In order to grant access to visit the URL
    http://server:port/ReportServer to users, a local administrator must create a role assignment to define the tasks a user can perform. To workaround this issue, please refer to the following steps:
    Start Report Manager by going to URL
    http://server:port/ReportServer.
    Click Site Settings at the top right of the page.
    Click Security in the left pane.
    If a role assignment already exists for the user, click Edit.
    Otherwise, click New Role Assignment. In user, enter the user account.
    Select appropriate access, and then click Apply.
    Besides, if the user need to have access to reports, folders, models and shared data sources, we can assign Item-level roles on the root node (the Home folder) or on specific folders or items.
    For more information about Role Assignments, please refer to the following article:
    http://technet.microsoft.com/en-us/library/aa337471(v=SQL.105).aspx
    If you have any questions, please feel free to let me know.
    Thanks,
    Wendy Fu

  • 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.

  • Why we cannot perform DML operations against complex views directly.

    hi
    can any tell me why we cannot perform DML operations against complex views directly.

    Hi,
    It is not easy to perform DML operations on complex views which involve more than one table as said by vissu. The reason being you may not know which columns to be updated/inserted/deleted on the base tables of the views. If it is a simple view containing a single table it is as simple as performing actions on the table.
    For further details visit this
    http://www.orafaq.com/wiki/View
    cheers
    VT

  • The current user has insufficient permissions to perform this operation when trying to add Term stored managed navigation.

    Hi,
    i am getting this error "The current user has insufficient permissions to perform this operation." when trying to add the Term store managed navigation like the following screen shot. i am the Farm
    administrator and as well managed services account. also noticed, cannot delete the service application, saying you don't have enough permission to delete the db. but using this account i was able to do everything before in my environment. is anyone already
    face this kind of error, so what will be the way to resolve this?
    Appreciated!

    event though its a farm admin,It should provide the access to MMS.please find the below link for more details and the solution for the issue.
    Go to SharePoint Central Administration Site –> Application Management –> [Service Applications] –> Manage service applications
    2.   Highlight the Managed Metadata Service that your web application is associated with. (Do not click on the link, just click somewhere else on that row to highlight it)
    3.   Click on Permissions button in the ribbon area.
    4.   Add the application pool account used by your web application and give it  ‘full Access to Term Store’
    5.   Click OK.
    http://expertsharepoint.blogspot.de/2014/08/managed-metadata-service-or-connection.html
    Anil Avula[MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • You Cannot Perform this Action in this Region of the Page

    I have been using Contribute for a few months - my web person designed our web in Dreamweaver, using a template she customized. I am using Firefox, if that matters. I have the Administrator role.
    About a month ago I had trouble deleting a table - and received the error message You Cannot perform this action ... etc. NOW, I can't do anything having to do with inserting html snippet, or inserting a table, or a paypal button. I am trying to update pricing on our products page.
    Thank you!

    Anit: Thank you, but I checked out that article and the subject is: "When trying to edit a page, an error message appears, "You can't edit this page now because (username) <email address> is currently editing it. Please contact <email address> for assistance."" I am trying to edit a page that is not checked out. It appears to have something to do with tables and paypal buttons - both when they are input through contribute, and when I get the code from creating one in Paypal and try to insert html snippet. Do you please have any other ideas? This is a show-stopper for our business because now the buttons aren't working. Thank you!

Maybe you are looking for