After Restoring/Backup of File System XI Java Instances are not up!

Hello all,
We are facing problem in restoring the SAP XI System, after taking backup of the system the <b>java instances</b> in SAP XI System are not starting again. ABAP connections are fine.
Can anyone provide suggestions/solutions in order to restore the XI System back.
The system information is as follows.
System Component:     SAP NetWeaver 2004s, <b>PI 7.0</b>
Operating System:     SunOS 5.9, SunOS 5.10
Database:          ORACLE 9.2.0.
Regards,
Ketan Patel

If it´s REALLY a PI 7.0 (SAP_BASIS 700 and WebAS Java 7.00) then it´s not compatible. WebAS 7.00 needs Oracle 10g (http://service.sap.com/pam)
Also see
http://service.sap.com/nw2004s
--> Availibility
--> SAP NetWeaver 7.0 (2004s) PAM
If you open the Powerpoint, you will see that Oracle 9 is not listed. I wonder, how you got that installed.
Neverless, if you recover a Java instance, both filesystem and database content (of the Java schema) must be in sync, means, you need to restore both, database (schema) and filesystem, that have been backed up at the same time.
Check Java Backup and Restore :
Restoring the System
       1.      Shut down the system.
       2.      Install a new AS Java system using SAPInst, or restore the file system from the offline backups that you created.
       3.      Import the database backup using the relevant tools provided by the database vendor.
       4.      Overwrite the SAP system directory /usr/sap/.
       5.      Start the system (see Starting and Stopping SAP NetWeaver ABAP and Java.)
The J2EE Engine is restored with the last backup.
Markus

Similar Messages

  • After Restoring/Backup File System XI Java Instances are not up!

    Hello all,
    We are facing problem in restoring the SAP XI System, after taking backup of the system the java instances in SAP XI System are not starting again. ABAP connections are fine.
    Can anyone provide suggestions/solutions in order to restore the XI System back.
    The system information is as follows.
    System Component: SAP NetWeaver 2004s, PI 7.0
    Operating System: SunOS 5.9, SunOS 5.10
    Database: ORACLE 9.2.0.
    Regards,
    Ketan Patel

    I would correct Oracle version is 10.2.0
    I would also like to reframe my problem.
    XI server(both abap and Web) was working fine. Every weekend we take full backup(file system+DB)(UFS) of server. After taking backup server got up and we were able to login through abap but java web page was not openning. We did some troubleshooting it didn't work and finaly we restored the backup and somehow it worked. Next week after backup again same problem arose. We again restored latest backup but this time problem still exists.
    Regards,
    Ketan

  • After restoring backup new macbook with time machine Firefox will not start. says missing profile

    after restoring backup on new macbook with time machine Firefox will n to start. It says it is missing profile although profile exists and profile manager will not start. Also reinstalling does not help. Direct after starting Firefox it says profile is missing and then quits Firefox. Please help edit

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    * https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • ASM RMAN backup to File System

    Hi all,
    I have a rman backup (datafile and controlfile) which was took in an ASM instance (not a RAC) ORACLE 11.2.0.2 in a Linux server, now I want restore the backup in a new database in windows/Linux OS using general File System storage (single instance rdbms) instead of ASM.
    Is this possible?
    Can I restrore an ASM rman backup in a file system storage mechanisim in a new server?
    Kindly clarify my question.
    Thanks in Advance..
    Nonuday

    Nonuday wrote:
    Hi Levi,
    Thanks for your invaluable script and blog.
    can you clarify me on this query:
    I have a RMAN backup taken from ASM and the backup is database and controlf file backup which contains datafiles and controlfiles.
    Now I need to restore this on my system and here I dont use ASM or archive log, I use single instance in no archive log mode database.
    I have restored the control file from the RMAN controfile backup.
    Before restoring the control file I have checked the orginal pfile of the backup database which had parameters like
    'db_create_file_dest',
    'db_create_online_log_dest',
    'db_recovery_file_dest_size',
    'db_recovery_dest',
    'log_archive_dest'.
    Since I am not gng to create a DB in no archive log mode, I didnt use any of the above parameters and created a database.
    Now my question is:
    If i restore the database and the datafile will get restored and after renaming all the logfiles, database will be opened.
    I want to know whether this method is correct or wrong and will the database work as it was working previously. Or do i need create the db_file_recovery and other parameters also for this database.About Parameter:
    All these parameters should reflect your current environment any reference to the old environment must be modified.
    About Filesystem used:
    Does not matter what Filesystem you are using the File (datafile/redolog/controlfile/archivelog/backuppiece) are created on Binary Format which depend on Platform only. So, The same binary file ( e.g datafile) have same format and content on raw device, ASM, ext3, ext2, and so on. So, to database it's only a location where file are stored, but the file are the same. ASM has a different architecture from Regular Filesystem and need be managed in a different manner (i.e using RMAN).
    About Database:
    Since your database files are the same even using different filesystem what you need is rename your datafiles/redofiles on controlfile during restore, the redo files will be recreated.
    So, does not matter if you database are noarchivelog or archivelog, the same way which you will do a restore on ASM is the same way to restore on Regular Filesystem. (it's only about renaming database file on controlfile during restore)
    On blog the post "How Migrate All Files on ASM to Non-ASM (Unix/Linux)" is about move the file from filesystem to another. But you can modify the script used to restore purposes;
    ## set newname tell to RMAN where file will be restored and keep this files location on memory buffer
    RMAN> set newname for datafile 1 to <location>;
    ### swich get list of files from memory buffer (rman) and rename on controlfile the files already restored.
    RMAN>switch datafile/tempfile all ;With database mounted use this script below:
    I just commented three lines that are unnecessary in your case.
    SET serveroutput ON;
    DECLARE
      vcount  NUMBER:=0;
      vfname VARCHAR2(1024);
      CURSOR df
      IS
        SELECT file#,
          rtrim(REPLACE(name,'+DG_DATA/drop/datafile/','/u01/app/oracle/oradata/drop/'),'.0123456789') AS name
        FROM v$datafile;
      CURSOR tp
      IS
        SELECT file#,
          rtrim(REPLACE(name,'+DG_DATA/drop/tempfile/','/u01/app/oracle/oradata/drop/'),'.0123456789') AS name
        FROM v$tempfile;
    BEGIN
    --  dbms_output.put_line('CONFIGURE CONTROLFILE AUTOBACKUP ON;'); ### commented
      FOR dfrec IN df
      LOOP
        IF dfrec.name  != vfname THEN
          vcount      :=1;
          vfname     := dfrec.name;
        ELSE
          vcount := vcount+1;
          vfname:= dfrec.name;
        END IF;
      --  dbms_output.put_line('backup as copy datafile ' || dfrec.file# ||' format  "'||dfrec.name ||vcount||'.dbf";');  ### commented
      END LOOP;
      dbms_output.put_line('run');
      dbms_output.put_line('{');
      FOR dfrec IN df
      LOOP
        IF dfrec.name  != vfname THEN
          vcount      :=1;
          vfname     := dfrec.name;
        ELSE
          vcount := vcount+1;
          vfname:= dfrec.name;
        END IF;
        dbms_output.put_line('set newname for datafile ' || dfrec.file# ||'  to  '''||dfrec.name ||vcount||'.dbf'' ;');
      END LOOP;
      FOR tprec IN tp
      LOOP
        IF tprec.name  !=  vfname THEN
          vcount      :=1;
          vfname     := tprec.name;
        ELSE
          vcount := vcount+1;
          vfname:= tprec.name;
        END IF;
        dbms_output.put_line('set newname for tempfile ' || tprec.file# ||'  to  '''||tprec.name ||vcount||'.dbf'' ;');
        END LOOP;
          dbms_output.put_line('restore database;');
        dbms_output.put_line('switch tempfile all;');
        dbms_output.put_line('switch datafile all;');
        dbms_output.put_line('recover database;');
        dbms_output.put_line('}');
    ---   dbms_output.put_line('alter database open;');  ### comented because you need rename your redologs on controlfile before open database
        dbms_output.put_line('exit');
    END;
    /After restore you must rename your redologs on controlfile from old location to new location:
    e.g
    ##  use this query to get current location of redolog
    SQL>  select group#,member from v$logfile order by 1;
    ## and change from <old_location> to <new_location>
    SQL > ALTER DATABASE
      RENAME FILE '+DG_TSM_DATA/tsm/onlinelog/group_3.263.720532229' 
               TO  '/u01/app/oracle/oradata/logs/log3a.rdo'  When you change all redolog on controlfile issue command below:
    SQL> alter database open resetlogs;PS: Always track database in real time using alert log file of database.
    HTH,
    Levi Pereira

  • After restore backup from time machine, all thumbnails in photos are blank. How to fix ?

    After restore backup from time machine, all thumbnails in photos are blank. How to fix ?
    I'm using Yosemite 10.10.3 and Photos. i have tried repair database, but no success .

    Try these for the first attempt:
    First be sure to have a backup copy of the library if you already don't have one.
    OT

  • Restore Backup control file doubt ?

    when restoring backup control file why we need to set the DBID first?
    Thankx..

    When using a recovery catalog and attempting to restore a lost control file, you encounter an error if there are other databases are registered in the recovery catalog with the same name as your target database. To resolve this error, you must uniquely identify the database by DBID for the restore operation. This requires determining the correct DBID for your database, and then using the SET DBID command to identify the target database before the RESTORE CONTROLFILE.

  • Help! After restoring my computer from Carbonite, My e-mails are corrupted. Each one multicorruptedplies a bajillion times! I erase them from the folder, erase them, then they come back. I have three mailbox accounts,each one does the same.

    eHelp! After restoring my computer from Carbonite, My e-mails are corrupted. Each one multiplies a bajillion times! I delete them from the folder, empty trash, them, then they come back. I have three mailbox accounts,each one does the same.

    This is the Mac App Store forum.
    For your specific issue, you'll get more feedback in the Snow Leopard forum.
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard

  • HT201263 please HELP!! after restore found this error,, We're sorry, we are unable to continue with your activation at this time. Please try again later, or contact customer care??? :(

    please HELP!! after restore found this error,, We're sorry, we are unable to continue with your activation at this time. Please try again later, or contact customer care???

    "We're Sorry, Activation Server Temporarily Unavailable, contact Customer Care...Could Not Be Completed?"
    99.9% of the time, the cause of this issue is the fact the phone was jailbroken/hacked to unlock it for use on networks other than the network the phone was originally locked to. Apple maintains a database of officially unlocked iPhones, and when Apple's servers detect phones such as yours, activation stops & you get the message you got.
    So, you need to get a sim card from the carrier the phone was originally locked to, or get it officially unlocked, if you want to activate it. Because it appears that it was not officially unlocked.

  • Can Windows Server Backup spread a single backup job across multiple disks if they are not set up as a virtual disk?

    This may be a dumb question, but I can't seem to find any definitive information after having done many, many searches.  Short question is - can Windows Server Backup spread a single backup job across multiple disks if they are not in a storage
    pool or some other RAID/JBOD structure?
    Background:
    I'm running Server 2012 Essentials with all Windows Updates installed.  I have been backing up approx 2.8TB of data (Bare Metal Recovery, C:, S: (shared folders), and system reserved) for the past year+ onto a storage pool made up of two-2TB external
    USB drives.  Backup is slow (takes approx 1.5 days to complete), but generally works.  Not surprisingly I was constantly getting capacity low messages so I decided to increase my backup storage pool by adding a 3TB drive and another spare 750GB drive
    for a total of 7.75TB.  Instead of having four separate external USB enclosures, I bot a 4-bay enclosure - Startech.com model #S3540BU33E to simplify this (or so I thought!).
    The first problem I had was adding the two new drives to the existing storage pool. I think that is because the Startech uses a JMicron USB controller that reports identical uniqueid's for all drives so only one shows up in the GUI interface for creating storage
    pools. After doing research on this, I set up a new storage pool and virtual disk using all four drives via Powershell and thought I was good. However, when the backup ran, it failed after filling the first drive, saying there was no remaining capacity. In
    reality there were three remaining empty drives and there storage pool reported almost 5TB of avail capacity. I assumed this was due to the identical uniqueid issue so I decided to try a different tactic.
    Instead of using a storage pool that combines all four disks into one virtual disk, I just added each of them to Windows Server Backup as individual drives thinking it would manage them collectively. I.e., when a drive filled up during a particular backup,
    it would just start using the next drive and so on. Apparently this was a foolish assumption because the backup failed again as soon as the first disk filled up.
    So now I don't know if this is still an issue with the identical uniqueid's or if Server Backup actually can't spread a single backup across multiple individual drives that aren't in a pool or other virtual disk implementation. Hence, my original question.
    My guess is that it does *not* spread them across individual disks, but I just wanted to get confirmation.
    Thanks

    Mandy,
    Thank you for following up on my question.
    Unfortunately the article you referenced doesn't address what I am trying to accomplish.
    The article focuses on saving the same backup job to multiple disks and rotating the disks between on and offsite for enhanced protection.  However, it still requires that an individual backup job fits on a single disk.
    What I am trying to determine is if a single backup job can span across more than one physical disk (during the backup process) without those physical disks being in some type of virtual disk implementation (e.g., storage pool, RAID, etc.).
    Thanks,
    Gerry

  • JAVA servers are not starting

    Hi SAP Gurus,
    some days back i did system refresh from prod. now ABAP is running but only java servers are not starting. other nodes dispatcher & SDM running. please suggest.
    here is dev_server1 file
    =============================================
    -> arg[ 36]: -Djstartup.whoami=server
    -> arg[ 37]: -Djstartup.debuggable=no
    -> arg[ 38]: -DSAPINFO=BQN_51_server
    -> arg[ 39]: -DSAPSTART=1
    -> arg[ 40]: -DCONNECT_PORT=64990
    -> arg[ 41]: -DSAPSYSTEM=51
    -> arg[ 42]: -DSAPSYSTEMNAME=BQN
    -> arg[ 43]: -DSAPMYNAME=cpcsapv1_BQN_51
    -> arg[ 44]: -DSAPPROFILE=/usr/sap/BQN/SYS/profile/BQN_DVEBMGS51_cpcsapv1
    -> arg[ 45]: -DFRFC_FALLBACK=ON
    -> arg[ 46]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 47]: -DSAPSTARTUP=1
    -> arg[ 48]: -DSAPSYSTEM=51
    -> arg[ 49]: -DSAPSYSTEMNAME=BQN
    -> arg[ 50]: -DSAPMYNAME=cpcsapv1_BQN_51
    -> arg[ 51]: -DSAPDBHOST=cpcsapv1
    -> arg[ 52]: -Dj2ee.dbhost=cpcsapv1
    [Thr  4] Fri Feb  3 14:28:34 2012
    [Thr  4] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server1]
    [Thr 27] Fri Feb  3 14:28:36 2012
    [Thr 27] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 27] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 27] JLaunchISetClusterId: set cluster id 515639851
    [Thr 27] Fri Feb  3 14:28:44 2012
    [Thr 27] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 27] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Fri Feb  3 14:29:13 2012
    40.606: [GC 40.606: [ParNew: 87040K->5145K(130560K), 0.0272228 secs] 87040K->5145K(1005056K), 0.0273939 secs]
    Fri Feb  3 14:30:59 2012
    147.504: [GC 147.505: [ParNew: 92185K->4232K(130560K), 0.0099921 secs] 92185K->4232K(1005056K), 0.0101364 secs]
    Fri Feb  3 14:31:32 2012
    180.020: [GC 180.020: [ParNew: 91272K->11482K(130560K), 0.0398227 secs] 91272K->11482K(1005056K), 0.0400287 secs]
    Fri Feb  3 14:31:35 2012
    182.991: [GC 182.992: [ParNew: 98522K->16449K(130560K), 0.0520708 secs] 98522K->16449K(1005056K), 0.0522291 secs]
    Fri Feb  3 14:31:37 2012
    184.671: [GC 184.671: [ParNew: 103489K->16840K(130560K), 0.0362919 secs] 103489K->16840K(1005056K), 0.0364886 secs]
    Fri Feb  3 14:31:38 2012
    185.955: [GC 185.955: [ParNew: 103880K->17465K(130560K), 0.1179448 secs] 103880K->17465K(1005056K), 0.1181308 secs]
    Fri Feb  3 14:31:39 2012
    187.030: [GC 187.030: [ParNew: 104505K->19470K(130560K), 0.0490249 secs] 104505K->19470K(1005056K), 0.0492104 secs]
    Fri Feb  3 14:31:40 2012
    187.892: [GC 187.892: [ParNew: 106510K->20973K(130560K), 0.0462993 secs] 106510K->20973K(1005056K), 0.0464782 secs]
    Fri Feb  3 14:31:41 2012
    188.624: [GC 188.625: [ParNew: 108013K->22480K(130560K), 0.0549972 secs] 108013K->22480K(1005056K), 0.0551496 secs]
    Fri Feb  3 14:31:42 2012
    189.855: [GC 189.856: [ParNew: 109520K->26140K(130560K), 0.0483116 secs] 109520K->26140K(1005056K), 0.0485971 secs]
    [Thr 139] Fri Feb  3 14:31:47 2012
    [Thr 139] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 139] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 139] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.engine.Compress
    Fri Feb  3 14:31:48 2012
    196.478: [GC 196.479: [ParNew
    Fri Feb  3 14:31:49 2012
    : 113180K->34002K(130560K), 0.0845910 secs] 113180K->34002K(1005056K), 0.0848079 secs]
    Fri Feb  3 14:32:14 2012
    221.647: [GC 221.647: [ParNew: 121042K->43127K(130560K), 0.0901828 secs] 121042K->43127K(1005056K), 0.0904040 secs]
    Fri Feb  3 14:32:15 2012
    223.343: [GC 223.343: [ParNew: 130143K->37620K(130560K), 0.0733509 secs] 130143K->46470K(1005056K), 0.0735802 secs]
    Fri Feb  3 14:32:16 2012
    224.069: [GC 224.069: [ParNew: 124591K->40179K(130560K), 0.0747273 secs] 133442K->49029K(1005056K), 0.0749214 secs]
    Fri Feb  3 14:32:17 2012
    224.682: [GC 224.683: [ParNew: 127211K->40700K(130560K), 0.0815027 secs] 136062K->52675K(1005056K), 0.0816996 secs]
    225.187: [GC 225.187: [ParNew: 127724K->40534K(130560K), 0.0587785 secs] 139699K->54340K(1005056K), 0.0589684 secs]
    [Thr 130] Fri Feb  3 14:35:11 2012
    [Thr 130] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    [Thr 149] Fri Feb  3 14:35:12 2012
    [Thr 149] ***LOG S98=> STISearchConv, no conv (14387978) [r3cpic_mt.c  6137]
    [Thr 149]
    [Thr 149] *  LOCATION    CPIC (TCP/IP) on local host with Unicode
    [Thr 149] *  ERROR       no conversation found with id 14387978
    [Thr 149] *
    TIME        Fri Feb  3 14:35:12 2012
    [Thr 149] *  RELEASE     701
    [Thr 149] *  COMPONENT   CPIC (TCP/IP) with Unicode
    [Thr 149] *  VERSION     3
    [Thr 149] *  RC          473
    [Thr 149] *  MODULE      r3cpic_mt.c
    [Thr 149] *  LINE        6138
    [Thr 149] *  COUNTER     1
    [Thr 149] *
    [Thr 149] *****************************************************************************
    [Thr 149]
    **[Thr 149] *  LOCATION    CPIC (TCP/IP) on local host with Unicode**
    **[Thr 149] *  ERROR       illegal parameter value ( function=SAPCMTIMEOUT2 /**_
    ***              parameter=conversationID / value=14387978 )**_
    **[Thr 149] ***
    ***  TIME        Fri Feb  3 14:35:12 2012**
    **[Thr 149] *  RELEASE     701**
    **[Thr 149] *  COMPONENT   CPIC (TCP/IP) with Unicode**
    **[Thr 149] *  VERSION     3**
    **[Thr 149] *  RC          769**
    **[Thr 149] *  MODULE      r3cpicmt.c**_
    **[Thr 149] *  LINE        7354**
    **[Thr 149] *  COUNTER     2**
    **[Thr 149] ***
    **[Thr 149] *******************************************************************************
    [Thr 27] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    399.717: [GC 399.717: [ParNew: 127574K->43520K(130560K), 0.0996730 secs] 141380K->60028K(1005056K), 0.0999462 secs]
    Fri Feb  3 14:35:15 2012
    402.992: [GC 402.993: [ParNew: 130425K->39664K(130560K), 0.0697386 secs] 146933K->65055K(1005056K), 0.0699946 secs]
    Fri Feb  3 14:35:18 2012
    406.083: [GC 406.083: [ParNew: 126695K->36855K(130560K), 0.0698643 secs] 152086K->67926K(1005056K), 0.0701081 secs]
    Fri Feb  3 14:35:19 2012
    407.337: [GC 407.338: [ParNew: 123895K->36788K(130560K), 0.0644911 secs] 154966K->67859K(1005056K), 0.0646924 secs]
    Fri Feb  3 14:35:20 2012
    Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingImpl::initializeRelations
    Fri Feb  3 14:35:21 2012
    409.075: [GC 409.075: [ParNew: 123700K->38997K(130560K), 0.0669356 secs] 154771K->70069K(1005056K), 0.0671589 secs]
    Fri Feb  3 14:35:24 2012
    411.813: [GC 411.814: [ParNew: 126037K->41099K(130560K), 0.0865503 secs] 157109K->72170K(1005056K), 0.0867652 secs]
    ==============================================================

    Hi,
    From the logs, looks like the Java is not able to connect to the ABAP via the RFC.
    ERROR no conversation found with id 14387978
    Check the SAPJSF user which is required for communication between ABAP and Java stacks. Check for roles and if it is locked. Also you could try a server restart, which may reset the conversation IDs.
    Regards,
    Srikishan

  • Backend System with Release 701 are not supported

    SRM 5.0
    Extended Classic Scenario
    CCM 2.0
    When updating the vendors in SRM system using TC - BBPUPDVD getting the below error message :-
    Backend System with Release 701 are not supported
    Have checked in table - BBP_BACKEND_DEST, the backend entry is properly maintained.
    Can any one advice.
    Regards,
    Jayoti
    Edited by: SAP jayoti on Dec 7, 2010 1:11 PM

    The problem is resolved for vendor relication after applying the below notes 1313972 and 1372175.
    ECC sandbox seems to be in 701 release. When the backend system ECC is in release 701, vendor replication fails with the error message that 'Backend system release 701 not supported'. We need to apply notes 1313972 and 1372175 to fix this issue. I have applied them in Sandbox and the issue is resolved now.

  • BBPGETVD throwing an error -Backend system with release 701 are not support

    Experts,
    After changing the Backend connection from  R3 4.6c to ECC6 sysem in our BBPCRM4.0,
    the transaction "BBPGETVD" is not working, which is throwing an error as
    "Backend system with release 701 are not supported".
    Already we have applied some of the notes (822883 &862290)
    Thanks
    Ahamed

    Are you able to replicate other data like plants, product categories from the same backend system or are you facing the same error?
    Also please check the logical system and see if they are assigned to the client correctly. (in SPRO settings)
    Thanks,
    Prashanth

  • MSE : "Files needed to display video are not installed..."

    I installed the MSI DigiVox ATSC w QAM USB stick. Live TV setup and channel scanning worked fine. But then when I try to use the tuner in Windows Media Center, and play live TV, I get stuttering video and audio for a few moments before this message is displayed:
    "Files needed to display video are not installed or not working correctly. Please restart Windows Media Center or restart the computer." I have of course tried both.
    WMC plays back movie files from my HDD without any problems.
    One symptom is when I go through guided setup, and choose 5.1, the Test button does not result in any audio output. Even though WMC's system sounds and file playback audio works fine.
    I have Win 7 64 bit, all updates. Intel i5 2500K integrated video (HD Graphics 3000) - latest drivers installed. Connecting via HDMI.
    I tried the exact same tuner on a Shuttle based x86 Win7 Ultimate 32-bit system, with a discrete ATI video cards, and everything worked fine.
    1) Is there a problem with the 64-bit drivers, or
    2) Is there a problem with MSI Digi Vox and Intel HD 3000 graphics?
    3) Something else?
    Thanks!

    If I connect the HTPC directly to my Samsung DLP, it works fine.
    There must be a problem with the combination Intel HD3000, Onkyo TX-SR605 and Windows Media Center that I probably will never be able to solve  
    EDIT: So I tried a discrete ATI video card, and had the same problem. Ergo, it must be that WMC cannot handshake or communicate with my Onkyo TX-SR605 receiver.
    EDIT2: Also, my old 32-bit HTPC connecting via the same receiver, there is no problem. This is so frustrating. I think I will re-install Windows 7 64-bit + all drivers, and try WMC7 audio + Live TV before installing anything else.

  • .jpg files created on iphone 4S are not recognized as .jpg files when uploading them to American Heart Assoc. website?

    .jpg files created on Iphone 4S are not recognized as .jpg files when uplaoding to American Heart Association fund raising webpage? .jpg's from Canon camera uploaded without any problems? The website automatically reduces the file size to <100kb.

    I haven't contacted AHA about this issue. The .jpg files created on Canon SLR uploaded correctly, but the photo from iPhone which was emailed to my PC using MS IE. The .jpg was browsed to from my desktop and is submitted. It shows up in draft form then when uploading it fails saying it is not a .jpg file or .png file? I have had other issues in the past emailing iPhone pictures. They were not editable after being sent to a PC. I guess we can retake photos with a non-Apple camera.

  • HT4910 I just upgraded to 4s and when i backup my iCloud my apps and pics are not coming over?

    I just upgraded to 4s and when i backup my iCloud my apps and pics are not coming over?

    I'm assuming you have performed a restore from an icloud backup...
    Many users have lost photos while preforming a restore from backup or upgrading the iOS.   Recall, only photos in the camera roll are backed up to iCloud.  There is a way to turn backups for camera roll on/off, perhaps these users had camera roll turned off.
    See:
    Settings>icloud>Storage & Backups>Manage Storage,  tap the device's name and on the next screen, be sure Camera Roll is turned on.
    IMPORTANT...
    Photos should be regularly synced to a computer (like you store photos from a digital camera) using either USB via iTunes (on a mac use iPhoto or Aperture to move them to an album) or using photo stream.  If you have been doing that, then you can sync those photos back to your device.
    If you haven't been saving photos except relying on iCloud to store them in a backup, then that is risky, as many users have discovered.  I'm afraid I have no advice in this case - there is no "cure".
    As for apps, you could always download them again from the itunes store, without charge.  Look for the link to purchased apps, there you'll have a list of the ones you can download free.

Maybe you are looking for