Threesuns

Email the Instructor

Contact

All Semesters

Semesters

All Courses

Courses

PHP Programming (Blended)

CSYS2463

3 credits

2010Spring

01.11.10 - 05.09.10

PHP Programming (Blended)

CSYS2463

Monday Wednesday
02:00 PM - 03:20 PM

How to Install the Built-in PHP Development Server on Windows

How To

Showing Errors in Development

Step 6

During development you want your PHP server to show you errors when they occur. To enable this you'll need to make a copy of the php.ini-development file that is in your php folder (where you extracted php) and call that copy php.ini

Once your php.ini file exists you'll need to edit that file.

Find the line in that file that says

display_errors = Off

and change it so that it says

display_errors = On

Next, find the line that says

error_reporting = [something]

and change it so that it says

error_reporting = E_ALL

You'll need to restart the PHP server after these changes are made before they will take affect.