Security update...Explain this craziness...

Hi,
I just updated one of our CF 8.0.1 installations with the most recent security patch and it busted CFIDE instantly. When looking at the stack trace there are some suspect things going on. Please take a look at the bold print in the trace below...
1. why is it trying to run CFIDE from c:/work? My installation isnt even on the C: drive
2. Why the heck is "ColdFusioon" being referenced. Its obviously a type o . Not to mention the patch to CFIDE is once again completely wrong?
I figured id come to the forums and see people all over this subject.
Being that i didnt find any posts related to this whatsoever im wondering if this a personal problem and maybe im overlooking something. the update is so trivial im seeing how i could have overlooked anything.
Anyone out there care to chime in?
Stack Trace
java.lang.NoSuchMethodError: coldfusion.tagext.GenericTag.doFinally()V at cfl10n2ecfm1746172653.runPage(C:\work\ColdFusion\cf8_u1_final_hotfix\cfusion\wwwroot\CFIDE\administrator\cftags\l10n.cf m:153) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:192) at coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:63) at coldfusion.tagext.lang.ModuleTag.doStartTag(ModuleTag.java:280) at cfApplication2ecfm1983805352._factor3(C:\p4\ColdFusioon\cf8_final_hotfix\cfusion\wwwroot\CFIDE\administrator\Application.cfm:101) at cfApplication2ecfm1983805352._factor7(C:\p4\ColdFusioon\cf8_final_hotfix\cfusion\wwwroot\CFIDE\administrator\Application.cfm:4) at cfApplication2ecfm1983805352.runPage(C:\p4\ColdFusioon\cf8_final_hotfix\cfusion\wwwroot\CFIDE\administrator\Application.cfm:1) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:192) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:366) at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at coldfusion.filter.CfincludeFilter.include(CfincludeFilter

Call me Charlie, please.
I wonder if there may be still some potential confusion though.
First, to be clear, since you say you're running 8.0.1, are you sure that you downloaded the 8.01 zip (from http://kb2.adobe.com/cps/857/cpsid_85766.html)? There are zips for 9.0, 9.01, 8.0, and 8.01, so it seems important to be sure to use the right one.
Second, as important, are you positive that you're running 8.0.1? I've seen many people discover they are not running the release they think they are. The good news is that it's reported in the CF Admin, and since you say you can get things back to working, go ahead and run the CF Admin (that was failing and is now working) to make sure that the Setting Summary or System Information pages really do show it running 8.0.1. In this instance, please don't trust any assumptions you may have.
Third, about this admin that's now working, is it going through IIS? In other words, is there a port on the URL, such as 8500 or 8300? If so, then you're using the built-in web server and not IIS, and therefore you'd typically NOT be using the CFIDE that's in the inetpub\wwwroot but instead one within the wwwroot where CF is installed (such as c:\coldfusion8\wwwroot for CF8 Standard or Enterprise Server mode, or C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\CFIDE for the cfusion instance in CF8 Enterprise Multiserver). In that case, you may have applied the fix to the wrong place, which could explain a problem.
But then the fact that you say you revert back to the old files and suddenly it works does make it seem this is not the issue.
Still, as we keep exploring possibilities, you say that "This happened on both of our cf 8 development servers. One is multiserver while the other is CF8 Standard...The instance that im attempting to apply it to would indeed be 'cfusion' in both cases."
To be clear, there's no cfusion instance in the Standard (or Enterprise Server) deployment, only in Multiserver deployment. A server running CF 8 Standard (or Enterprise Server mode) would instead have a c:\coldfusion8 directory (on Windows, as you're running) with no cfusion directory within it (it has a \servers\coldfusion, technically). Since this fix goes into the CFIDE, it's not quite as big a deal.
But the bigger problem is that one could be updating the CFIDE in inetpub\wwwroot but having their CF Admin URL loading from (and looking for code in) the directory inside the CF instance instead. It's confusion that happens all the time, arising from CF's flexibility (to use or not use the built-in web server) and the fact that most people just don't spend their days diving into this level of detail.
I'll note as well that since you said you're using that inetpub\wwwroot location for your CFIDE, (there's nothing technically wrong with doing that, as long as you really are using IIS to open your CF Admin), this also means you could technically point a web site (any or all, or a virtual directory in IIS) to use that CFIDE directory, while then telling that web site to pass any CFM files it finds through any particular CF engine you have installed.
Again, I'm grasping at straws for you, but I could see how you might technically get an error if you tried to run this fix's code meant for one version against another (since they offer different versions). Looking at the CF Admin (assuming you run the CF Admin) to confirm the version (and the location of the CFIDE mapping indicated within it) should help.
Let us know what you find.
/charlie
Providing CF troubleshooting services at carehart.org/consulting
[email protected]

Similar Messages

  • HT6146 i have remained on ios 6.1.3 on my iphone 4s and do not want to move to iOS 7.  what is the iOS security update for this version

    I use the iphone 4s and have not/do not want to update to iOS 7.  Currently i utilize iOS 6.1.3. What is the security update for this version?

    For iPhone 4s is iOS 7.0.6. Only one you can update to. iOS 6.1.6 is only for 3GS and iPod Touch 4th Gen

  • Can someone explain this crazy query optimisation?

    A software company has me trialling a product that has a query optimiser. I can't for the life of me explain what is going on below and would like some help from someone with a bit more SQL experience. I have a query I've been struggling to bring down the time on:
    CREATE OR REPLACE VIEW PLATE_STATS_DATA_VIEW AS
    SELECT P.Folder_ID, P.expt_or_control_ID, P.Plate_Type, P.Dose_Weight, P.Volume, P.Strain_Code, P.S9_Plus,
    P.type_Name as Contents, P.Replicate_ID,
    P.Number_Of_Plates, round(avg(P.count)) as mean_count,
    min(P.count) as min_count, max(P.count) as max_count, count(P.count) as Plates_Counted
    FROM expt_folder_plates P, History_Control_Log L
    WHERE P.expt_or_control_ID = L.Control_ID
    AND P.Strain_Code = L.Strain_Code
    AND P.Plate_Type = L.Type_Code
    AND P.S9_Plus = L.S9_Plus
    AND L.control_Included > 0
    GROUP BY P.Folder_ID, P.expt_or_control_ID, P.Plate_Type, P.Dose_Weight, P.Volume, P.Strain_Code,
    P.S9_Plus, P.type_Name, P.Replicate_ID, P.Number_Of_PlatesIt took 20 seconds on my large test database, so I put it through the optimiser. It took it down to 0.1 seconds simply by changing 'WHERE P.expt_or_control_ID = L.Control_ID' to 'WHERE P.expt_or_control_ID = L.Control_ID + 0'.
    I have no idea why this would make any difference - adding zero to a value?! Can anyone enlighten me?
    Many thanks,
    Gary
    Message was edited by:
    GaryKyle

    Ahhh, thanks guys. I'm a bit of a beginner here. This is my first look at explain plans - just had to work out how to see them! I think I understand what is happening now - it looks like that with the index, it does the group by FIRST on all the data and this takes a large amount of time. Am I right?
    Before +0:
    SELECT STATEMENT, GOAL = ALL_ROWS               Cost=162787Cardinality=1380965Bytes=328669670
    SORT GROUP BY               Cost=162787     Cardinality=1380965     Bytes=328669670
      HASH JOIN               Cost=16773     Cardinality=1380965     Bytes=328669670
       TABLE ACCESS FULL     Object owner=PI_AMES_BIG     Object name=EXPT_FOLDER_DETAILS     Cost=29Cardinality=4038Bytes=387648
       HASH JOIN               Cost=16730     Cardinality=1380965     Bytes=196097030
        TABLE ACCESS FULL     Object owner=PI_AMES_BIG     Object name=AMES_PLATE_TYPES     Cost=2Cardinality=6Bytes=192
        HASH JOIN               Cost=16715     Cardinality=1380965     Bytes=151906150
         TABLE ACCESS FULL     Object owner=PI_AMES_BIG     Object name=HISTORY_CONTROL_LOG     Cost=2Cardinality=40Bytes=880
         HASH JOIN               Cost=16694     Cardinality=2002400     Bytes=176211200
          HASH JOIN               Cost=59     Cardinality=8076     Bytes=282660
           TABLE ACCESS FULL     Object owner=PI_AMES_BIG     Object name=EXPT_FOLDER_SOLVENTSCost=2Cardinality=3Bytes=51
           TABLE ACCESS FULL     Object owner=PI_AMES_BIG     Object name=CONTROLSCost=56Cardinality=8078Bytes=145404
          TABLE ACCESS FULL     Object owner=PI_AMES_BIGObject name=EXPT_FOLDER_PLATESCost=16584Cardinality=5499657Bytes=291481821After +0:
    SELECT STATEMENT, GOAL = ALL_ROWS               Cost=1655     Cardinality=138     Bytes=45954
    HASH JOIN               Cost=1655     Cardinality=138     Bytes=45954
      HASH JOIN               Cost=1625     Cardinality=138     Bytes=33672
       HASH JOIN               Cost=1569     Cardinality=414     Bytes=96462
        MERGE JOIN CARTESIAN     Cost=4          Cardinality=18     Bytes=630
         TABLE ACCESS FULL          Object owner=PI_AMES_BIG     Object name=EXPT_FOLDER_SOLVENTSCost=2Cardinality=3Bytes=30
         BUFFER SORT          Cost=2     Cardinality=6     Bytes=150
          TABLE ACCESS FULL          Object owner=PI_AMES_BIG     Object name=AMES_PLATE_TYPESCost=1     Cardinality=6Bytes=150
        VIEW               Object owner=PI_AMES_BIG     Object name=TEST_PLATE_STATSCost=1564Cardinality=138Bytes=27324
         SORT GROUP BY               Cost=1564     Cardinality=138     Bytes=10350
          TABLE ACCESS BY INDEX ROWID     Object owner=PI_AMES_BIGObject name=EXPT_FOLDER_PLATESCost=39Cardinality=3Bytes=159
           NESTED LOOPS               Cost=1563     Cardinality=138     Bytes=10350
            TABLE ACCESS FULL     Object owner=PI_AMES_BIG     Object name=HISTORY_CONTROL_LOG     Cost=2Cardinality=40Bytes=880
            INDEX RANGE SCAN     Object owner=PI_AMES_BIG     Object name=EXPT_CONTROL_ID_INDEXCost=5Cardinality=248     
       TABLE ACCESS FULL     Object owner=PI_AMES_BIG     Object name=CONTROLSCost=56     Cardinality=8078Bytes=88858
      TABLE ACCESS FULL     Object owner=PI_AMES_BIG     Object name=EXPT_FOLDER_DETAILS     Cost=29     Cardinality=4038Bytes=359382Thanks again,
    Gary
    P.S. looks like the explain plan's made the post horribly wide again ;) sorry. I'll keep it this way though otherwise the plan is hard to read.

  • Apache denying http requests- could it be Security update 2006-007PPC?

    I've been webhosting off an iMac G4 for two years and yesterday no one could access any of the pages, coming from multiple DNSs. I opened up sharing and turned on the log, saw some denials. Some improvement by toggling Personal Web Sharing, but goes back to not letting requests go through. Just so happens, I upgraded the hard drive the day before using carbon copy cloner and also converted the main page to a CSS, although can't imagine that would do it since I used the template from a working page. Could it be one of these changed some Apache settings or Security Upgrade is responsible? I'm on the phone right now, telling someone I'm working on it....

    12190 deny tcp from any to any
    65535 allow ip from any to any</pre>Usually, though,
    if you turn on a service, the corresponding port
    should open in the firewall. If the firewall is off,
    I just get the last line starting with
    65535.
    That's about the same, I just didn't publish the info on the other ports because I didn't think it was pertinent.
    Checking
    the access log, I had been getting hammered for a
    while by something automated on PHP calendar I had
    posted- so I shut that down.
    I'm not sure I understand this. Does this mean you
    shut off the firewall and got the hits, or you saw
    the hits being denied? The other log entries you
    posted came from the system log or console, and
    not the Apache access log.
    I can see where that was confusing. Upon reviewing the httpd/access log (as well as any other I thought might provide a clue), there were a slew of hits, all different times of the day from one IP address, all on the PHPicalendar page I had posted. Sometimes the requests would be an individual hit, but most times they would come in groups of ten or twenty all about 4 seconds apart. These were logged all the way back to the oldest entries still in the log files. The computer had been dutifully fulfilling the requests and this most likely explains some system slowness I had been seeing on the machine. Since then I disabled that page and the requests get a 404 reply from Apache. I threw that comment out to justify why I was interested in changing my IP address. By the way, google calendar and iCal integrate really nicely, allowing iCal to subscribe to the google calendar and then I could export the iCal to the PHPicalendar. A little circuitous, but not annoyingly so. Anyway, now that I know that it's being targeted I'll probably just work with google calendar and the google notifier app for macs.
    Again, the closest event to
    the known start of the problem was the Security
    Update 2006-007PPC.
    For what it's worth, I've applied the Security Update
    on this iMac without this problem. Which is not to
    say it's not possible it caused the problem. But if
    so, it's still more likely to be something isolated
    to your system and not a general bug in the update.
    I think I might have figured out the problem. Going through the system log, I noticed the computer sleeping and waking. I went to system prefs and checked the settings, then changed to "never sleep." Seems to be working. I know I didn't change that setting, and I was under the impression that before, the http requests were waking the computer up- although I don't know, I just never had this problem before. To add to the confusion at one point the subnet address of the machine changed because I was trying to debug by doing a network restart and the router was pointing to the wrong computer. I'll have to check with the other users of this machine to see if they altered the setting- but they may not fess up since they know they're not supposed to mess with system prefs- as it is, I've got the parental controls turned on.
    As for the stability of the Comcast IP address, I
    unplugged the modem for about 6 hours last night,
    plugged it back and had the same IP
    address.
    That's been my experience, too. Comcast's IP
    addresses are tied to the MAC address of whatever
    customer supplied equipment faces it. I think you
    might have to be disconnected from the cable modem
    until the DHCP lease expires, and someone else gets
    your old IP address, in order to get a new IP
    address.
    I've been able to force a new IP address by changing
    the MAC address on my router. However, if you decide
    to try this, only use the MAC address from a
    device you have in your physical possession. For
    example, you could clone the MAC address from one of
    your computers to the router. Just make sure you go
    back to the router's real MAC address if you get rid
    of the computer.
    Remember, you have to reboot the cable modem any time
    you change the MAC address of the device connected to
    it. Just like you would if you connected a different
    computer directly to the cable modem.
    charlie
    Thanks, I'll try that. I'm going to give it another day or two to see if it's stable again.
    dan
    iMac G4, MacBook   Mac OS X (10.4.8)  

  • Latest Security Update Cause Website Login & iWeb Publishing Error?

    Hello all and Happy Holidays!
    I just did the latest Mac OS Security Update early this evening, but I was too sleepy and tried from work, that I disconnect all the peripherals, cables etc, but I forgot to pull out my firewire cable that was connected to a FireWire Hub (but no FW device was turned on at the time)
    So I continued to do the update, restart and Repair Permission, have always been careful and so far nothing has "gone wrong" on my iMac.
    But now I can't log into a particular Members' Webpage, keeps getting a Safari error page saying the server is not responding; Secondly, tonight I have tried at least 3 times trying to publish my latest blog entry on my iWeb, but it gives me the error message asking me to check my network connection.
    I can surf, email, iTunes even download the latest podcast in the background while I am encountering these "small" problems.
    Anyone can help? Most appreciated.
    Has this got to do with the Security Update?
    Thanks and cheers

    Not neccesarily this particular security update, but performing any update while your firewire port was in use. Try resetting the FW port, info here, (I know it works, but resetting it might just do the trick) and see if that helps,
    Miriam

  • Beware the Security Update - How I fixed my WIFI problem and a question

    First of all I have read the "Latest Update from 21 January is A Disaster" thread and I basically agree with Andrew is Stuck so please don't feel the need repeat any of the stuff about it is not a bug in the update etc etc and I should have a Super Duper clone to hand etc etc . I have read that stuff. You are probably right but they should write on the Security Update info panel - "Be Careful this could really ruin your day".
    I am ****** off and stressed out and I need to rant and I am not looking for that kind of lecture - even if it is partially or wholly true. I need to feel positive by warning people the way I wish I had been warned!
    NB I am near the end of a professional dance tour as Musical Director running music on Logic on my MBP and it has been working fantastic - not a single glitch in 6 weeks. I would never upgrade my OS or Logic in the middle of job like this BUT Security Updates have always seem like something you should install because they will protect the Mac or protect against any new viruses etc. I have never had a problem with them before. (THAT ATTITUDE WILL NOW CHANGE!!!)
    This update has caused a lot of people a lot of problems (check out this forum) and it has caused me more real world problems than anything I have downloaded and installed from anywhere in the last 3 years. Thus it has nothing to do with Security!!! HOw any people does a Security Uodate have to goose before it becomes an unsatisfactory Security Update?
    This security update suddenly stopped my WIFI working and put me in a real hole.
    (I am sure you don't care but I have a meeting tomorrow morning that I needed to do 3 hours of prep for including looking at VIDEO online. And the Security Update has just put paid to that. )
    After 3 hours I have just got WIfi back- here's how:
    I repaired permissions twice with Disk Utility - no joy. I found I could get online when I booted in Safe Mode (and I could get online with my Iphone on the same WIFi setup) so I knew it was not the router - though I did switch the router on and off a few times,
    When I initially ran Repair permissions there was loads of things needing repair. I ran it again and 2 remained:
    usr/share/derby it keeps trying to repair
    and one of the package contents of the ARDAgent.app (System>Library>CoreServices>RemoteManagement>ARDAgent.app>Contents>MacOS>ARDAg ent) had a warning attached that it in the Disk Utility Repair Permissions report that it had been modified.
    So I restored ARDAgent.app from a Time Machine Back up and replaced the offending file when in Safe Mode (Restart with Shift held down). - using Ctrl Click to open the ARDAgent.app package contents.
    This seemed to sort it all out for me.
    I guess people need to look in their Disk Utility Repair Permissions reports and see if any esoteric system files have been goosed by the update and see if they can get them back - although if you don't know what you are doing this could make things worse......
    Anyway I DO have questions:
    If this hadn't of worked:
    1) Would reinstalling Snow Leopard from disks have upset my preferences, installs of Logic and Audio drivers and 3rd party application installs and the rest?
    - the main stressor when this happens is not trying to lose the whole day.
    2) Is there a way of just restoring the System from a Time Machine Backup or a SuperDuper clone or do you have to restore the whole state of the entire Hard Drive?
    Best
    Tommy Banana
    PS I feel better now. Thanks for listening.

    The fact that you saw no glitches while running Logic before applying the update means almost nothing because that uses only a small subset of system resources. Far more significant is that Safe Mode restored some missing functionality: because it disables non-essential items like user fonts, third party drivers, & so on, it points to problems in those areas.
    Equally significant, the fact that there are relatively few reports of post-update problems among the several million Snow Leopard users points away from the update itself as the cause of your problems.
    Separate & apart from that, it so happens that I'm a sound engineer/system designer/board operator with nearly 40 years of professional touring experience. FWIW, I never have & never will update the software of any system I must rely on professionally (whether it is running on a Mac, a PC, or dedicated hardware) unless & until I can thoroughly test it first and I have a trustworthy backup/recursion strategy to fall back on in case of problems.
    I strongly suggest you learn from your unpleasant experience & do the same. I have had far fewer problems with Macs than with PC's, but nothing is 100% reliable to begin with. Changing the OS software part way through the tour is just asking for trouble, no matter how reliable that has been in the past. Even if the budget allows for nothing better than a stack of burned CD's & a couple of consumer grade CD players, no professional tour can afford to be without some fallback strategy in place. That should be self-evident & require no warning from Apple or anybody else.

  • Post 2010-005 security update freshclam now complains

    I applied the 2010-005 security update to 3 of our Xserves. These invoke freshclam via a cronjob (/usr/bin/freshclam --no-dns --quiet). Post security update we now get this output mailed to us after the cronjob runs:
    LibClamAV Warning: Cannot dlopen libclamunrar_iface: file not found - unrar support unavailable.
    We still get our updates. Cannot locate libclamunrar_iface via locate. Google shows the problem occurring on linux distros but I'm not finding a direct reference for mac os x.
    I'd like to stop these messages as they're spamming our log mailbox and indicative of something not being right with clam. Any ideas as to why the security update prompted this (aside from the update including a new version of clamav)?
    -Warren

    Same message in log here when I run freshcam --version on the command line or when I change the virus database update frequency using Server Admin for the Mail service (causes restart via launchd):
    Sep 15 22:42:44 xxxx com.apple.launchd[1] (org.clamav.freshclam[58]): Exited with exit code: 2
    Sep 15 22:42:44 xxxx org.clamav.freshclam[22827]: LibClamAV Warning: Cannot dlopen libclamunrar_iface: file not found - unrar support unavailable
    Sep 15 22:42:44 xxxx org.clamav.freshclam[22827]: ClamAV update process started at Wed Sep 15 22:42:44 2010
    Sep 15 22:42:44 xxxx dovecot[57]: SIGHUP received - reloading configuration
    Anyone??
    Message was edited by: Apple Martin
    Message was edited by: Apple Martin

  • Rosetta Problems after Security Update 2012-001

    My crack team of sys admins and I have devised a method for resolving some of the issues regarding the Security Update 2012-001 and Rosetta.
    http://www.educate-it.org/content.php?130-Rosetta-Issue-after-Security-Update-20 12-001
    Click this link for an Installer that will revert the files necessary for some Rosetta apps to run after the Security Update. This is a band-aid and is only recommended in emergency situations. Apple is currently working on a fix, but until that happens, we are stuck with reverse-engineering their update. I hope this helps those in distress from this update.

    Backup files off the computer (not TimeMachine) and disconnect.
    If you have TM, or a option key bootable clone use that to erase and restore from.
    If not, c boot off the 10.6 disk, use Disk Utility to >Repair Disk and Permissions,  (do not format or erase!!) and simply re--install 10.6 from the disk. Note: Does not touch your files and most programs, but backup your files regardless.
    Note: If Disk Repair gives a error that is not repaired, then you have to consider erasing the drive (with Zeros) and try reinstalling 10.6 fresh or replacing the drive.
    Reboot and log in, update to 10.6.8, it should not include the security update at this time (second pass it might show) because it was just released and they might need to pull it. (they need to pull it)
    When you reboot, make sure to reinstall any programs that installed kext files into OS X, you'll know, they won't work.
    If you get gray screen, hold the shift key and update your installed software so it's compatible with 10.6.8.
    Learn how to clone here
    http://www.bombich.com/get_ready_for_lion.html
    TM help here
    http://pondini.org/OSX/Home.html
    Learn how to make copies of your 10.6 disks here
    http://www.walterjessen.com/make-a-bootable-backup-snow-leopard-install-disc/
    Learn how to make a bootable SL USB
    http://www.maciverse.com/install-os-x-snow-leopard-from-usb-flash-drive.html
    Learn which programs ARE NOT compatible with Lion
    http://roaringapps.com/apps:table
    Long live the Snow Leopard.

  • Fans acting up after 2010-01 security update

    Hi there,
    My MacPro (2,1) 8-core (16Gb) has it's fans acting up after the 2010-01 security update. This update came together with an update for Java. Being aware of the possibility that problems can rise when updating the two at the same time, I ran the security update first, then a restart, checked permissions, a restart and then the Java update and checked permissions again. However, now with only Safari or just the finder running the fans act up after a while. Even with the simplest tasks like opening a folder or dragging something or just running idle. It's not full blast but fast enough to be annoying.
    I've done a SMC reset in conjunction with a 15min detachment of all cables, booted a few times in SafeMode, but no result. I hoped the 2010-02 security update would fix it but again no luck. Any ideas?

    I've looked in the Activity Monitor (I hardly use it) and it gives me some strange data. Like Airport-BaseStation is running.
    I don't have an Airport Base Station either, and Little Snitch is always asking if I want to allow it to phone home. So, mine must be running, at least sometimes, in the background also.
    Sorry, don't have a real clue about this, but here's some other stuff to try.
    First, see if this fan revving up happens in a new admin account and try a Safe Boot. Hold shift key down at startup chime. It will take some time to boot; let it go, it's doing some checking and repairing. The reboot into normal bootup will be slower than usual also.
    if it were happening to me, I'd throw Applejack at it; must be from Single User, which BTW, is generally, a safer way to clear some caches. After it's installed, start up in Single User (CMD-S) and type in applejack and follow the on screen instructions for caches and pref files. Don't run anything out of order. If that doesn't do it, then you could try it in deep cache cleaning mode by typing in applejack AUTO.
    You may not see the benefits until after several restarts, and since caches are made to speed things up, you may see some temporary slowness until these are rebuilt. If you run it in "Deep," you'll probably be asked to reauthorize some applications, which now think they're being opened for the first time.
    Even if it doesn't help this time, it's a very useful tool to have on hand.
    Download
    http://applejack.sourceforge.net/
    Read
    http://reviews.cnet.com/8301-13727_7-10334620-263.html?tag=mfiredir
    Message was edited by: WZZZ
    Message was edited by: WZZZ

  • Can't send mail after security update

    Hello, I installed a security update friday night, and can no longer send email using either Mail 2.1 or Thunderbird. Both were working prior to the security update.
    I am not getting any error messages except for the ones over the phone that go..."did you get my email? What email?" In fact, both Mail and Thunderbird give every indication that the email was sent.
    I can mail myself a test from a web program, so my smtp server is working.
    I can receive mail fine.
    I am blaming the security update for this, but I have no idea where to look or what to do. Can I uninstall the update?

    You're welcome.
    The thing is, AFAIK Mail wouldn't put the message in the Sent mailbox unless it has received confirmation from the outgoing server that the message has indeed been sent, so it seems to me that the problem is not that messages are not being sent, but rather that they don't arrive at the destination for some reason.
    I bcc myself on every email for filing reasons and have
    not recieved one of my own emails since Friday night.
    Do you receive other mail normally? Have you checked for those messages on the web?
    I can log into my employers web tool and send email that way,
    so something is going on with my machine, whatever it is.
    Well, not necessarily. Maybe there is something wrong with the outgoing server you're using in Mail. Is this your only mail account? Do you have access to any other outgoing server that you could try?

  • Snow Leopard running very slow after Apple security update 10-05

    I installed the security update that came out Tuesday 8/24. After restarting I noticed that both my browsers (Safari 5.1 and Firefox 3.8) were running so slow they would time out before loading a webpage. Also my VLC media player was very slow to start streaming audio.
    I think there's something wrong with my iMac 2.8 Ghz (Model 8,1) related to the security update. This is the first problem I've had with the in months. I had to post this note using a PC.
    Help!

    After restarting the iMac, everything is running as fast as usual. It must have needed an extra shut down and start up.

  • Security update 2007-005 and airport connection

    Please help. I downloaded the security update 2007 005 on my powerbook G4 Friday night. Now I cannot get on my airport. It says there was an error joining the airport network (name of my airport) It gives me 2 options try again
    or ok. i have tried everything. I even tried pinging my pc that I am on now to email this to see if I could connect with anything.But the powerbook fails to send any ping. I have rebooted, both the airport and the powerbook--several times. I have looked for information
    everywhere about this both in Mac Help on my computer and online and have turned up nothing that can fix this unless I want to reinstall the operating system.
    My only conclusion is that the security update did this. I was online (of course) as I downloaded the update and ever since I can not get online with the airport. Thank heavens I have a PC to get email or maybe get help through a forum like this. I have been trying to fix this all weekend. In system preferences /network status it says airport is turned on but not connected to a network when there is one. Any advice?
    powerbook g4   Mac OS X (10.4.9)  

    I have a same problem, everything worked fine until I've downloaded security update. My Airport doesn't allow me to connect to my PASSWORD protected network. My PC is working fine. The only way is to be connected to open source. Called Mac support and they blame router (it is not mac's router). Their suggestion is to reinstall whole system (and lose software I payed for) or buy new router (macs????). So I am stuck. The advice by apple support was NOT to download updates!!!!Why on Earth do they have them????

  • Restoring after Security Update damage

    After downloading and installing the latest security update (2007-004) my wife's G4 iMac (OS 10.4.9) has failed to respond to anything. It now appears to start, the grey Apple logo appears and then five seconds later the screen goes black, and the computer powers off. I have tried
    a) resetting the PRAM
    b) starting from OSX Installer DVD (will not repair disk)
    c) starting with a safe boot (no effect at all)
    d) running Disk Warrior 3.0.3 (says directory too badly damaged)
    e) booting it in Target Disk mode (icon does not appear on screen of other computer)
    My wife depends on this iMac for her business. Now she is completely stranded.
    I have to try something today to get it back in shape for her starting work tomorrow (she runs her own business and the Mac is vital to her). If I do a Tiger Archive and Install installation from the original DVD would that be a fix? Or has the volume directory been so badly damaged by the update that there would be nothing recognisable to archive?
    Any suggestions appreciated.

    Thanks, but I have this problem - when I set the
    damaged iMac to Target Disk mode, the Firewire symbol
    comes up on its screen OK, but on the connected
    MacBook there is no sign of the iMac's drive
    appearing. No icon, in other words. So I cannot even
    access the faulty iMac's HD.
    When you hook up via Target Disk mode, can you see the iMac's hard drive in the Disk Utility? In other words, can the other Mac see it, but just not mount it? That's a crucial difference, because if so, then you could try Data Rescue to at least get the data off the drive.
    I've had several hard drives fail in a G5 iMac and I've had excellent luck with Data Rescue. You can download a free trial and see if it'll see any files at all on the affected drive. If it doesn't, you're not out anything. If it does, you're golden. My drives wouldn't mount, but Disk Utility would at least recognize they were there. Data Rescue doesn't have to be able to mount the drive, it just has to be able to see it.
    Why do we have to go through all this? PCs get
    viruses, Mac users get flawed security updates.
    Like the others, I don't thing the security update in this case was the cause in the sense that if you had never done the update, this wouldn't have happened. More likely, something else would have triggered the problem. If not an update, then installing an update to a third party application, or something else.
    One of the things about drives that I've learned over the years: S.M.A.R.T. is, in some ways, meaningless. It can flag a drive that's failing slowly, but if it has a sudden failure, you'll never know it. If it shows "Failing" in Disk Utility, believe it, but just because it shows "Verified" doesn't mean there isn't a potential problem just a few sectors down the drive that will take out the whole thing once you try to access those blocks.
    charlie

  • Security Update 2007 02 keep coming back in Software Update

    Hi there,
    when I install the Security Update 2007 02 and restart the computer, this update should be gone from Software Update but everytime I run Software Update it tells me again to do the Security Update. This problem occurs only with my G5.
    Dual 2.3GHz G5 3GB RAM   Mac OS X (10.4.8)   iBook G4 1GHz

    Hi
    See this thread:
    http://discussions.apple.com/message.jspa?messageID=4093314#4093314
    Steve

  • Safari and Firefox crash since last security update

    My safari and mozilla fire fox keeps crashing since the last security update. This is my report...
    Please Help
    Date/Time: 2008-02-26 10:04:01.951 -0800
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [57]
    Version: 3.0.4 (523.12.2)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 45231202
    PID: 226
    Thread: 0
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x00000002
    Code[1]: 0x06cfb398
    Thread 0 Crashed:
    0 ...romedia.Flash Player.plugin 0x06cfb398 Flash_EnforceLocalSecurity + 117516
    1 ...romedia.Flash Player.plugin 0x06cfaf08 Flash_EnforceLocalSecurity + 116348
    2 ...romedia.Flash Player.plugin 0x06dc6704 Flash_EnforceLocalSecurity + 949880
    3 ...romedia.Flash Player.plugin 0x06e6120c nativeShockwaveFlashTCallFrame + 79260
    4 ...romedia.Flash Player.plugin 0x06dc5a40 Flash_EnforceLocalSecurity + 946612
    5 ...romedia.Flash Player.plugin 0x06dc5518 Flash_EnforceLocalSecurity + 945292
    6 ...romedia.Flash Player.plugin 0x06dc5aac Flash_EnforceLocalSecurity + 946720
    7 ...romedia.Flash Player.plugin 0x06e30b98 Flash_EnforceLocalSecurity + 1385228
    8 ...romedia.Flash Player.plugin 0x06e307d0 Flash_EnforceLocalSecurity + 1384260
    9 ...romedia.Flash Player.plugin 0x06e30554 Flash_EnforceLocalSecurity + 1383624
    10 ...romedia.Flash Player.plugin 0x06e30784 Flash_EnforceLocalSecurity + 1384184
    11 ...romedia.Flash Player.plugin 0x06e32cc8 Flash_EnforceLocalSecurity + 1393724
    12 ...romedia.Flash Player.plugin 0x06e32c74 Flash_EnforceLocalSecurity + 1393640
    13 ...romedia.Flash Player.plugin 0x06e32e98 Flash_EnforceLocalSecurity + 1394188
    14 ...romedia.Flash Player.plugin 0x06e49b74 Flash_EnforceLocalSecurity + 1487592
    15 ...romedia.Flash Player.plugin 0x06e4ac5c Flash_EnforceLocalSecurity + 1491920
    16 ...romedia.Flash Player.plugin 0x06e493e8 Flash_EnforceLocalSecurity + 1485660
    17 ...romedia.Flash Player.plugin 0x06e49204 Flash_EnforceLocalSecurity + 1485176
    18 ...romedia.Flash Player.plugin 0x06e48798 Flash_EnforceLocalSecurity + 1482508
    19 ...romedia.Flash Player.plugin 0x06dd24cc Flash_EnforceLocalSecurity + 998464
    20 ...romedia.Flash Player.plugin 0x06e4b01c Flash_EnforceLocalSecurity + 1492880
    21 ...romedia.Flash Player.plugin 0x06cdeb78 Flash_EnforceLocalSecurity + 748
    22 com.apple.WebKit 0x957cbab8 -[WebBaseNetscapePluginView(Internal) _createPlugin] + 136
    23 com.apple.WebKit 0x957cb7f0 -[WebBaseNetscapePluginView start] + 160
    24 com.apple.WebKit 0x957cb5f8 -[WebBaseNetscapePluginView viewDidMoveToWindow] + 136
    25 com.apple.AppKit 0x9379fd54 -[NSView _setWindow:] + 876
    26 com.apple.AppKit 0x9379ffc4 -[NSView addSubview:] + 372
    27 com.apple.WebKit 0x957c6920 -[WebHTMLView addSubview:] + 64
    28 com.apple.WebCore 0x95aa6064 WebCore::Widget::addToSuperview(NSView*) + 324
    29 com.apple.WebCore 0x95aa5dd4 WebCore::RenderWidget::setWidget(WebCore::Widget*) + 596
    30 com.apple.WebCore 0x95aa5b1c WebCore::RenderPart::setWidget(WebCore::Widget*) + 108
    31 com.apple.WebCore 0x95b1e504 WebCore::FrameLoader::loadPlugin(WebCore::RenderPart*, WebCore::KURL const&, WebCore::String const&, ***::Vector<WebCore::String, (unsigned long)0> const&, ***::Vector<WebCore::String, (unsigned long)0> const&, bool) + 548
    32 com.apple.WebCore 0x95dd8014 WebCore::FrameLoader::requestObject(WebCore::RenderPart*, WebCore::String const&, WebCore::AtomicString const&, WebCore::String const&, ***::Vector<WebCore::String, (unsigned long)0> const&, ***::Vector<WebCore::String, (unsigned long)0> const&) + 356
    33 com.apple.WebCore 0x95aa8748 WebCore::RenderPartObject::updateWidget(bool) + 5576
    34 com.apple.WebCore 0x95a6fd20 WebCore::FrameView::layout(bool) + 2240
    35 com.apple.WebCore 0x95a4e90c WebCore::TimerBase::fireTimers(double, ***::Vector<WebCore::TimerBase*, (unsigned long)0> const&) + 156
    36 com.apple.WebCore 0x95a4e6a0 WebCore::TimerBase::sharedTimerFired() + 112
    37 com.apple.WebCore 0x95a4e60c WebCore::timerFired(__CFRunLoopTimer*, void*) + 76
    38 com.apple.CoreFoundation 0x907f2390 __CFRunLoopDoTimer + 184
    39 com.apple.CoreFoundation 0x907ded08 __CFRunLoopRun + 1680
    40 com.apple.CoreFoundation 0x907de2bc CFRunLoopRunSpecific + 268
    41 com.apple.HIToolbox 0x9329fb20 RunCurrentEventLoopInMode + 264
    42 com.apple.HIToolbox 0x9329f1b4 ReceiveNextEventCommon + 380
    43 com.apple.HIToolbox 0x9329f020 BlockUntilNextEventMatchingListInMode + 96
    44 com.apple.AppKit 0x93784bc4 _DPSNextEvent + 384
    45 com.apple.AppKit 0x93784888 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    46 com.apple.Safari 0x000095e0 0x1000 + 34272
    47 com.apple.AppKit 0x93780dcc -[NSApplication run] + 472
    48 com.apple.AppKit 0x93871974 NSApplicationMain + 452
    49 com.apple.Safari 0x0009bad4 0x1000 + 633556
    50 com.apple.Safari 0x000022fc 0x1000 + 4860
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.WebCore 0x959b2230 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3 com.apple.WebCore 0x959ae128 WebCore::IconDatabase::iconDatabaseSyncThread() + 424
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9b8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2bc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0f738 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be70c0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9b8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2bc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0e5f8 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92be70c0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f124c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bee22c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9af7342c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92be70c0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 ...romedia.Flash Player.plugin 0x0707c4f8 nativeShockwaveFlashTCallFrame + 2287752
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90c024b0 MPWaitOnSemaphore + 184
    3 ...romedia.Flash Player.plugin 0x06e00c1c Flash_EnforceLocalSecurity + 1188752
    4 ...romedia.Flash Player.plugin 0x06f38ee8 nativeShockwaveFlashTCallFrame + 963192
    5 ...romedia.Flash Player.plugin 0x06e00a8c Flash_EnforceLocalSecurity + 1188352
    6 ...romedia.Flash Player.plugin 0x06e00a54 Flash_EnforceLocalSecurity + 1188296
    7 ...ple.CoreServices.CarbonCore 0x90bc4794 PrivateMPEntryPoint + 76
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000006cfb398 srr1: 0x000000000208f030 vrsave: 0x0000000000000000
    cr: 0x84024288 xer: 0x0000000020000003 lr: 0x0000000006cfaf08 ctr: 0x0000000006cfb398
    r0: 0x0000000000000008 r1: 0x00000000bfffcd10 r2: 0x0000000006cfb398 r3: 0x0000000007264388
    r4: 0x000000000726438e r5: 0x0000000000000000 r6: 0x000000000725a924 r7: 0x000000000727516f
    r8: 0x0000000007298180 r9: 0x0000000000000001 r10: 0x0000000000000001 r11: 0x000000000713d0dc
    r12: 0x0000000006cfae30 r13: 0x0000000000000000 r14: 0x00000000bfffcf6c r15: 0x0000000000000000
    r16: 0x000000000000000c r17: 0x00000000bfffcf70 r18: 0x0000000006cfae30 r19: 0x0000000000000000
    r20: 0x00000000bfffce70 r21: 0x0000000000000000 r22: 0x00000000bfffd3e8 r23: 0x000000000723f000
    r24: 0x0000000007264388 r25: 0x0000000006cfae48 r26: 0x0000000000000000 r27: 0x0000000007264388
    r28: 0x0000000000000001 r29: 0x0000000007264388 r30: 0x000000000723f000 r31: 0x00000000bfffcf58
    Binary Images Description:
    0x1000 - 0x134fff com.apple.Safari 3.0.4 (523.12.2) /Applications/Safari.app/Contents/MacOS/Safari
    0x68df000 - 0x68e8fff com.apple.LiveType.component 1.2.1 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x6cda000 - 0x70f7fff com.macromedia.Flash Player.plugin 9.0.115 (1.0.4f60) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x823e000 - 0x82a6fff com.DivXInc.DivXDecoder 6.2.5 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x70090000 - 0x700e5fff com.apple.LiveType.framework 1.2.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x8f8c0000 - 0x8f960fff com.apple.QuickTimeImporters.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.9 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b45fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b4a000 - 0x91b68fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6e000 - 0x91c25fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce9000 - 0x91d26fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2d000 - 0x91d47fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d4c000 - 0x91d4ffff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d51000 - 0x91e2ffff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4f000 - 0x91e4ffff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e51000 - 0x91f36fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3e000 - 0x91f5dfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc9000 - 0x92037fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92042000 - 0x920d7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920f1000 - 0x92679fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926ac000 - 0x929d7fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a07000 - 0x92af5fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af8000 - 0x92b80fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bc1000 - 0x92decfff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f19000 - 0x92f37fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f42000 - 0x92f9cfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fba000 - 0x92fbafff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fbc000 - 0x92fd0fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe8000 - 0x92ff8fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93004000 - 0x93019fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9302b000 - 0x930b2fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c6000 - 0x930d1fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930db000 - 0x93108fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93122000 - 0x93132fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313e000 - 0x931a4fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d5000 - 0x93224fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93252000 - 0x9326ffff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93281000 - 0x9328efff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93297000 - 0x935a5fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f5000 - 0x93701fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93706000 - 0x93726fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9377a000 - 0x9377afff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9377c000 - 0x93daffff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9413c000 - 0x941aefff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e7000 - 0x942acfff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942ff000 - 0x942fffff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94301000 - 0x944c1fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9450b000 - 0x94548fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94550000 - 0x945a0fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a9000 - 0x945c3fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945d4000 - 0x945f4fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94682000 - 0x946bafff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946ff000 - 0x9471bfff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9472f000 - 0x94773fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94797000 - 0x947a6fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947ae000 - 0x947bafff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94800000 - 0x94818fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9481f000 - 0x94b49fff com.apple.QuickTime 7.4.1 (14) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c2f000 - 0x94ca0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e15000 - 0x94f45fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fd8000 - 0x94fe7fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fef000 - 0x9501cfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95023000 - 0x95033fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95037000 - 0x95066fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95076000 - 0x95093fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x957ac000 - 0x95867fff com.apple.WebKit 523.12.2 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958d0000 - 0x95983fff com.apple.JavaScriptCore 523.12 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x959ab000 - 0x95f28fff com.apple.WebCore 523.12.2 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9758a000 - 0x975a9fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97daf000 - 0x97dbcfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x991c6000 - 0x99ec6fff com.apple.QuickTimeComponents.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9af70000 - 0x9afa6fff com.apple.Syndication 1.0.7 (55) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9afc3000 - 0x9afd5fff com.apple.SyndicationUI 1.0.7 (55) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerBook6,8, BootROM 4.9.0f0, 1 processors, PowerPC G4 (1.2), 1.5 GHz, 512 MB
    Graphics: GeForce FX Go5200, GeForce FX Go5200, AGP, 64 MB
    Memory Module: DIMM0/BUILT-IN, 256 MB, built-in, built-in
    Memory Module: DIMM1/J31, 256 MB, DDR SDRAM, PC2700U-25330
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Modem: Jump, V.92, Version 1.0
    Bluetooth: Version 1.9.5f4, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Parallel ATA Device: MATSHITADVD-R UJ-835E
    Parallel ATA Device: Hitachi HTS541080G9AT00, 74.53 GB
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA

    In your case the finger points at Macromedia Flash Player which, since it is not called Adobe, must be out of date.
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 or 7.4 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5.2, but please see my footnote).
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2 and then the latest version obtained from here: http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash and installed.
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS, but please see my footnote if you are running Leopard.)
    In earlier versions than QT 7.1.3 in Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    You should also ensure, if you are running Tiger 10.4.11 or Leopard, that you have downloaded and installed the correct version for your Mac of Security Update 2007-009.1.1, which also deals with the Quicktime/Flash issues you may have experienced, such as the '?'. What happened was that both Quicktime as well as Adobe FlashPlayer tried to play the Flash video at the same time. This no longer happens. (N.B. Security Update 2007-009 1.1 requires both a restart and a permission repair.)
    If you get problems with viewing video on a website try moving this file to your Desktop:
    Hard drive/Library/Internet Plug-Ins/QuickTime Plugin.webplugin
    and then restarting Safari. If all now works, you can trash that file.
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    If your Safari keeps crashing, or if you are updating Safari (or just have):
    Input Managers and other plug-ins from third parties can do as much harm as good. They use a security loophole to reach right into your applications' code and change that code as the application starts up. If you have installed 10.4.11 and Safari is crashing, the very first thing to do is clear out your InputManagers folders (both in your own Library and in the top-level Library), log out and log back in, and try again.
    So, disable all third party add-ons before updating Safari, as they may not have been updated yet for the new version. Add them back one by one. If something goes awry, remove it again and check on the software manufacturer's website for news of an update to match your version of Safari. Remember: Tiger up to 10.4.10 used Safari 2.0.4 or, if you downloaded it, Safari 3.0.3 beta. Safari 10.4.11 uses Safari 3.0.4 which is not a beta. If Safari 3.0.4 on 10.4.11 is not the fastest browser you have ever used, then something is wrong!
    (Trying to revert to Safari 2 when running 10.4.11 can have repercussions, as Safari 3.0.4 uses a completely different webkit on which other applications like iChat, Mail, Dashboard widgets etc also rely.)
    Most errors reported here after an update are due to an unrepaired or undetected inherent fault in the system, and/or a third party ad-on. Add-on that have been frequently mentioned here, among others, for causing such problems are Piclens, Saft, AcidSearch and Pithhelmet. If you have them, trash them and go the developer's sites to see if new versions are available for Safari 3.0.4.
    You should also ensure, if you are running Tiger 10.4.11, that you have downloaded and installed the correct version for your Mac of Security Update 2008-001.

Maybe you are looking for

  • [SOLVED] Firefox recreating Desktop folder

    I run Xfce with no desktop icons, so I have no use for the ~/Desktop folder, which I've removed.  I've noticed that occasionally the Desktop folder will reappear in my home folder.  I saw a thread where a user claimed they saw this behavior after cli

  • Visual Basic Project

    I am currently making a valentine's day card for my programming class and I am suppose to create an algorithm to estimate the cost of the card. What I want the code to do is for every space the user enters in the richtextbox it adds one 5 cents to th

  • How to create a spool job for adobe form without dialog

    Hi All, I have a requirement like below. I need to generate a spool for Adobe form output and that sholud be without print parameters dialog popup. What are the parameters i need to pass to the FP_JOB_OPEN function module. Solutions will be appriciat

  • Can't access TC files

    My TC is working just fine as an airport, but it is not mounted on my iMac. APU does not see it. I can make it show up in my finder when I turn the airport off & on. It shows up correctly as a shared drive, but then just says "connecting..." for a lo

  • Where can I find older versions of Mail for Exchan...

    Mail for exchange was unable to start up on my E71 phone so I removed it and installed the updated 3.0.50 version from OVI store. However, from some reason, this is not working with our exchange server - right after connecting I get the "System error