Error help- "the operation could not be performed ...file... doesn't exist"?

Hi,
I am experiencing some probmels with ICE and can't find a reason for why.  I was able to edit the pages on the site through ICE about a month ago, but the client just let me know they can't do anything for any page.  I also can't do anything for any pages I was able to previously edit.  Basicall, I get this error message after being able to log in, edit page, and click save draft/ changes I get the following error:
"The operation could not be performed because the file can't be accessed or doesn't exist..."
I have looked extensively at these threads: http://forums.adobe.com/thread/444356?tstart=60
and http://forums.adobe.com/thread/432559?tstart=0
From that I have tried the following:
Made sure passive FTP was working properly
Verified FTP Dreamweaver connection with same FTP account: all is good and i can change and put the pages in question on the server.
Verified tags in page (I think I have most pages correct.- although I know some are still not div tagged correct, but don't think thee issues are related.)
verified that the directory settings on the adobe account (which is the root) is only "/"
Tried editing in both Safari and FF and the client tried in IE and FF (all most recent versions I think)
No progress has been made.  Actually now my adobe account for managing my sites is not allowing me to manage "settings" for this site either.  The tab is there but doesn't have the word settings on it and therefore I can't click it anymore
Here is the site: www.extremecommunitymakeover.org.  I know for sure I WAS able to edit the index, get involved, and contact us pages a moth ago and now I get the error.
Also- another maybe related problem is that I can't actually duplicate or create new pages via ICE.  Everything I try to name the new page gets kicked back and the dialog box says error says the "file extension is invalid".
So- I seem to have a couple problems possibly all related to each other and your help would be much appreciated.
Thanks,
Sean

Here's the setup on the two machines in particular...
Machine #1:
XP Pro
Was IE7, now latest FF
No antivirus
Firewall – Windows Firewall, Downloaded AVG free trial ver., but not installed
Machine #2:
XP Pro
IE7
Again, No AV… had Kaspersky… but uninstalled it
Windows Firewall
Maybe that could be of some assistance... not seeing anything that could possibly block or inhibit the ICE. Each machine is independent of the other, separate networks, different locations, JavaScript enabled, no cookie blockers, etc.
....STUMPED!!!   

Similar Messages

  • ERROR: The operation could not be performed because the file can't be accessed or doesn't exist. Please contact your web developer to correct the problem.

    Only on one page, the client is receiving this error:
    Error - The operation could not be performed because the
    file cant be accessed or doesnt exist. Please contact your web
    developer to correct the problem.
    I tested it with a couple different usernames and a couple different browsers and it works fine on my end.. but none the less it is happening to him. This is the second time it happened to two different clients.
    ??? Any ideas ??? Anyone else had this happen?

    Here's the setup on the two machines in particular...
    Machine #1:
    XP Pro
    Was IE7, now latest FF
    No antivirus
    Firewall – Windows Firewall, Downloaded AVG free trial ver., but not installed
    Machine #2:
    XP Pro
    IE7
    Again, No AV… had Kaspersky… but uninstalled it
    Windows Firewall
    Maybe that could be of some assistance... not seeing anything that could possibly block or inhibit the ICE. Each machine is independent of the other, separate networks, different locations, JavaScript enabled, no cookie blockers, etc.
    ....STUMPED!!!   

  • The operation could not be performed because OLE DB provider "OraOLEDB.Oracle" for linked server ...

    Our setup is that we have two databases; a SQL Server 2008 database and an Oracle database (11g). I've got the oracle MTS stuff installed and the Oracle MTS Recovery Service is running. I have DTC configured to allow distributed transactions. All access to the Oracle tables takes place via views in the SQL Server database that go against Oracle tables in the linked server.
    (With regard to DTC config: Checked-> Network DTC Access, Allow Remote Clients, Allow Inbound, Allow Outbound, Mutual Authentication (tried all 3 options), Enable XA Transactions and Enable SNA LU 6.2 Transactions. DTC logs in as NT AUTHORITY\NetworkService)
    Our app is an ASP.NET MVC 4.0 app that calls into a number of WCF services to perform database work. Currently the web app and the WCF service share the same app pool (not sure if it's relevant, but just in case...)
    Some of our services are transactional, others are not.
    Each WCF service that is transactional has the following attribute on its interface:
    [ServiceContract(SessionMode=SessionMode.Required)]
    and the following attribute on the method signatures in the interface:
    [TransactionFlow(TransactionFlowOption.Allowed)]
    and the following attribute on every method implementations:
    [OperationBehavior(TransactionScopeRequired = true, TransactionAutoComplete = true)]
    In my data access layer, all the transactional methods are set up as follows:
    using (IDbConnection conn = DbTools.GetConnection(_configStr, _connStr))
    using (IDbCommand cmd = DbTools.GetCommand(conn, "SET XACT_ABORT ON"))
    cmd.ExecuteNonQuery();
    using (IDbCommand cmd = DbTools.GetCommand(conn, sql))
    ... Perform actual database work ...
    Services that are transactional call transactional DAL code. The idea was to keep the stuff that needs to be transactional (a few cases) separate from the stuff that doesn't need to be transactional (~95% of the cases).
    There ought not be cases where transactional and non-transactional WCF methods are called from within a transaction (though I haven't verified this and this may be the cause of my problems. I'm not sure, which is part of why I'm asking here.)
    As I mentioned before, in most cases, this all works fine.
    Periodically, and I cannot identify what initiates it, I start getting errors. And once they start, pretty much everything starts failing for a while. Eventually things start working again. Not sure why... This is all in a test environment with a single user.
    Sometimes the error is:
    Unable to start a nested transaction for OLE DB provider "OraOLEDB.Oracle" for linked server "ORACLSERVERNAME". A nested transaction was required because the XACT_ABORT option was set to OFF.
    This message, I'm guessing is happening when I have non-transactional stuff within transactions, as I'm not setting XACT_ABORT in the non-transactional code (that's totally doable, if that will fix my issue).
    Most often, however, the error is this:
    System.Data.SqlClient.SqlException (0x80131904): The operation could not be performed because OLE DB provider "OraOLEDB.Oracle" for linked server "ORACLSERVERNAME" was unable to begin a distributed transaction.
    Now, originally we only had transactions on SQL Server tables and that all worked fine. It wasn't until we added transaction support for some of the Oracle tables that things started failing. I know the Oracle transactions work. And as I said, most of the time, everything is just hunky dorey and then sometimes it starts failing and keeps failing for a while until it decides to stop failing and then it all works again.
    I noticed that our transactions didn't seem to have a DistributedIdentifier set, so I added the EnsureDistributed() method from this blog post: http://www.make-awesome.com/2010/04/forcibly-creating-a-distributed-net-transaction/
    Instead of a hardcoded Guid (which seemed to cause a lot of problems), I have it generating a new Guid for each transaction and that seems to work, but it has not fixed my problem. I'm wondering if the lack of a DistribuedIdentifier is indicative of some other underlying problem. I've never dealt with an environment quite like this before, so I'm not sure what is "normal".
    I've also noticed that the DistributedIdentifier doesn't get passed to WCF. From the client, I have a DistributedIdentifier and a LocalIdentifier in Transaction.Current.TransactionInformation. In the WCF server, however there is only a LocalIdentifier set and it is a different Guid from the client side (which makes sense, but I would have expected the DistributedIdentifier to go across).
    So I changed the wait the code above works and instead, on the WCF side, I call a method that calls Transaction.Current.EnlistDurable() with the DummyEnlistmentNotification class from the link above (though with a unique Guid for each transaction instead of the hardcoded guid in the link). I now havea  DistributedIdentifier on the server-side, but it still doesn't fix the problem.
    It appears that when I'm in the midst of transactions failing, even after I shut down IIS, I'm unable to get the DTC service to shutdown and restart. If I go into Component Services and change the security settings, for example, and hit Apply or OK, after a bit of a wait I get a dialgo that says, "Failed ot restart the MS DTC serivce. Please examine the eventlog for further details."
    In the eventlog I get a series of events:
    1 (from MSDTC): "The MS DTC service is stopping"
    2 (From MSSQL$SQLEXPRESS): "The connection has been lost with Microsoft Distributed Transaction Coordinator (MS DTC). Recovery of any in-doubt distributed transactions
    involving Microsoft Distributed Transaction Coordinator (MS DTC) will begin once the connection is re-established. This is an informational
    message only. No user action is required."
    -- Folowed by these 3 identical messages
    3 (from MSDTC Client 2): 'MSDTC encountered an error (HR=0x80000171) while attempting to establish a secure connection with system GCOVA38.'
    4 (from MSDTC Client 2): 'MSDTC encountered an error (HR=0x80000171) while attempting to establish a secure connection with system GCOVA38.'
    5 (from MSDTC Client 2): 'MSDTC encountered an error (HR=0x80000171) while attempting to establish a secure connection with system GCOVA38.'
    6 (From MSDTC 2): MSDTC started with the following settings: Security Configuration (OFF = 0 and ON = 1):
    Allow Remote Administrator = 0,
    Network Clients = 1,
    Trasaction Manager Communication:
    Allow Inbound Transactions = 1,
    Allow Outbound Transactions = 1,
    Transaction Internet Protocol (TIP) = 0,
    Enable XA Transactions = 1,
    Enable SNA LU 6.2 Transactions = 1,
    MSDTC Communications Security = Mutual Authentication Required, Account = NT AUTHORITY\NetworkService,
    Firewall Exclusion Detected = 0
    Transaction Bridge Installed = 0
    Filtering Duplicate Events = 1
    This makes me wonder if there's something maybe holding a transaction open somewhere?

    The statement executed from the sql server. (Installed version sql server 2008 64 bit standard edition SP1 and oracle 11g 64 bit client), DTS enabled
    Below is the actual sql statement issued
    SET XACT_ABORT ON
    BEGIN TRAN
    insert into XXX..EUINTGR.UPLOAD_LWP ([ALTID]
              ,[GRANT_FROM],[GRANT_TO],[NO_OF_DAYS],[LEAVENAME],[LEAVEREASON],[FROMHALFTAG]
              ,[TOHALFTAG] ,[UNIT_USER],[UPLOAD_REF_NO],[STATUS],[LOGINID],[AVAILTYPE],[LV_REV_ENTRY])
              values('IS2755','2010-06-01',
    '2010-06-01','.5',     'LWOP'     ,'PERSONAL'     ,'F',     'F',     'EUINTGR',
    '20101',1,1,0,'ENTRY')
    rollback TRAN
    OLE DB provider "ORAOLEDB.ORACLE" for linked server "XXX" returned message "New transaction cannot enlist in the specified transaction coordinator. ".
    Msg 7391, Level 16, State 2, Line 3
    The operation could not be performed because OLE DB provider "ORAOLEDB.ORACLE" for linked server "XXX" was unable to begin a distributed transaction.
    Able to execute the above statement successfully without using transaction.We need to run the statement with transaction.

  • IMovie error message "The operation could not be completed"

    I am trying to create a new movie and got this error message " The operation could not be completed" after selecting the Themes.
    Any suggestions?
    Thanks

    My problem was because I had moved my Movies folder from the system drive (which is an SSD) over to another drive with a larger capacity. I then created an Alias in my home folder.  Turns out this is what was causing the problem. I shoulda known. Some apps absolutely hate this. iMovie, being the dumbed down garbage that it is, simply MUST have it's library in a certain folder, apparently. Would be nice if we had a choice about it.
    I find Premiere Elements is actually the better (and friendlier) program. However in this case, I had to slum it with iMovie due to the Quicktime file I was working with.

  • Bridge Crashing:  Error message "The operation could not be completed. The file is Locked

    Bridge is acting real funny lately:  It won't close, so I have to force quite, then I get the error message:  "The operation could not be completed.  The file is Locked"

    Thread 7:
    0   libsystem_kernel.dylib         0x000000010a98e136 __psynch_cvwait + 10
    1   com.adobe.bridge5             0x0000000100671cf8 boost::exception_detail::error_info_injector<boost::thread_resource_error>::~error_info_i njector() + 83992
    2   com.adobe.bridge5             0x00000001006ae71e boost::exception_detail::error_info_injector<boost::thread_resource_error>::~error_info_i njector() + 332350
    3   com.adobe.bridge5             0x00000001004d2c99 start + 5045481
    4   com.apple.CoreServices.CarbonCore 0x000000010b28c8dc PrivateMPEntryPoint + 58
    5   libsystem_pthread.dylib       0x000000010aaa3268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x000000010aaa31e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x000000010aaa141d thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x000000010a98e136 __psynch_cvwait + 10
    1   com.adobe.bridge5             0x0000000100671cf8 boost::exception_detail::error_info_injector<boost::thread_resource_error>::~error_info_i njector() + 83992
    2   com.adobe.bridge5             0x000000010066b372 boost::exception_detail::error_info_injector<boost::thread_resource_error>::~error_info_i njector() + 56978
    3   com.adobe.bridge5             0x000000010066939d boost::exception_detail::error_info_injector<boost::thread_resource_error>::~error_info_i njector() + 48829
    4   com.adobe.bridge5             0x00000001004d2c99 start + 5045481
    5   com.apple.CoreServices.CarbonCore 0x000000010b28c8dc PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib       0x000000010aaa3268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x000000010aaa31e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x000000010aaa141d thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x000000010a98e136 __psynch_cvwait + 10
    1   SwitchBoardClient             0x000000011ebce948 void boost::condition_variable_any::wait<boost::unique_lock<boost::mutex> >(boost::unique_lock<boost::mutex>&) + 80
    2   SwitchBoardClient             0x000000011ebc2cc8 adobe::switchboard::ConnectionQueue::run() + 300
    3   SwitchBoardClient             0x000000011ebc78a3 boost::_mfi::mf0<void, adobe::switchboard::ConnectionQueue>::operator()(adobe::switchboard::ConnectionQueue*) const + 97
    4   SwitchBoardClient             0x000000011ebc7911 void boost::_bi::list1<boost::_bi::value<adobe::switchboard::ConnectionQueue*> >::operator()<boost::_mfi::mf0<void, adobe::switchboard::ConnectionQueue>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, adobe::switchboard::ConnectionQueue>&, boost::_bi::list0&, int) + 65
    5   SwitchBoardClient             0x000000011ebc794e boost::_bi::bind_t<void, boost::_mfi::mf0<void, adobe::switchboard::ConnectionQueue>, boost::_bi::list1<boost::_bi::value<adobe::switchboard::ConnectionQueue*> > >::operator()() + 54
    6   SwitchBoardClient             0x000000011ebc796c boost::detail::thread_data<boost::_bi::bind_t<void, boost::_mfi::mf0<void, adobe::switchboard::ConnectionQueue>, boost::_bi::list1<boost::_bi::value<adobe::switchboard::ConnectionQueue*> > > >::run() + 28
    7   SwitchBoardClient             0x000000011eb632be thread_proxy + 89
    8   libsystem_pthread.dylib       0x000000010aaa3268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x000000010aaa31e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x000000010aaa141d thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x000000010a98e136 __psynch_cvwait + 10
    1   SwitchBoardClient             0x000000011eb66a41 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 59
    2   SwitchBoardClient             0x000000011eb89433 adobe::switchboard::Client::run() + 111
    3   SwitchBoardClient             0x000000011eb91e05 boost::_mfi::mf0<void, adobe::switchboard::Client>::operator()(adobe::switchboard::Client*) const + 97
    4   SwitchBoardClient             0x000000011eb91e49 void boost::_bi::list1<boost::_bi::value<adobe::switchboard::Client*> >::operator()<boost::_mfi::mf0<void, adobe::switchboard::Client>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, adobe::switchboard::Client>&, boost::_bi::list0&, int) + 65
    5   SwitchBoardClient             0x000000011eb91e86 boost::_bi::bind_t<void, boost::_mfi::mf0<void, adobe::switchboard::Client>, boost::_bi::list1<boost::_bi::value<adobe::switchboard::Client*> > >::operator()() + 54
    6   SwitchBoardClient             0x000000011eb91ea4 boost::detail::thread_data<boost::_bi::bind_t<void, boost::_mfi::mf0<void, adobe::switchboard::Client>, boost::_bi::list1<boost::_bi::value<adobe::switchboard::Client*> > > >::run() + 28
    7   SwitchBoardClient             0x000000011eb632be thread_proxy + 89
    8   libsystem_pthread.dylib       0x000000010aaa3268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x000000010aaa31e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x000000010aaa141d thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x000000010a98e36a __recvmsg + 10
    1   SwitchBoardClient             0x000000011eba0b93 unsigned long boost::asio::detail::reactive_socket_service<boost::asio::ip::tcp, boost::asio::detail::kqueue_reactor<false> >::receive<boost::asio::mutable_buffers_1>(boost::asio::detail::reactive_socket_service<b oost::asio::ip::tcp, boost::asio::detail::kqueue_reactor<false> >::implementation_type&, boost::asio::mutable_buffers_1 const&, int, boost::system::error_code&) + 537
    2   SwitchBoardClient             0x000000011eba0d08 unsigned long boost::asio::stream_socket_service<boost::asio::ip::tcp>::receive<boost::asio::mutable_bu ffers_1>(boost::asio::detail::reactive_socket_service<boost::asio::ip::tcp, boost::asio::detail::kqueue_reactor<false> >::implementation_type&, boost::asio::mutable_buffers_1 const&, int, boost::system::error_code&) + 58
    3   SwitchBoardClient             0x000000011eba0d42 unsigned long boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> >::read_some<boost::asio::mutable_buffers_1>(boost::asio::mutable_buffers_1 const&, boost::system::error_code&) + 56
    4   SwitchBoardClient             0x000000011eba1dbb adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >::runOne(boost::shared_ptr<adobe::switchboard::Connection<boost::asio::basic_stream_sock et<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >&) + 185
    5   SwitchBoardClient             0x000000011eba2063 adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >::run() + 69
    6   SwitchBoardClient             0x000000011eb91cd5 boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >::operator()(adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio ::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >*) const + 97
    7   SwitchBoardClient             0x000000011eb91d19 void boost::_bi::list1<boost::_bi::value<adobe::switchboard::Connection<boost::asio::basic_str eam_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >*> >::operator()<boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >&, boost::_bi::list0&, int) + 65
    8   SwitchBoardClient             0x000000011eb91d56 boost::_bi::bind_t<void, boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >, boost::_bi::list1<boost::_bi::value<adobe::switchboard::Connection<boost::asio::basic_str eam_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >*> > >::operator()() + 54
    9   SwitchBoardClient             0x000000011eb91d74 boost::detail::thread_data<boost::_bi::bind_t<void, boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >, boost::_bi::list1<boost::_bi::value<adobe::switchboard::Connection<boost::asio::basic_str eam_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >*> > > >::run() + 28
    10  SwitchBoardClient             0x000000011eb632be thread_proxy + 89
    11  libsystem_pthread.dylib       0x000000010aaa3268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x000000010aaa31e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x000000010aaa141d thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x000000010a98e36a __recvmsg + 10
    1   SwitchBoardClient             0x000000011eba0b93 unsigned long boost::asio::detail::reactive_socket_service<boost::asio::ip::tcp, boost::asio::detail::kqueue_reactor<false> >::receive<boost::asio::mutable_buffers_1>(boost::asio::detail::reactive_socket_service<b oost::asio::ip::tcp, boost::asio::detail::kqueue_reactor<false> >::implementation_type&, boost::asio::mutable_buffers_1 const&, int, boost::system::error_code&) + 537
    2   SwitchBoardClient             0x000000011eba0d08 unsigned long boost::asio::stream_socket_service<boost::asio::ip::tcp>::receive<boost::asio::mutable_bu ffers_1>(boost::asio::detail::reactive_socket_service<boost::asio::ip::tcp, boost::asio::detail::kqueue_reactor<false> >::implementation_type&, boost::asio::mutable_buffers_1 const&, int, boost::system::error_code&) + 58
    3   SwitchBoardClient             0x000000011eba0d42 unsigned long boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> >::read_some<boost::asio::mutable_buffers_1>(boost::asio::mutable_buffers_1 const&, boost::system::error_code&) + 56
    4   SwitchBoardClient             0x000000011eba1dbb adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >::runOne(boost::shared_ptr<adobe::switchboard::Connection<boost::asio::basic_stream_sock et<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >&) + 185
    5   SwitchBoardClient             0x000000011eba2063 adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >::run() + 69
    6   SwitchBoardClient             0x000000011eb91cd5 boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >::operator()(adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio ::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >*) const + 97
    7   SwitchBoardClient             0x000000011eb91d19 void boost::_bi::list1<boost::_bi::value<adobe::switchboard::Connection<boost::asio::basic_str eam_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >*> >::operator()<boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >&, boost::_bi::list0&, int) + 65
    8   SwitchBoardClient             0x000000011eb91d56 boost::_bi::bind_t<void, boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >, boost::_bi::list1<boost::_bi::value<adobe::switchboard::Connection<boost::asio::basic_str eam_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >*> > >::operator()() + 54
    9   SwitchBoardClient             0x000000011eb91d74 boost::detail::thread_data<boost::_bi::bind_t<void, boost::_mfi::mf0<void, adobe::switchboard::Connection<boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > > >, boost::_bi::list1<boost::_bi::value<adobe::switchboard::Connection<boost::asio::basic_str eam_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> > >*> > > >::run() + 28
    10  SwitchBoardClient             0x000000011eb632be thread_proxy + 89
    11  libsystem_pthread.dylib       0x000000010aaa3268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x000000010aaa31e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x000000010aaa141d thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x000000010a98e136 __psynch_cvwait + 10
    1   MultiProcessor Support         0x00000001165ac113 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 139
    2   MultiProcessor Support         0x00000001165ac1d0 ThreadFunctor::operator()() + 92
    3   MultiProcessor Support         0x00000001165c8f70 thread_proxy + 160
    4   libsystem_pthread.dylib       0x000000010aaa3268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x000000010aaa31e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x000000010aaa141d thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x000000010a9894de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x000000010a98864f mach_msg + 55
    2   com.apple.CoreFoundation       0x0000000106e8fb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x0000000106e8effb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x0000000106e8e858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x0000000101fac33b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x000000010aaa3268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x000000010aaa31e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x000000010aaa141d thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x000000010a98e94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x000000010aaa140d start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x000000010a98e94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x000000010aaa140d start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x000000010a98e94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x000000010aaa140d start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x0000000123d20ff0  rcx: 0x0000000023d20000  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x0000000000000067  rbp: 0x00007fff5fbff880  rsp: 0x00007fff5fbff870
       r8: 0x0000000111d0da00   r9: 0x0000000000000600  r10: 0x0000000012e3bdbc  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x00000000000000ce  r14: 0x0000000000000067  r15: 0x0000608000018700
      rip: 0x000000010495a94d  rfl: 0x0000000000010202  cr2: 0x000000000000003c

  • Install Problem "Error: -48  The operation could not be completed... "

    I am unable to install the "Take Picture Action Installer" from http://automator.us/downloads.html#1026
    The error message is "Error: -48. The operation could not be completed because there is already an item with that name."
    However I created a test user on the system and was able to do the install there just fine. Anyone know how I could fix the problem?
    Thanks

    Hi Aaton
    I have not had a problem with that download (since your post)
    There is an Automator "Take Picture" action which is owned by the system (Macintosh HD/System/Library/Automator/) which appears under the Image Capture library
    The .zip file which you downloaded should go into Your user name/Library/Automator/ and is named "NYHTPROD-Take Picture.action" and appears under the Photo Booth library. It says that is the destination in the panel when you unzip the file
    Suggest you have a look around those libraries and check things are as they should be then try again
    chris

  • Can't find any discussions on this.  Suddenly cannot stream video in Safari or Chrome on my iPad 2.  The error is "The operation could not be completed."  Rebooted cable modem and router, no luck.  No problem with my PC.  Help!

    Suddenly I cannot stream video on my iPad 2.  I get the error, "The operation cannot be completed."  The browser (Safari or Chrome) continues to try to load the video with no result.  I have no problem streaming on my WIndows PC (laptop) using the same WiFi router (Netgear dual band) connected to my Comcast/Xfinity cable modem.  I have tried renewing my lease, clearing apps out of memory and rebootng the iPad, still no luck.  (How do you do a "hard reset", I forgot?)  Frustrating since I don't own a TV and am an Al Jazeera addict!  Help!

    Suddenly I cannot stream video on my iPad 2.  I get the error, "The operation cannot be completed."  The browser (Safari or Chrome) continues to try to load the video with no result.  I have no problem streaming on my WIndows PC (laptop) using the same WiFi router (Netgear dual band) connected to my Comcast/Xfinity cable modem.  I have tried renewing my lease, clearing apps out of memory and rebootng the iPad, still no luck.  (How do you do a "hard reset", I forgot?)  Frustrating since I don't own a TV and am an Al Jazeera addict!  Help!

  • OSStatus error - 12705 The operation could not be completed

    Since upgrading to the new macbook pro, my Quicktime is having all sorts of errors. The latest is The operation couldn’t be completed. (OSStatus error -12705.) when I try to share a file to Mobile Me.
    I used time machine to load everything on the new macbook from my previous macbook

    My problem was because I had moved my Movies folder from the system drive (which is an SSD) over to another drive with a larger capacity. I then created an Alias in my home folder.  Turns out this is what was causing the problem. I shoulda known. Some apps absolutely hate this. iMovie, being the dumbed down garbage that it is, simply MUST have it's library in a certain folder, apparently. Would be nice if we had a choice about it.
    I find Premiere Elements is actually the better (and friendlier) program. However in this case, I had to slum it with iMovie due to the Quicktime file I was working with.

  • Photoshop CC 2014 (same happens in illustrator). Filter gallery (not greyed out, file is regular 8bit rgb) will not work. Error message "the operation could not be completed". Tried throwing out preferences etc.

    Anyone know why this happened after last photoshop update?

    Type Terminal in Spotlight (The magnifying glass or to the right of your name on the Mac menu bar) and double click it to start it up.
    Copy and paste the command at the prompt ($) and it should look like this. Press Enter, type your password, then Enter again.
    What I'm think is that if the permissions of the App Support folder were altered, that might explain why things are refusing to work properly
    It's an idea, it won't hurt anything, and if we are lucky it will fix the problem.

  • The operation could not be completed - When attempting to print

    I have recently downloaded cutePDF writer in order to print my vbcode into pdfs because my instructor was complaining about how my code looked after copy and pasting it into a word document and then saving as a pdf. after attempting to print several times
    i attempted to print to a real printer and that wouldnt work either. i get an error message "The operation could not be completed" and nothing happens. Thanks in advance :).

    Hi AaronBootss,
    I am afraid that your issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    If you got this issue when you print a pdf document to a real printer, maybe you can contact someone who is familiar with your printer and print operation for help.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • "The operation could not be completed" when doing Save for web

    Hi
    I have just installed Photoshop CS5.1 on my new iMac with Mac OS 10.7 (Lion). Everytime I try to do a 'Save for web' I get this error message "The operation could not be completed". After that Photoshop also hangs. I've tried many solutions offered in forums and the like, but nothing helps. I am getting quite desperate...Anybody?

    I found out the following:
    When I write in Terminal:
    sudo chmod -R u+w ~/Library/Preferences
    sudo chmod -R u+rw ~/Library/Application\ Support
    The error message disappears, until I do a restart of the computer. Then the error is back.
    My suspiscion is that the error came up after moving files from my old computer to my new one.
    It happened even before I installed Lion...
    So now I'm thinking of doing a complete new install on Lion, not an upgrade and then install Photoshop again. But I am not really looking forward to this :-(

  • "The operation could not be completed" problem wit...

    I have just upgraded to 6.83 from 6.81 and every time when I use the phone manager the error message "The operation could not be completed" appear (although despite the messages, it works well). I try to search the problem in the faq as well as in the forum. There turn out to be a solution to use the cleaner program. However, the program will not work with 6.83 nor Vista. I try to reinstall the PC suite but it fails. Anyone has encountered the problem or is there any solution?

    13-Apr-200706:11 AM
    migget wrote:
    You can try to manually register file ole32.dll. In my computer, it seems to be in folder ..\system32 and ..\syswow64.
    I tried but the problem is still there.

  • Photoshop CS5 filter gallery 'the operation could not be completed'

    with photoshop cs5 i get for a specific regular user when selecting filter gallery the error message 'the operation could not be completed'. all other users on the same mac show no problems. ???

    Thanks for your answer, but none of the solutions worked. Still the same error message.
    Am 22.06.2010 um 17:04 schrieb Jeffrey Tranberry:
    You could try running the permissions utility on this page (solution 1) to see if Chris's guess is correct:
    http://kb2.adobe.com/cps/845/cpsid_84517.html
    You could also post/submit your crash report from running in 32bit with your email address. That may yield some additional clues.
    >

  • PS CS5 Save for Web and Devices reports "The operation could not be completed"  ?

    I teach in a lab of 27 computers, 110 students and part of the curriculum is teaching students to "Save for Web and Devices" this year for some strange reason none of my students can access "Save for Web and Devices"  they get the error message "The operation could not be completed-A write permissions error has occured."
    It has stumped our district top network support guru.
    We are running PS CS5 12.0.4
    He tried this posted fix but it did not work
    http://involution.com/2010/06/13/adobe-photoshop-cs5-write-perimissions-error-on-snow-leop ard/
    It worked once last Friday but today it failed, I'm getting very nervous about being able to prepare my students for the ACA exam without this function.
    In a discussion forum they suggested "zipping and deleting" the save for web preferences, I tried that.  Shut down Photoshop reopened it and that did not work.
    I am at a loss.  Seems like a bug.
    Any ideas.
    We are using iMacs running  Mac OS X  10.5.8

    The error message may not simply address the location to where the students will save a single file. The error likely applies to the temporary location where the various optimized versions might be automatically saved as you preview the image as JPG/PNG/GIF. I would wager that you would not see this error when you are logged into one of the students' computers as an admin.

  • Update problem" "The installer could not install some files in "/"."

    I've been trying install the 10.5.3 update, but keep getting this error message:
    "The installer could not install some files in "/". Contact the software manufacturer for assistance."
    I tried software update AND downloading the update for manual updating to no avail.
    Anyone know how to solve this?
    Thanks,
    Ron

    I have never heard of this problem, but try repairing permissions with Disk Utility.

Maybe you are looking for

  • Boot Camp not able to download Windows 7 Install Disk

    I am trying to install Windows 8 on my 2011 Mac Mini. I have a Windows 8 disk, 8GB bootable USB drive, and am trying to download from Boot Camp: 1) a Windows 7 install disk, 2) latest Windows support from Apple, all to install  3) the Windows 8 OS on

  • JavaMail - Send Attachements

    Can anyone please check the following code for me. I'm trying to send attachments but I did not get anything. The attachments I'm getting is from a jsp file by using <input type="file" name="photo1..3">. When I hit the submit button, it just show a b

  • Mix Cd Project

    I am completely new to audio development on the MAC. My employer has set me up Logic Pro and Final Cut Pro which includes Soundtrack. To accommodate myself with my new tools and environment I am doing a simple mixing project that will include taking

  • Restore failed -  iTunes: Restore error 40

    When I run the restore by iTunes of the iPhone 3G I get the following error (Error 40): I-tunes generates the following log: 2012-05-21 11:21:55.834 [6656:1038]: restore library built Feb  6 2012 at 17:46:17 2012-05-21 11:21:55.834 [6656:1038]: iTune

  • ALV problem.pls

    hi , 1.i have a toolbar in the alv output,,,but according to my client requirement ,i have to add 4 more standard functions to the toolbar...how can we achieve this? 2.I need to download the alv output in Excel format..there is a standard function in