Hey all I am installing PHP on an IIS server and was able to get the
phpinfo() script to exicute which according to all documentation says I
did my stuff correctly, However the site I built that requires PHP
loads only the html portions, Durring development the site was run with
php4 on apache using php.ini-dist, and worked flawless. on iis even the
most basic components do not load. On the iis I used a modified
php.ini-recommend. I thought this might be the issue so I used the same
php.ini on my test server(mentioned above) and again all scripts worked
without flaw. Also the engine runs the phpinfo() file properly. Any
thoughts? Thanks

James
James_usenet@fixmygrill.com




*******************
Install/Change LOG
12/08/2005
*******************

OS:Windows 2000
SERVER:IIS 5
PHP BUILD: 5.1.1
Install Drive: H:\
SYSTEMROOT: c:\WINNT\
DOCROOT : H:\aasoft\
PHP Method:CGI

*******************
Native functions used in site:

include
array
file
opendir
readdir
print

*******************

CHANGES:

Extract PHP ZIP to h:\php
RENAME php.ini-recomend to php.ini
In php.ini cgi.force_redirect = 0
In php.ini doc_root H:\aasoft
COPY php.ini to systemroot

Set security for h:\php & php.ini to allow I_USR_ full access

Changes to IIS default site:

Exicute Permissions: Scripts Only
Application map for .php with path h:\php\php-cgi.exe no verbs, script
engine checked.


Create file : <?phpinfo()?> : Exicuted successfully.

*******************
eof

Re: PHP 5.1.1 on Windows 2000 server running IIS 5. by Kristofer

Kristofer
Sun Dec 11 10:15:44 CST 2005

Perhaps your code is not compatible with PHP 5.1.1, since you used PHP 4
for development?

What exactly happens when you try to run your code? Do you see any error
message? Does IIS crash? Is anything logged somewhere? We need more
information about the actually error.

Have you tried a simple Hello World PHP page?


--
Regards,
Kristofer Gafvert
http://www.gafvert.info/iis/ - IIS Related Info


jfinstrom@gmail.com wrote:

>Hey all I am installing PHP on an IIS server and was able to get the
>phpinfo() script to exicute which according to all documentation says I
>did my stuff correctly, However the site I built that requires PHP
>loads only the html portions, Durring development the site was run with
>php4 on apache using php.ini-dist, and worked flawless. on iis even the
>most basic components do not load. On the iis I used a modified
>php.ini-recommend. I thought this might be the issue so I used the same
>php.ini on my test server(mentioned above) and again all scripts worked
>without flaw. Also the engine runs the phpinfo() file properly. Any
>thoughts? Thanks
>
>James
>James_usenet@fixmygrill.com
>
>
>
>
>*******************
>Install/Change LOG
>12/08/2005
>*******************
>
>OS:Windows 2000
>SERVER:IIS 5
>PHP BUILD: 5.1.1
>Install Drive: H:\
>SYSTEMROOT: c:\WINNT\
>DOCROOT : H:\aasoft\
>PHP Method:CGI
>
>*******************
>Native functions used in site:
>
>include
>array
>file
>opendir
>readdir
>print
>
>*******************
>
>CHANGES:
>
>Extract PHP ZIP to h:\php
>RENAME php.ini-recomend to php.ini
> In php.ini cgi.force_redirect = 0
> In php.ini doc_root H:\aasoft
>COPY php.ini to systemroot
>
>Set security for h:\php & php.ini to allow I_USR_ full access
>
>Changes to IIS default site:
>
>Exicute Permissions: Scripts Only
>Application map for .php with path h:\php\php-cgi.exe no verbs, script
>engine checked.
>
>
>Create file : <?phpinfo()?> : Exicuted successfully.
>
>*******************
>eof

Re: PHP 5.1.1 on Windows 2000 server running IIS 5. by jfinstrom

jfinstrom
Sun Dec 11 11:05:22 CST 2005

Actualy learned to code PHP5 so would be more concerned with php4
compatibility, all functions work in php 5


Re: PHP 5.1.1 on Windows 2000 server running IIS 5. by jeff

jeff
Mon Dec 12 17:07:12 CST 2005

On 11 Dec 2005 09:05:22 -0800, "jfinstrom@gmail.com"
<jfinstrom@gmail.com> wrote:

>Actualy learned to code PHP5 so would be more concerned with php4
>compatibility, all functions work in php 5

Did you try a Hello World PHP page? That would at least give you an
idea whether it's your configuration or your code.

Jeff

Re: PHP 5.1.1 on Windows 2000 server running IIS 5. by jfinstrom

jfinstrom
Tue Dec 13 10:06:41 CST 2005

The next best thing to a hello world in php is phpinfo() and that does
work