Need professional people to guide to install PHP4.0 in Solaris 8

as above.
SUn-learner.

There is a very good article at http://www.devshed.com/Server_Side/PHP/SoothinglySeamless/ which gives instructions for installing Apache, MySql, SSL and PHP.
Rgds / Gareth

Similar Messages

  • I need step by step guide to install MSI package through group policy

    I need step by step guide to install MSI package through group policy its about.
    I tried a lot using software deployment with GPO but its not happening may be I am doing mistake I am not getting.
    help.
    Thanks,
    Mohan

    Hi,
    Maybe we could refer to the following Microsoft KB article for 
    detailed information about how to use Group Policy to remotely install software.
    How to use Group Policy to remotely install software in Windows Server 2008 and in Windows Server 2003
    http://support.microsoft.com/kb/816102
    Hope this helps.
    Best Regards,
    Andy Qi
    Andy Qi
    TechNet Community Support

  • Guide to install Oracle 11gr2 on solaris 10 wiht SAN storage

    Hey expert,
    Anyone install Oracle 11g2 RAC on solaris 10 with SAN storage before. Any link and proper document that i can follow. Appreacite you guy can assist me.
    Regard
    liang
    Edited by: 816734 on Sep 15, 2011 2:32 AM

    Please check the following link :
    http://www.oracle.com/pls/db112/portal.portal_db?selected=11&frame=#solaris_installation_guides
    Anytime!

  • Hi, how do I download acrobat professional 7?  I can't find a link for Mac. I reinstalled CS2 (as my old G4 Powerbook needed reinstalling), but it didn't install instal Acrobat or Distiller.  Adobe don't seem to have any contact mechanism.

    Hi, how do I download the replace CS2 acrobat professional 7?  I can't find a link for Mac. I reinstalled CS2 from adobe (as my old G4 Powerbook needed reinstalling), but it didn't install instal Acrobat or Distiller.  Adobe don't seem to have any contact mechanism.
    I put my old acrobat back onto my machine (from a backup made before reformatting) but it wants the box serial number.  when I did that however, the replacement CS2 photoshop, etc, wouldn't work, so I had to install it again, but then, you guessed it - acrobat won't work again.

    Hello Alan,
    Acrobat 7 is older version. Refer below link for more information and how to download.
    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3
    Adobe has made earlier versions available for customer's convenience.
    Hope all will go well !!

  • Guide to installing XE and Apex on Oracle Enterprise Linux 5.3 (64 bit)

    I have just been through a time consuming and frustrating process of installing Oracle XE 10gR2 on Oracle Enterprise Linux 5.3 x86-64 and I want to share my experience so that others can benefit from it and overcome the same problems more quickly.
    Prior to starting I had installed OEL 5.3 and been using it for a few days. The system I am using is a home built box with an AMD Phenom X4 955 Black Edition, 8 Gb RAM, Highpoint RR2680 RAID controller with 4 1TB disks in a RAID5 array and an additional 320Gb HDD storing the OS. I am using KDE3.5 on the desktop.
    The main problem I encountered was with SELinux. As I eventually intend to have this system exposed on the Internet I was reluctant to switch it off despite having read extensively about the issues surrounding it and Oracle. I had several failed attempts at the installation process before succumbing to the reality that SELinux and Oracle are not happy bedfellows. I decided to switch SELinux to permissive mode having followed the advice here.
    I found a very helpful guide to installing XE on Linux here as part of the installation of an application called Spacewalk. Note that you do not need to complete the whole Spacewalk installation, but just follow the instructions in the linked page.
    Before you start you need to ensure that the UID of your oracle user is less than 500. Mine was 500, so I used the following commands to fix this:
    usermod -u 250 oracle
    find / -uid 500 -exec chown oracle {} \;
    These change the oracle UID to 250 (but check that isn't already used first!) and the find command searches for all files that were owned by oracle (but weren't after the usermod cmd) and changes them back to oracle's ownership.
    Now follow the Spacewalk instructions until you reach the Server Setup section. Before you do this you need to make a couple of changes to the script /etc/init.d/oracle-xe. I found these changes in various places, such as [link(1)|http://forums.oracle.com/forums/thread.jspa?messageID=1345771&#1345771] and [link(2)|http://dbataj.blogspot.com/2008/08/lblibrarypath-is-not-set-on-startup.html].
    Note that in link(1) the oracle-xe-selinux packages installed have the same effect as the chcon command on the shared libraries so it isn't necessary to perform this step.
    Open /etc/init.d/oracle-xe in vi (or your favourite editor) and do the following:
    line 49: change /bin/su to /sbin/runuser
    after line 52 (export PATH...) add the following lines:
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
    There are further changes recommended to /etc/init.d/oracle-xe in [this post|http://forums.oracle.com/forums/thread.jspa?messageID=3201491&#3201491] but I haven't done them yet.
    Having done the above changes you can now configure Oracle XE by running /etc/init.d/oracle-xe configure (as root!). As I have Apache Tomcat running on port 8080 I changed the default HTTP port to 8500 but kept the listener on its default port of 1521. Once the confuration script is done you will need to change the ports SELinux uses for Oracle as follows:
    semanage port -d -t oracle_port_t -p tcp 9000 - deletes port 9000, which is the SELinux default port for Apex
    semanage port -a -t oracle_port_t -p tcp 1521 - ensure that listener port is OK (assuming you used default of 1521, change accordingly if you didn't)
    semanage port -a -t oracle_port_t -p tcp 8500 - add the new Apex HTTP port to SELinux
    After all this running:
    semanage port -l | grep oracle
    should show you:
    oracle_port_t tcp 1521, 8500
    I ignored the TNSNAMES.ORA part of the Spacewalk instructions and proceeded with the 'Client setup on 64bit platform' and 'Configuring sqlplus' sections.
    For the latter I created a bash script which I have made available in the oracle user and my own user's home directories:
    cat > configure_oracle_10g_xe.sh
    ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
    PATH=$PATH:$ORACLE_HOME/bin
    ORACLE_SID=XE
    export ORACLE_HOME ORACLE_SID PATH
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
    I did this as I intend to install other Oracle databases, e.g. 11gR2, on this box later so I didn't want to put the above in .bashrc.
    Having done the above you should be able to log into the database using sqlplus and the XE setup is complete.
    The upgrade of Apex 2.2 to Apex 3.2.1 was fairly painless so I won't go into much detail about it - just follow the instructions provided by Oracle.
    The only issue I had was right at the end of the process and is documented and answered in [this thread|http://forums.oracle.com/forums/thread.jspa?threadID=958611&tstart=0].
    That's it - I hope somebody will find this useful.

    On Oracle Metalink site, there are many documents which says that Oracle 32 bit software works on 32 bits OS and 64 bits software works on 64 bits OS. Official support is only in those combination....
    So there is no good way to help you in your case-XE is 32 bit application with hard codded compiled libraries which most of them would not work on 64 bit OS.
    Sorry
    8(
    Hope this helps

  • Need my adobe acrobat 9 standard installed on new laptop

    how can I get this installed in new computer? does anyone have a number for adobe to talk to a live person?

    I never had a CD for acrobat 9 standard, it was installed via Adobe after a
    phone call and a CC# They have done this 3 times for me, I just need a 
    number for Adobe I can call and talk to a live person. Thank you
    In a message dated 11/23/2014 4:54:33 P.M. Eastern Standard Time, 
    [email protected] writes:
    need  my adobe acrobat 9 standard installed on new laptop
    created by Bill@VT (https://forums.adobe.com/people/Bill@VT)  in  Acrobat
    Installation & Update Issues - View the full  discussion
    (https://forums.adobe.com/message/6955873#6955873)

  • I need help making a new Arch install ISO

    I have posted a couple of messages, but as yet no one seems to have responded, probably because they have not read them.
    I need help building a new ISO for Arch, to take account of dmraid.
    I can and have built ones that get so far, and clearly I am not that far away.
    All I need help with now is getting at the contents of the initial ramdisk (/isolinux/initrd.img) so I can make a new one with modifications, and if anyone can help, I need a hand working out how to use the kernel26.img that I will end up with on a system.
    Any help appreaciated.

    As far as I know this will be included in the next ISO release. I solved it by manually bringing the dmraid package to the install and wrote a guide on installing your root system on dmraid. However when the system crashes I have the slight inconvenience of having to install dmraid and manually mount the sets to do a recovery. I guess this is the part you want to get rid of aswell. I decided to wait until the next holy ISO.

  • MSE : "Files needed to display video are not installed..."

    I installed the MSI DigiVox ATSC w QAM USB stick. Live TV setup and channel scanning worked fine. But then when I try to use the tuner in Windows Media Center, and play live TV, I get stuttering video and audio for a few moments before this message is displayed:
    "Files needed to display video are not installed or not working correctly. Please restart Windows Media Center or restart the computer." I have of course tried both.
    WMC plays back movie files from my HDD without any problems.
    One symptom is when I go through guided setup, and choose 5.1, the Test button does not result in any audio output. Even though WMC's system sounds and file playback audio works fine.
    I have Win 7 64 bit, all updates. Intel i5 2500K integrated video (HD Graphics 3000) - latest drivers installed. Connecting via HDMI.
    I tried the exact same tuner on a Shuttle based x86 Win7 Ultimate 32-bit system, with a discrete ATI video cards, and everything worked fine.
    1) Is there a problem with the 64-bit drivers, or
    2) Is there a problem with MSI Digi Vox and Intel HD 3000 graphics?
    3) Something else?
    Thanks!

    If I connect the HTPC directly to my Samsung DLP, it works fine.
    There must be a problem with the combination Intel HD3000, Onkyo TX-SR605 and Windows Media Center that I probably will never be able to solve  
    EDIT: So I tried a discrete ATI video card, and had the same problem. Ergo, it must be that WMC cannot handshake or communicate with my Onkyo TX-SR605 receiver.
    EDIT2: Also, my old 32-bit HTPC connecting via the same receiver, there is no problem. This is so frustrating. I think I will re-install Windows 7 64-bit + all drivers, and try WMC7 audio + Live TV before installing anything else.

  • Java plugin the idiots guide to installing ?

    For the love of ... how do you import these java plugin in's. Every time i get a software update i need to re~download the java plugin to play Supremacy 1914. Can some one provide an idiots step by step guide to installing this software. Many thanks.

    You don't say what operating system version you are on and the process may differ depending on this, however for Lion and Mountain Lion the following applies.
    The latest Java update from Apple issued this week removes the Java Preferences utility from the Utility folder and also removes Java Applet support from all web-browsers.
    To reinstate Java Applet support you need to go to http://www.java.com/en/download/testjava.jsp
    Then click on the 'Test the currently installed version of Java' link
    Then you should see a message saying Missing Plugin, click on this
    You will now get a dialog box, click on the More info button
    This will take you to a download webpage for the latest Mac Java software
    Click the button to download the Mac Java software
    This will download a disk image file
    Once it has finished downloading mount the image file by opening it
    In the Finder window it opens run the Java installer by double clicking on it, and then install as normal
    Quit the web-browser
    Relaunch the web-browser (which forces it to load the new Java plugin)
    Visit the http://www.java.com/en/download/testjava.jsp page again
    Click on the 'Test the currently installed version of Java' link again
    This time it should work and show you the version proving it is working

  • Guide to installing SSD

    Hello The pc comes with a hybrid harddrive with 16 GB express cache, and some say, that I am therefore not able to install SSD. The wish for SSD comes from the upcoming Win 10 which I would like to install on SSD alongside most used applications i.e. Office and such. I've been in contact with HP, but they seem to be unable to clarify the how-to issue. Strange when you consider that they sell these pc's for a living. As I am quite new to SSD, I would warmly welcome a guide with at step-by-step for dummies on how to install SSD and new os on this particular machine. Also a list of must have's would be nice (cables, rack and ...) along with a description of where on the motherboard, the drive is to be connected. Finally any tip will probably be needed - I read somewhere, that you have to disable the original hard drive to install SSD, and somewhere else that the boot sequence needs to be changed. Others again says that the SSD will not be automatically recognized, and some say that I need to recover the pc to install SSD. All these statements leave me a little confused and with many more questions, for example what will happen with the old Win 8.1 on the C-drive, if I install a Win 10 on SSD? Wow - this was a lot to ask, but I hope someone is able to help me out, and I send you all at great thanks in advance Kindly nksdkDenmark

    Hi, There is a lot of confusion and frustration with using technology.  Those two words are very common on many forums. I would suggest that you Google "SSD installaton guide" and you should find ample general documentation. Installation of a 2.5" SSD will require a special mounting kit for your PC..  HP should have what you need. Please review this thread.  Frankly,  you are not going to gain that much in performance by using a SSD verses your exisiting configuration.    

  • Why do I need professional installation if only upgrading from U100 to U200?

    Why do I need professional installation if only upgrading from U100 to U200? Isn't this done remotely? And even if I need new equipment, why isn't there a self-install option?

    I don't see why you need someone to come out.  I assume U100 is the same as U-Family which means you have a DVR already. 
    Doesn't make sense to me either.
    I would recommend that you send a Private Message to the AT&TCustomerCare customer service team. They will reply back with a PM (blue envelope in the top right of the page). Their normal business hours are from 7am to 10pm Central Time.
    See what they say.
     

  • Idiots guide to installing new applications..

    to an N95
    I have been looking at some of the add ons available for the N95, but I haven't got a clue how to do it.
    Do I download via nokia updater? download to pc then to phone?
    IME codes, where do I get one and what do I do with it?
    signed, not signed
    Can someone post up a step by step idiot guide of how to do this?

    I have an N95 to, and all the great applications avaibable is what makes it great. To download an app, if its made for an S60 phone, it is usually as easy as going to the web page and clicking Download.
    You rarely ever need to involve your computer in installing apps as long as you can use the internet on your phone.
    IME? I have no idea what that is. I never had to deal with internet access issues on my phone, just plugged in a SIM in an unlocked N95.
    Heres your step by step download guide: (WidSets used as an example)
    1. Open internet and select access point on your phone
    2. Goto widsets.com
    3. Click the option that looks most likely to lead you to a download. For widsets, it is "Get Started"
    4. Click Download. For widsets it is "Download the Client"
    5. Your phone should ask "Install WidSets?" or something similar, accept these messages.
    6. Your download should begin, do not exit the progress screen saying #kB/#kB.
    7. Your application should appear into the folder your phone determined best for it. For widsets, it will be in your application folder.
    Enjoy
    Message Edited by fluff on 05-Jul-2008 01:20 AM
    N95 with all the apps - love it

  • Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9alredy

    Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9 is alredy installed on computer. Is this a 64 bit ossue although I am sure I did not have this problem prior to a replacement hard drive being installed.

    What is your operating system, browser?
    What is the exact message you are getting?

  • I currently have iPhoto 8.1.2 on my macbook pro and am trying to update to the latest version.  I have had to work backward, but I can only get back to 9.1, which will not install because it says I need at least 9.0 to install it. Is 9.0 available?

    I currently have iPhoto 8.1.2 on my macbook pro and am trying to update to the latest version.  I have had to work backward, but I can only get back to 9.1, which will not install because it says I need at least 9.0 to install it. Is 9.0 available?  Will I need to go back even further?  Thanks

    Upgrading from iPhoto 8 to iPhoto 9 requires a purchase. There are two ways to get to iPhoto 9: 
    1 - purchase a copy of the iLife 11 disk from a 3rd party retailer like Amazon.com or eBay.com.
    2 - if your MBP meets the requirements upgrade you system for free to Mavericks.  Then you can purchase the latest iPhoto version, 9.5.1, from the App Store.
    OT

  • Macfixit Guide to Installing an Upgrade like 10.4.8

    http://macfixit.com/
    Update procedure recommendation We recommend the following procedure when installing Mac OS X 10.4.8.
    First, avoid performing any other operations (in Mac OS X or third-party applications) while the update process is occurring. In addition, before installing this security update, make sure all Apple-installed applications and utilities are in their original locations. Moving one of these applications to a different location on your hard drive can lead to an incomplete update. Also, disconnect any FireWire/USB devices before applying Mac OS X 10.4.8 (except for your startup drive, if it is FireWire or USB, and your keyboard/mouse), then re-connect the devices one by one (checking for issues created by any particular device) after the update process is complete and the system has restarted.
    Also, note that the first restart after applying Mac OS X 10.4.8 may be abnormally long. Subsequent restarts should take place at normal speed.
    Common workarounds If you have problems after applying the delta (standard, smaller) update, try the following common workarounds:
    Delete kernel extension caches, other caches for some issues A number of common issues that crop up after incremental Mac OS X updates can be resolved by deleting specific cache files -- specifically kernel extension caches -- and restarting.
    This can most easily be accomplished with a shareware utility like Tiger Cache Cleaner, but also bears a manual process which involves dragging the following files to the trash:
    com.apple.kernelcaches (a folder in /System/Library/Caches)
    Extensions.kextcache (a file in /System/Library)
    Extensions.mkext (a file in /System/Library/)
    com.apple.ATS (a folder in /Library/Caches/)
    Files that start with com.apple.LaunchServices (in /Library/Caches)
    You will be prompted to enter your administrator password when dragging these files to the trash. You may need to restart after moving them to the trash.
    Re-apply the Mac OS X 10.4.8 combo updater A workaround that has proved successful for various problems caused by previous incremental Mac OS X updaters is re-application of the current combination updater(PowerPC or Intel). Doing so overwrites potentially problem-causing files that were not replaced by the "Delta" (adjacent version-to-version) update.
    Re-apply the Mac OS X 10.4.8 combo updater from an alternate startup volume
    Download and save the Mac OS X 10.4.8 combo updater (PowerPC or Intel).
    Startup from an alternate boot volume, such as an external FireWire drive, or use another Mac to boot the problematic system in FireWire target disk mode (connect the two machines via a FireWire cable, and boot the target [problematic] system while holding down the "T" key)
    Once booted from an alternate drive, select the problematic volume in the Finder, and "Get Info" -- either by pressing the Command-I keyboard combination or accessing the "Get Info" option in the File menu. Check the box marked "Ignore ownership permissions on this volume."
    If you have a third-party disk repair utility like DiskWarrior, use it to re-build the directory on the problematic volume (this step may not be necessary)
    Re-install the Mac OS X 10.4.8 combo updater on the problematic drive.
    Re-attempt booting from the problematic volume (hold down the option key at startup to select the desired drive)
    Downgrading to Mac OS X 10.4.7 If you are experiencing severe, seemingly insoluble issues after the update, you can revert to Mac OS X 10.4.7 per the instructions:
    Mini-Tutorial: Reverting to an earlier version of Mac OS X
    When problems materialize in conjunction with an incremental update to Mac OS X, and all known workarounds have failed, or a critical issue appears that must be resolved immediately, it may be necessary to perform a reversion process and backpedal to the prior incremental version.
    The process is somewhat time-consuming and will require you to restore some previous settings, but relatively straightforward. Also, note that you will need to be using Mac OS X 10.2.x or later for this process.
    First, make a backup of your current Mac OS X installation, problematic as it may be. If there is a problem along the way, your valuable data will be safely intact in its current form.
    Next, you'll need to perform an Archive and Install process to remove all of your current Mac OS X version's vital (and potentially problem-causing) components, and replace them with the components of a fresh copy provided by the Mac OS X disc that shipped with your system, or a retail Mac OS X disc. Unfortunately, this means you will lose some system settings and some or all third-party system add-ons.
    To begin the process, insert your Mac OS X CD or DVD, as indicated above. Restart your machine and hold down the "C" key to boot from the newly inserted disc. Follow the on-screen instructions, and after accepting the license agreement, click "Options." Select "Archive and Install," and check the "Preserve User and Network Settings" option if you'd like to do so.
    After the installation process is complete, you will be left with an earlier version of Mac OS X that (hopefully) does not suffer from the problems generated by the incremental Mac OS X update in question. However, you will likely want to bring your installation back up to the point of revision right before you started having problems. For instance, if you updated to Mac OS X 10.3.4 and began experiencing problems, you probably want to re-situate your system at Mac OS X 10.3.3. This simply requires re-applying the appropriate Mac OS X combo updater.
    Various updates, back through Mac OS X Combo Update 10.2.5, are available from Apple's Support Download page.
    Restore your settings and appropriate third-party software, and you will find your system with approximately the same status as prior to the problematic incremental update.
    Your old system will be stored in folder called "Previous Systems" at the root level of your startup volume. If you would later like to delete this folder, you may need to change its permissions.

    awesome! I'll give that a try almost immediately!
    hope i can solve my "blinking qestion mark folder" issue that way ...

Maybe you are looking for

  • I cannot put any of my itunes library on my new iPad

    This is a match/icloud issue.  I bought a new ipad mini for personal use as well as to play music in my fitness classes.  I did not buy a cellular capable ipad and I do not have wifi access at every gym I teach at.  So I need my device to actually ho

  • Current update has intermittent problem of printing gibberish with HP Officejet Pro 8500. No problems before most recent update.

    Even in Print Preview will show as gibberish--and print as gibberish. If repeatedly open document to print, suddenly it Previews & Prints correctly.

  • ODI step in a procedure is hanging

    Hi, I am trying to run the following query in a step in an ODI procedure. The query runs perfectly fine when run in Toad but hangs in an Odi procedure. I am doing this to eliminate duplicates from a load what can I do? DELETE FROM DWOWNER.BIW_CLAIMS_

  • The confirmed quantity not posting in COOISPI

    Hi Gurus, Currently, there is an issue in COOISPI wherein the process order has been confirmed and delivered however, confirmed quantity in the report is 0 but the delivered quantity is correct. The finished goods are auto-GR. The transaction code us

  • Website off center

    We just put a new website up for a STEM class we have been at. The website looks fine when you look at it from PageSpinner but when you look at the live site it looks like this: The picture uploaded from my iPhone upside down. From a different comput