RMAN-05556: not all datafiles have backups that can be recovered to SCN

Oracle 11.2.0.2 SE-One
Oracle Linux 5.6 x86-64
Weekly refresh of a test db from prod, using rman DUPLICATE DATABASE, failed with “RMAN-05556: not all datafiles have backups that can be recovered to SCN”
Background Summary:
Weekly inc 0 backup of production starts on Sunday at 0100, normally completes around 1050.  Includes backups of archivelogs
Another backup of just archivelogs runs on Sunday at 1200, normally completes NLT 1201.
On the test server, the refresh job starts on Sunday at 1325.  In the past this script used a set until time \"to_date('`date +%Y-%m-%d` 11:55:00','YYYY-MM-DD hh24:mi:ss')\"; -- hard-coded for ‘today at 11:55’.
For a variety of reasons I decided to replace this semi-hard coding of the UNTIL with a value determined by querying the rman catalog, getting the completion time of the inc 0 backup.  This tested out just fine in my vbox lab, even when I deliberately drove some updates and log switches during the period the backup was running.  But the first time to go live I got the above reported error.
Details:
The key part of the inc 0 backup is this (run from a shell script)
export BACKUP_LOC=/u01/backup/dbprod
$ORACLE_HOME/bin/rman target=/ catalog rman/***@rmcat<<EOF
configure backup optimization on;
configure default device type to disk;
configure retention policy to recovery window of 2 days;
crosscheck backup;
crosscheck archivelog all;
delete noprompt force obsolete;
delete noprompt force expired backup;
delete noprompt force expired archivelog all;
configure controlfile autobackup on;
configure controlfile autobackup format for device type disk to '$BACKUP_LOC/%d_%F_ctl.backup';
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT   '$BACKUP_LOC/%U.rman' MAXPIECESIZE 4096 M;
sql "alter system archive log current";
show all;
backup as compressed backupset archivelog all delete all input format "$BACKUP_LOC/%U.alog";
backup as compressed backupset incremental level 0 database tag tag_dbprod;
sql "alter system archive log current";
backup as compressed backupset archivelog all delete all input format "$BACKUP_LOC/%U.alog";
list recoverable backup;
EOF
The archivelog-only backup (runs at noon) looks like this:
export BACKUP_LOC=/u01/backup/dbprod
$ORACLE_HOME/bin/rman target=/ catalog rman/***@rmcat<<EOF
configure backup optimization on;
configure default device type to disk;
configure retention policy to recovery window of 2 days;
crosscheck backup;
crosscheck archivelog all;
delete noprompt force obsolete;
delete noprompt force expired backup;
delete noprompt force expired archivelog all;
configure controlfile autobackup on;
configure controlfile autobackup format for device type disk to '$BACKUP_LOC/%d_%F_ctl.backup';
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT   '$BACKUP_LOC/%U.rman' MAXPIECESIZE 4096 M;
sql "alter system archive log current";
show all;
backup as compressed backupset archivelog all delete all input format "$BACKUP_LOC/%U.alog";
list recoverable backup;
EOF
And the original refresh looked like this:
>> a step to ftp the backups from the prod server to the test server, and some other housekeeping  <<, then
cd /backup/dbtest
echo "connect catalog rman/***@rmcat" >  /backup/dbtest/dbtest_refresh.rman
echo "connect target sys/*******@dbprod" >> /backup/dbtest/dbtest_refresh.rman
echo "connect auxiliary /"             >> /backup/dbtest/dbtest_refresh.rman
echo "run {"                           >> /backup/dbtest/dbtest_refresh.rman
echo "set until time \"to_date('`date +%Y-%m-%d` 11:55:00','YYYY-MM-DD hh24:mi:ss')\";"  >> /backup/dbtest/dbtest_refresh.rman
echo "duplicate target database to DBTEST;"  >> /backup/dbtest/dbtest_refresh.rman
echo "}" >> /backup/dbtest/dbtest_refresh.rman
So, my mod to the refresh was
bkup_point=`sqlplus -s rman/***@rmcat <<EOF1
set echo off verify off feedback off head off pages 0 trimsp on
select to_char(max(completion_time),'yyyy-mm-dd hh24:mi:ss')
from rc_backup_set_details
where db_name='DBPROD'
and backup_type='D'
and incremental_level=0
exit
EOF1`
cd /backup/dbtest
echo "connect catalog rman/***@rmcat"     > /backup/dbtest/dbtest_refresh.rman
echo "connect target sys/*******@dbprod"    >> /backup/dbtest/dbtest_refresh.rman
echo "connect auxiliary /"                >> /backup/dbtest/dbtest_refresh.rman
echo "run {"                              >> /backup/dbtest/dbtest_refresh.rman
echo "set until time \"to_date('${bkup_point}','YYYY-MM-DD hh24:mi:ss')\";"  >> /backup/dbtest/dbtest_refresh.rman
echo "duplicate target database to DBTEST;" >> /backup/dbtest/dbtest_refresh.rman
echo "}"                                  >> /backup/dbtest/dbtest_refresh.rman
Now the fun begins.
First, an echo in the refresh script confirmed the ‘bkup_point’:
=======================================================
We will restore to 2013-08-25 10:41:38
=======================================================
Internally, rman reset the ‘until’ as follows:
executing command: SET until clause
Starting Duplicate Db at 25-Aug-2013 15:35:44
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=162 device type=DISK
contents of Memory Script:
   set until scn  45633141350;
Examining the result of LIST BACKUP (the last step of all of my rman scripts) the full backup shows this:
BS Key  Type LV Size       Device Type Elapsed Time Completion Time    
5506664 Full 61.89M     DISK        00:00:03     25-Aug-2013 02:11:32
        BP Key: 5506678   Status: AVAILABLE  Compressed: NO  Tag: TAG20130825T021129
Piece Name: /u01/backup/dbprod/DBPROD_c-3960114099-20130825-00_ctl.backup
  SPFILE Included: Modification time: 24-Aug-2013 22:33:08
  SPFILE db_unique_name: DBPROD
  Control File Included: Ckp SCN: 45628880455   Ckp time: 25-Aug-2013 02:11:29
BS Key Type LV Size       Device Type Elapsed Time Completion Time    
5507388 Incr 0 206.03G    DISK        08:30:00     25-Aug-2013 10:41:30
  List of Datafiles in backup set 5507388
  File LV Type Ckp SCN    Ckp Time             Name
  1    0 Incr 45628880495 25-Aug-2013 02:11:38 +SMALL/dbprod/datafile/system.258.713574775
  >>>>>>>>> snip lengthy list <<<<<<<<<
  74   0 Incr 45628880495 25-Aug-2013 02:11:38 +SMALL/dbprod/event_i2.dbf
  Backup Set Copy #1 of backup set 5507388
  Device Type Elapsed Time Completion Time      Compressed Tag
  DISK        08:30:00     25-Aug-2013 10:41:36 YES        TAG_DBPROD
    List of Backup Pieces for backup set 5507388 Copy #1
    BP Key  Pc# Status      Piece Name
    5507391 1   AVAILABLE   /u01/backup/dbprod/eeoi55iq_1_1.rman
    >>>>>>>>>>>>> snip lengthy list <<<<<<<<<<<
    5507442 52  AVAILABLE   /u01/backup/dbprod/eeoi55iq_52_1.rman
Notice the slight difference in time between what is reported in the LIST BACKUP and what was reported by my query to the catalog.
Continuing with the backup list, the second archivelog  backup in the script generated six backupsets.  The fifth set  showed:
BS Key Size       Device Type Elapsed Time Completion Time    
5507687 650.19M DISK        00:02:18     25-Aug-2013 10:54:53
        BP Key: 5507694   Status: AVAILABLE  Compressed: YES  Tag: TAG20130825T104156
Piece Name: /u01/backup/dbprod/ekoi643j_1_1.alog
  List of Archived Logs in backup set 5507687
  Thrd Seq     Low SCN    Low Time             Next SCN   Next Time
  1    1338518 45632944587 25-Aug-2013 05:58:18 45632947563 25-Aug-2013 05:58:20
    >>>>>>>>>>>>> snip lengthy list <<<<<<<<<<<
  1    1338572 45633135750 25-Aug-2013 10:08:21 45633140240 25-Aug-2013 10:08:24
  1    1338573 45633140240 25-Aug-2013 10:08:24 45633141350 25-Aug-2013 10:30:06
  1    1338574 45633141350 25-Aug-2013 10:30:06 45633141705 25-Aug-2013 10:41:51
  1    1338575 45633141705 25-Aug-2013 10:41:51 45633141725 25-Aug-2013 10:41:55
Notice the availability of the archivelogs including the referenced scn.
Investigation of the ftp portion of the refresh script confirmed that all backup pieces were copied from the prod server.
So what am I overlooking?  Having reverted back to the original script to get the refresh completed,

HemantKChitale wrote:
So, technically, you only need the database and archivelogs backed up by the database script and not the noon run of the archivelog backup.
backup as compressed backupset archivelog all delete all input format "$BACKUP_LOC/%U.alog";
backup as compressed backupset incremental level 0 database tag tag_dbprod;
sql "alter system archive log current";
backup as compressed backupset archivelog all delete all input format "$BACKUP_LOC/%U.alog";
Yet, why does backupset 5 of the noon archivelog backup show archivelogs from 10:30 to 10:40  if they had been deleted by the database backup script which has a delete input ?  It is as if the database backup script did NOT delete the archivelogs and the noon run was the one to backup the archivelogs (again ?)
No, that is from the morning full backup.  Note the 'Completion Time" of 25-Aug-2013 10:54:53
However, the error message seems to point to a datafile.  Why would reverting the recovery point to 11:55 make a difference, I wonder.
As do I.
Also puzzling to me are the times associated with the completion of the backups.  I don't recall ever having to scrutinize a backup listing this closely so I'm sure it's just a matter of filling in some gaps in my understanding, but I noticed this.  The backup report (list backup;) shows this for the inc 0 backup:
BS Key  Type LV Size  
Device Type Elapsed Time Completion Time
5507388 Incr 0  206.03G
DISK   
08:30:00
25-Aug-2013 10:41:30   ------- NOTE THE COMPLETION TIME ----
  List of Datafiles in backup set 5507388
  File LV Type Ckp SCN
Ckp Time        
Name
  1
0  Incr 45628880495 25-Aug-2013 02:11:38 +SMALL/dbprod/datafile/system.258.713574775
------ SNIP ------
  74   0  Incr 45628880495 25-Aug-2013 02:11:38 +SMALL/dbprod/event_i2.dbf
  Backup Set Copy #1 of backup set 5507388
  Device Type Elapsed Time Completion Time 
Compressed Tag
  DISK   
08:30:00
25-Aug-2013 10:41:36 YES   
TAG_DBPROD   ------- NOTE THE COMPLETION TIME ----
List of Backup Pieces for backup set 5507388 Copy #1
BP Key  Pc# Status 
Piece Name
5507391 1   AVAILABLE   /u01/backup/dbprod/eeoi55iq_1_1.rman
------ SNIP ------
5507442 52  AVAILABLE   /u01/backup/dbprod/eeoi55iq_52_1.rman
Then the autobackup of the control file immediatly following:
BS Key  Type LV Size  
Device Type Elapsed Time Completion Time
5507523 Full
61.89M
DISK   
00:00:03
25-Aug-2013 10:41:47   ------- NOTE THE COMPLETION TIME ----
BP Key: 5507587   Status: AVAILABLE  Compressed: NO  Tag: TAG20130825T104144
Piece Name: /u01/backup/dbprod/DBPROD_c-3960114099-20130825-01_ctl.backup
  SPFILE Included: Modification time: 25-Aug-2013 05:57:15
  SPFILE db_unique_name: DBPROD   
  Control File Included: Ckp SCN: 45633141671   Ckp time: 25-Aug-2013 10:41:44
Then the archivelog backup immediately following (remember, this created a total of 5 backupset, I'm showing number 4)
BS Key  Size  
Device Type Elapsed Time Completion Time
5507687 650.19M
DISK   
00:02:18
25-Aug-2013 10:54:53   ------- NOTE THE COMPLETION TIME ----
BP Key: 5507694   Status: AVAILABLE  Compressed: YES  Tag: TAG20130825T104156
Piece Name: /u01/backup/dbprod/ekoi643j_1_1.alog
  List of Archived Logs in backup set 5507687
  Thrd Seq
Low SCN
Low Time        
Next SCN   Next Time
  1
1338518 45632944587 25-Aug-2013 05:58:18 45632947563 25-Aug-2013 05:58:20
------ SNIP ------
  1
1338572 45633135750 25-Aug-2013 10:08:21 45633140240 25-Aug-2013 10:08:24
  1
1338573 45633140240 25-Aug-2013 10:08:24 45633141350 25-Aug-2013 10:30:06
  1
1338574 45633141350 25-Aug-2013 10:30:06 45633141705 25-Aug-2013 10:41:51
  1
1338575 45633141705 25-Aug-2013 10:41:51 45633141725 25-Aug-2013 10:41:55
and the controlfile autobackup immediately following:
BS Key  Type LV Size  
Device Type Elapsed Time Completion Time
5507984 Full
61.89M
DISK   
00:00:03
25-Aug-2013 10:55:07   ------- NOTE THE COMPLETION TIME ----
BP Key: 5508043   Status: AVAILABLE  Compressed: NO  Tag: TAG20130825T105504
Piece Name: /u01/backup/dbprod/DBPROD_c-3960114099-20130825-02_ctl.backup
  SPFILE Included: Modification time: 25-Aug-2013 05:57:15
  SPFILE db_unique_name: DBPROD
  Control File Included: Ckp SCN: 45633142131   Ckp time: 25-Aug-2013 10:55:04
and yet, querying the rman catalog
SQL> select to_char(max(completion_time),'yyyy-mm-dd hh24:mi:ss')
  2  from rc_backup_set_details
  3  where db_name='DBPROD'
  4  and backup_type='D'
  5  and incremental_level=0
  6  ;
TO_CHAR(MAX(COMPLET
2013-08-25 10:41:38
SQL>
which doesn't match (to the second) the completion time of either the full backup or the associated controlfile autobackp.
Hemant K Chitale
I hope this posts in a readable, understandable manner.  I really struggeled with the 'enhanced editor', which I normally use.  When I pasted in blocks from the rman report, it kept trying to make some sort of table structure out of it .... guess I'll have to follow that up with a question in the Community forum ....

Similar Messages

  • Icalendar - most, not all, entries have disappeared - where can I find back up on Time Machine?

    For some reason, most of my calendar entries have gone - not all of them.
    I have a Time Machine that backs up regularly.
    I I wanted to find a recent back up of icalendar, where would I find it on Time Machine, so that I can 'Restore' accordingly?

    Please see:
    http://www.ehow.com/info_12195082_ical-events-disappear.html

  • I was trying to get the iOS 8.2 on my iPhone 5 but then it stopped and my phone is now on recovery mode I have pictures I need and they did not all fit on iCloud  how can I use the phone again with ALL my pictures and videos without restoring it?

    I was trying to get the iOS 8.2 on my iPhone 5 but then it stopped and my phone is now on recovery mode I have pictures I need and they did not all fit on iCloud  how can I use the phone again with ALL my pictures and videos without restoring it?

    Contacts are designed to be synced to a supported application on the computer or a cloud service.
    Pictures taken with the device are designed to regularly be copied off the device to a computer as would be done with any digital camera.
    If you have failed to use the device as designed it may be too late to recovery anything.
    Is the device regularly backed up to a computer via iTunes?  If so, the most recent backup (when restored to a replacement iOS device) should contain all contacts and pictures as of when the backup was created.

  • Stsadm Export "This constraint cannot be enabled as not all values have corresponding parent"

    I am trying to export a sharepoint site using the command "stsadm -o export -url http://prefix.domain.com/sites/sitename -includeusersecurity -filename c:\sitename"
    I have already done this on about 30 other sites.  This site is failing on export with the following message.
    [11/9/2009 3:39:39 PM]: FatalError: This constraint cannot be enabled as not all values have corresponding parent values.
    at System.Data.ConstraintCollection.AddForeignKeyConstraint(ForeignKeyConstraint constraint)
    at System.Data.ConstraintCollection.Add(Constraint constraint, Boolean addUniqueWhenAddingForeign)
    at System.Data.DataRelationCollection.DataSetRelationCollection.AddCore(DataRelation relation)
    at System.Data.DataRelationCollection.Add(DataRelation relation)
    at System.Data.DataRelationCollection.Add(String name, DataColumn[] parentColumns, DataColumn[] childColumns)
    at Microsoft.SharePoint.Deployment.ListItemObjectHelper.GetNextBatch()
    at Microsoft.SharePoint.Deployment.ObjectHelper.RetrieveDataFromDatabase(ExportObject exportObject)
    at Microsoft.SharePoint.Deployment.ListItemObjectHelper.RetrieveData(ExportObject exportObject)
    at Microsoft.SharePoint.Deployment.ExportObjectManager.GetObjectData(ExportObject exportObject)
    at Microsoft.SharePoint.Deployment.ExportObjectManager.MoveNext()
    at Microsoft.SharePoint.Deployment.ExportObjectManager.ExportObjectEnumerator.MoveNext()
    at Microsoft.SharePoint.Deployment.SPExport.SerializeObjects()
    at Microsoft.SharePoint.Deployment.SPExport.Run()
    I checked the SharePoint logs and the error message in there is the exact same.  Nothing is in the windows application error logs.
    I looked at what it was trying to do before the error and it failed on a task list.  I tried deleting the task list and trying again and it bombed on a document library next.
    I did some googling and found a hotfix http://support.microsoft.com/kb/955594 I tried to install it, but I have SP2 installed and therefore it said that the expected version was off.  Im assuming since I have SP2 and that hotfix is dated in 08 that it should be included in SP2 anyways.
    Does anyone have an idea on what is going on and how to fix it?  I am trying to migrate this sub site to a new server and set it up as a new site collection.

    Good you caught that ... somethings would have shut down at the 90day mark...
    Would you humor me and tell me what this does.. Note I changed the order of a few things, added a .bak to the filename and also added versions. 
    If this errors would go into the Windows Event Viewer and look for anything SharePoint related, then look at security logs and see if there are any errors. 
    stsadm -o export -url http://prefix.domain.com/sites/sitename -includeusersecurity -filename c:\sitename.bak  -includeusersecurity –versions 4
    Kris Wagner, MCITP, MCTS
    Twitter @sharepointkris
    Blog: http://sharepointkris.com

  • HT4890 I had a new I phone and I turned on iCloud and photostream , then only some photos from my old iPhone that I thought it was stored to my iCloud appeared in my new iPhone not all the old photos what can I do to restore my photos

    I had a new I phone and I turned on iCloud and photostream , then only some photos from my old iPhone that I thought it was stored to my iCloud appeared in my new iPhone not all the old photos what can I do to restore my photos

    Can you just back-up the old phone to iTunes and restore it from there?

  • What do i do my ipod is a white screen when i try to turn it on and part of the image of my back ground pops up. I dont know what to do. Please comment if you have something that can help. Its a gen four.

    when i try to turn on my gen four ipod, a white screen appears. Parts of my back ground pop up.All this started to happen when i dropped my ipod when i took it out of the case. Please comment if you have something that can help me. thanks

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable                                                       
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • Am suddenly getting error code 3250 when trying to download certain podcasts...not all, just some. How can I fix? Help.

    Am suddenly getting error code 3250 when trying to download certain podcasts...not all, just some. How can I fix? Help.

    I am getting the same error, and have been, since the last iTunes update.     Driving me crazy, as some podcasts download without issue, others won't download at all, and get the 3250 error code.

  • Hi  I should like to blur a part of a photo (not all the photo).  How can I do ?

    Hi
    I should like to blur a part of a photo (not all the photo).
    How can I do ?

    Thanks Ignacio
    Bravo ! It is exactly what I wanted to do.
    Steve
    Le 25 févr. 2013 à 18:26, ibarrien <[email protected]> a écrit :
    Re: Hi I should like to blur a part of a photo (not all the photo). How can I do ?
    created by ibarrien in Adobe Photoshop Touch - View the full discussion
    Just select the tool:
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5100732-301369/450-281/blur.pn g
    Choose the blur setting
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5100732-301388/450-281/blur1.p ng
    And change brush size
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5100732-301389/450-281/blur2.p ng
    Now you're ready to blur
    thanks,
    Ignacio
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5100732#5100732
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5100732#5100732
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5100732#5100732. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Photoshop Touch by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Time Machine Has Never Performed a Full Backup that Can Be Restored From

    I've been backing up my system via time machine to a time capsule. I'm using the same time capsule for both my mac and my wife's. My wife's mac is backing up fine with numerous full backups that can be restored from. However, when I recently booted into recovery mode, I discovered there were no full backups of my mac that I could restore from. I've been using this time capsule for about a year now so I'm concerned as to why there are no full backups. I can enter time machine and see my docs and files...just no full backups. Thanks for your help.

    There was a bug in Mountain Lion that caused TM to fail to backup system files.
    See D10 here. http://pondini.org/TM/Troubleshooting.html
    Honestly if you want a reliable full backup get CCC or other clone type backup and do a disk image to a USB drive that you can then test boot from. Then use TM for incrementals..
    What the change to Maverick will bring I am not sure.. ??
    We went from big cats to card sharps in Westerns..
    http://en.wikipedia.org/wiki/Maverick_(TV_series)

  • I accidentally trashed a page of Note on my iphone 4S. Can I recover it? It is not included in my last backup nor it's  in icloud! thanks

    I accidentally trashed a page of Note on my iphone 4S. Can I recover it? It is not included in my last backup nor it's in icloud! thanks

    No. If it is not backed uop it is gone.
    Allan

  • HT201250 Hi, I had updated folder on my hard drive wich was wrongly replaced with a folder from my external drive. I m not using time machine. How can i recover that updated folder? (it was done on 3-5-12)

    Hi, I had updated folder on my hard drive wich was wrongly replaced with a folder from my external drive. I m not using time machine. How can i recover that updated folder? (it was done on 3-5-12)

    If the folder was replaced, it was written over.
    Nothing short of forensic data recovery (probably involving taking the drive apart to scan the discs seperately) is going to recover anything (if indeed even that will).

  • I wanted to ask whether the camera for ipod touch comparable to a digital camera? if not are there apps available that can turn it into a digital camera? i want to buy an ipod touch and i like photography....what should i do?plz suggest

    i  wanted to ask whether the camera for ipod touch comparable to a digital camera? if not are there apps available that can turn it into a digital camera? i want to buy an ipod touch and i like photography....what should i do? plz suggest

    The iPod touch has a very rudimentary camera.  It has only a 0.6 MP resolution, no optical zoom, no flash, etc.   There is no app that can improve this as it is limited by the hardware. So it is not a replacement for a digital camera (nor even for an iPhone whose camera has a 5.0 MP resolution.

  • I deleted an important note from my Apple Ipad 2, can I recovered it

    I deleted an important note from my Apple Ipad 2, can I recovered it

    The only way you could recover it (assuming it was completely deleted) is if you have a backup from when that note existed.

  • I just updated my friends ipad 2 for the 1st time since he bought it, we lost all photos and videos. how can i recover them? he didn't had the chance to sync it on his itunes.thanks

    i just updated my friends ipad 2 for the 1st time since he bought it, we lost all photos and videos. how can i recover them? he didn't had the chance to sync it on his itunes.thanks

    If you have no backup:
    Download past purchase
    http://support.apple.com/kb/HT2519

  • Firefox is failing to display many (but not all) images on websites that I visit, some images are shown and some are not even if they are in the same format.

    I recently changed my ISP because I was having connectivity issues. In particular my router would shut down sporadically. As part of my attempt to clear issues I ran some spyware software which I've been told I could trust. Since then I have a problem viewing many websites as many (but not all) of the images are missing, even on websites that I know very well, including my own. What is very strange is that on one site every page has a jpg image under the navigation bar and all of these jpg's appear except one which doesn't appear even when I reload images. This problem also makes security sensitive sites like my bank site look very amateur which frightens me. The problem does not occur on other web browsers.

    Which ''spyware software'' software did you run?
    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Windows Accessibility settings.
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Images_or_animations_do_not_load

Maybe you are looking for

  • Random wireless crashes ( need help urgently)

    Hi, I'm using a WRT54GSv4 router and I have two computer connected to it. One pc is connected by wire and the other computer ( IBM t60p labtop, integrated Intel Pro/wireless 3945abg, running MS Vista OS ) by wireless. the wired one is working flawles

  • Apple TV 2 & LaCie Network2NAS device

    Apologies - I am sure this has been done to death elsewhere, but I cannot find any posts on the subject. I have a LaCie NAS on my network, with iTunes sharing. It happily appears on iTunes, running on my MacBook & iMac, as a 'shared device', and I ca

  • ORA-00235 Standby Database Controlfile problem

    Dear fellow dbas, I am just starting to become acquainted with high availability and have to solve following problem. We have a RAC database with a standby database that is out of sync. In fact the standby database is running in async mode but archiv

  • How to read xml file

    I want to create a component to read a XML file in Flex 2 using Actionscript. I am able to do this using URLRequest and URLLoader but what happens is the component that calls my reader component keeps running through the code and the Complete event n

  • Know how to edit m4a files?

    Hi. Does anyone know of any software out there that will edit m4a (AAC) files without having to convert them into mp3 files, either before you start or when you finish. I know of Audacity and WavePad but both require converting the files, a process t