Here's the error message I'm getting:
"The server encountered an unexpected condition which prevented it from fulfilling the request.
The script had an error or it did not produce any output. If there was an error, you should be able to see it in the error log. "
There are no errors in the log.
The php page does some basic file operations--open and display output
<?php
$songFile = "WEB-INF/songlist.txt";
$counter = 0;
$fh = fopen($songFile, 'r');
while($theData = fgets($fh))
{
if($counter==170 || $counter==340) {?>
</td>
<td valign="top">
<?php
}
echo $theData;?>
<?
$counter++;
?>
<br>
<?php
}
fclose($fh);
?>