Making daily log4jfiles

hi all,
is there a way i can set up my log4j.properties file so that it creates a log file with the current date in the name of the file, such as log4j-041405.log instead of just log4.log? currently my properties file looks like this:
log4j.rootCategory=DEBUG, A1
# A1 is a DailyRollingFileAppender
log4j.appender.A1=org.apache.log4j.DailyRollingFileAppender
log4j.appender.A1.File=C:/Apache/jakarta-tomcat-4.1.30/webapps/TSG_Import/logs/log4j.log
# Rollover log file at midnight every day
log4j.appender.A1.DatePattern='.'yyyy-MM-dd
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
#Date Priority Message SourceCodeInfo
log4j.appender.A1.layout.ConversionPattern= %d{MM/dd/yy HH:mm:ss} %p - %m%n - %C{1}.%M
any help would be appreciated, thanks

bigjnz wrote:
I have downloaded BackupLoupe and using this utility I have found that daily backups of my entire Itunes music Library are being made (122GB).
Is it only the iTunes folder; and the entire contents?
If so, the iTunes folder itself may be damaged. That happens occasionally; something in a folder object gets corrupted, and Time Machine either doesn't find real changes, or thinks everything changed.
In those cases, the only solution we've been able to find is to rename the folder, create a new one, move the contents, and delete the old one. The first backup afterwards will back up everything, but thereafter it should be ok.

Similar Messages

  • Time Machine making Daily backups of Entire Itunes Library

    Hi There,
    I have searched around the forums and cannot find an answer to my problem.
    I am using time machine over a 1TB time capsule, my laptop is the only computer that is backing up to the drive,
    Originally I noticed that my time machine backups were taking a long time (over 7 hours while connected through Ethernet)
    I have downloaded BackupLoupe and using this utility I have found that daily backups of my entire Itunes music Library are being made (122GB).
    Does anyone have any idea what may be causing this issue? I have followed the Time machine trouble shooting guide and Completely wiped the drive and started again,
    I have performed a disk and permission repair on both the time capsule drive and on the Macbook through the install DVD, however each time I initiate time machine on the freshly reconditioned drives it happens again.
    Any help would be greatly appreciated, I am going slowly insane.
    Cheers
    Josh

    bigjnz wrote:
    I have downloaded BackupLoupe and using this utility I have found that daily backups of my entire Itunes music Library are being made (122GB).
    Is it only the iTunes folder; and the entire contents?
    If so, the iTunes folder itself may be damaged. That happens occasionally; something in a folder object gets corrupted, and Time Machine either doesn't find real changes, or thinks everything changed.
    In those cases, the only solution we've been able to find is to rename the folder, create a new one, move the contents, and delete the old one. The first backup afterwards will back up everything, but thereafter it should be ok.

  • Daily database backup runnig on RAC 10.2.0.3 with two Solaris nodes & ASM

    Hello,
    I'm confused about making daily incremental RMAN backup of a database runnig on Oracle RAC 10.2.0.3 on two Solaris nodes and ASM.
    Databases cannot be stopped for backup and point in time recovery is needed.
    Please correct me if I am doing wrong:
    1) Backup must be Weekly database Level 0 and Daily database Level 1 is appropriate.
    2) Is best to use a Flash Recovery Area (FRA) - I've setup one on a separate ASM volume. I have enough space to do the backup on FRA.
    3) I am confused about the number channels I need to use. Do I need to use separate RMAN backup channels for each node or I can just leave the default:
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    4) Below are the RMAN scripts I plan to use for
    - Weekly database backup Level 0:
    #!/usr/bin/ksh
    echo BACKUP FULL: $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup incremental level 0 database TAG bkp_level0_200906010;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    - Daily database backup Level 1:
    #!/usr/bin/ksh
    echo BACKUP INCREMENTAL: $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup incremental level 1 database TAG bkp_level1_20090611;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    I'm I doing things wrong?

    Show also the parameter I have set for RMAN:
    node1:oracle$ rman target /
    Recovery Manager: Release 10.2.0.3.0 - Production on Tue Jun 9 23:46:05 2009
    connected to target database: ORCL (DBID=1198388159)
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 7;
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/oracle/product/10gr2/db/dbs/snapcf_orcl1.f'; # default
    Showing some instance parameters on node1:
    SQL> show parameter recovery;
    NAME                                 TYPE        VALUE
    db_recovery_file_dest                string      DGFRA+
    db_recovery_file_dest_size           big integer 300G
    recovery_parallelism                 integer     0
    SQL> show parameter archive;
    NAME                                 TYPE        VALUE
    archive_lag_target                   integer     0
    log_archive_config                   string
    log_archive_dest                     string
    log_archive_dest_1                   string
    log_archive_dest_10                  string      location=use_db_recovery_file_
    dest
    log_archive_dest_2                   string
    log_archive_dest_3                   string
    log_archive_dest_4                   string
    log_archive_dest_5                   string
    log_archive_dest_6                   string
    NAME                                 TYPE        VALUE
    log_archive_dest_7                   string
    log_archive_dest_8                   string
    log_archive_dest_9                   string
    log_archive_dest_state_1             string      enable
    log_archive_dest_state_10            string      enable
    log_archive_dest_state_2             string      enable
    log_archive_dest_state_3             string      enable
    log_archive_dest_state_4             string      enable
    log_archive_dest_state_5             string      enable
    log_archive_dest_state_6             string      enable
    log_archive_dest_state_7             string      enable
    NAME                                 TYPE        VALUE
    log_archive_dest_state_8             string      enable
    log_archive_dest_state_9             string      enable
    log_archive_duplex_dest              string
    log_archive_format                   string      %t_%s_%r.dbf
    log_archive_local_first              boolean     TRUE
    log_archive_max_processes            integer     2
    log_archive_min_succeed_dest         integer     1
    log_archive_start                    boolean     FALSE
    log_archive_trace                    integer     0
    remote_archive_enable                string      true
    standby_archive_dest                 string      ?/dbs/arch

  • Safari and Firefox crashing

    Hi
    My browser crashes every time try to open a new email in gmail This is happening both with Safari and Firefox. When i switch to the basic mode - html only i am able to access my mail. I have a similar problem with both of them when i try and access the options page in my account at http://www.wordpress.com .
    I can access my address book easily in gmail making daily emailing a huge chore. I have to remember people's addresses and type it in as autotype doesnt function. Also chat and the other extras in gmail dont work. In wordpress I cant change the settings in my account unless I log in with my husbands windows laptop.
    I used to have this problem earlier and decided that it had something to do with gmail being new as I hadnt experimented with another browser then. The problem went away with a software update and as far as i can tell has resurfaced after another.
    I've put below a crash report from Safari. Here I was trying to open an email using the gmail website.
    Please help.
    Date/Time: 2006-11-23 13:37:23 +0600
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Version: 1.3.2 (312.6)
    PID: 1204
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x06c1b12c
    Thread 0 Crashed:
    0 ATS 0x96b6d840 ProcessKerningRun + 0x10c
    1 ATS 0x96b5a860 ApplyKerning + 0xfc
    2 ATS 0x96b5998c _eLLCLayoutText + 0xb0
    3 ATS 0x96b598b8 LLCLayoutText + 0x48
    4 com.apple.QD 0x951d6360 LayoutGlyphs(ATSGlyphVector*, ATSLineLayoutLineParams*, long) + 0x90
    5 com.apple.QD 0x95244d0c ATSULayoutGlyphs(TATSUGlyphRecordArray*, ATSLineLayoutLineParams*, long, ATSUTab const*, unsigned long, __CFString const*, unsigned short const*, unsigned long, unsigned long) + 0x60
    6 com.apple.QD 0x951d3a78 TTextLineLayout::EnsureLayoutIsUpToDate(unsigned long, unsigned char, unsigned long, TATSUGlyphRecordArray**) + 0x628
    7 com.apple.QD 0x951e6bbc TTextLineLayout::GetGlyphBounds(unsigned long, unsigned long, long, long, unsigned short, unsigned long, ATSTrapezoid*, unsigned long*) + 0xc0
    8 com.apple.QD 0x951ed310 ATSUGetGlyphBounds + 0x88
    9 com.apple.WebKit 0x950183e0 -[WebTextRenderer(WebInternal) _trapezoidForRun:style:atPoint:] + 0xc4
    10 com.apple.WebKit 0x950184d8 -[WebTextRenderer(WebInternal) ATSUfloatWidthForRun:style:] + 0x58
    11 com.apple.WebKit 0x94fe2b74 -[WebTextRenderer floatWidthForRun:style:widths:] + 0xa4
    12 com.apple.WebCore 0x973478d8 QFontMetrics::floatWidth(QChar const*, int, int, int, int, int, bool) const + 0x17c
    13 com.apple.WebCore 0x9734ed20 khtml::Font::width(QChar*, int, int, int) const + 0x40
    14 com.apple.WebCore 0x9734b4a8 khtml::RenderText::calcMinMaxWidth() + 0x208
    15 com.apple.WebCore 0x9734fe20 khtml::RenderObject::recalcMinMaxWidths() + 0x1b8
    16 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    17 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    18 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    19 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    20 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    21 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    22 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    23 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    24 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    25 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    26 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    27 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    28 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    29 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    30 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    31 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    32 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    33 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    34 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    35 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    36 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    37 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    38 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    39 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    40 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    41 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    42 com.apple.WebCore 0x9734fd2c khtml::RenderObject::recalcMinMaxWidths() + 0xc4
    43 com.apple.WebCore 0x97371e60 khtml::RenderCanvas::layout() + 0xb0
    44 com.apple.WebCore 0x97379904 KHTMLView::layout() + 0x38c
    45 com.apple.WebCore 0x974ce6f8 khtml::RenderPart::updateWidgetPositions() + 0x2b8
    46 com.apple.WebCore 0x974d4318 khtml::RenderObject::updateWidgetPositions() + 0x3c
    47 com.apple.WebCore 0x974d4318 khtml::RenderObject::updateWidgetPositions() + 0x3c
    48 com.apple.WebCore 0x974d4318 khtml::RenderObject::updateWidgetPositions() + 0x3c
    49 com.apple.WebCore 0x974d4318 khtml::RenderObject::updateWidgetPositions() + 0x3c
    50 com.apple.WebCore 0x97379978 KHTMLView::layout() + 0x400
    51 com.apple.WebCore 0x9741728c -[WebCoreBridge forceLayoutAdjustingViewSize:] + 0x38
    52 com.apple.WebKit 0x95024fe0 -[WebHTMLView layoutToMinimumPageWidth:maximumPageWidth:adjustingViewSize:] + 0xe4
    53 com.apple.WebKit 0x95023eb0 -[WebHTMLView(WebPrivate) weblayoutIfNeededRecursive:testDirtyRect:] + 0xc4
    54 com.apple.WebKit 0x9502493c -[NSView(WebHTMLViewFileInternal) weblayoutIfNeededRecursive:testDirtyRect:] + 0x98
    55 com.apple.WebKit 0x9502493c -[NSView(WebHTMLViewFileInternal) weblayoutIfNeededRecursive:testDirtyRect:] + 0x98
    56 com.apple.WebKit 0x9502493c -[NSView(WebHTMLViewFileInternal) weblayoutIfNeededRecursive:testDirtyRect:] + 0x98
    57 com.apple.WebKit 0x9502493c -[NSView(WebHTMLViewFileInternal) weblayoutIfNeededRecursive:testDirtyRect:] + 0x98
    58 com.apple.WebKit 0x95023ed8 -[WebHTMLView(WebPrivate) weblayoutIfNeededRecursive:testDirtyRect:] + 0xec
    59 com.apple.WebKit 0x94fe426c -[WebHTMLView(WebPrivate) _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0xa4
    60 com.apple.AppKit 0x98194770 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0x4b8
    61 com.apple.AppKit 0x98194770 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0x4b8
    62 com.apple.AppKit 0x98194770 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0x4b8
    63 com.apple.AppKit 0x98194770 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0x4b8
    64 com.apple.AppKit 0x98194770 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0x4b8
    65 com.apple.AppKit 0x98194770 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0x4b8
    66 com.apple.AppKit 0x98194770 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0x4b8
    67 com.apple.AppKit 0x981e1308 -[NSFrameView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0x124
    68 com.apple.AppKit 0x981c848c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 0xc0
    69 com.apple.AppKit 0x981a5648 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 0x180
    70 com.apple.AppKit 0x981be674 -[NSView displayIfNeeded] + 0xa8
    71 com.apple.AppKit 0x981cf364 -[NSWindow displayIfNeeded] + 0xb4
    72 com.apple.Safari 0x0001a44c 0x1000 + 0x1944c
    73 com.apple.AppKit 0x981af9b0 _handleWindowNeedsDisplay + 0xe0
    74 com.apple.CoreFoundation 0x901c27f8 __CFRunLoopDoObservers + 0x194
    75 com.apple.CoreFoundation 0x901c2094 __CFRunLoopRun + 0x18c
    76 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    77 com.apple.HIToolbox 0x97c9be10 RunCurrentEventLoopInMode + 0xac
    78 com.apple.HIToolbox 0x97ca253c ReceiveNextEventCommon + 0x17c
    79 com.apple.HIToolbox 0x97cc4638 BlockUntilNextEventMatchingListInMode + 0x60
    80 com.apple.AppKit 0x981a3248 _DPSNextEvent + 0x180
    81 com.apple.AppKit 0x981b9cc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 0x74
    82 com.apple.Safari 0x0000bda0 0x1000 + 0xada0
    83 com.apple.AppKit 0x981ce048 -[NSApplication run] + 0x21c
    84 com.apple.AppKit 0x9828a764 NSApplicationMain + 0x1d0
    85 com.apple.Safari 0x00007fc4 0x1000 + 0x6fc4
    86 com.apple.Safari 0x00054944 0x1000 + 0x53944
    Thread 1:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d160 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45d64 -[NSRunLoop run] + 0x4c
    6 com.apple.WebKit 0x94ff3124 +[WebFileDatabase _syncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a4b8 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d160 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45d64 -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a97ffc +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 0x20c
    7 com.apple.Foundation 0x90a6a4b8 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d160 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45d64 -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a9853c +[NSURLCache _diskCacheSyncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a4b8 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x9000b46c select + 0xc
    1 com.apple.Foundation 0x90a2296c _loadRunLoop + 0xd4
    2 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 5:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000ea1c pthread_condwait + 0x270
    2 com.apple.Foundation 0x90a7c598 -[NSConditionLock lockWhenCondition:] + 0x44
    3 com.apple.AppKit 0x9819b0e8 -[NSUIHeartBeat _heartBeatThread:] + 0x190
    4 com.apple.Foundation 0x90a6a4b8 forkThreadForFunction + 0x6c
    5 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 6:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 ...ple.CoreServices.CarbonCore 0x9036293c TSexception_listenerthread + 0x70
    3 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 7:
    0 libSystem.B.dylib 0x9000b46c select + 0xc
    1 com.apple.CoreFoundation 0x901c7668 __CFSocketManager + 0x1fc
    2 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x96b6d840 srr1: 0x0000f030 vrsave: 0x00000000
    cr: 0x28008222 xer: 0x00000003 lr: 0x96b6d814 ctr: 0x9011bd60
    r0: 0x00000044 r1: 0xbfffc870 r2: 0x00000000 r3: 0x05048290
    r4: 0x00000018 r5: 0x00000010 r6: 0x06bdb010 r7: 0x00004744
    r8: 0x05048292 r9: 0x00000000 r10: 0x00000000 r11: 0xa6b50858
    r12: 0x9011bd60 r13: 0x00000000 r14: 0x00000000 r15: 0x00000001
    r16: 0x00000001 r17: 0x07eec5d4 r18: 0xbfffcdf0 r19: 0x00000001
    r20: 0xbfffce18 r21: 0x00000000 r22: 0xbfffc9c0 r23: 0x00040120
    r24: 0x00800000 r25: 0x00000000 r26: 0x07e85a50 r27: 0x05048290
    r28: 0xbfffc940 r29: 0x0016003e r30: 0x06c1b128 r31: 0x96b6d744
    Binary Images Description:
    0x1000 - 0xcdfff com.apple.Safari 1.3.2 (312.6) /Applications/Safari.app/Contents/MacOS/Safari
    0x17fb000 - 0x17fdfff com.apple.textencoding.unicode 1.6.4 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4ba6000 - 0x4ba8fff com.lemkesoft.GraphicConverterCMI 1.4 /Users/ujwala/Library/Contextual Menu Items/GraphicConverterCMI.plugin/Contents/MacOS/GraphicConverterCMI
    0x4f37000 - 0x4f3bfff com.apple.FolderActionsMenu 1.2.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x4f51000 - 0x4f53fff com.apple.PDFImporter 1.3.1 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x5166000 - 0x51bbfff com.DivXInc.DivXDecoder 6.0.0 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x6864000 - 0x68acfff com.pixture.PhotoToolCM PhotoToolCM version 2.0 (2.0) /Library/Contextual Menu Items/PhotoToolCM.plugin/Contents/MacOS/PhotoToolCM
    0x692e000 - 0x6970fff com.pixture.QuickImageCM QuickImageCM version 2.4 (2.4) /Library/Contextual Menu Items/QuickImageCM.plugin/Contents/MacOS/QuickImageCM
    0x806c0000 - 0x806e9fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x81c82000 - 0x81c8afff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x81c90000 - 0x81c93fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x8388c000 - 0x83898fff com.apple.agl 2.5 (AGL-2.5) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x880f0000 - 0x88226fff com.apple.vImage 1.2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x8bf02000 - 0x8bf12fff com.apple.Accelerate.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x8c2dd000 - 0x8c2ddfff com.apple.Accelerate 1.0.3 (Accelerate 1.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.9 (299.37) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9071d000 - 0x9072afff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90733000 - 0x90746fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90812000 - 0x9084afff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90a02000 - 0x90a0dfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.8 (500.61) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9102d000 - 0x91045fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91318000 - 0x91368fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x9151afff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91717000 - 0x9172dfff com.apple.QuartzCore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9173a000 - 0x91751fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91836000 - 0x91853fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91951000 - 0x91951fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91953000 - 0x91953fff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91afb000 - 0x91b0bfff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91b71000 - 0x91b8bfff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x91ebd000 - 0x91f11fff com.apple.bom 1.2.8 (64.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92109000 - 0x92141fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x92170000 - 0x92357fff com.apple.security 2.4 (179) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92647000 - 0x9270ffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.4 (71.11) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92a50000 - 0x93426fff com.apple.QuickTimeComponents.component 7.1.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9354e000 - 0x93606fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93680000 - 0x93958fff com.apple.CoreGraphics 1.203.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93a50000 - 0x93a64fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93a6a000 - 0x93a84fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93aa0000 - 0x93b87fff com.apple.AddressBook.framework 1.1.2 (321) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x940c0000 - 0x940fcfff com.apple.LDAPFramework 1.3.4 (37.4.2) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9438a000 - 0x943a4fff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94580000 - 0x9458cfff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94596000 - 0x945a5fff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x945c0000 - 0x945d0fff libsasl2.2.0.1.dylib /usr/lib/libsasl2.2.0.1.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x946ed000 - 0x946fdfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94720000 - 0x94721fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x948b0000 - 0x948e1fff com.apple.securityinterface 1.0 (39) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94c40000 - 0x94c4ffff com.apple.DSObjCWrappers.Framework 1.0.1 (1.0) /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e0b000 - 0x94e1efff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94fe0000 - 0x95078fff com.apple.WebKit 312.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x951ce000 - 0x95287fff com.apple.QD 3.4.72 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x952ed000 - 0x953cffff com.apple.JavaScriptCore 312.3.2 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9605d000 - 0x96066fff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a6dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96c00000 - 0x96c67fff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96de0000 - 0x96df0fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96ee0000 - 0x96ee8fff libbsm.dylib /usr/lib/libbsm.dylib
    0x96eec000 - 0x971a0fff com.apple.QuickTime 7.1.2 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x97345000 - 0x97636fff com.apple.WebCore 315.14.6 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x97c95000 - 0x9801afff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98191000 - 0x98690fff com.apple.AppKit 6.3.11 (743.43) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

    Hi,
    The crash you posted would seem to indicate it is font related. Did you install/remove any fonts recently?
    Check in FontBook to see if you have any duplicates that could be affecting things also? Check the FontBook help on how to resolve duplicates.
    You may also want to try Font Finagler which can clear out font caches used by the system (it's possible there's some corruption in these cache files that are causing Safari/Firefox to crash).

  • Internal HD disappeared

    I have the Xserve with the server HD and the extra two internal hard drives. One of the hard drives has disappeared. Disk Utility can see it, but the icon ofd ther disk is like an unknown icon. Yet if I verify or repair the disk Disk Utility says the disk is fine and needs no repairs. If I unmount the disk it is shown greyed out as a disk icon, if I mount it back again the icon turns into a white unidentified icon. Disk Utility recognises it is Max OsX Extended (journaled) just as the other drive. It recognises the capacity (931G) but no space available ot used, no folder counts and no other information.
    Incidentally, in work group manager it shows up, with the correct usage information.
    Any suggestions?
    antonio

    Repartitioning may be a good next step. If you can access all the files, copy them to two different drives. (So you have 2 copies, for redundancy.) (And verify that the data is valid, by opening a few files.)
    Once you have those copies, repartition the drive.
    There may be other ways to resolve your issue, but if you can access the data and make the copies, this way may be the quickest.
    And then from that point on, make sure you're making daily backups of that drive so you don't run into this trouble again.
    A general rule is that if you only have one copy of data, it is only temporary storage. (ie until the medium that holds it is gone.)

  • API5317: Error occured while writing to archive file

    We have been making daily archives for weeks and then one morning started getting this error:
    API5317: Error occured while writing to archive file f:\OWB\Archives\Daily\backups\Friday\projects\erm_phase1\project.mdl
    We have checked space on the disc, and running the archive from different PCs. Is possible that there is a limit on the archive file? The archive file is in the order of 21M. I am worried about the upgrade to the new version if we cannot make archives. Any suggestions?

    Marlene,
    Which OWB version are you using and what is the database version?
    Regards:
    Igor

  • How do you market your database backup services?

    All database-driven sites need to be backed up at least weekly if not daily. How do you market this service to your customers? I personally prefer to back up daily because if the client screws up something they will naturally expect it to be easily fixed.
    Do you include this as an option in the hosting plan? How do you price it? As an ongoing subscription or a single payment? Personally I don't want to go through the trouble of scheduling cron jobs or configuring a backup extension without getting paid for it...

    What, you're prepared to back up a sites database on a daily basis for $100 dollars a year? Is it worth it. I agree though a database should be backed up regularly but I don't know whose responsibility that should be. If the client is prepared to pay an agreed fee for it then I guess it's ok but surely more than $100 a year. I would set the fee high to deter them from making me responsible. Just give them access to the control panel and then it becomes their worry and not yours.
    Good hosts will be making daily back-ups anyway so one would hope that if one of their servers fails the information is backed up on another server preferably in another building in case of fire damage.

  • Updating large number of Topics

    Hello All,
    I'm looking for some advice from the community regarding something my business users are looking at doing.  They have an upcoming project, this upcoming project requires updating a large amount of procedures within a RoboHelp project, and during a project cutover weekend, these large number of changes will go live.
    So up until the cutover weekend as users are updating the procedures, none of these changes can be made available until the cutover weekend; i.e. these changes must remain hidden.  Along with these users making changes for this cutover weekend, users will be making daily changes and publishing these changes.
    What's the best way to be working on these bulk changes, and come cutover weekend have these changes appear.  Are there options to have these marked in draft, as the project is being generated, these changes are not be incorporated into the generated project.  Also, for any of the updated topics, the previous version needs to be archived, and available under a separate archived section within the same project.  Also, any links to the topic need to be maintained; i.e. if a topic is updated and replaced with a newer version, all links to the existing topic need to point to the new topic.
    Just wondering if the community had some advice on how best to accomplish this.
    Thanks in advance for the assistance!
    Dave

    Hi Dave. You have the following options:
    Publish the help to a new separate location. Then at the appointed time change the link to the help file to point to it. This has the advantage that you have the archive and of course hiding the information from your users until the appointed time. You don't say how the help is accessed, but the disadvantage of this approach is that all links (i.e. any inside an application) would have to be changed.
    Do not publish the output at all until the appointed time. You'd have to manually take a copy of the existing help for your archive. You could use the command line to generate the output at a specific time if need be.
    My preferred option is solution 1.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • So many files

    Over the past several days I have made changes to my web site using iWeb -- and will soon be making daily changes to it. Every time I make a change and republish it to a non-.mac server, iWeb makes a brand new file and index. Right now I have five files with the same documents. Obviously I have to make sure I am uploading the most current file. Is this really the way that iWeb works -- every republish is a new file? If I make changes daily for 30 days, I will have 30 files? You have got to be kidding!!
    Can I delete the old files, only keeping the most current index and web files? Please tell me I am doing something terribly wrong.

    I think it's because Apple's taken a big step and has abstracted the graphic creation and layout from the actual html files (most other tools are basically working in the html space, reading and writing the actual html files as they go). Because of this, the entire site is only in iWeb's "imagination" until you Publish. If you're publishing to iWeb, the way the server and application communication works, it knows which files need to actually be written. When you're writing to a folder (for a version one app) it's far easier to just write everything out and let the user deal with problems. As it becomes more mature and the underlying XML more robust, it may be able to handle things in a more dynamic way, cross your fingers!

  • Best way to migrate from old MBP to new iMac

    Hi,
    I'm currently working on an old MBP (2009, 17" unibody, to be exact) running Lion.
    Long story short, I decided to switch to a new iMac because it's slowly dying.
    I'm currently making daily clones of my computer (using SuperDuper) but I just realized that the new computer will be running Mountain Lion.
    It would seem counter-intuitive to restore my whole clone on the new computer as the OS is more recent on the new computer.
    Does anyone know the best way to painlessly transfer all my files (or, preferably, my whole current working setup) to the new iMac?
    The 2 ways I tought about were to upgrade my MBP to ML (though it'll cost me for ML even though I'll have it pre-installed on the new computer). The other would be to transfer my documents only and take the opportunity to do a spring cleaning in the process.
    I'd really like to avoid the last idea since this is my working computer and I'd like to setup the new one as quickly as possible.
    Any other suggestion is more than welcome!
    Gab

    Thanks for the guide. This part in particular seems really helpful:
    "You cannot transfer "backwards" from a newer "major" version of OSX to an earlier one (such as Mountain Lion 10.8.x to Lion 10.7.x).  However, you can transfer "backwards" from a newer "minor" version to an earlier one (such as 10.8.2 to 10.8.1), but before using any Apple apps, you should upgrade to at least the same version as the original, as the older versions of the apps may not work properly with newer versions of data."
    That being said, do you think it would actually apply for transferring a clone running on 10.7.5 (Lion) to the new iMac running 10.8 (Mountain Lion)? Or should I rely on the second paragraph that seems to indicate I'd be better off updating my clone (buying Mountain Lion on the macbook pro) then use the Setup Assistant to transfer my older settings.
    I don't think there's only one good way to to do this. Which would you recommend?

  • New Dual-Link Adapter on Gateway 30" Monitor, Thinks DVI!

    I have the new dual-link cable attached between my macbook pro and a Gateway 30" Display. For some reason my display is only detected as having a regular dvi cable attached and won't support a resolution higher than 1920X1200. The monitor itself is capable of 2580X1600 and works on a Windows pc this way.
    Do I have a defective cable or is there something I'm doing wrong?

    Not that it matters, I suppose... But I'd like to know who it is that is diverging from the Dual-Link DVI specification. If the panel works with any brand and model of 'PC' graphics card that supports Dual-Link but does not work with Apple's Dual-Link DVI port, who is really the culprit? That's assuming it's a hardware issue.
    If it's a software/driver issue, then I see no reason that this wouldn't be fixed by Apple as other third party hardware support issues are fixed by them all the time. Some might say that Apple ensuring more sales of their own displays is the reason, and they may be right, but I find that a disservice to the end user.
    I'm staying steady on with the monitor as on January 9th the real reason for it's purchase will arrive: A Penryn-based PC with 3 Nvidia 1GB GTX 280's running in 3-way SLI. This year I switched to Mac after 20 years of Windows. However, after 20 years of being a hardcore PC gamer, I accepted that my changeover would come with the price of having to maintain two systems: One that can play some games, and one that can play all games, and play them at the top of their performance potential. It will be my first Vista machine, and I enjoy the humor in the fact that it will never be used for anything other than playing games. (Anyone who understands what '20 years of hardcore PC gaming' means will know not to bother uttering the word, 'console'.)
    I'm going to keep Googling around to see if I can find any evidence of someone running a previous gen MBP with this monitor. If it's a bust, I'll cross that bridge when I come to it. I may still switch back to a previous gen as I have a couple other issues with the new one, but either way, I'm still super happy that I've made the switch to OS X and I can't imagine ever going back.
    Though I'll be making daily visits for things like this:
    http://img299.imageshack.us/img299/3672/00012hm8.jpg
    http://img254.imageshack.us/img254/618/00013ys5.jpg
    http://img258.imageshack.us/img258/5006/29378126jl1.jpg
    I can't get over how much those last two images look like where I live:
    http://picasaweb.google.com/billymogg/Saba2007# (Not my photos, but a good collection of shots from the 5-square mile island I live on. Not 5 miles square, mind you.

  • Server Files Problem

    The company has a file on the server to keep track of all the crates in the warehouse, the warehouse manager updates this file daily. He is the only person at the company with write access to the file (only he and I know the password actually). Something happened today that caused this file to not acknowledge the password. We were able to open the file through read-only and then save from read-only status. However I would like some input as to how to possibly fix this if it occurs again in the future.
    Thanks,
    Ted

    Without knowing exactly what form of password protection has been applied to the file, no one can advise you how to safeguard the data against complete loss or how to recover it if, as apparently happened in this instance, the protective mechanism itself breaks.
    The way to avoid this in the future is to back the file up in at least one place where it does not have to be password protected or encrypted because it's under a physical lock and key. This can be as simple as making daily, unprotected backups to CD or DVD and keeping them locked away in a safe place for as long as they remain useful. Or. of course, it can be much more complicated.

  • A web site that I use daily has disappeard from my "Most Visited" list. In spite of my continued use of the site plus deletion of other sites that I seldom use, thus making room on the list for the site I want to be listed there, it doesn't.

    A bookmarked web site for weather that I use daily - often more than once a day - has disappeared from my Most Visited list. In spite of my continued use of the site for a week now, plus deleting other sites that I seldom use that have started showing up on the Most Visited list, thus making room on the list for the weather site, it still doesn't reappear there. I have to open Bookmarks to access the weather site. So the site is still there, but not on the Most Visited list. I tried removing and re-entering the site in Bookmarks, but that didn't solve the Most Visited list problem. Thanks for your help.

    Your browser has been hijacked. You can test it by going to any search site besides scroogle and looking up antivirus, malware removal, or any other term like that. It will show you the results but you wont be able to go to any of those pages. In my opinion this is the worst kind of virus because it is so hard to get rid of. You'll remove it and it will self replicate and you'll have it again. Scroogle works because it acts as a proxy between you and the search site google. Follow that guys directions who replied before me. When that doesn't work try to get a copy of Stopzilla antivirus. I had my browser hijacked once and that got rid of it. If that doesnt work, download the Comodo web browser. They give away a month of free Geekbuddy assistance with their browser. Use it. Chances are you will have to contact an IT proffesional of some sort anyway. But you'll never feel really clean again and you'll become paranoid about using the web and you'll get every popup blocker and java script stopper there is. But that still won't be enough and you'll dump windows altogether becuase there just are'nt that many viruses that work on Linux.... oh wait.. that was me...

  • Making a method run daily.

    Quick question. What syntax do you use to make a method run just once daily? Thanks

    Im not sure this is how i ment to do it, as i have not been taught anything like this. Can i show you my code as this is getting me really frustrated. 0.00026116 is the amount we are given as a credit charge.
    public class AccountBetter extends Account
    boolean a;
    double charge;
    double newbal;
    public boolean in_credit(){
    if (getBalance()>0.00)
    a = true;
    else
    {a = false;
    return a; }
    public void credit_charge()
    {if (getBalance()<0.00)
    {charge = getBalance() * -0.00026116;
    if (withdraw(charge)>getMinBalance()){
    setMinBalance(getMinBalance()-charge);
    withdraw(charge);
    public void transfer (AccountBetter from, double amount)
    from.withdraw(amount);
    deposit(amount);
    }And here is the output from the compiler that tests our code, you can see the bit it is failing me on.
    Account m = new AccountBetter()
    m.deposit(100.00);
    m.setMinBalance( -100.00 )
    Test: m.in_credit() -> OK : Balance: 100.0
    m.withdraw(110.00);
    Test: m.in_credit() -> OK : Balance: -10.0
    Account other = new AccountBetter()
    other.deposit(100.00);
    Test: m.transfer(other, 50.00) -> OK : Balance: 40.0
    m.withdraw(50.00);
    Test: m.credit_charge() -> Fail: Balance: -10.0052232 should be -10.0026116
    m = new AccountBetter()
    m.setMinBalance( -100.00 )
    m.withdraw(100.00);
    Test: m.credit_charge() -> OK : Balance: -100.026116
    -> OK : MinBalance: -100.026116
    --------------------------------------------------------------------------

  • Why is it so difficult to CANCEL a subscription to AOLs cyber newspaper, "THE DAILY".  It appears to have been made very possible as a scam, so once you give them the automatic, weekly deduction to your credit card or bank account, it's non cancelable!

    BEWARE:  if you subscribe to AOL'S cyber newspaper (for 99¢ per week),you will have to give them authorization to charge your account weekly vain iTunes/apple account or credit card or bank account.  Once you do that you have a better chance having a long phone chat with Oboma about all the people now on welfare, than getting someone to at AOL or APPLE to cancel your subscription.  You will get routed all around and put on hold and finally referred to a forum where this has been REPEATEDLY asking ...and, per APPLE, answered.  In fact, when you follow the APPLE given link (a live person at APPLE sends you the link by email but can not tell you what to do on the phone) ... And you go to the link, you will find ...as I did and others commented they did too...that the link suggestions do not work to allow younto cancel The Daily!   At this point younwill have over an hour, perhaps 2 (as in my case) invested and STILL NOT HAVE IT CANCELLED.
    What incompetence by AOL and APPLE!   Or wait; do you really think this is made so complex, not by incompetence, but by design?
    You mean you think AOL ...once the got your account debit authorization working, the want to make it nearly impossible for you to stop them from continuing to "milk the cow"?   They do have a dubious, to put it politely, record onmcustomer care (reason theynlost literally millions of paying "AOL Members" starting about mid 1990's ...and then making AOL free before ALL their "members left".)
    Ok, so it is not hard to see AOL doing something like this.  I admit.  However, with ITunes participating in the billing for "the Daily. Onto your Aplle Account credit card or bank account, do you think the generally ethically run APPLE would participate in the AOL scam too?  Why can't or doesn't,t APPLEgive you a straight answer or take care of stopping the itunesnbilling for "The Daily"?  Thismismbad enoughmthat a forum has started on the question and APPLE refers youmto that NOT VERY HELPFUL, short, old forum discussion.
    Is there a conspiracy here ... A scam?   Or, is there some logical and reasonable explanation?   Absent a such a good explanation, this is class action lawsuit material ...to recover all the amounts deducted from customers who wanted to cancel but did not have the time and endurance to figure out how to cancel.

    Yoor post is very confusing. AOL's iPad magazine is called "Editions" and it's free. "The Daily" is put out by TheDailyHolding and is owned by Rupert Murdoch. You've already posted in another thread where the solution was given. Other people seem to have manged to get unsubscribed.
    Best of luck.

Maybe you are looking for

  • Error while configure new plant

    Dear Friends,         I have  configured new plant - 8888 in company - 1000, and while creating a sale order for that plant,  i am getting the below mentioned error msg, guide me to solve this.... " No add. company data maint. for 1000 8888 - please

  • My apps won't update! Someone please help:(:(:(

    I got my iPhone 4S at the end of July so it is fairly new. I have updated a couple of apps before and it was fine, but within the past couple of weeks my apps are having trouble updating, whenever I click 'Update All' it asks me to enter my Apple ID

  • Time machine reporting impossible needs

    On November 14, Time Machine made its last successful backup. Since then, it reports that there isn't enough space to back up onto, any more. It tells me that it needs over 5 TB of space in the alert window, but on close inspection of the preference

  • Diffe b/w periodic nad milestone billing? with examples

    diffe b/w periodic nad milestone billing? with exaamples

  • Can I safely delete old libraries?

    I notice that I have a LOT of old Libraries, e.g. ITUNES Library 2005-9-12, etc. The older ones run from 3,000k+ to the newest at about 8,700k. Are these just old backups? Can I get rid of the earlier ones to free up disk space (I assume I'd keep the