Quick Start Guide

Configuring your system (PHP) 307
The test page should open and display a time of day, as follows:
The specified time is known as dynamic content because it changes every
time you request the page. Click your browsers Refresh button to generate
a new page with a different time.
If the page doesnt work as expected, check for the following possible
errors:
The file does not have a .php extension.
You typed the page’s file path (C:\Inetput\wwwroot\timetest.php)
instead of its URL (for example, http://localhost/timetest.php) in the
browsers Address text box.
If you type a file path in the browser (as you might be used to doing
with normal HTML pages), you bypass the web server and the
application server. As a result, your page never gets processed by the
server.
The URL contains a typing mistake. Check for errors and make sure
the filename is not followed by a slash, such as http://localhost/
timetest.php/.
The page code contains a typing mistake.
After installing and testing the server software, create a root folder for your
web application.
NOTE
Looking at the source code (View > Source in Internet Explorer) will
confirm that the page does not use any client-side JavaScript to achieve
this effect.