The USD web server uses PHP 5.3.3 for dynamic content.
Errors
By default, errors are turned off. If you want to see the errors that your PHP code is producing, add the following PHP lines above where you think the error is occurring.
ini_set('display_errors', true); error_reporting(E_ALL);
The first line turns error display on. The second line tells PHP to display all errors and warnings.
You should generally use this only while you are testing your PHP scripts, and turn it off once your scripts are in production. Error messages can sometimes reveal private or confidential information.
You can also see errors by using the php command-line program. If you’re using a Macintosh, you have it built-in: go to the terminal and type “php” and then the filename to see any syntax errors. You can also use the php command-line on files.sandiego.edu if you’re using a departmental web account.
Comments
Please logout when done
Please remember to log out when you are finished, especially if you are on a public terminal.
Forgot your password?
You may reset your password with our online password reset tool. If you have questions or need technical support, please contact the ITS Help Desk (formerly the Tech Support Center). Contact us 24 hours/day at (619) 260-7900 or at help@sandiego.edu. Walk-in support is also available weekdays in UC 117, near One Stop Services. Visit our website for our current hours!

