| I've installed the windows installer version of php on a NT server.  I've
| also installed the windows binary on my Windows 2000 pro workstation.
| Everything works fine on the CGI-Windows installer version on the server,
| but I can't get the same applications to run from my Win2KPro workstation
(I
| get blank pages or empty pages).  Does this have something to do the way
the
| php.ini file is set up, or is it something else?


1. make a test script with the following content: <?php phpinfo(); ?>

2. save it as test.php in your web root directory (where your web pages
reside).

3. Check if php works by running the script from the command line:
c:\php\php.exe c:\mywebroot\test.php.
If you get a long output which looks like HTML php works. If not, something
went wrong with your php installation. Read the corresponding chapter in the
manual.

4. Call the test script from your browser (http://myhostname/test.php)
If you get a page with info about your php installation, your webserver and
PHP work together. If not, read the chapter about configuring PHP with your
webserver software in the PHP manual.

5. The output of the test script should reflect your php.ini settings.

Christoph




-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to