PHP Update and Modularization

The PHP package was rebuilt in order to provide more functionality while
reducing explicit dependencies and memory usage. This was achieved by
building most PHP modules as shared objects instead of building them
statically in.
In addition to this it is easier to use and package external PHP modules and
its configuration due to the possibility to have a separate config file for
every extension. Those ini files are stored in /etc/php/conf.d/ and will
automatically used by PHP.
If you are using PHP on a webserver connected to the internet you might be
interested in installing the php-suhosin package as well which was moved from
the [community] into the [extra] repository. Along with the suhosin-patch
which ships with the current PHP packge this extension provides some advanced
security features. For some more information on this see
http://www.suhosin.org.
The packages will remain in [testing] for at least a few days. Please test
this package with your favorite scripts and report any error or suggestions:
http://bugs.archlinux.org
If you update from a previous PHP setup, take care of the following changes:
* Due to the modularization you have to enable some modules which were
  built-in before. For a quick overview compare the modules section at the
  bottom of your php.ini with the new one which will be stored as
  php.ini.pacnew
* PHP itself does not have any explicit dependencies, but some extensions will
  only work with certain package installed. Those will be displayed during the
  installation.
* If you are using any PHP extension from [community] or AUR you will have
  to rebuild them against this PHP version. As soon as this package arrives in
  [extra], all extensions in [community] will be updated.
Pierre

Pierre wrote:
Well, you changed this in my.cnf then, right? By defaulkt Arch uses /tmp/mysql.sock (see http://cvs.archlinux.org/cgi-bin/viewcv … vs-markup). Any reason for changing this? In contrast to /tmp /var/tmp is persistent among rebooting.
Anyway: Did this work with the previous version of php? Does phpinfo show your changes to the socket location?
Everything was fine with the previous version. I upgraded to testing version 5.2.4-4 and mysql connection got broken. There's a silly enterprise application we use and if the mysql.sock file is in /tmp it gives security errors. That's why i need to change default config. Below is a screenshot from phpinfo.

Similar Messages

  • Older versions of Apple Updater and Bonjour can not be deleted

    I sent back my 1st Gen. Nano on recall. I then tried to sync the new 6th Gen. Nano to my iTunes 9.0. iTunes said I had to upgrade to iTunes 10.... When I tried to upgrade I got a message saying older versions of Apple updater and Bonjour could not be deleted. Also said something about Apple Software msi.dll not found.
    Going through the online Apple support procedures I was told to delete iTunes, which I did. It is now gone although I think it is in "My Music" but I don't know how to get it back to where it was.
    I called support and talked to a Asian Lady who spoke poor English and talked VERY fast. As I am 76 and hard of hear, which I told her at the begining, it was hard to talk with her. She told me I had no warrantee service available to me. I told her that the replacement Nano had a 90 day warrantee, which it does. I told her I felt if Apple was providing me with a replacement that required software updates to function in iTunes then their software to download the latest iTunes should contain whatever it needs to do so. SHE HUNGUP on me!!!!!!
    Now my question to you folks, how do I retrieve iTunes from the "My Music" location?
    And how do I do/get whatever I need to upgrade iTunes?
    Please speck like you are talking to an idiot as I am pretty dense on this.
    I did follow Apples on line procedures and this is the mess I'm in.
    Many thanks, Bill

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up").
    In the list of programs that appears in CleanUp, select any Apple Software Update entries and click "Remove", as per the following screenshot:
    Next, select any Bonjour entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install using an iTunesSetup.exe (or iTunes64Setup.exe) downloaded from the Apple Website:
    http://www.apple.com/itunes/download/
    Does it go through properly this time?

  • Roundcube not working after last php update [SOLVED]

    After the last php update my roundcubemail stopped working.  The log-in page loads and after attempting to log in I get the following error:
    IMAP Error in /usr/share/webapps/roundcubemail/program/lib/Roundcube/rcube_imap.php (184): Login failed for [email protected] from 192.168.1.1. Could not connect to ssl://localhost:993: Unknown reason (fsockopen() function disabled?)
    Last edited by whahn1983 (2014-09-19 18:46:11)

    I fixed it yesterday. I modified the PKGBUILD to get the upstream fix.
    # $Id$
    # Maintainer: Sergej Pupykin <[email protected]>
    pkgname=roundcubemail
    pkgver=1.0.2.3b55da
    pkgrel=1
    pkgdesc="A PHP web-based mail client"
    arch=('any')
    url="http://www.roundcube.net"
    license=('GPL')
    depends=('php')
    optdepends=('python2')
    backup=('etc/webapps/roundcubemail/.htaccess'
    'etc/webapps/roundcubemail/apache.conf')
    install=roundcubemail.install
    options=('!strip' 'emptydirs')
    source=("${pkgname}::git+https://github.com/roundcube/roundcubemail.git#commit=9a498212446f6c9a186df5652a7625526b590b78"
    apache.conf)
    md5sums=('SKIP'
    'f11b17e2a80b383cde4af963fb307541')
    prepare() {
    cd ${srcdir}/${pkgname}
    sed -i \
    -e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
    -e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
    config/defaults.inc.php \
    program/lib/Roundcube/rcube_config.php
    package() {
    mkdir -p ${pkgdir}/etc/webapps/roundcubemail
    mkdir -p ${pkgdir}/usr/share/webapps
    mkdir -p ${pkgdir}/var/log
    cd ${pkgdir}/usr/share/webapps
    cp -ra ${srcdir}/${pkgname} roundcubemail
    cd roundcubemail
    mv .htaccess $pkgdir/etc/webapps/roundcubemail/
    ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
    mv config $pkgdir/etc/webapps/roundcubemail/
    ln -s /etc/webapps/roundcubemail/config config
    install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
    install -Dm0644 $srcdir/apache.conf $pkgdir/etc/webapps/roundcubemail/apache.conf
    # install -dm0755 $pkgdir/etc/php/conf.d/
    # cat <<EOF >$pkgdir/etc/php/conf.d/$pkgname.ini
    #open_basedir = ${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
    #EOF
    rm -rf temp logs
    Then I added these values to my roundcube config:
    // IMAP socket context options
    // See http://php.net/manual/en/context.ssl.php
    // The example below enables server certificate validation
    //$config['imap_conn_options'] = array(
    // 'ssl' => array(
    // 'verify_peer' => true,
    // 'verify_depth' => 3,
    // 'cafile' => '/etc/openssl/certs/ca.crt',
    $config['imap_conn_options'] = array(
    'ssl' => array(
    'verify_peer' => false,
    'verfify_peer_name' => false,
    // SMTP connection timeout, in seconds. Default: 0 (use default_socket_timeout)
    // Note: There's a known issue where using ssl connection with
    // timeout > 0 causes connection errors (https://bugs.php.net/bug.php?id=54511)
    $config['smtp_timeout'] = 5;
    // SMTP socket context options
    // See http://php.net/manual/en/context.ssl.php
    // The example below enables server certificate validation, and
    // requires 'smtp_timeout' to be non zero.
    // $config['smtp_conn_options'] = array(
    // 'ssl' => array(
    // 'verify_peer' => true,
    // 'verify_depth' => 3,
    // 'cafile' => '/etc/openssl/certs/ca.crt',
    $config['smtp_conn_options'] = array(
    'ssl' => array(
    'verify_peer' => false,
    'verify_peer_name' => false,
    It works like a charm.

  • I can't update and restore my ipod. Also it has 7.5gb wasted

    Hi,
    While I was charging my ipod video (30gb), the cable got disconnected accidentally, after this, the ipod has not anymore songs, contacts, video... anything on it, everything has been deleted, but when I used itunes, in the section of the ipod appeared 7.5 gb used. Then I tried to update and restore with the last update software, but any of those worked and it always showed the same message error (error -60008), I charged the ipod again with all songs, videos, etc and it works perfectly, but there is still a problem in the memory of the ipod. There are 15gb which appear used but there are 7.5gb of those which supposted to be free but apparently contain the same files.
    The ipod has 12.6 gb free
    ibook g4   Mac OS X (10.4.6)  

    I had a similar problem last week, my ipod was showing space used but I couldn't access anything on my ipod. I put out a query here but wasn't lucky enough to get an answer. In the end I reformatted the ipod and rebuilt alll my play lists (a major job) - lesson learnt here was to back up the ipod when its running smoothly. I now use podutil from http://www.kennettnet.co.uk/software/podutil.php
    so if it crashes again (or my 3 year old pulls out the usb at a critical moment) all is not lost and it's just a matter of a quick restore.
    MB67

  • I did a recent update and now when I try to use FaceTime it does not take my apple id. What can I do?

    I did a recent update and now when I try to use FaceTime it does not take my apple id. What can I do?

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
     Cheers, Tom

  • Trying to install update and error message says older version of itunes cannot be removed

    trying to install update and error message says older version cannot be removed

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Novell update and registration servers

    bit of an odd one i've run into
    client has moved from an onsite proxy server to a cloud based one (zscaler). Due to the authentication mechanism now being browser based and not the traditional popup prompt type, we cannot use the proxy to get to the Novell update and registration servers
    Windows update and activation servers are added to an exception list to not require authentication at the proxy level so they will work
    So the question I have is, what are the addresses that I need to add to the zscaler proxy to make novell server activation and updates work properly, as I can't seem to find a list of server addresses anywhere on the Novell website, only a list for sles 9 which is not of much use now since we are using a mix of OES2 and OES11 servers
    Can someone help me out here or point me in the direction of where to look for the details about the servers, the only one I know of is nu.novell.com but i'm betting there is more than just that one

    In article <[email protected]>, Gleach1 wrote:
    > So the question I have is, what are the addresses that I need to add to
    > the zscaler proxy to make novell server activation and updates work
    > properly,
    >
    I'd certainly start with nu.novell.com and see if that gets you going.
    And if that doesn't do it, some good WireSharking should help point out
    where it is trying to get to.
    Don't run away from a solution just because it looks too simple as there
    are enough of us trying to keep up the KISS principle that some really
    are that simple.
    Andy Konecny
    Knowledge Partner (voluntary SysOp)
    KonecnyConsulting.ca in Toronto
    Andy's Profile: http://forums.novell.com/member.php?userid=75037

  • Created PHP site and Dynamic Pages. So what next?

    Hey guys,
    So i have created a site. It is a simple Car Dismantlers site with 4 pages in a front end section for visitors to the site. The pages are index.php, contact.php, search.php and directions.php. I have a back end section in an admin folder where an administrator can add, update and delete records from a database which is password protected. The whole site is working fine locally but now i want to upload it and dont know where to start. I have domain name set up with Lime Domains, it is PHP and MySql ready. This is the first php site i have created and I dont really know where to start to get it up and running now.
    Thanks in advance.

    Hey J.S,
    Do you think its a bad idea to have Database admin over them web? How could i make my db admin into a program to run on a certain computer. i.e on the car breaker yard where there is no dreamweaver.
    Thanks J.S

  • PHP update

    Do you know of any "basic sane guidelines" to update the existing PHP on a Mac.
    i do see that apple has available the most recent version of PHP available, http://www.apple.com/downloads/macosx/unixopensource/php.html
    Question: would the Mac OS automatically go thru the necessary procedures to bring the current existing PHP in the Directory up to date when the human executes a download of PHP via the GUI ?.
    Or does the human need to re-configure the PHP file`s manually.
    Where would some basic sane guidelines be found to update the existing PHP on the Mac.
    Thank you.
    The end result here is to load up to date PHP and MY SQL, rather then MAMP, when the Mac has already Apache installed and a existing PHP file and SQL lite.
    It just seems redundant and unnecessary to load MAMP.
    thank you again
    any assistance to basic reference would be appreciated.

    what ok wrote:
    Do you know of any "basic sane guidelines" to update the existing PHP on a Mac.
    Here is one of many such examples. Since you appear to be using 10.4.11, some things might be different.
    You may be able to go to Apple's open source site and download their PHP package. That would be the best way to update Apple's PHP with your own.
    Question: would the Mac OS automatically go thru the necessary procedures to bring the current existing PHP in the Directory up to date when the human executes a download of PHP via the GUI ?.
    No. If you installed your PHP correctly, it would live in /usr/local and be outside of any Apple update. If you tried to update your Apple MySQL yourself, updates would probably fail eventually and you would have to re-do everything. If they did succeed, your best-case scenario would be that you would lose all of your modifications with each update.
    Or does the human need to re-configure the PHP file`s manually.
    Yes. There are lots of instructions on how to do this. Almost all of them describe the process on Linux. You will have to translate the file paths to MacOS X yourself.
    The end result here is to load up to date PHP and MY SQL, rather then MAMP, when the Mac has already Apache installed and a existing PHP file and SQL lite.
    It just seems redundant and unnecessary to load MAMP.
    I strongly urge you to reconsider MAMP. It makes perfect sense to install redundant copies of packages that have different capabilities. People do that all the time. Why go looking for a 3-day solution when a 3-minute solution is available?

  • Installed PHP & MySQL, and now I have file permission errors.

    Hi Everyone
    I recently made a switch from using MAMP to making a separate installation of PHP, MySQL and Rails. I used the first tutorial for Rails + MySQL, and the second one for PHP;
    http://hivelogic.com/narrative/articles/ruby-rails-mongrel-mysql-osx
    http://www.entropy.ch/software/MacOSx/mysql/
    Unfortunately, I now receive errors when trying to install activeCollab through it's own PHP install script, and WordPress won't let me import xml backups into a locally installed WordPress. This must mean that I don't have full Read/Write access to my 'Sites' directory (this is set as my default htdocs in the Apache httpd.conf). I haven't noticed any problems with Rails - so far it's only been PHP based CMS's which have thrown up the permission errors.
    I've checked the file permissions on my 'Sites' folder - I'm the only user on the machine, and my account has full Read/Write access to the folder. However, I've noticed that there is also the option to choose 'Group' access, for which my account is again selected and given Read/Write access.
    Then there is 'Others' category, and this has 'Read only' access. Is there an option in there which I need to select and give Read/Write permissions to? mysql, php ?
    Or, is there a MySQL/PHP/Apache config file somewhere, within which I need to give global read/write permissions?
    I didn't have this problem when I was served up local sites from MAMP - and I also configured MAMP to use the 'Sites' folder as it's default htdocs folder. I get the impression that because MAMP was installed as an 'Application', that it automatically inherited my user permissions - maybe PHP and MySQL don't inherit my user account permissions because they are services?...
    I've come very far with getting everything installed to work with the OS X bundled Apache server (which I believe is 1.3 - I certainly haven't updated it) so I'd love to get everything finally configured - therefore, any help with this is very, very much appreciated!
    MacBook Pro 2.4Ghz    

    You'll probably get a better response at the Server Products or Networking & Web http://discussions.apple.com/forum.jspa?forumID=733 forums.

  • USB 3.0 Driver updated and corrupted .

    Hi, I am using many of your products on my computer and i just updated the USB 3.0 drivers with the MSI update utility . I had 2 updates and one of them worked and the driver update didnt . I then tried to install it again . I saw that nothing happened so i restarted my computer to try again. I restarted my computer and my keyboard and mouse don't work . So i cant login to reinstall or do anything on my computer. I tried pushing the F8 key and also F2 key on boot. The mouse and keyboard are working fine there . Its only when i start windows and want to login.
    Help would be much appreciated. PS i probably dont have a restore point but i'll look into that. ( if i could get directions for using that restore point it would be much appreciated to ).

    No need to make 2 identical threads.
    >>Please read and comply with the Forum Rules.<<
    Continue https://forum-en.msi.com/index.php?topic=183063.0
    Topic Locked

  • My firefox updated and when i load my script up it crashes my firefox wha can i do to resolve this problem

    my firefox updated and when i load my game with a script up it crashes

    You can check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting
    Do a malware check with some malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • I am trying to update Adobe Bridge and Photoshop CS6, because it is not opening my CR2 files taken by my Canon 6D.  I have tried to go to help updates, and the software says that it is "Up to Date".  However, if I view the plug-in, it says that Camera R

    I am trying to update Adobe Bridge and Photoshop CS6, because it is not opening my CR2 files taken by my Canon 6D.  I have tried to go to help > updates, and the software says that it is "Up to Date".  However, if I view the plug-in, it says that Camera Raw is only version 7.1.  I can not find a direct download for Camera Raw 7.3, only the DNG converter, NOT CAMERA RAW!  Please Help!

    Did you fix your issue?  I am having the same one

  • HT5381 i did a software update and now mail wont open at all

    Help......my mail app is coming up with an error "You can't use this version of Mail with this version of Mac OS X".  Can I uninstall the update?

    !! WARNING !!
    about the September 2012
    "Security Update 2012-004"
    If you've got "Mail.app" in a folder OTHER THAN the root "Applications" folder,
    MOVE "MAIL.APP" TO THE APPLICATIONS FOLDER
    **BEFORE** INSTALLING THE "004" UPDATE!!
    Because *IF* you use OSX's integrated Software Update app from the Apple menu to do the "004" updating, and *IF* your Mail.app is NOT in the Applications folder, then buddy, you've got some sitdown fixit time ahead of ya and/or some internet tie-up time downloading the "004" update file itself.
    Been through it all, already.  In fact, just got done getting my Mail back up & running. And I tried everything short of attempting to unpacking my "Mail.pkg" receipt file using... whatever... even Pacifist couldn't get it out. So that fixit "Plan D" died quick. And I'm not savvy enough to use Terminal commands to do "Plan E," so that SUDO stuff was my brick wall.
    So I compressed my entire "Mail" subdirectory that contain all my emails, for safekeeping during the required surgery, or whatever would work, leaving the original Mail directory where it was. In case something bad happened in all my fixit whatevers, the one thing I *didn't* want to cross paths with was a hosed Library -> Mail folder. Then I'd be pssd. But I can wipe out that ZIP now 'cause all's well now. After 6 hrs of downloading thru a mobile broadband hotspot running at only 14KB/sec speed due to my having gone over my T-Mobile hotspot plan's bandwidth amount (throttled-down after reaching the limit, tho not cut off completely. Kinda nice, but it's a huge speed drop).
    I tried moving the two Mail.app versions around, compressing them & then trashing the original so they wouldn't be recognized, blabla, even booted my Mac in Safe Mode & reinstalled the "MacOSX 10.6.8 (Snow Leopard) Update Combo.dmg" update file, which in the past has fixed many problems. But after restarting, not this one.
    Like a dummy who ignored knowing better, I had my Mail.app in a folder other than the Applications folder, with only an alias to that being in the Applications folder. NOT GOOD ENOUGH. The updater don't see that as nuthin special or useful.
    So if you've got, like I've got, "old" icons for Mail.app (v4.5) in your Finder toolbar & in your Dock that all point to "Mail.app v4.5" in whatever folder you've got that in, other than in the Applications folder (where Apple apparently REQUIRES that it be located, and ONLY there, at least for OSX updating purposes), then after you download & autorun that "004" updater using Software Update, NONE of your pre-existing Mail icons will work. And MOST aggravatingly, **NOR** will your brand-new "Mail.app v4.6" work that came out of the "004" updating installation.  So basically, your Mail.app's... all of 'em.... are hosed. But only if you run the "004" update without your "Mail.app v4.5" being located in your Applications folder and ONLY in your Applications folder. And duplicates of Mail.app, scattered around your HDD??  Always a problem with many Apple apps.... The Apple software engineers apparently like 'em to be in the Applications folder, and in ONLY there, and ONLY the latest version, and ONLY 1 single copy of each on your entire HDD. They just don't seem to stress that enough, it appears. Kind of an oversight for them to not emphasize that, IMO...
    My recommendation for this particular September 2012 "004" update:
    If you run Software Update, and if you see the "Security Update 2012-004" listed as available for download, UNCHECKMARK IT.  DO NOT DOWNLOAD IT USING SOFTWARE UPDATE !  Instead, download the actual update file itself.
    Same thing, only a different way of doing it. Most importantly, you'll be skipping the auto-installation that Software Update performs.
    AND you'll have that update file on your HDD for future fixits, should a nasty "unfixable" problem come up.
    First, #1. Do a filename search for "Mail" (Option-Command-Spacebar). Scroll down to where the "Apps" are located in the list under the "Kind" column heading. First, find your Mail.app that's v4.5. Get that bugger into your Applications folder if it's not already there. Next, Trash all other "Mail.app" apps you see in that same list that you may have elsewhere on your HDD.
    #2. Go here: https://support.apple.com/kb/DL1586
    And download the actual "004" DMG update file: "SecUpd2012-004.dmg"
    And of course, it's a biggie.... 270MB... so watching grass grow may be involved here if you've got a slow connection (go to a MacDonalds & do it, like I shoulda done).
    3. After downloading, I'd recommend closing down all apps, emptying the Trash, and restarting.
    Then, after restarting, run Disk Utility's "Repair Disk Permissions."
    Then, doublecheck that the Mail.app version 4.5 is in your Applications folder.
    THEN fire up & install "SecUpd2012-004.dmg."
    Reboot.
    After the reboot, your Mail.app version 4.5 in the Applications folder will have become Mail.app version 4.6 in the Applications folder, and all will be well again.
    And you can dump that zipped-up "Username -> Library -> Mail" folder then, too.
    Happy Mac'in!
    Kevin Kendall
    Macbook 7,1
    (Apple's very last all-white Macbook model)
    2.4GHz - 256GB Crucial SSD - 8GB Crucial RAM
    OS 10.6.8 Build 10K549 + Win 7 Ultimate thru VMWare Fusion v5.0.1

  • HT204053 Our family uses one Apple ID for all of our iPhones.  We installed the update and now we are all getting each others photos and texts.  How do we stop this?

    Our family uses one Apple ID for all of our iPhone 5's.  We installed the update and now we are all receiving each other's pictures and texts.  How do we stop this? 

    Have a look here...
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l

Maybe you are looking for

  • Query on connecting two diff user interface systems?

    Hi Friends Is it possible to connect MM system ECC 6.0 EPh4 and SuS system SRM 7.0 to a portal and both buyers from MM side and Suppliers from (SRM component)SuS side logs into portal and buyer should have a buyer role+display role of supplier so tha

  • Error when install Oracle IDM 11gR1 11.1.1.6

    Hello everybody I've tried to install Oracle IDM 11.1.1.6 with this instruction (http://docs.oracle.com/cd/E23943_01/install.1111/e12002/instps2.htm#INOIM75552). My system: - 2 VMware virtual server (one for Oracle DB 11gR2, and one for IDM) I instal

  • Can you load Illustrator 8.0 on Windows 7 64 bit operating system?

    I just bought a new Dell Desktop that has Windows 7 64 bit operating system. My old version of Illustrator 8.0 at Set Up will not load ? Is there a work around for 64 bit ? please try an e-mail to [email protected]

  • Why not 'uname -r' in externl modules PKGBUILD?

    I am in doubt about the correct AUR policy for PKGBUILD of external kernel modules: in the PKGBUILD and in the install file, one has often to refer to the kernel against which the module should be compiled. The best way to do this seems to me to use

  • And then, where have you disappeared to?

    There used to be a very active Adobe forum participant. He used to annoy me and he used to delight me. He most frequently came up with noteworthy answers. I used to be a regular reader of the Adobe forums too, not so much a participant. Things at Ado