Transaction aborts after installing ODAC 12c Release 3

I have .net code that used a transaction scope which works fine using ODAC 11g Release 4, but fails with "Unable to enlist in a distributed transaction" using ODAC 12c Release 1,2, or 3.  The transaction to a single database.  I am at a loss for what could be the issue.
This issue occurs on both Windows 7 and Windows Server 2008 R2.
I have reviewed the trace logs for both the Microsoft Distributed Transaction Server, and the Oracle Services for Microsoft Transactions Services.  The MSDTC trace logs indicate that the transaction abort was request was received from the calling application ("RECEIVED_ABORT_REQUEST_FROM_BEGINNER").  The ORAMTS trace logs indicate an OCI error and that there was an attempt to begin a distributed transaction with out logging on ("OCI_ERROR - 2048." ,  "ORA-02048: attempt to begin distributed transaction without logging on")
I can reproduce this error with a simple code example with just tried to insert records into a table.  If I change the data provider to "System.Data.OracleClient", or uninstall 12c and install 11g this code works fine.
DataSet1TableAdapters.DataTable1TableAdapter da = new DataSet1TableAdapters.DataTable1TableAdapter();
            using (TransactionScope scope = new TransactionScope())
                Transaction txn = Transaction.Current;
                try
                   da.Insert(0, "This ia a title");
                    scope.Complete();
                    lblmessage.Text = "Transaction Succeeded.";
                catch (Exception ex)
                    txn.Rollback();
                    lblmessage.Text = "Transaction Failed.";
Can anyone provide any ideas what is happening?  I really would like to use ODAC 12c.
Thanks.

Moving to the ODP.NET forum to get a wider audience.

Similar Messages

  • Oracle ODAC 12c Release 3 32-bit supports EF 6.x?

    Hello,
    I have Windows  8.1 64-bit with Visual Studio 2013.  I installed the latest Oracle ODAC 12c Release 3 32-bit which says it supports EF 6.  When add the ADO.NET Entity Framework to my project and choose my Oracle data connection, it doesn't allow me to select the Entity Framework 6.0 version.  It has Entity Framework 5.x selected and version 6.x is greyed out.  It says 'An Entity Framework database provider compatible with the latest version of the Entity Framework could not be found for your data connection'.  Why is that?
    Thanks

    How is your app.config? You need to have the Oracle.ManagedDataAccess.Client provider in your app.config:
      <configSections>
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        <section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
      </configSections>
    <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
        <providers>
          <provider invariantName="Oracle.ManagedDataAccess.Client"
              type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
      </entityFramework>
    I have experimented a bit more, and suggest the following:
    1) Remove any Oracle driver references for the various projects. Close Visual Studio.
    2) Uninstall ODP.Net.
    3) Reopen Visual Studio and install the latest version of Nuget package "Oracle Data Provider for .NET (ODP.NET) EntityFramework" (I have "6.121.1-beta (Prerelease)"), and include this package both for your data libraries and the application itself.
    This will make sure that the completed application will have all the necessary drivers, and ensures that all users will be able to compile and run the solution - all the references will point to the dll's included in the Nuget package.
    3) Edit: As the Nuget package I reference above is not authored by Oracle I'd recommend waiting for the correct official Nuget package - I solved it by adding references to Oracle.ManagedDataAccess.dll and Oracle.ManagedDataAccess.EntityFramework.dll located in the local Oracle Home, with "Copy Local" set to True, to ensure that they are distributed along with the package. I added the references after installing the newest version of the ODAC package.
    4) Close Visual Studio and install the latest (beta) version of ODP.Net - this will enable you to run the import wizard. (Currently12C R3 Beta 2 - get the 32 bit version: ODAC 12c Release 3 Beta Download).
    5) Reopen Visual Studio. Make sure that both the application and data library has the <entityFramework> above.
    In this way - any other computer can run and compile your project - they just need to get the Nuget package with the managed driver dll's. But - to run the wizard you need to have ODP.Net, it seems.

  • Re: Oracle ODAC 12c Release 3 32-bit supports EF 6.x?

    I am also facing same problem with latest ODP.NET. Our existing application with 11G and EF 4.3 DB first worked very well. We need to migrate our application from 11G to 12C. But its showstopper for us to proceed. Please help us.
    My environment details
    Latest Oracle ODAC 12c Release 3 - 32-bit released on 24-Dec-2014
    Visual Studio 2013 Update 3 - 32 Bit on Windows 8.1 64 bit OS
    Entity Framework 6.1.31219.0 (EntityFramework.6.1.2)
    I have tried with .Net framework 4.5, 4.5.1 and 4.5.2.
    The latest EntityFramework.dll (6.1.31219.0) added to project reference, EF 6.x option alone comes also getting greyed out.
    If I remove EntityFramework.dll from project reference, getting only option to use EF 5.0
    Tried various config file changes, different versions of EF (6+), also tried reverting to ODAC 12c Release 3 Beta. I could not make it working 12c ODP.Net with EF 6+ DB first.
    Please suggest us the ideal environment for 12c ODP.Net with EF 6+ DB first.
    Thanks

    Have you set the entityFramework correctly in the local app.config/web.config? You need to set it both in any libraries using the code and in the deployed application.
    And - how is the system.data/DbProviderFactories in the correct machine.config? You either have to have it set in the correct machine.config or the local app.config/web.config files.
    Here's my working local config file, using the 12c R3 release version dll's and the managed drivers:
      <configSections>
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        <section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
      </configSections>
      <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
        <providers>
          <provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
      </entityFramework>
      <system.data>
        <DbProviderFactories>
          <!-- Remove in case this is already defined in machine.config -->
          <remove invariant="Oracle.ManagedDataAccess.Client" />
          <add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
        </DbProviderFactories>
      </system.data>
      <connectionStrings>
        <add name="MyOracleModel" connectionString="DATA SOURCE=MySource;PASSWORD=MyPassword;PERSIST SECURITY INFO=True;USER ID=MyUserName" providerName="Oracle.ManagedDataAccess.Client" />
      </connectionStrings>
    And for example
      <oracle.manageddataaccess.client>
        <version number="4.121.2.0">
          <dataSources>
            <dataSource alias="MySource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=MyService)))" />
          </dataSources>
        </version>
      </oracle.manageddataaccess.client>
    for explicit server settings or
      <oracle.manageddataaccess.client>
        <version number="4.121.2.0">
          <settings>
            <setting name="TNS_ADMIN" value="C:\app\path\to\tnsnamesdotora\here\network\ADMIN" />
          </settings>
        </version>
      </oracle.manageddataaccess.client>
    ..to point to a tnsnames.ora file.

  • ODAC 12c release 1 compatibility

    I am starting a Project which will use Oracle 10g release 2 as database and Visual Studio 2012 for development. I would like to ask if the ODAC 12c release 1 would work in that scenario. For the development environment I will be using an Oracle 11g XE but the final product will connect to an Oracle 10g release 2 database.
    Is it possible to use the ODAC 12c for both scenarios?
    Thanks!

    From Oracle's website:
    32-bit ODAC 12c supports connectivity to Oracle Database versions 10.2 and higher.
    So I would assume it would work fine.
    Your test environment is going to be Oracle 10g2, right?

  • ODAC 12c Release 3

    Any news on the release date of the ODAC 12c Release 3, we really need xmltype?
    Rick

    This is a partial list of the planned features:
    Entity Framework Code First and Code First Migrations (requires EF 6)
    native Entity Framework 6 certification
    NuGet support
    .NET Framework 4.5.2 certification
    The beta will be coming before the end of summer.

  • VS 2012 does not finish starting after installing ODAC 11.2 Release 5

    I installed the ODAC 11.2 Release 5 (11.2.0.3.20) with Oracle Developer Tools for Visual Studio. When VS 2012 restarts the splash page comes up with a message to wait while an operation completes but it never does. Does anyone have an idea as to what the problem may be?
    Running Win 7 Pro with VS 2012 Ultimate.
    Paul

    I would like to add some additional information to the above post. I am receiving the same error using the new release. The beta release worked fine. I completely uninstalled the beta and then installed the new release. Once installed, VS2012 stopped working. The splash screen comes up and then the little box stating that it is waiting for a background process to complete is displayed. That is it. From what I can tell, it is in a userwait state.
    Unfortunately, when I uninstalled the component, it left some artifacts behind. When I now start VS2012, I get errors stating that Oracle ODT did not load correctly and then VS2012 stops working and exits. I am running VS2012 as administrator.
    This behavior is exhibited on both Windows 8 and Windows7 Home Ultimate (both 64bit) and VS2012 ultimate.
    The activity log shows what is giving the error, shows the following:
    <entry>
    <record>270</record>
    <time>2012/09/17 11:57:57.734</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Oracle Developer Tools for Visual Studio]</description>
    <guid>{D601BB95-E404-4A8E-9F24-5C1A462426CE}</guid>
    </entry>
    <entry>
    <record>271</record>
    <time>2012/09/17 11:57:57.738</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>CreateInstance failed for package [Oracle Developer Tools for Visual Studio]</description>
    <guid>{D601BB95-E404-4A8E-9F24-5C1A462426CE}</guid>
    <hr>80070002</hr>
    <errorinfo>Could not load file or assembly 'Oracle.VsDevTools.11.0, Version=4.112.3.20, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. The system cannot find the file specified.</errorinfo>
    </entry>
    <entry>
    <record>272</record>
    <time>2012/09/17 11:57:57.738</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>End package load [Oracle Developer Tools for Visual Studio]</description>
    <guid>{D601BB95-E404-4A8E-9F24-5C1A462426CE}</guid>
    <hr>80004005 - E_FAIL</hr>
    <errorinfo>Could not load file or assembly 'Oracle.VsDevTools.11.0, Version=4.112.3.20, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. The system cannot find the file specified.</errorinfo>
    </entry>
    The above entry was thrown when VSDevTools had been removed from the system.
    Unfortunately, I did not get any information about what exactly was causing the wait state when the Dev Tools for VS was installed. From Process Explorer, I could see that msenv.dll was chewing through cycles, waiting for multiple objects. I have stack prints for devenv.exe and msenv.exe as well as a thread screenshot if anyone is interested in seeing them.
    Hopefully this will shed some light on what needs to be fixed.
    Thanks,
    Craig D.

  • Unable to login as sysdba after installing ODAC and Oracle developer tools

    Hi..I was able to login with
    sqlplus / as sysdba and unlock scott account.
    I then installed ODAC and now when i try to login as sysdba i get Insufficient privileges error.
    also tried sys/password , sys/change_on_install, system/manager but no luck.
    Please help.I am using a desktop and logged in as an administrator.

    989994 wrote:
    Hi..I was able to login with
    sqlplus / as sysdba and unlock scott account.
    I then installed ODAC and now when i try to login as sysdba i get Insufficient privileges error.
    also tried sys/password , sys/change_on_install, system/manager but no luck.
    Please help.I am using a desktop and logged in as an administrator.I think we are missing some information here. Are you trying to connect via Server Explorer?
    If so, you need to choose the drop down box and set it to "SYSDBA".

  • ODAC 12c Release 3 configuration error

    Hi, i am getting the following error:
    Log file:
    INFO: Command C:\WINDOWS\system32\cmd /c call C:\OracleClient\product\12.1.0\client_1\bin\oramtsctl.exe -new    -internal
    INFO: ... GenericInternalPlugIn.handleProcess() entered.
    INFO: ... GenericInternalPlugIn: getting configAssistantParmas.
    INFO: ... GenericInternalPlugIn: checking secretArguments.
    INFO: No arguments to pass to stdin
    INFO: ... GenericInternalPlugIn: starting read loop.
    INFO: Read: Service is being created.
    ATTENTION: Skipping line: Service is being created.
    INFO: End of argument passing to stdin
    INFO: Read: Error: hostname EMGSCMP033.emgs.emergensyscorporation.com is too long.
    ATTENTION: Skipping line: Error: hostname XXXXXXX is too long.
    INFO: Exceeded the number of arguments passed to stdin. CurrentCount:1 Total args:0
    INFO: Read: Action: specify one IP address of the host when creating the service.
    ATTENTION: Skipping line: Action: specify one IP address of the host when creating the service.
    INFO: Exceeded the number of arguments passed to stdin. CurrentCount:1 Total args:0
    INFO: Read: OUI internal: error occurred on localhost
    ATTENTION: Skipping line: OUI internal: error occurred on localhost
    INFO: Exceeded the number of arguments passed to stdin. CurrentCount:1 Total args:0
    INFO: Completed Plugin named: Oracle Services For Microsoft Transaction Server
    If i try to run oramtsctl.exe specifying my IP, i get the following error:
    What can i do?
    Thank you.

    Can you run oramtsctl.exe locally on the machine? Trying to figure out if this is a networking access/permissions problem or an install issue.
    Did this problem occur with previous ODAC releases on the same machines?

  • Adobe Reader 11 aborts after install

    I installed Adobe Reader 11 and it abourt wiht no response when I click on anything. I am reunning windows 8

    Some things to try...
    Using Windows Explorer navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement
    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].
    If you cannot open Reader by itself, try to disable Protected Mode in the registry; download, unzip, then run the attached registry script
    It could even be a malware issue; see http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html
    Hopefully all these problems will be fixed in the next Reader version (most likely later today).

  • Has anyone else experienced WiFi issues after installing Mavericks?

    I recently installed Mavericks on my 2009 iMac. After the initial install, everything worked beautifully. After my first reboot, however, the network is having trouble staying connected to the wireless network. I verified the modem/roouter were working by testing on my other wifi enable devices (iPhone, iPad, Apple TV, etc).
    My question really, if whether or not anyone else has experienced this after installing Mavericks official release and is this a known issue that I cannot seem to locate information on.
    It should be noted that I often use a VPN service called Private Internet Access. And thought I havent had issues with this before any reboot, I thought it would be worth mentioning.
    Thank to anyone's help in advance.

    I've also been having a lot of issues with my wireless after I updated to Mavericks.  For me, the problem is manifest whenever I'm using my system in a conference room with a lot of other folks who are also using wireless.  The connection is up and down constantly, to the point where it's really not usable.  Other folks in the room (who are using Windows systems) don't have the same issues.  It's gotten to the point where _they_ are making fun of my me and my Mac (the tables have turned!).
    I never had these issues when I was using Mountain Lion.  Since it's the same environment and the same hardware (MacBook Pro, 15", Retina), I've started to suspect that Mavericks is the culprit.

  • LMS 4.0 - Install on Solaris 10 aborts after DHCP-check

    Hi all,
    on solaris 10 (HW T5140) I tried to install from orignal DVD, suddenly after
    answering the licensing questions with [y] setup.sh aborts with no error-message
    directly after checking DHCP.
    INFO: Checking DHCP..
    INFO: DHCP not enabled in this machine.
    INFO: BUILD_ID is SOL_LMS4_0_20100906_0753
    INFO: ITOOLS_BUILD_ID is SOL_ITOOLS4_0_MAIN_20100905_1742
    <abort>
    Are there any known issues with install on solaris?
    Thanks a lot
    Lothar
    This is output of install-log
    ======================================================================
    Started :  Tue Jul 5 07:41:20 CEST 2011 ======================================================================
    ================- Software Installation Tool Started -================
    Welcome to CiscoWorks LAN Management Solution 4.0 Applications   setup program.
    ======================================================================
    INFO: Executing /cdrom/lms4_0_sol/install/correctnmsver.sh
    Press ENTER to read/browse the following License Agreement:
    INFO: You must accept this License Agreement to proceed with the installation.
    INFO: If you enter N/n, the installation will exit.
    Do you accept all the terms of the License Agreement? (y/n) [n]:
    INFO: Environment variables in this machine
    AIX_MIN_RAM=131072
    AIX_MIN_SWAP=262144
    AIX_OS_VERSION=5.5
    ANILOG=/var/adm/CSCOpx/log/ani.log
    CSCO_ADM_FILE=/tmp/cscotmp/CSCO.admin
    CWLOG=/var/adm/CSCOpx/log/dmgtd.log
    DEBUG=0
    DEF_IU_ROOT=/opt/CSCOpx
    DISKSPACE=0
    DO_UPGRADE_FILE=/var/tmp/csco_do_upgrade
    EDITOR=vi HISTLOGFILE=/var/tmp/Ciscoworks_install_20110705_074119.log
    HOME=/
    HPX_OS_VERSION=5.5
    HP_MIN_RAM=262144
    HP_MIN_SWAP=1048576
    HZ=100
    INSTALL_MODE=NEW
    IU_DBDIR=/db/data
    IU_NAME=CSCOpx
    IU_ROOT=/opt/CSCOpx
    LC_ALL=C
    LC_OS=sol
    LD_LIBRARY_PATH= LOGFILE=/var/tmp/Ciscoworks_install_20110705_074119.log.new
    LOGNAME=root
    LOG_NAME=Ciscoworks_install_20110705_074119.log
    MAIL=/var/mail/root
    MESSAGES=/var/adm/messages
    OS=SOL
    PATH=/usr/sbin:/usr/bin:/usr/ucb:/usr/sbin:/usr/bin:/usr/etc:/usr/ucb:/usr/sbin:
    /usr/bin:/usr/etc:/usr/ucb
    PRODUCT=CSCO NM
    PROFILE=0
    PWD=/cdrom/cdrom0
    REQ_OS=SunOS
    SERVER_EXP=[C]SCOpx
    SETUPDIR=/cdrom/lms4_0_sol/install
    SHELL=/bin/bash
    SHLVL=2
    SINGLEINSTALLER=TRUE
    SOL_MIN_RAM=131072
    SOL_MIN_SWAP=131072
    SOL_OS_VERSION=5.10
    SWMODOPTS=-xloglevel=0
    SWOPTIONS=-x reinstall=true -x reinstall_files=true -x allow_multiple_versions=t rue -x write_remote_files=true -x autoselect_dependencies=false -x match_target= false TERM=vt100 THREADS_FLAG=native TOC=disk.toc TZ=Europe/Berlin
    UPGRADE_VERSIONS=2.* 3.0 YES_PUMP=/cdrom/lms4_0_sol/install/install/yes.sol
    _=/sbin/sh
    INFO: Checking DHCP..
    INFO: DHCP not enabled in this machine.
    INFO: BUILD_ID is SOL_LMS4_0_20100906_0753
    INFO: ITOOLS_BUILD_ID is SOL_ITOOLS4_0_MAIN_20100905_1742

    Hi Joe,
    thanks a lot for your hint, the problem is solved with editing /etc/release.
    There should be a user-information pointing to the source of the problem, just aborting
    the install-script is not very nice.
    Do you know whether this "/etc/release-abort" is present with update to LMS 4.01 install-script
    and other patches?
    I like this forum
    Lothar

  • Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110

    eth0      Link encap:Ethernet  HWaddr 00:15:17:F7:81:53 
              inet addr:192.1.1.11  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::215:17ff:fef7:8153/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:220 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:100
              RX bytes:0 (0.0 b)  TX bytes:15868 (15.4 KiB)
              Memory:dfcc0000-dfce0000
    eth1      Link encap:Ethernet  HWaddr B8:AC:6F:92:C2:0C 
              inet addr:192.1.1.9  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::baac:6fff:fe92:c20c/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:263812 errors:0 dropped:0 overruns:0 frame:0
              TX packets:58 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:18959341 (18.0 MiB)  TX bytes:9476 (9.2 KiB)
              Interrupt:169 Memory:dfbf0000-dfc00000
    lo        Link encap:Local Loopback 
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:1393 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1393 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:4035655 (3.8 MiB)  TX bytes:4035655 (3.8 MiB)Any help please. I am a first time Linux user.
    Thanks
    A/A

    This looks like a follow up of Re: Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110
    Can you give more details what you are trying to do or trying to accomplish. Where are you trying to ping to?
    It could be that you have not defined your gateway or DNS server for name to IP mapping. What is the output of
    # netstat -rn
    # cat /etc/resolv.conf

  • Java 2 SE 5.0 Release 3 - bug after installing

    After installing Java 2 SE 5.0 Release 3 with usual the periodic software update facility, I get capital and boxed "A"s everywhere in my desktop and file names and menus.....panic !!!

    please don't follow that advice. Apple has carefully arranged all the java, javac, jar etc. commands to follow a series of symbolic links to the correct version. All you have to do (and it's nicely reversible) is to follow the advice in this thread http://discussions.apple.com/message.jspa?messageID=1183952#1183952 by datenimperator and all will work. If you don't like it, reverse the process.

  • After installing Mav, my core apps won't launch ( app store, message, FaceTime) help! Im worried even if fix is released i can't access app store to upgrade/install

    After installing Mav, my core apps won't launch ( app store, message, FaceTime) help! Im worried even if fix is released i can't access app store to upgrade/install?? Any one experiencing same problems

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

  • After installing Firefox 4.0, I cannot download bank transactions into Quicken 2009.

    After installing Firefox 4.0, when I download bank transactions into Quicken 2009, it tries to open a new file rather than go into the file that is already open and from which it accessed Firefox in the first place.

    Such files that are passed to external programs are usually downloaded to the system temp folder (%TEMP% or %TMP%).
    You may need to check your Anti-virus software if this isn't working properly.
    *http://kb.mozillazine.org/Unable_to_save_or_download_files
    *https://support.mozilla.org/kb/Unable+to+download+or+save+files

Maybe you are looking for

  • A script in this mouvie is causing Adobe Flash Player 10 to run slowy

    Hello, my english is horrible, but i will try to explain. On my laptop when i try to open certain sites  i see this error message : A script in this mouvie is causing Adobe Flash Player 10 to run slowy. If it continue to run your computer may become

  • Exchange 2013 - 2007 coexistence - activesync 2007 does not work correctly

    Exchange 2013 SP1.  On going Saga-  Last night we cut over to full co-existence with DNS changes for use of legacy namespace and had to roll back again. We had only two issues but one was considered a show stopper. The main issue was that Active Sync

  • Trying to change broadband package

    I've been trying to change my broadband package for over a month now.  I'm still on the old Option 3 unlimited broadband, I want to be on the current Unlimited broadband package which is half the price for the same service (£16 versus £30.50).  I sen

  • Downloadable VGA Bios?

    I cannot use LiveUpdate to update the bios of my graphics card as I don't have internet access at my home. Is there any downloadable version of VGA Bios for MSI graphics card? I'm using Geforce4 MX440 SE ( MS-8878 ) TQ!

  • Photoshop problem isolated to user account.

    I am unable to open Adobe Photoshop CS2. An error displays, unrecoverable problem has occurred because something prevented the text engine from being initialized. Support helped me to isolate this problem to my user account. Now I would like to fix t