AppMarket-10.22.5.510 by Conduit Ltd wants me to download as an add-on. I don't want it but it keeps popping up when I open my computer.

When I start my computer AppMarket asks me to install this add-on. It reads:
c:\Users\Kittie\AppData\Roaming\Mozilla\Firefox\Pr....
AppMarket-10.22.5.510 by ConduitLtd
I do not want this and I do not want it to pop up every time I turn my computer on.

hello AngelaEgen, you have various malicious addons present. please try these steps:
# [[Reset Firefox – easily fix most problems|reset firefox]] (this wil keep your bookmarks and passwords)
# afterwards go to firefox > addons > extensions and in case there are still extensions listed there, disable them.
# finally run a full scan of your system with different security tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] and [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner] to make sure that adware isn't present in other places of your system as well.
[[Troubleshoot Firefox issues caused by malware]]

Similar Messages

  • A6430f Pavilion, Turn into Boat Anchor, help

    First off here are my system spec's: It's an HP Pavilion a6430f
    OS Name Microsoft® Windows Vista™ Home Premium
    Version 6.0.6001 Service Pack 1 Build 6001
    Other OS Description Not Available
    OS Manufacturer Microsoft Corporation
    System Name LINNEA-PC
    System Manufacturer HP-Pavilion
    System Model KJ378AAR-ABA a6430f
    System Type X86-based PC
    Processor AMD Phenom(tm) 8400 Triple-Core Processor, 2100 Mhz, 3 Core(s), 3 Logical Processor(s)
    BIOS Version/Date Phoenix Technologies, LTD 5.14, 6/20/2008
    SMBIOS Version 2.4
    Windows Directory C:\Windows
    System Directory C:\Windows\system32
    Boot Device \Device\HarddiskVolume1
    Locale United States
    Hardware Abstraction Layer Version = "6.0.6001.18000"
    User Name Linnea-PC\Linnea
    Time Zone Pacific Daylight Time
    Installed Physical Memory (RAM) 3.00 GB
    Total Physical Memory 2.87 GB
    Available Physical Memory 936 MB
    Total Virtual Memory 5.73 GB
    Available Virtual Memory 3.31 GB
    Page File Space 2.93 GB
    Page File C:\pagefile.sys
    I bought this system refurbished and it blew up after a month. Sent it in and since it's back I have a recovery disk that only has 8mb left on it and I get all the error messages. It also will freeze up or move very very slow. Then sometimes I get the blue screen of death. I have done everything, run all the systems diagnostic test to see if there are any hard drive problems or memory leeks, error, etc. Can't find a thing. I did how ever go to various forums and found out that people seem to be buying new hard drives for this model and then one guy said that he bought this computer system and thought that the hard drive wasn't compatible with Vista and so he switched everything to XP and now it runs fine.
    And here's another one I found somewhat interesting:
    Don't buy this computer if you run Vista, April 25, 2008
    By Henry T. Bluing
    Purchased this computer about a month ago, started it up started loading software and files from my old computer and the fun started. The computer would randomly freeze up for no apparent reason, the mouse and keyboard were unresponsive. Went through all the normal trouble shooting with no luck and finally opted to return it to the store I purchased it from thinking it was faulty. The store gave me a brand new computer and for about the first 24 hours it seemed to be working fine - started the software load, and file transfer and it started freezing up just like the last computer. Removed everything I installed and any registry entries with no change - the computer froze randomly. After about a week of messing around with the thing and trying to troubleshoot with help from HP I returned this computer to the store too and picked up another computer that was totally different than this one. My new computer is a quad core Pentium and it works just fine. I think this may be a situation where the hardware isn't compatible with Windows Vista as advertised. Maybe it works fine with XP but if you're running Vista or intend to in the future go with another box.
    I run a business and can not run it due to this computer. I have lost 8 months worth of income and I have spent more hours working on this thing then one would even imagine is possible. So in the process here is what I am prepared to do I'm not sure what with:
    Paragon 9.0 Professional backup & Easues Partition Master. I thought that if I was able to take an exact image of the drive that has the recovery information on it and then copied it to the drive that was free that it would solve the problem. So earlier today I did that and now the other drive shows the exact same problem, it's totally full too?? So will doing partitions help that? I have no clue but I got the software...
    I have backed up the computer and I guess I just am not sure where to turn. Is this shot? Am I wasting more time? Should I do a complete systems recovery and if I do how do I make sure that I have everything from the computer safe as some of my programs were downloads that I registered and don't have all the keys or the disc's to reload... Should I go to Windows XP and if so how... I also have had a consultant come in to install Microsoft SQL Server for a Contact Management Data Base that I run. I don't know that I can re-install that on my own and do not want to loose it. I do have two external backup drives to use as well.
    Even little things like just typing this in here is weird. I can type and type and it shows nothing and then all of the sudden it will fill in. Same thing if I left click to do a cut or paste, it reacts very very slowly.

    Hi,
    Get your critical data backed to external storage.  Do you have a set of the HP recovery disks?
    Is your system running in RAID mode? If yes, RAID 1 or RAID 0
    How many physical hard drives are in your PC? 
    When you open My Computer, how many hard drives do you see and what is the size?
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Control M at the end of the line

    This is the peace of my code in parsing the file line by line.
    BufferedReader br = new BufferedReader(new FileReader(file));
    char[] chars = new char[500];
    String temp = new String(chars);
    if ((temp.trim()).length() == 0) {
         throw new Exception("File is empty");
    }It started throwing the exception. But when I opened the file it wasn't empty it did have data in it. When I opened the file in binary I can see a CONTROL M at the end of each line. So why can't I read it?
    thanks,

    Client will upload their files on the Unix box,
    then I will parse them and ftp them in FB with a record size of 490.
    In this parsing I have to eliminate LF only, CR/LF etc and
    also allow the with vo CR or LF. Finally error out if it has data which
    is more/less bytes than 490.
    This is the whole process, here is only the first few lines of code and
    this is where it blows up.
    BufferedReader br = new BufferedReader(new FileReader(file));
    char[] chars = new char[500];
    br.mark(510);
    br.read(chars);
    br.reset();
    String temp = new String(chars);
    if ((temp.trim()).length() == 0) {
         throw new Exception("File is empty");
    }When I opened all the client file which did blow,
    I observerd that control M is in all of those.

  • X-FI mode switching broke after win upd

    Windows update came up with an auto update for the Windows Media Player, and the mode switching broke on the soundcard. Musicmatch broke as well, and wouldn't get past the start screen. After uninstalling musicmatch, and uninstalling the sound card via the cd, and then updating the x-fi over the web, I still get the same message:
    The audio device is not supported by the apllication. The application will exit. Or I get a chooser asking me to select the right audio device, anbd the only entry is Follow Windows Default.
    Any help with this? Is anyone else having this problem?
    TIA
    Stretch

    OIk, checked a feew things. Firstly, it had a shared IRQ after I installed the intel chipset stuff. I went ahead and moved the card to another slot, it reassigned as IRQ 4 in the bios, and 22 in the OS. Still plays system sounds, and WMP, but no creative or Musicmatch.
    Creative Diagnostics says this about it
    Why is it showing hardware disabled?
    Device name: - Creative X-Fi Audio Processor (WDM)
    Hardware location: - PCI bus 2, device , function 0
    Status: - Device driver is loaded. - Device is configured. - Device can be rebalanced.
    Problem: - Device has no problem.
    Device capabilities:- Hardware disabled
    Hardware ID: - PCI\VEN_02&DEV_0005&SUBSYS_00202&REV_00
    Compatible ID: - PCI\VEN_02&DEV_0005&REV_00
    System resources
    IO ports used: - DCE0 - DCFF
    IRQ channels used: - 22
    Memory addresses used: - FBC00000 - FBDFFFFF - F4000000 - F7FFFFFF
    Registry properties - Service name(SZ) : ctaud2k - Device class(SZ) : MEDIA - Device class GUID(SZ) : {4D36E96C-E325-CE-BFC-08002BE038} - Driver key(SZ) : {4D36E96C-E325-CE-BFC-08002BE038}\008 - Configuration flags(DWORD) : 0x009C000 - Manufacturer(SZ) : Creative Technology, Ltd. - (SZ) : Creative SB X-Fi - Device PDO name(SZ) : \Device\NTPNP_PCI000 - UI number(DWORD) : 0x009C0002 - Bus type GUID(BINARY) : B0 DF EB C8 0 B5 D0 80 E5 00 - Legacy bus type(DWORD) : 0x009C0005 - Bus number(DWORD) : 0x009C0002 - Enumerator(SZ) : PCI - Device address(DWORD) : 0x009C0400
    I am sure it is a pretty simple problem. The app that keeps popping up when the error msg is generated is CTaudsel. It has it's own directory under creative, and when run directly, shows only :Follow Windows Default.
    When the system was first reinstalled, the selector had all choices, including modem, and SB XCCO listed. I have no idea why they disappeared, but I think it was when the Intel Bus installed on the same IRQ, after upgrading the chipset drivers and installing the USB hub. It must have overwritten a file somewhere. Where? I don't know. IF I do happen to find a solution to this I will make sure and post it, as I know there are a couple of other people here having this problem, and there hasn't been an answer posted for it yet that I am aware of. Any pointers in any direction may help.
    One more thing. I know both times the problem happened, I noticed it after playing videos from the browser, using the embedded WMP as a player. May be why there is a problem in the first place? Dunno.
    TIA
    Stretch

  • Clean your Mac, Mackeeper

    can someone tell me why this keeps popping up when surfing the net?? and how do i get rid of it if its a nasty....  thanks in advance...

    You may have installed the "VSearch" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    This trojan is distributed on illegal websites that traffic in pirated content. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that this Internet criminal has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • IPhoto keeps loading and crashing while opening

    I'm using iPhoto @ Mac Book pro Retina mid 2012, OX 10.8.4 (12E55). But it keeps loading and crashing while opening it. Usually crashed 4~6 times before opened it successfully, and sometimes also suddenly crashed after opened in few mins.
    Normally, I need to direct click on "photo library" that would be last longer.
    Attached last message of crash for ref.
    Hope someone can help to solve it or find out what caused it, thanks.
    //quoted
    Process:         iPhoto [6004]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.3 (9.4.3)
    Build Info:      iPhotoProject-720091000000000~1
    App Item ID:     408981381
    App External ID: 15017489
    Code Type:       X86 (Native)
    Parent Process:  launchd [149]
    User ID:         502
    Date/Time:       2013-06-23 00:16:53.994 +0800
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          13870 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  555 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      0220CA4D-8949-B4B8-D311-FAF00E49ED1C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bf787ff8
    VM Regions Near 0xbf787ff8:
        Stack                  00000000b18a7000-00000000b1928000 [  516K] rw-/rwx SM=COW 
    --> Stack                  00000000bbf88000-00000000bf788000 [ 56.0M] ---/rwx SM=NUL 
        Stack                  00000000bf788000-00000000bff88000 [ 8192K] rw-/rwx SM=COW 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x97f4a49a cerror_nocancel + 27
    1   libsystem_c.dylib                       0x9578316f opendir$INODE64$UNIX2003 + 25
    2   com.apple.CoreServices.CarbonCore          0x95e17c1e FSMount::getIndexedDirectoryItem(unsigned long, unsigned long, unsigned long, char*, unsigned char*) + 278
    3   com.apple.CoreServices.CarbonCore          0x95ddc744 PBGetCatalogInfoBulkSync + 952
    4   com.apple.CoreServices.CarbonCore          0x95ddc36f FSGetCatalogInfoBulk + 59
    5   com.apple.Foundation                    0x902c1142 _NSDirectoryContentsFromCarbonError + 407
    6   com.apple.Foundation                    0x902bee37 -[NSFileManager directoryContentsAtPath:matchingExtension:options:keepExtension:error:] + 355
    7   com.apple.Foundation                    0x902becc3 -[NSFileManager contentsOfDirectoryAtPath:error:] + 71
    8   com.apple.AppKit                        0x94515875 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 276
    9   com.apple.AppKit                        0x947549da -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 171
    10  com.apple.iPhoto                        0x0010e395 0x79000 + 611221
    11  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    12  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    13  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    14  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    15  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    16  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    17  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    18  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    19  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    20  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    21  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    22  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    23  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    24  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    25  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    26  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    27  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    28  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    29  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    30  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    31  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    32  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    33  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    34  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    35  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    36  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    37  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    38  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    39  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    40  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    41  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    42  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    43  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    44  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    45  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    46  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    47  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    48  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    49  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    50  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    51  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    52  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    53  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    54  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    55  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    56  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    57  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    58  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    59  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    60  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    61  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    62  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    63  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    64  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    65  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    66  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    67  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    68  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    69  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    70  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    71  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    72  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    73  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    74  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    75  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    76  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    77  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    78  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    79  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    80  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    81  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    82  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    83  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    84  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    85  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    86  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    87  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    88  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    89  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    90  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    91  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    92  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    93  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    94  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    95  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    96  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    97  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    98  com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    99  com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    100 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    101 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    102 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    103 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    104 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    105 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    106 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    107 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    108 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    109 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    110 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    111 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    112 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    113 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    114 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    115 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    116 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    117 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    118 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    119 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    120 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    121 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    122 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    123 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    124 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    125 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    126 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    127 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    128 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    129 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    130 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    131 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    132 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    133 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    134 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    135 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    136 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    137 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    138 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    139 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    140 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    141 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    142 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    143 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    144 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    145 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    146 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    147 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    148 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    149 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    150 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    151 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    152 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    153 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    154 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    155 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    156 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    157 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    158 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    159 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    160 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    161 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    162 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    163 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    164 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    165 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    166 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    167 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    168 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    169 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    170 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    171 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    172 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    173 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    174 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    175 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    176 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    177 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    178 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    179 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    180 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    181 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    182 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    183 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    184 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    185 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    186 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    187 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    188 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    189 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    190 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    191 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    192 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    193 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    194 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    195 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    196 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    197 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    198 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    199 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    200 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    201 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    202 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    203 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    204 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    205 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    206 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    207 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    208 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    209 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    210 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    211 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    212 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    213 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    214 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    215 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    216 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    217 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    218 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    219 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    220 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    221 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    222 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    223 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    224 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    225 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    226 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    227 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    228 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    229 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    230 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    231 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    232 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    233 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    234 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    235 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    236 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    237 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    238 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    239 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    240 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    241 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    242 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    243 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    244 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    245 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    246 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    247 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    248 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    249 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    250 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    251 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    252 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    253 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    254 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    255 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    256 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    257 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    258 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    259 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    260 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    261 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    262 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    263 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    264 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    265 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    266 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    267 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    268 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    269 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    270 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    271 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    272 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    273 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    274 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    275 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    276 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    277 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    278 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    279 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    280 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    281 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    282 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    283 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    284 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    285 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    286 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    287 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    288 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    289 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    290 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    291 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    292 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    293 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    294 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    295 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    296 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    297 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    298 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    299 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    300 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    301 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    302 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    303 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    304 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    305 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    306 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    307 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    308 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    309 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    310 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    311 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    312 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    313 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    314 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    315 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    316 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    317 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    318 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    319 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    320 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    321 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    322 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    323 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    324 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    325 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    326 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    327 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    328 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    329 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    330 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    331 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    332 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    333 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    334 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    335 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    336 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    337 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    338 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    339 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    340 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    341 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    342 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    343 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    344 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    345 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    346 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    347 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    348 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    349 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    350 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    351 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    352 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    353 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    354 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    355 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    356 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    357 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    358 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    359 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    360 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    361 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    362 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    363 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    364 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    365 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    366 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    367 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    368 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    369 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    370 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    371 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    372 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    373 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    374 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    375 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    376 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    377 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    378 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    379 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    380 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    381 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    382 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    383 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    384 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    385 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    386 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    387 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    388 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    389 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    390 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    391 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    392 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    393 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    394 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    395 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    396 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    397 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    398 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    399 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    400 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    401 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    402 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    403 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    404 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    405 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    406 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    407 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    408 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    409 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    410 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    411 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    412 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    413 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    414 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    415 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    416 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    417 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    418 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    419 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    420 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    421 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    422 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    423 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    424 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    425 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    426 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    427 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    428 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    429 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    430 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    431 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    432 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    433 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    434 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    435 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    436 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    437 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    438 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    439 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    440 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    441 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    442 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    443 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    444 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    445 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    446 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    447 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    448 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    449 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    450 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    451 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    452 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    453 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    454 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    455 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    456 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    457 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    458 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    459 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    460 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    461 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    462 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    463 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    464 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    465 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    466 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    467 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    468 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    469 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    470 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    471 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    472 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    473 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    474 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    475 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    476 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    477 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    478 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    479 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    480 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    481 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    482 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    483 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    484 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    485 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    486 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    487 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    488 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    489 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    490 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    491 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    492 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    493 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    494 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    495 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    496 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    497 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    498 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    499 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    500 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    501 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    502 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    503 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    504 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    505 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    506 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    507 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    508 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    509 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    510 com.apple.iPhoto                        0x0010e419 0x79000 + 611353
    511 com.apple.iPhoto                        0x0010e4d8 0x79000 + 611544
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x97f499ae kevent + 10
    1   libdispatch.dylib                       0x94fd6c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x94fd67a9 _dispatch_mgr_thread + 53
    Thread 2:: Dispatch queue: NSWorkspace Volume Observer Queue
    0   libsystem_kernel.dylib                  0x97f4680e semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x94fd7445 _dispatch_semaphore_wait_slow + 305
    2   libdispatch.dylib                       0x94fd71f5 dispatch_semaphore_wait + 36
    3   com.apple.AppKit                        0x94cd368b volumeObserverCallback + 1220
    4   com.apple.CoreServices.CarbonCore          0x95df3f08 _FSVolumeObserverCallback + 176
    5   com.apple.CoreServices.CarbonCore          0x95df3e36 ___FSAddVolumeObserverOnQueue_block_invoke_0227 + 260
    6   libdispatch.dylib                       0x94fd3c82 _dispatch_client_callout + 46
    7   libdispatch.dylib                       0x94fd6007 _dispatch_source_invoke + 699
    8   libdispatch.dylib                       0x94fd500a _dispatch_queue_invoke + 66
    9   libdispatch.dylib                       0x94fd512c _dispatch_queue_drain + 154
    10  libdispatch.dylib                       0x94fd4ffa _dispatch_queue_invoke + 50
    11  libdispatch.dylib                       0x94fd4ecb _dispatch_worker_thread2 + 230
    12  libsystem_c.dylib                       0x95733e72 _pthread_wqthread + 441
    13  libsystem_c.dylib                       0x9571bd2a start_wqthread + 30
    Thread 3:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x97f4891a __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x9573719b pthread_mutex_lock + 595
    2   com.apple.Foundation                    0x9027b8db -[NSLock lock] + 169
    3   com.apple.iPhoto                        0x002ad7dd 0x79000 + 2312157
    4   com.apple.CoreFoundation                0x919097bd __invoking___ + 29
    5   com.apple.CoreFoundation                0x919096f7 -[NSInvocation invoke] + 279
    6   com.apple.Foundation                    0x902c39ad -[NSInvocationOperation main] + 81
    7   com.apple.Foundation                    0x902bb259 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x902baf64 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x902c3039 __block_global_6 + 135
    10  libdispatch.dylib                       0x94fd7f8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x94fd3c82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x94fd4f02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x95733e72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x9571bd2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x97f490ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x957340ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x95733e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9571bd2a start_wqthread + 30
    Thread 5:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x97f488e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95736280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x957bc095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x9025d0c0 -[__NSOperationInternal waitUntilFinished] + 134
    4   com.apple.Foundation                    0x9025d024 -[NSOperation waitUntilFinished] + 67
    5   com.apple.iPhoto                        0x002ae2a7 0x79000 + 2314919
    6   com.apple.iPhoto                        0x00a6a44b 0x79000 + 10425419
    7   com.apple.Foundation                    0x902e7f27 -[NSBlockOperation main] + 188
    8   com.apple.Foundation                    0x902bb259 -[__NSOperationInternal start] + 740
    9   com.apple.Foundation                    0x902baf64 -[NSOperation start] + 67
    10  com.apple.Foundation                    0x902c3039 __block_global_6 + 135
    11  libdispatch.dylib                       0x94fd7f8f _dispatch_call_block_and_release + 15
    12  libdispatch.dylib                       0x94fd3c82 _dispatch_client_callout + 46
    13  libdispatch.dylib                       0x94fd4f02 _dispatch_worker_thread2 + 285
    14  libsystem_c.dylib                       0x95733e72 _pthread_wqthread + 441
    15  libsystem_c.dylib                       0x9571bd2a start_wqthread + 30
    Thread 6:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x97f48c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x957bba55 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x957bb91e usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x9475dc2d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x902c2448 -[NSThread main] + 45
    5   com.apple.Foundation                    0x902c23cb __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x957315b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x9571bd4e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x97f488e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x957362e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x95736572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x902f0636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x902f045d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x902f5990 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02039a42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02038b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x902c2448 -[NSThread main] + 45
    9   com.apple.Foundation                    0x902c23cb __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x957315b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x9571bd4e thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x97f488e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x957362e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x95736572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x902f0636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                

    As a test  launch iPhoto with the Option key held down and create a new, test library.  Import some photos and test to see if the same problem persists. Does it?
    If it doesn't then your current library is damaged and needs to be repaired as follows: apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with
    Option #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Since my last firefox update, I have been unable to type an email - the text box does not appear when I press 'reply' , or press 'compose'. The email provider is '123-reg.co.uk. I have been using both firefox and the provider ['webfusion Ltd/webmail123] s

    Hello. Since my last firefox update, I have been unable to type an email - the box within which one would usually type does not appear when I press 'reply' to a received email, or press 'compose'. The email provider is '123-reg.co.uk. I have been using both firefox and the provider ['webfusion Ltd/webmail123] successfully for well over a year. The provider says it is a browser problem. I can still add an attachment to the email header, which successfully can be sent, but the recipient gets my standard email 'signature' with font messages and the attachment. Can anyone help? My email addresses are [email protected] [this is the one with the issue] and [email protected] in English
    == today

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • Error: "Conduit Manager quit unexpectedly" during Mac Hot Sync

    Hello!  After many years of successfully hot-syncing my Palm m500 to my various Macs, i'm suddenly getting an error message every single time my Hot Sync tries to sync the Datebook data:
    The application Conduit Manager quit unexpectedly.
    Mac OS X and other applications are not affected.
    Click Relaunch to launch the application again.
    i've already tried reattaching the USB cables and the Palm m500 into the cradle, and rebooting my Mac several times, and removing the "com.palm.xxxx.plist" files and the "Palm Desktop Info" file from my users/library/preferences folder.   and i've spent several hours cruising these forums but nothing has worked.  I've tried hot synching about 10 times in the last 12 hours but i keep getting this same error.
    i also tried slowing down my hot sync by pressing the Shift key on my Mac during the entire hot sync, but i still get this error:
    Conduit Manager:  Unexpected error #-111
    i tried to paste my full log report below but i ran into the 20k character limit for this form.  since it looks like it's "Thread 4" that is causing the crash, i've deleted other parts of the log report but can send those to you in another posting if that would help.
    thanks in advance for any help you can offer!  i love my Palm m500 as I much prefer it to Apple's iCal system and would like to fix this problem so I don't need to abandon my Palm!
    Report:
    Process:         Conduit Manager [217]
    Path:            /Applications/Palm/Conduit Manager/Contents/MacOSClassic/Conduit Manager
    Identifier:      com.palm.HotSync.ConduitManager
    Version:         3.2.1 (3.2.1)
    Code Type:       PPC (Translated)
    Parent Process:  launchd [144]
    Interval Since Last Report:          657 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  41 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2010-01-03 00:20:36.147 -0800
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  26B9A75C-009B-45C3-B160-FB5932991E00
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000160fc198
    Crashed Thread:  4
    Thread 0:
    0   translate                         0xb81529ef spin_lock_wrapper + 90931
    1   translate                         0xb8183633 CallPPCFunctionAtAddressInt + 169935
    2   translate                         0xb81861e2 CallPPCFunctionAtAddressInt + 181118
    3   translate                         0xb80dfb0b 0xb8000000 + 916235
    4   ???                               0x8138b831 0 + 2167978033
    Thread 1:
    0   ???                               0x800bc286 0 + 2148254342
    1   ???                               0x800c3a7c 0 + 2148285052
    2   translate                         0xb818b6ea CallPPCFunctionAtAddressInt + 202886
    3   ???                               0x800ed155 0 + 2148454741
    4   ???                               0x800ed012 0 + 2148454418
    Thread 2:
    0   translate                         0xb81529ef spin_lock_wrapper + 90931
    1   translate                         0xb8183633 CallPPCFunctionAtAddressInt + 169935
    2   translate                         0xb81861e2 CallPPCFunctionAtAddressInt + 181118
    3   translate                         0xb80dfb0b 0xb8000000 + 916235
    4   ???                               0x8138b831 0 + 2167978033
    Thread 3:
    0   translate                         0xb81529ef spin_lock_wrapper + 90931
    1   translate                         0xb8183633 CallPPCFunctionAtAddressInt + 169935
    2   translate                         0xb81861e2 CallPPCFunctionAtAddressInt + 181118
    3   translate                         0xb80dfb0b 0xb8000000 + 916235
    4   ???                               0x8138b831 0 + 2167978033
    Thread 4 Crashed:
    0   ???                               0x7c00867b 0 + 2080409211
    Thread 5:
    0   translate                         0xb8152c24 spin_lock_wrapper + 91496
    1   translate                         0xb816c825 CallPPCFunctionAtAddressInt + 76225
    2   translate                         0xb80bdb8b 0xb8000000 + 777099
    3   translate                         0xb80b7007 0xb8000000 + 749575
    4   translate                         0xb80d49c0 0xb8000000 + 870848
    5   translate                         0xb813d75f spin_lock_wrapper + 4259
    6   translate                         0xb8011b64 0xb8000000 + 72548
    Thread 6:
    0   translate                         0xb815289e spin_lock_wrapper + 90594
    1   translate                         0xb816e8a7 CallPPCFunctionAtAddressInt + 84547
    2   translate                         0xb80dfb0b 0xb8000000 + 916235
    3   ???                               0x819d8c92 0 + 2174586002
    Thread 4 crashed with X86 Thread State (32-bit):
      eax: 0x98c10f16  ebx: 0x00000200  ecx: 0x160fc198  edx: 0xf01804e0
      edi: 0xb81d8794  esi: 0xb81d8770  ebp: 0x80817f80  esp: 0xb019eeec
       ss: 0x0000001f  efl: 0x00010213  eip: 0x7c00867b   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x160fc198
    Thread 4: (0xb011c83c, 0xb81529ef)
    0x00163b90: No symbol
    0x94f46bb0: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore : _YieldToThread + 532
    0x94f4bfa4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore : _SetThreadState + 172
    0x94f4becc: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore : _SetThreadStateEndCritical + 136
    0x15dd37c8: /Library/Application Support/Palm HotSync/Transports/Serial/Contents/MacOS/Serial Transport : _SemWait__7LThreadFP10LSemaphorelR4QHdrRUc + 144
    0x15ddcb90: /Library/Application Support/Palm HotSync/Transports/Serial/Contents/MacOS/Serial Transport : _BlockThread__10LSemaphoreFl + 92
    0x15ddca38: /Library/Application Support/Palm HotSync/Transports/Serial/Contents/MacOS/Serial Transport : _Wait__10LSemaphoreFl + 104
    0x15dd1eb4: /Library/Application Support/Palm HotSync/Transports/Serial/Contents/MacOS/Serial Transport : _Run__Q27LThread7CleanupFv + 48
    0x15dd3df8: /Library/Application Support/Palm HotSync/Transports/Serial/Contents/MacOS/Serial Transport : _DoEntry__7LThreadFPv + 64
    0x94f4bdf4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore : _CooperativeThread + 348
    0x913bf1d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x00000000         lr: 0x91335120        ctr: 0x9132e1f0
    r00: 0xffffffe1     r01: 0xf0101ae0     r02: 0x00000013     r03: 0xf0101b8c    
    r04: 0x00000003     r05: 0x00000018     r06: 0x00000020     r07: 0x00006187    
    r08: 0x00000000     r09: 0x00000000     r10: 0x00000000     r11: 0xa020568c    
    r12: 0x9132e1f0     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x00000000     r23: 0x00000018    
    r24: 0xf0101b8c     r25: 0x00000020     r26: 0x00006187     r27: 0x00000000    
    r28: 0x00000000     r29: 0x00000003     r30: 0x00000003     r31: 0x94f469a4    
    Thread 5: Crashed (0xb019eeec, 0x7c00867b)
    0x7c367b28: No symbol
    0x7c364a58: No symbol
    0x7c364b44: No symbol
    0x7c35a818: No symbol
    0x7c34a3bc: No symbol
    0x7c347fe8: No symbol
    0x7c34813c: No symbol
    0x7c32da54: No symbol
    0x7c329168: No symbol
    0x7c327e70: No symbol
    0x7c32763c: No symbol
    0x7c32884c: No symbol
    0x7c346c48: No symbol
    0x7c346ec0: No symbol
    0x8536c290: No symbol
    0x8536cf30: No symbol
    0x8536cb6c: No symbol
    0x8536e004: No symbol
    0x85366484: No symbol
    0x85372680: No symbol
    0x853c949c: No symbol
    0x94f4bdf4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore : _CooperativeThread + 348
    0x913bf1d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x7c367a80        ctr: 0x9132f590
    r00: 0x00000008     r01: 0xf01804e0     r02: 0x15f2f000     r03: 0x00000003    
    r04: 0x1610beb8     r05: 0x00000002     r06: 0xf018051c     r07: 0x00000000    
    r08: 0x000eb2a4     r09: 0x00000000     r10: 0x00800000     r11: 0xa0882d04    
    r12: 0x9132f590     r13: 0x00000000     r14: 0x003f252c     r15: 0x00000001    
    r16: 0x001751f0     r17: 0x003f2558     r18: 0x003f2588     r19: 0x003f2518    
    r20: 0x003f24e8     r21: 0xf0181426     r22: 0x00144c00     r23: 0x00000003    
    r24: 0x00000008     r25: 0x15f32dcc     r26: 0x15f32d54     r27: 0x0000ffff    
    r28: 0x000095bf     r29: 0x15f3705c     r30: 0x15f37060     r31: 0x00893ca8    
    Post relates to: Palm m500
    Post relates to: Palm m500

    I had the same problem syncing my Palm TX with 10.5.8.  After being without my Palm for 3 weeks, I bought Snow leopard, and all was fine again.  I found out at an Apple store that 10.5.8 was full of propblems, and this was one of them.
    Fast forward: I've been using 10.6 ever since it was released, happily syncing away with my Palm ... until Friday night (2 days ago), when it stopped working, and then I discovered that Palm does not and will not support Mac OS 10.6.  So I'm urgently trying to migrate everything on Palm to my iPod Touch, exporting to 10.4 on an old iBook, since it will still sync with it, then moving the data to my iMac's 10.6, and then syncing with my iPod Touch.
    I'm working on the problem now, and have my Schedule migrated, but now need to get my ToDo, Address Book and Memos done.
    The 10.6 Address Book (v5.0.1) doesn't support the Palm's custom fields like Tiger's Address Book (4.0.6).  I can't yet find a way to export the Palm's ToDos in a format that iCal can consume, and Notes on the iPod (for my Memos, possibly) is not supported on 10.6 yet for my iPod Touch.
    1 step forward, 3 steps back, so far; but absolutely necessary, now that Palm has withdrawn from the Mac market.
     Any ideas on these 3 problem areas, from anyone, would be most welcome. 

  • Compilation problem in 510

    Product=WLS510
    Revision=(Release Level)=510
    Problem Description=
    Hi,
    So far my application is running with WebLogicServer 451. Now I want to
    update it from 451 to 510. I have make file which compiles my classes. I
    looked at the documentation and found the information to convert my
    DeploymentDescriptor.txt into *.xml files. Upto this point everything is
    fine.
    The problem started at the lever where I have THREE DeploymentDescriptor.txt
    files under single folder. I followed the documentation instructions and
    tried to compile it.
    The command I used in my make file is the following:
    java -classpath $(EJBPATH);$(BUILD_DIR) weblogic.ejb.utils.DDConverter -d
    $(BUILD_DIR)\$(XML_DIR) DeploymentDescriptor.txt DeploymentDescriptorL.txt
    DeploymentDescriptorG.txt
    When I run the above command, I am getting the following error
    Usage: java weblogic.ejb.utils.DDConverter [options] oldDDFile
    where options include:
    -d <targetDir> The target directory for the xml files.
    So I tried providing all the Descriptor files separately as follows
    java -classpath $(EJBPATH);$(BUILD_DIR) weblogic.ejb.utils.DDConverter -d
    $(BUILD_DIR)\$(XML_DIR) DeploymentDescriptorL.txt
    java -classpath $(EJBPATH);$(BUILD_DIR)
    weblogic.ejb.utils.DDConverter -d $(BUILD_DIR)\$(XML_DIR)
    DeploymentDescriptorG.txt
    This got compiled and created the ejbc.jar file.
    Now the questions and doubts I have are:
    1. why the command of .......DDConverter [options] oldDDFile oldDDFile2...
    did not work.
    2. When I looked at *.xml files it has only the final bean descriptors but
    the earlier descriptors. These *.xml are overridden.In that case how ejbc
    compiler worked and created the all the skeletons and stubs. Why it did not
    throw any errors.
    I am stuck at this point and need the help immediately.
    Thanks in advance and looking forward for some suggestions
    Sirisha

    Michael4488 wrote:
    BalusC wrote:
    Then you should be using JSTL/EL.I don't familiar with this technology, any way - Its work on one computer so in my understanding it should work on the other as well.It is not related to the actual problem. It was just a comment on your code. Using scriptlets is considered as bad practice.
    I understand that of course, but I don't use any configuration file or set any special parameters in my computer.
    What exactly does the compiler need in order to recognize the Java code in the JSP page? If i manually add the JAVA_HOME environment variable it will work?
    where should I refer it to? "..\Java\jre1.6.0_07\lib" will do?It must point to the root installation directory of the JDK (thus not the JRE!).

  • Adobe Camera Raw 6.2 and Olympus E-510 camera profile

    Hi all!
    When I open a raw file captured from my Olympus E-510 with Adobe Camera Raw 6.2 and go to Camera Calibration tab, ACR doesn't display any profile for my camera, althouth Adobe (http://www.adobe.com/products/photoshop/cameraraw.html) says it supports my model. The same happens at the Lens Correction tab, it doesn't display any profile for Olympus. If I open a raw file from other Camera (Nikon for example) everything is ok. Does anyone know how I'm going to fix this???
    Thanks for your time!

    You should see an Adobe Standard profile and perhaps an ACR x.x profile for your camera, but Adobe does not make Camera-centric profiles (landscape, portrait, camera neutral, etc) for most cameras unless they are Canon DSLRs, Nikon DSLRs, one Leica and a few Pentax cameras.
    On a Vista/Win7 system you can verify what models of cameras are supported by Adobe by looking for profiles in:
    C:\ProgramData\Adobe\CameraRaw\CameraProfiles
    The lens profiles are in:
    C:\ProgramData\Adobe\CameraRaw\LensProfiles
    There are comparable directories on Win XP.

  • ISync palm conduit in 10.5 - won't work under user imported from 10.4?

    My Palm m500 was syncing fine with my PowerBook G4 running Mac OS 10.4
    I recently got a spiffy new MacBook Pro (Penryn) with 10.5, and although the Palm does communicate and sync via Palm Desktop, it no longer syncs via iSync with iCal & Address Book. I keep getting the following in the hotsync log:
    < snip >
    OK Install
    iSync Conduit starting 3/13/08 10:38:34 PM
    iSync Conduit: received NULL message, disconnecting...
    OK iSync Conduit
    </ snip >
    ==========
    Other info:
    I imported the user info for my main user from the old 10.4 installation using Migration Assistant.
    • Deleted old Palm HotSync & Desktop files from the username:Library:Application Support, as palm preference files from username:Library:Preferences
    • Copied the old user folder to an alternate location, and removed the Palm folder from username:Documents:
    • Re-installed Palm Desktop 4.2.1 under main user (authorized as an "administrator" temporarily)
    • Sync worked (no data on Palm Desktop, but everything backed up ok), HotSync even recovers and creates a new user based on the data on the device, and even backs up all the programs.
    • Enabled Palm Os Syncing from within iSync (works fine, so long as the account being used has read/write permissions to HD:Library:Application Support:Palm HotSync:Conduits)
    • "Enable iSync for this palm device" from the iSync conduit within HotSync Manager.
    During a sync, iSync kicks in and "connects", but can't get past AddressBook syncing, and never actually sends info to the Palm device. Presumably, this is where the "NULL message" is received and syncing stops. When I specify "Erase data on device then sync" in iSync (for first syncronization), it does indeed erase address book data on the device, but never sends anything to replace it, but also does not touch the calendar data on the palm device.
    Furthermore, I tried the same procedure when logged in as another administrator account (what is normally the main administrator account on this computer), and synced first without iSync, then enabling "iSync for this Palm device". Under this other account, the syncing works. I can add events to iCal, and contacts to address book, and they are transferred sucessfully and synced with the palm device. But it still does not work when logged in as the main user (even when administrator privileges are enabled, which I normally don't want), which actually has all my iCal and Address book data (which syncs successfully through .Mac with my computer at work).
    There should be plenty of free space on the device for all my calendar & contact data (3MB).
    Given that syncing DOES work for one administrator user (which was never before set-up for this), but not for the user that was imported from 10.4 and was syncing successfully before, I have a suspicion that there's either some leftover files that I missed, or a permissions conflict within the user's home folder that I am missing. Has anyone else been able to resolve this issue, or have any suggestions based on this information?
    Much appreciated.

    Experimentation reveals that:
    • replacing the old addressbook data with blank allows syncing to work without problems.
    • having multiple groups causes the same error: BUT only on the first sync (set to “Erase data on device then sync”, but also if set to “merge”). Adding groups after a successful initial sync did not interfere with further syncs.
    • deleting groups from existing AddressBook data does allow a successful first sync.
    • but adding them back in again breaks the sync.
    Having no groups would seem to allow a successful sync.
    see http://discussions.apple.com/thread.jspa?messageID=6805570&#6805570
    I don’t want to have to limit myself to this. I do use groups rather a lot and it would be frustrating to have to give up using them just so I can sync my Palm in Leopard.
    The following does NOT solve the problem:
    1. Move old Address Book data to a backup location (after exporting AddressBook library)
    2. do a first sync
    3. re-import full Address Book data from archive
    4. continue with regular syncs.
    • only sync one Group still leads to the same error.
    • iSync 2 doesn’t run under Leopard (error message along the lines of “You can’t use this software with this version of Mac OS”).
    • I also tried to use the previous iSync palm conduit (v3.0.2 instead of v3.1.0), but got the same errors.
    For now, I removed all the groups and synced my contacts to my Palm, but I then turned off syncing for contacts within iSync, so I could recover all my Address Book Groups. Fortunately, I need to update Calendar information more often than contact info, and I won’t be able to change contact info on the Palm device. When I do want to do a periodic update to my Palm device, I will have to:
    1. Backup my address book
    2. Delete all groups (but not the contacts within them, which stay in the library itself)
    3. Turn contact syncing on in iSync
    4. Sync the Palm device
    5. Turn contact syncing OFF in iSync
    6. Recover my Address Book Library & groups from backup
    Not as simple as I would expect from Apple software ... I hope this issue gets fixed in iSync 3 (Leopard).

  • Safari does not support community toolbar ive searched my computer for the following like people have said in similar posts but none seem to work /Library/Application Support/Conduit /Library/InputManagers/CTLoader /Library/Receipts/ctloa

    hey all i know that there have been many post about this community toolbar thing that pops up when opening Safari
    i have searched my computer for the things that have been posted in the other posts to delete
    /Library/Application Support/Conduit     (no conduit in folder)
    /Library/InputManagers/CTLoader         (i dont have input managers i have input methods but still no CTLoader)
    /Library/Receipts/ctloader.pkg                (no ctloader.pkg)
    /Library/Receipts/<Toolbar name>.pkg      (nothing in this one either)
    /Library/Application Support/SIMBL/Plugins/CT2285220.bundle         (NADA)
    /Users/<User name>/Library/Application Support/Conduit           (NOTHING EITHER)
    where / is the root library on your Hard Disk.
    If you are running Snow Leopard you should also look here:
    Library/launchAgents/com.conduit.loader.agent.plist
    Library/Application support/conduit plugins
    i have pretty much looked everywhere i dont even know where this thing came from
    can anyone lend some advise i really do not want to take the 2 hour ride to apple to get this off my computer
    thanks so much

    When you see this path:   /Library   That is your root Library.
    Open a Finder window.
    Select MacintoshHD in the Sidebar on the left then open the LIbrary folder then the Application Support folder, then InputManagers folder, the Receipts folder.
    For this path:  ~/Library/Application Support  (your Home library)
    The Tilde character ~ represents your Home folder.
    From that same Finder window select your Home folder in the Sidebar. It has a small house icon. Open the Library folder then the Application Support folder.
    Move all the Conduit/CT associated files you posted above to the Trash.
    Try Safari.
    I've yet to find the launchAgents.plist file in any Safari crash report in years. I don't think that's a problem.
    Another way to find files on your hard drive is to go to your Finder.
    From the menu bar at the top of your screen click Go / Go to Folder.
    Example. Type in:  /Library/ApplicationSupport   click Go
    Or type in:  ~/Library/Application Support   click Go

  • "conduit search" How can I get rid of it for ever...

    conduit search" How can I get rid of it for ever, seems to have hijacked something, Have removed it from search engine options but it keeps reappearing, have (apparently ) uninsulated the programme from control panel but its still lurking there somewhere

    See:
    * http://forums.mozillazine.org/viewtopic.php?f=38&t=641296

  • Nokia HF-510 and N97 mini

    Hi, just a quick question... is the HF-510 compatible with the N97 Mini, it's not listed as a compatible device and wanted to check before buying.
    Thanks in advance!
    Solved!
    Go to Solution.

    I’ve a Nokia HF-510 Bluetooth speakerphone paired with my N97 mini. After having used voice dialling all too often when I try to make a second call the phone will not find a match or make any suggestions, this error can only be cleared by turning the speakerphone off and on again at which point a match is found first time. The phone software is up to date, software in the speakerphone is vers. 1.0. Anyone else have this problem?

  • Conduit crashes with segmentation fault

    I just installed a fresh install of Arch Linux with xfce installed. Everything is up and running. I wanted conduit to synchronize evolution data with my desktop. I was using Xubuntu and everything was fine. But Arch is 2x faster than xubuntu...
    The compilation of conduit went right, reported no error.
    I run XFCE but I tried to run it from gnome also just if it was an dependency error... Didn't work. I tried to install firefox from sources since it was an run-mozilla.sh segmentation error. Didn't work.
    Here's my rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime"
    # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="fr_CA.utf8"
    HARDWARECLOCK="local"
    USEDIRECTISA="no"
    TIMEZONE="America/Montreal"
    KEYMAP="cf"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(uvcvideo)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="djo-laptop"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    eth0="dhcp"
    INTERFACES=(eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng network dbus hal netfs avahi-daemon crond fam)
    When I run conduit from console, conduit opens but when I add a source provider I got the following (the last two lines):
    [djo@djo-laptop conduit]$ conduit
    INFO: FOUND FIREFOX LIBS AT /usr/lib/firefox-3.0
    [Main ][INFO ] Conduit v0.3.15 Installed: True (Main.py:99)
    [Main ][INFO ] Python: 2.6.2 (r262:71600, Apr 18 2009, 06:27:57)
    [GCC 4.3.3] (Main.py:100)
    [Main ][INFO ] Platform Implementations: GnomeVfs,gtkmozembed,GConf (Main.py:101)
    [Main ][INFO ] Using UI: gtk (Main.py:131)
    [gtkui.Canvas ][INFO ] Module Information: goocanvas v(0, 12, 0) (/usr/lib/python2.6/site-packages/goocanvasmodule.so) (Canvas.py:25)
    [modules.AVConverter ][INFO ] GStreamer transcoding disabled (AudioVideoConverterModule.py:28)
    [modules.iPod ][INFO ] iPod support disabled (iPodModule.py:46)
    [Module ][WARNING] Error loading the file: /usr/lib/conduit/modules/iPodModule/iPodModule.py
    Traceback (most recent call last):
    File "/usr/lib/python2.6/site-packages/conduit/Module.py", line 173, in _load_modules_in_file
    mod = self._import_file(filename)
    File "/usr/lib/python2.6/site-packages/conduit/Module.py", line 154, in _import_file
    mods = pydoc.importfile (filename)
    File "/usr/lib/python2.6/pydoc.py", line 262, in importfile
    raise ErrorDuringImport(path, sys.exc_info())
    ErrorDuringImport: problem in /usr/lib/conduit/modules/iPodModule/iPodModule.py - <type 'exceptions.NameError'>: name 'gpod' is not defined
    (Module.py:201)
    /usr/lib/conduit/modules/BoxDotNetModule/BoxDotNetModule.py:6: DeprecationWarning: the md5 module is deprecated; use hashlib instead
    import md5
    [modules.Flickr ][INFO ] Module Information: flickrapi v1.1 (/usr/lib/conduit/modules/FlickrModule/flickrapi/__init__.pyc) (FlickrModule.py:26)
    [modules.Backpack ][INFO ] Module Information: backpack (/usr/lib/conduit/modules/BackpackModule/backpack/backpack.pyc) (BackpackModule.py:22)
    [modules.Feed ][INFO ] RSS Feed support disabled (FeedModule.py:53)
    [modules.Google ][INFO ] Module Information: gdata (/usr/lib/conduit/modules/GoogleModule/gdata/__init__.pyc) (GoogleModule.py:45)
    [modules.Evolution ][INFO ] Module Information: evolution v(2, 26, 0) (/usr/lib/python2.6/site-packages/gtk-2.0/evolution/__init__.pyc) (EvolutionModule.py:25)
    [modules.Facebook ][INFO ] Module Information: pyfacebook v0.1 (/usr/lib/conduit/modules/FacebookModule/pyfacebook/__init__.pyc) (FacebookModule.py:30)
    [modules.Network ][INFO ] Network support enabled (NetworkModule.py:30)
    [modules.Network ][WARNING] Error starting client (Client.py:37)
    [modules.Network ][DEBUG ] Starting AvahiAdvertiser server (Server.py:35)
    [modules.Network ][WARNING] Error starting AvahiAdvertiser server: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Avahi was not provided by any .service files (Server.py:52)
    [dataproviders.VolumeFactory][DEBUG ] Adjusted mount: file:/// (VolumeFactory.py:25)
    [dataproviders.VolumeFactory][DEBUG ] Adjusted mount: file:///home (VolumeFactory.py:25)
    [dataproviders.VolumeFactory][DEBUG ] Adjusted mount: file:///var (VolumeFactory.py:25)
    [gtkui.UI ][INFO ] Main window constructed (thread: -1211799872) (UI.py:202)
    [SyncSet ][INFO ] Restoring Sync Set from /home/djo/.config/conduit/settings.xml (SyncSet.py:195)
    [SyncSet ][INFO ] /home/djo/.config/conduit/settings.xml not present (SyncSet.py:199)
    [gtkui.UI ][DEBUG ] Presenting GUI (UI.py:227)
    [DBus ][DEBUG ] DBus Exported: / (DBus.py:127)
    [DBus ][DEBUG ] DBus Exported: /syncset/gui (DBus.py:127)
    [DBus ][DEBUG ] DBus Exported: /syncset/dbus (DBus.py:127)
    [Conduit ][DEBUG ] Adding twoway dataprovider into source position (Conduit.py:140)
    /usr/lib/firefox-3.0/run-mozilla.sh: line 131: 3081 Erreur de segmentation "$prog" ${1+"$@"}
    I also tried the SVN version of conduit. The segmentation fault is different but the program still crashes when I try to add data provider :
    [djo@djo-laptop conduit]$ ./conduit/conduit
    [Main ][INFO ] Conduit v0.3.16 Installed: False (Main.py:126)
    [Main ][INFO ] Python: 2.6.2 (r262:71600, Apr 18 2009, 06:27:57)
    [GCC 4.3.3] (Main.py:127)
    [Main ][INFO ] Platform Implementations: GIO,webkit,GConf (Main.py:128)
    [Main ][INFO ] Using UI: gtk (Main.py:158)
    [gtkui.Canvas ][INFO ] Module Information: goocanvas v(0, 12, 0) (/usr/lib/python2.6/site-packages/goocanvasmodule.so) (Canvas.py:28)
    [modules.iPod ][WARNING] iPod support disabled (python-gpod not availiable) (iPodModule.py:53)
    [modules.AVConverter ][INFO ] GStreamer transcoding disabled (AudioVideoConverterModule.py:28)
    /home/djo/.packages/conduit/conduit/modules/FacebookModule/FacebookModule.py:6: DeprecationWarning: the md5 module is deprecated; use hashlib instead
    import md5
    [modules.Facebook ][INFO ] Module Information: pyfacebook v0.1 (/home/djo/.packages/conduit/conduit/modules/FacebookModule/pyfacebook/__init__.pyc) (FacebookModule.py:30)
    [modules.Facebook ][INFO ] Facebook parsing using: JSON (json) (FacebookModule.py:31)
    [modules.iPod ][WARNING] iPod support disabled (python-gpod not availiable) (iPodModule.py:53)
    [modules.Evolution ][INFO ] Module Information: evolution v(2, 26, 0) (/usr/lib/python2.6/site-packages/gtk-2.0/evolution/__init__.pyc) (EvolutionModule.py:25)
    [modules.Backpack ][INFO ] Module Information: backpack (/home/djo/.packages/conduit/conduit/modules/BackpackModule/backpack/backpack.pyc) (BackpackModule.py:22)
    [modules.Feed ][INFO ] RSS Feed support disabled (FeedModule.py:54)
    [modules.Flickr ][INFO ] Module Information: flickrapi v1.1 (/home/djo/.packages/conduit/conduit/modules/FlickrModule/flickrapi/__init__.pyc) (FlickrModule.py:26)
    /home/djo/.packages/conduit/conduit/modules/GoogleModule/gdata/tlslite/utils/cryptomath.py:9: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
    import sha
    [modules.Google ][INFO ] Module Information: gdata (/home/djo/.packages/conduit/conduit/modules/GoogleModule/gdata/__init__.pyc) (GoogleModule.py:46)
    [modules.Network ][INFO ] Network support enabled (NetworkModule.py:30)
    [modules.Network ][DEBUG ] Starting AvahiAdvertiser server (Server.py:35)
    [modules.Network ][DEBUG ] Announcing avahi conduit service (Peers.py:159)
    [dataproviders.VolumeFactory][INFO ] Waiting for HAL to attempt mount (VolumeFactory.py:38)
    [dataproviders.VolumeFactory][INFO ] Waiting for HAL to attempt mount (VolumeFactory.py:38)
    [dataproviders.VolumeFactory][INFO ] Waiting for HAL to attempt mount (VolumeFactory.py:38)
    [gtkui.UI ][INFO ] Main window constructed (thread: -1210530112) (UI.py:202)
    [SyncSet ][INFO ] Restoring Sync Set from /home/djo/.config/conduit/settings.xml (SyncSet.py:198)
    [gtkui.UI ][DEBUG ] Presenting GUI (UI.py:227)
    [DBus ][DEBUG ] DBus Exported: / (DBus.py:127)
    [DBus ][DEBUG ] DBus Exported: /syncset/gui (DBus.py:127)
    [DBus ][DEBUG ] DBus Exported: /syncset/dbus (DBus.py:127)
    [modules.Network ][DEBUG ] Resolved conduit service djo-desktop on djo-desktop.local - 192.168.0.103:3400
    Extra Info: ['protocol-version=1', 'version=0.3.16'] (Peers.py:245)
    [modules.Network ][DEBUG ] Remote host 'http://djo-desktop.local' detected (Client.py:49)
    [modules.Network ][DEBUG ] Resolved conduit service djo-laptop on djo-laptop.local - 192.168.0.100:3400
    Extra Info: ['protocol-version=1', 'version=0.3.16'] (Peers.py:245)
    [modules.Network ][DEBUG ] Remote host 'http://djo-laptop.local' detected (Client.py:49)
    [dataproviders.DataProvider][DEBUG ] DataProviderFactory <TestFactory object at 0x8bb2f2c (conduit+dataproviders+DataProvider+DataProviderFactory at 0x8a0c260)>: Emitting dataprovider-added for DynamicTestSource1:Foo (DataProvider.py:606)
    [Module ][INFO ] Dynamic dataprovider (Wrapper: Dynamic Source 1 source (UID: DynamicTestSource1:Foo-None)) available by <TestFactory object at 0x8bb2f2c (conduit+dataproviders+DataProvider+DataProviderFactory at 0x8a0c260)> (Module.py:67)
    [DBus ][DEBUG ] DBus Message from /: Emmiting DBus signal DataproviderAvailable DynamicTestSource1:Foo (DBus.py:134)
    [dataproviders.DataProvider][DEBUG ] DataProviderFactory <TestFactory object at 0x8bb2f2c (conduit+dataproviders+DataProvider+DataProviderFactory at 0x8a0c260)>: Emitting dataprovider-added for DynamicTestSource2:Bar:Baz (DataProvider.py:606)
    [Module ][INFO ] Dynamic dataprovider (Wrapper: Dynamic Source 2 source (UID: DynamicTestSource2:Bar:Baz-None)) available by <TestFactory object at 0x8bb2f2c (conduit+dataproviders+DataProvider+DataProviderFactory at 0x8a0c260)> (Module.py:67)
    [DBus ][DEBUG ] DBus Message from /: Emmiting DBus signal DataproviderAvailable DynamicTestSource2:Bar:Baz (DBus.py:134)
    [dataproviders.DataProvider][DEBUG ] DataProviderFactory <TestFactory object at 0x8bb2f2c (conduit+dataproviders+DataProvider+DataProviderFactory at 0x8a0c260)>: Emitting dataprovider-added for CustomKey (DataProvider.py:606)
    [Module ][INFO ] Dynamic dataprovider (Wrapper: Preconfigured Test Source source (UID: TestSource-None)) available by <TestFactory object at 0x8bb2f2c (conduit+dataproviders+DataProvider+DataProviderFactory at 0x8a0c260)> (Module.py:67)
    [DBus ][DEBUG ] DBus Message from /: Emmiting DBus signal DataproviderAvailable TestSource (DBus.py:134)
    [dataproviders.DataProvider][DEBUG ] DataProviderFactory <TestFactory object at 0x8bb2f2c (conduit+dataproviders+DataProvider+DataProviderFactory at 0x8a0c260)>: Emitting dataprovider-removed for DynamicTestSource1:Foo (DataProvider.py:611)
    [Module ][INFO ] Dynamic dataprovider (DynamicTestSource1:Foo) unavailable by <TestFactory object at 0x8bb2f2c (conduit+dataproviders+DataProvider+DataProviderFactory at 0x8a0c260)> (Module.py:71)
    [DBus ][DEBUG ] DBus Message from /: Emiting DBus signal DataproviderUnavailable DynamicTestSource1:Foo (DBus.py:134)
    [Conduit ][DEBUG ] Adding twoway dataprovider into source position (Conduit.py:140)
    ./conduit/conduit: line 26: 3512 Erreur de segmentation `dirname $0`/conduit.real $*
    I tried to enable webkit instead of gtkmozembed but I can't see how. I really want to use conduit to sync Evolution suite between desktop/laptop
    Any help?
    Desesperate new arch user.

    I've rebuilt conduit with webkit and GIO support by patching the file defs.py.in in the source directory, however the segfault still occurs on my machine. The only difference is that the run-mozilla.sh error is not given but instead a blank line. Perhaps this is related to a specific plugin not working correctly.
    edit: this is also occuring with conduit 0.3.14 release. I may try the SVN version later today.
    Last edited by iBertus (2009-06-13 19:16:16)

Maybe you are looking for

  • Flash not working in FF3

    Hello I recently updated my flash player to version10 and ever since, I haven't been able to view a site seal on my own website properly in Firefox 3. The seal should have my website name scrolling across it (this works in IE7) and should be crisp, n

  • Help needed with GTS questionare

    Hello SAP gurus I am a SAP SD consultant looking for an opportunity to get into SAP GTS. Could someone please help me with the sample interview questionnaire. I have the basic  knowledge of what SAP GTS can do and what functions it performs but reall

  • Saving session state on authentication

    Hey all... In all my applications that interact with each other, I am running an application-level process on authentication which loads two preferences into applicaton-level items. I am seeing different results when jumping into different applicatio

  • Select multiple equipment records in selection screen

    hi need to select multiple equipment records. Not a range of equipment records but many equipment records. I am using this as select option SELECT-OPTIONS: s_equip FOR equi-equnr. Please help

  • Change global_name risk

    what do you think the risk, after you change the global_name of the database. (using alter database rename global_name to aaa.bbb command) In my system, previous database link is not work, I think this is only a little thing that I can handle, just o