PHP5 configuration with IIs6 in Hosting server 2003

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • swethak
    New Member
    • May 2008
    • 118

    PHP5 configuration with IIs6 in Hosting server 2003

    Hi All,
    I configured PHP in hosting server by following the 5 steps in the below link.
    Kerry Webster » Install and Configure PHP5 with IIS6 on Windows Server 2003
    But the php pages are not working.Please help me where can i do the modifications?
  • ak1dnar
    Recognized Expert Top Contributor
    • Jan 2007
    • 1584

    #2
    Did you restart IIS server after installing Php?

    Comment

    • swethak
      New Member
      • May 2008
      • 118

      #3
      yes i restart iis server

      Comment

      • Atli
        Recognized Expert Expert
        • Nov 2006
        • 5062

        #4
        You might also have to reboot Windows.

        What happens when you run PHP scripts?
        Does the PHP code get sent to the browser?

        Comment

        • ak1dnar
          Recognized Expert Top Contributor
          • Jan 2007
          • 1584

          #5
          Additionally enable (if disabled) error reporting also in your php.ini.

          error_reporting = E_ALL & ~E_NOTICE
          display_errors = On

          this will Show all errors, except for notices and coding standards warnings.

          Comment

          • wcoleman
            New Member
            • Jan 2009
            • 1

            #6
            Ah that guidance is outdated. First you want to get PHP build 5.2.6 or greater as that's a lot faster than previous versions. Secondly you want to run PHP with FastCGI - it's available as a download for IIS 6 and is built in to IIS 7.

            Really worth checking out The Official Microsoft IIS Site and get all of the information here - PHP on IIS : The Official Microsoft IIS Site

            Comment

            Working...