Update PHP with IMAP (installing SugarCRM on 10.5.4)

I have seen parts of this covered before for 10.4.x but i am now trying to include c-client on 10.5.4.
see http://discussions.apple.com/thread.jspa?messageID=4598819&#4598819
I get sugar installed fine but on OSX when i try and set up mail it gives me this error:-
Inbound Email cannot function without the IMAP c-client libraries enabled/compiled with the PHP module. Please contact your administrator to resolve this issue.
*so far i have done the following.*
sudo mkdir -p /SourceCache
cd /SourceCache
sudo curl -O ftp://ftp.cac.washington.edu/imap/c-client.tar.Z
sudo tar xzf c-client.tar.Z
cd imap-200XX (folder will represent the latest version)
sudo make oxp
mkdir /usr/local/imap/include
mkdir /usr/local/imap/lib
cd c-client/
cp *.h /usr/local/imap/include
cp *.c /usr/local/imap/lib
cp c-client.a /usr/local/imap/lib
cd /usr/local/imap/lib
ln c-client.a libc-client.a
# i hate renaming when it might be needed in its real name.
i need to make mysql headers available too as trying to build php now brings up errors...
see here.
http://docs.info.apple.com/article.html?artnum=306782
I think the mysql headers (or client libs) must be installed to make php with the same configure command that it was installed with
I have downloaded the same version of mysql that 10.5 uses mysql-5.0.45.tar.gz and have expanded that into the /SourceCache - it configures and makes without erros but i am unable to build php with the mysql statements included - see below
cd /SourceCache
get php-5.2.6.tar.gz from your local mirror
cd cd /SourceCache/php-5.2.6
sudo ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --disable-dependency-tracking --with-apxs2=/usr/sbin/apxs --with-ldap=/usr --with-kerberos=/usr --enable-cli --with-zlib-dir=/usr --enable-trans-sid --with-xml --enable-exif --enable-ftp --enable-mbstring --enable-mbregex --enable-dbx --enable-sockets --with-iodbc=/usr --with-curl=/usr --with-config-file-path=/etc --sysconfdir=/private/etc --with-openssl --with-xmlrpc --with-xsl=/usr --with-pear --with-imap=/usr/local/imap --with-mysql-sock=/var/mysql --with-mysqli=/usr/bin/mysql_config --with-mysql=/SourceCache/mysql/mysql-5.0.45
I added my --with-imap=/usr/local/imap statement to include the libc-client c-client kit..
BUT i can only get it to build without the mysql statements.. do i really need mysql built in... it was in the original php configure script so i want to keep as much like the original as possible so i do not break things.
The build (with out mysql statmens) also throws up these few errors.. which is strange as these were in the build line from a info.php script i ran against the server...
Notice: Following unknown configure options were used:
--disable-dependency-tracking
--enable-trans-sid
--with-xml
--enable-dbx
Referances
my main source of info was from here...
http://discussions.apple.com/thread.jspa?messageID=4598819&#4598819
looks like apple have come up against this before but is for an earlier version of MySQL so i would not install it.
http://docs.info.apple.com/article.html?artnum=306782
http://discussions.apple.com/thread.jspa?messageID=7828379

It sounds like you need to download the MySQL headers. Yes you do need MySQL.
Here's how I solved this problem. I used this thread as my basis:
http://discussions.apple.com/message.jspa?messageID=6112771
My updated instructions are located below with sources. I had to complete these steps again today. You had better get good at this, because Leopard updates may force you to repeat these steps. I completed this stuff back in Dec and here I am again. I did not have to re-download, but that means that I am using older versions of these programs/modules. BTW - the older stuff still works for SugarCRM. You may be using more updated files if you are downloading/have downloaded newer stuff, make sure to adjust these instructions for the newer updated files and folders.
BTW - I just realized that you may be on a workstation, you may need to change the "/usr/lib" and "/usr/include" to "/usr/local/lib" and "/usr/local/include" respectively.
Good luck!
It took me a while to get this going, but I was able to install SugarCRM on Mac OS X using the following threads as my guideline. My major problem was missing MySQL Headers preventing PHP 5 from being compiled.
MySQL headers were missing from the Mac OS X Server distribution and I needed to get these before starting (see thread: http://lists.apple.com/archives/macos-x-server/2007/Nov/msg00277.html). Then, I followed the steps to download and compile PHP 5 with IMAP. Followed the steps to compile PHP5 and then once I recompiled PHP, Apache did not work, so I recompiled Apache.
If you can not compile PHP and it stops at searching for the MySQL headers, you can download them here (see thread: http://lists.apple.com/archives/macos-x-server/2007/Nov/msg00277.html).
As per the thread, you can download the headers from here:
(Follow instructions in ReadMe)
download and unpack from:
http://www.opensource.apple.com/darwinsource/other/MySQL-43.binaries.tar.gz
sudo tar -xzvf MySQL-43.root.tar.gz -C /
Follow steps for recompiling php and IMAP in THIS thread from David Shauger1 (Thanks David)
To install the IMAP extensions do this (as root):
sudo mkdir -p /SourceCache
cd /SourceCache
You may not need to download new c-client - look in /SourceCache for prior downloads (this note is for me)
sudo curl -O ftp://ftp.cac.washington.edu/imap/c-client.tar.Z
sudo tar xzf c-client.tar.Z
sudo mv imap-2006k imap-2006h
cd imap-2006h
sudo make oxp
cd c-client
sudo cp *.h /usr/include
sudo cp *.c /usr/lib
sudo cp c-client.a /usr/lib/libc-client.a
Then, download recompile the latest version of PHP 5 following these instructions:
http://downloads.topicdesk.com/docs/UpdatingPHP_on_OS_XServer.pdf
You may not need to download a new PHP - look in /SourceCache for a previous download (this note is for me)
mkdir -p /SourceCache
cd /SourceCache
curl -O http://us3.php.net/distributions/
php-5.2.6.tar.gz
tar xzpf php-5.2.6.tar.gz
cd /SourceCache/php-5.2.6
sh
CFLAGS=-DBIND8COMPAT
export CFLAGS
php configuration command:
sudo ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --disable-dependency-tracking --with-apxs2=/usr/sbin/apxs --with-ldap=/usr --with-kerberos=/usr --enable-cli --with-zlib-dir=/usr --enable-trans-sid --with-xml --enable-exif --enable-ftp --enable-mbstring --enable-mbregex --enable-dbx --enable-sockets --with-iodbc=/usr --with-curl=/usr --with-config-file-path=/etc --sysconfdir=/private/etc --with-mysql-sock=/var/mysql --with-mysqli=/usr/bin/mysql_config --with-mysql=/usr --with-openssl --with-xmlrpc --with-xsl=/usr --without-pear --with-imap --with-imap-ssl
make
make install
exit
Finally, follow steps for recompiling apache
Read entire thread (http://discussions.apple.com/thread.jspa?messageID=5676677&tstart=0)
1. Download the Apache2 source from http://httpd.apache.org/download.cgi (latest version is 2.2.9) and extract it.
2. Open Terminal and go to that directory. If you extract sources into your Downloads folder, type "cd ~/Downloads/httpd-2.2.9" and hit return
3. Type "./configure --enable-layout=Darwin --enable-mods-shared=all" and hit return
4. Wait for the process to complete and then type "make" and return
5. Wait for the process to complete and then type "sudo make install" and return

Similar Messages

  • Compiling PHP with IMAP enabled

    I am trying to run software that requires the IMAP module of PHP enabled. I don't see a module in Server Admin that I can simply turn on. What options do I have for enabling the IMAP module of PHP on Mac OS 10.5 server?
    Thanks in advance!

    Hi,
    first of all please mind that PHP 5.2 is out of support by the PHP developers on php.net. To receive bug fixes petc. you should use PHP 5.3.
    Secondly it is worth noticing that there are three function libraries (extensions) which allow accessing the MySQL database. One is the classic "mysql" extension, one is called mysqli, with "i" as in improved, and a driver for the PDO database abstraction - PDO_mysql. You are only activating one of these, in most situations you want all three of them gor maximum application compatibility.
    Now with PHP 5.3 PHP bundles an implementation complete of the MySQL Client functionality. So linking against a local installation is not needed. This implementation is called mysqlnd - MySQL native driver.
    To build w/ mysqlnd and all three function libraries use a configure line like this:
    ./configure with-apxs2=/usr/local/apache2/bin/apxs with-mysql=mysqlnd with-mysqli=mysqlnd with-pdo-mysql=mysqlnd
    If you have a strong reason for 5.2 or using libmysql I'd need more information, like which version of mysql was installed. Was it self-compiled or binaries from mysql.com etc. But I hope the above is fine.
    johannes

  • Friends, MacBook Pro 8,1 – Intel Core i5 – 2.23 GHz (early 2011)   New MB Pro with OSX 10.6 – current on all updates.  I successfully installed rEFit. I used Boot Camp to install Win 7.  All was great.  Then installed debian 6.  Somehow after the debian i

    MacBook Pro 8,1 – Intel Core i5 – 2.23 GHz (early 2011) New with OSX 10.6 – current on all updates.
    I successfully installed rEFit. I used Boot Camp to install Win 7.  All was great.
    Then installed debian 6.  Somehow after the debian install and restart (I know this sounds crazy) but I am now reduced to Win 7 only. rEFit is not present when rebooting nor is OSX or debian. Further, I am unable to force the install DVD to launch when rebooting, by holding C, D or F8.  The Option key brings me to the grey screen with a padlock. I have attempted the root and local pw- no go. Restart holding D takes me to the windows boot manager. I have attempted several options within the Advanced Options; including – Repair Your computer, safe mode and “last known good config,” All of which did nothing.
    I can see all my OSX files within win7. I tried to install the OSX within windows. Ya right, that did nothing..
    I only desire to get back to OSX...
    What are my options??

    Yes, you royally hosed up your machine.
    You should first try to get your files off, any way you can to a external drive.
    Your going to need to hold c and boot from the disk that came with your computer and a couple of screens in under the menu is a option for Disk Utility.
    Select your drive and Erase with Security Option Zero, format the drive HFS+ Journaled and when that's finished (about a hour or so) then quit and install OS X from the installer.
    I hope this works, but I suspect it won't. Others have hosed their machines trying to use a Linux disk without proper partition formatting too.
    Another option might be to use another Mac to c boot off the Snow Leopard disk and install OS X onto a external drive, take that to the problem Mac and try holding option and booting off of it to erase your internal drive.
    You could replace the drive.
    frederick s wrote:
     The Option key brings me to the grey screen with a padlock.
    Is this holding option while booting?
    There was someone else around here who hosed their Mac with a Linux disk too. Try to find it.

  • When I click on Firefox it opens with a box that says "Foxfire is installing your updates and will start in a few moments-. " then it says "Software Update Failed (in blue) with an exclamation mark inside a yellow triangle) The update could not be install

    When I click on Firefox the first time it says "Foxfire is installing your updates and will start in a few moments…. (with a green bar)" then it says "Software Update Failed (in blue) with an exclamation mark inside a yellow triangle)
    The update could not be installed. Please make sure there are no other copies of Firefox running on your computer, and then restart Firefox to try again." When I click the ok, Firefox opens up. If I open another Firefox window with the previous one still running, it doesn't give me any of these messages, it just opens normally.
    == This happened ==
    Every time Firefox opened

    If you can't install on top of the current installation then you need to delete or rename the current Firefox program folder to do a clean install.
    It is possible that your security software is using or locking files, so you can try to temporarily disable that software during the installation.

  • How to address HP Printer Software Update 3.0, iTunes 12.0.1 update that sits in the App Store, 'Calculating' for days with no install?

    The App Store indicates there is a Software Update that appears to include the HP Printer Software Update 3.0 and iTunes 12.0.1
    Unfortunately, the software update fails to install. Instead, it just sits there 'Calculating' for days with no progression on the status bar of the overall update.
    The update buttons of both the HP Printer Software Update 3.0 and iTunes 12.0.1 are both greyed out, with no progress bar.
    Not sure of what the issue is, there is no warning or error dialog box that appears or any indication of an application that may be interfering with the install.
    Any advice? 
    MacBook Pro (17-inch, Early 2011) 2.3 GHz Core i7, 4GB RAM

    Thanks for the suggestion. I wanted to install the individual updates but because I had settings to automatically download and install updates, whenever I opened the App Store, the system would try to download and install, preventing me from canceling the update to execute each application update one at a time.
    After changing the settings from automatically downloading and applying updates, followed by a restart. I was able to open the App Store and run each individual update.
    Thanks again.

  • WIndows 8.1 64bit, Windows Installers stalls with any install, updates or third party programs.

    WIndows 8.1 64bit, Windows Installers stalls with any install, updates or third party programs. Third party program installations work if I restart in safe mode. Updates don't as they cannot be installed in safe mode and require normal mode.
    Been happening for months now. Some installations after a long time finally proceed, others dont. 
    Already trying uninstalling antivirus (Bitdefender) with no result.
    Thanks

    Hi,
    Could you check this issue under clean boot?
    Also try this fix tool it repair corrupted registry keys.
    https://support.microsoft.com/en-us/mats/program_install_and_uninstall
    Regards,
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Can I install a 1 terabite hard drive and update it with time machine?

    What would I need to do? I have a 250 gig hard drive now, I would like to install a 1 terabite. Would I need to install the os then update it with the time machine backup to have everything that I have now? I have a MacBook Pro 13 inch with OSX Snow leapord. I had gotten this notebook mid summer of 2010. Any comment would be appreicated.

    Right now, I have a 320 gig hhd that I use for my time machine backup, I recently backed up my notebook, if I decide to upgrade the hhd to a 1 tera, I will get another 1 terahhd for time machine backup. I just wanted to know if I could change the hhd, install the os and instead of installing all the drivers, music, movies that I purchased, if time machine backup would do that for me. Thank you for your comment OGELTHORPE!

  • Took delivery of imac yesterday with pre-installed Pages, Numbers and Keynote. App store says they need updating but won't let me because I've never owned the major version of the software. I have paid like anyone else, so why can't I update?

    Took delivery of imac yesterday with pre-installed Pages, Numbers and Keynote. App store says they need updating but won't let me because I've never owned the major version of the software. I have paid like anyone else, so why can't I update?

    You must be signed into the Apple Store with your Apple ID or it won't work.
    and
    How to deal with a 100 Store Error:
    Try here >  Mac App Store: "An unknown error occurred (100)" when purchasing
    If that doesn't help, open the Finder. From the Finder menu bar click Go > Go to Folder
    Type this exactly as you see it here;
    ~/Library/Caches/com.apple.appstore/Cache.db
    Click Go
    Move the Cache.db file to the Trash.
    Now here:
    ~/Library/Preferences/
    Click Go
    Move these files from the Preferences folder to the Trash.
    com.apple.appstore.plist
    com.apple.storeagent.pllist
    Now here:
    ~/Library/Cookies
    Click Go
    Move the com.apple.appstore.plist file from the Cookies folder to the Trash.
    Empty the Trash, try the App Store.

  • I bought a new mac with software installed and my username will not update from another account?

    I recently bought an new power mac with Logic Pro and Final Cut Pro Installed.
    When I updated to the new OS X operating system, they need to be updated as well. And will no longer work.
    But it says it is on another account. Not sure what account. How do I find out what account they are on? How or can I do I move them into my other account?
    The Power Mac is registered to the account I am logged in on.

    Before buying a second-hand computer, you should have run Apple Diagnostics or the Apple Hardware Test, whichever is applicable.
    The first thing to do after buying the computer is to erase the internal drive and install a clean copy of OS X. You—not the original owner—must do that. Changes made by Apple over the years have made this seemingly straightforward task very complex.
    How you go about it depends on the model, and on whether you already own another Mac. If you're not sure of the model, enter the serial number on this page. Then find the model on this page to see what OS version was originally installed.
    It's unsafe, and may be unlawful, to use a computer with software installed by a previous owner.
    1. If you don't own another Mac
    a. If the machine shipped with OS X 10.4 or 10.5, you need a boxed and shrink-wrapped retail Snow Leopard (OS X 10.6) installation disc from the Apple Store or a reputable reseller—not from eBay or anything of the kind. If the machine is very old and has less than 1 GB of memory, you'll need to add more in order to install 10.6. Preferably, install as much memory as it can take, according to the technical specifications.
    b. If the machine shipped with OS X 10.6, you need the installation media that came with it: gray installation discs, or a USB flash drive for a MacBook Air. You should have received the media from the original owner, but if you didn't, order replacements from Apple. A retail disc, or the gray discs from another model, will not work.
    To start up from an optical disc or a flash drive, insert it, then restart the computer and hold down the C key at the startup chime. Release the key when you see the gray Apple logo on the screen.
    c. If the machine shipped with OS X 10.7 or later, you don't need media. It should start up in Internet Recovery mode when you hold down the key combination option-command-R at the startup chime. Release the keys when you see a spinning globe.
    d. Some 2010-2011 models shipped with OS X 10.6 and received a firmware update after 10.7 was released, enabling them to use Internet Recovery. If you have one of those models, you can't reinstall 10.6 even from the original media, and Internet Recovery will not work either without the original owner's Apple ID. In that case, contact Apple Support, or take the machine to an Apple Store or another authorized service provider to have the OS installed.
    2. If you do own another Mac
    If you already own another Mac that was upgraded in the App Store to the version of OS X that you want to install, and if the new Mac is compatible with it, then you can install it. Use Recovery Disk Assistant to prepare a USB device, then start up the new Mac from it by holding down the C key at the startup chime. Alternatively, if you have a Time Machine backup of OS X 10.7.3 or later on an external hard drive (not a Time Capsule or other network device), you can start from that by holding down the option key and selecting it from the row of icons that appears. Note that if your other Mac was never upgraded in the App Store, you can't use this method.
    3. Partition and install OS X
    a. If you see a lock screen when trying to start up from installation media or in Recovery mode, then a firmware password was set by the previous owner, or the machine was remotely locked via iCloud. You'll either have to contact the owner or take the machine to an Apple Store or another service provider to be unlocked. You may be asked for proof of ownership.
    b. Launch Disk Utility and select the icon of the internal drive—not any of the volume icons nested beneath it. In the  Partition tab, select the default options: a GUID partition table with one data volume in Mac OS Extended (Journaled) format. This operation will permanently remove all existing data on the drive.
    c. An unusual problem may arise if all the following conditions apply:
              OS X 10.7 or later was installed by the previous owner
              The startup volume was encrypted with FileVault
              You're booted in Recovery mode (that is, not from a 10.6 installation disc)
    In that case, you won't be able to unlock the volume or partition the drive without the FileVault password. Ask for guidance or see this discussion.
    d. After partitioning, quit Disk Utility and run the OS X Installer. If you're installing a version of OS X acquired from the App Store, you will need the Apple ID and password that you used. When the installation is done, the system will automatically restart into the Setup Assistant, which will prompt you to transfer the data from another Mac, its backups, or from a Windows computer. If you have any data to transfer, this is usually the best time to do it.
    e. Run Software Update and install all available system updates from Apple. To upgrade to a major version of OS X newer than 10.6, get it from the Mac App Store. Note that you can't keep an upgraded version that was installed by the original owner. He or she can't legally transfer it to you, and without the Apple ID you won't be able to update it in Software Update or reinstall, if that becomes necessary. The same goes for any App Store products that the previous owner installed—you have to repurchase them.
    4. Other issues
    a. If the original owner "accepted" the bundled iLife applications (iPhoto, iMovie, and Garage Band) in the App Store so that he or she could update them, then they're irrevocably linked to that Apple ID and you won't be able to download them without buying them. Reportedly, Mac App Store Customer Service has sometimes issued redemption codes for these apps to second owners who asked.
    b. If the previous owner didn't deauthorize the computer in the iTunes Store under his Apple ID, you wont be able to  authorize it immediately under your ID. In that case, you'll either have to wait up to 90 days or contact iTunes Support.
    c. When trying to create a new iCloud account, you might get a failure message: "Account limit reached." Apple imposes a lifetime limit of three iCloud account setups per device. Erasing the device does not reset the limit. You can still use an iCloud account that was created on another device, but you won't be able to create a new one. Contact iCloud Support for more information. The setup limit doesn't apply to Apple ID accounts used for other services, such as the iTunes and Mac App Stores, or iMessage. You can create as many of those accounts as you like.

  • HT1349 Trying to update laptop with new version of I tunes, but it is telling me that I am on a network that is not available. I cant even uninstall I tunes to re-install either? Help

    Trying to update laptop with new version of I tunes, but it is telling me that I am on a network that is not available. I cant even uninstall I tunes to re-install either? Help

    Hey JAK Entertainment,
    Thanks for the question. I understand that you are experiencing issues with installing/uninstalling iTunes. The following resource may provide a solution:
    "The feature you are trying to use is on a network resource that is unavailable" alert appears when you remove Apple software in Windows
    http://support.apple.com/kb/TS3704
    Additional Information:
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/ht1926
    Thanks,
    Matt M.

  • Please help: Utility used to install the update failed with exit code {0}.

    Hi,
    I admit to being a relative newbie at Solaris 10 administration, so please exercise forbearance on my behalf.
    I have just installed Solaris 10 11/06 on my laptop x86. Everything went fairly smoothly. I used the Installation Check Tool 1.2 to decide if my machine was adequate to run the OS and with the exception of a NIC driver, it was. I downloaded the sfe driver and configured networking and it seems to work exceptionally well. However, when I run Update Manager in JDS (the only way I know how to run it), it fails to update some of the packages. Sometimes, if I retry the same packages, sometimes it will eventually work. But it keeps failing with the following error on a consistent basis over the last several days:
    Utility used to install the update failed with exit code {0}.
    I hunted around on the web and the results were not promising. Is there a log somewhere that will give me the actual error or do y'all know of a quick fix.
    Thanks,
    Will

    That is strange indeed, could you try downloading and
    applying the unsigned zip to see if that works?The problem persits:
    # patchadd -M /root/119116/
    Validating patches...
    Loading patches installed on the system...
    Done!
    Loading patches requested to install.
    Done!
    Checking patches that you specified for installation.
    Done!
    Approved patches will be installed in this order:
    119116-22
    Preparing checklist for non-global zone check...
    Checking non-global zones...
    Cannot open pkginfo file //var/sadm/pkg/.save.SUNWhea/pkginfo
    Non-global zone check failed. No change made to the System.
    Patchadd exiting.

  • Utility used to install the update failed  with exit code 1

    Hello!
    When I try to install an update on my system, the following happens:
    # smpatch update -i 119116-22
    Update 119116-22 will not be downloaded since it already exists in the download directory.
    Installing patches from /var/sadm/spool...
    Failed to install patch 119116-22.
    Utility used to install the update failed with exit code 1.
    Validating patches...
    Loading patches installed on the system...Done!
    Loading patches requested to install.Done!
    Checking patches that you specified for installation.Done!
    Approved patches will be installed in this order:119116-22
    Preparing checklist for non-global zone check...Checking non-global zones...
    Cannot open pkginfo file //var/sadm/pkg/.save.SUNWhea/pkginfo
    Non-global zone check failed. No change made to the System.
    Patchadd exiting.
    Failed to install patch 119116-22.
    ALERT: Failed to install patch 119116-22.
    Does anyone know how to fix this?
    TIA
    Stephan

    That is strange indeed, could you try downloading and
    applying the unsigned zip to see if that works?The problem persits:
    # patchadd -M /root/119116/
    Validating patches...
    Loading patches installed on the system...
    Done!
    Loading patches requested to install.
    Done!
    Checking patches that you specified for installation.
    Done!
    Approved patches will be installed in this order:
    119116-22
    Preparing checklist for non-global zone check...
    Checking non-global zones...
    Cannot open pkginfo file //var/sadm/pkg/.save.SUNWhea/pkginfo
    Non-global zone check failed. No change made to the System.
    Patchadd exiting.

  • Updates fail with error 1328.   I have re-installed Acrobat XI Pro twice without problems.

    Updates fail with error 1328  I have re-installed XI Pro twice without problems.

    2
    William D. Burstow, CPG, QP
    Consulting Economic Geologist
    Tel:   541.573.1078
    Email:  <mailto:[email protected]> [email protected]

  • HT5945 new macbook pro loaded with mavericks. installed CS3 including prompted Java update. try to open photoshop &  empty splash screen pops up-can't go further. tried newer java update-same result. re-opened 4 times-same. help!!

    new macbook pro loaded with mavericks. installed CS3 including prompted Java update. try to open photoshop &  empty splash screen pops up-can't go further. tried newer java update-same result. shut down 4 times-same. any suggestions?

    Kappy wrote:
    Has it occurred to you that CS3 isn't compatible with Mavericks? Try using CS9 or 10.
    Sorry that's untrue. I have Photoshop CS3 running on 10.9.
    CS9 or 10? Now you are just making stuff up.
    Adobe claim CS3 will work, with a minor issue…
    http://helpx.adobe.com/x-productkb/global/mac-os-mavericks-compatability.html
    The Adobe updater fails to work for me.
    I was prompted to install J6RE which came from Apple, check the Apple support downloads http://support.apple.com/downloads/#java%206
    Sorry can't provide a direct link, it was just a dumb 'You need … please click install' dialog.
    I think the 10.9 java updater is installing version 7.

  • OK, I've downloaded Firefox 4.0, but there is no "continue" button to proceed with the "install" process! How do I install this update???

    OK, I've downloaded Firefox 4.0, but there is no "continue" button to proceed with the "install" process! How do I install this update???

    After saving the file which is likely called "Firefox Setup 4.0.1.exe" you need to run it to install Firefox 4.
    If you do not clear the downloads from the download manager, you can run the installer from the downloads manager. Open the download manager, then right-click on the Firefox setup file and select Open. As soon as you start running the setup file, close Firefox. You need to do this so that the setup file can replace the files in the Firefox installation directory.

Maybe you are looking for

  • TO_BINARY_DOUBLE after upgrade 9i/10g

    Hi all, we encountered strange xplans after migration. I found out the issue was ODBC provided bind variable as type 101 *kkscoacd Bind#0 oacdty=101 mxl=08(64) mxlc=00 mal=00 scl=00 pre=00 oacflg=01 fl2=1000000 frm=00 csi=31 siz=8 off=0 No bind buffe

  • Printing of Graphics and Frames ,not coming properly in dot matrix printer

    Hi Experts, I have one smartform layout for Good receipt note,have used the Logo and Frames .when i am printing in the Laser printer.everything is k.when i am printing in Dot matrix Printer(OKI Microline 380 24pin printer).the Logo and Frames are mis

  • CREATE Link MySQL to ORACLE

    Good morning!! I know that is posible to create a dblink between Oracle to MySQL but the question is, Is posible to create a Db-Link between MySQL to ORACLE? I hope amwer that question as soon as posible. Regads!!

  • Could not get to  host:port/pls/apex

    I have the http server running and can see the host/ page. But could not get the any host:port/* pages. This is Apex 3.1 on 10gR2 database I have run the install script successfully for setting up a dev environment as the install guide directed. The

  • Where has the 'bounce email' feature gone from Lion?

    Mail works OK after upgrade to LIon, I have set it up in classic mode for now.   However, I can't find the 'bounce email' feature.   This used to be a good way to reduce spam. Please Apple, let me have this feature back.