I did a little debugging and found out that in /var/www/lmce-admin/operations/myDevices/avWizard.php the code is hanging somewhere in the if statement pasted below. If I put print statements for logging purposes anywhere within the print statement, the page won't reload (not sure why) so I can't get any more specific than that it's in the following if statement. I am not familiar with PHP -- I will do my best to figure out what is wrong, but I've been having trouble so far, and if someone with PHP experience can look over this, I'd appreciate it:
if(@$childOf[$rowD['PK_Device']]==''){
$out.='<tr class="tablehead">
<td align="center" width="200"><B>'.$TEXT_DEVICE_ROOM_CONTROLLED_BY_CONST.'</B></td>
<td align="center" width="200"><B>'.$TEXT_PIPES_CONST.'</B></td>
<td align="center" width="200"><B>'.$TEXT_DEVICE_DATA_CONST.'</B></td>
<td align="center" width="125"><B>'.$TEXT_ACTION_CONST.'</B></td>
</tr>
<tr>
<td rowspan="5" align="left" valign="top" class="alternate_back">
'.$TEXT_DEVICE_NUM_CONST.': '.$rowD['PK_Device'].'<br>
'.$TEXT_DEVICE_TEMPLATE_NUM_CONST.': '.$rowD['FK_DeviceTemplate'].'<br>
'.$TEXT_CONTROLLED_BY_CONST.': '.$controlledViaLink.'<br><br>
<a name="deviceLink_'.$rowD['PK_Device'].'"></a>'.$deviceName.'<br>'.$roomPulldown.'
</td>
<td align="center" height="10"><B>'.$TEXT_AUDIO_PIPE_CONST.'</B></td>
<td class="alternate_back" rowspan="5" valign="top" align="right">'.formatDeviceData($rowD['PK_Device'],$deviceDataArray[$rowD['PK_Device']],$dbADO,$rowD['IsIPBased'],0,1,'textarea').'</td>
<td align="center" rowspan="5" valign="top">'.$buttons.'</td>
</tr>
<tr>
<td height="20">
<u>'.$TEXT_OUTPUT_CONST.'</u>: '.@$devicePipes['1']['output'].'<br>
<u>'.$TEXT_TO_CONST.'</u>: '. @$devicePipes['1']['to'].'<br>
<u>'.$TEXT_INPUT_CONST.'</u>: '.@$devicePipes['1']['input'].'<br><br>
</td>
</tr>
<td align="center" height="10"><B>'.$TEXT_VIDEO_PIPE_CONST.'</B></td>
<tr>
<td height="20">
<u>'.$TEXT_OUTPUT_CONST.'</u>: '.@$devicePipes['2']['output'].'<br>
<u>'.$TEXT_TO_CONST.'</u>: '. @$devicePipes['2']['to'].'<br>
<u>'.$TEXT_INPUT_CONST.'</u>: '.@$devicePipes['2']['input'].'<br><br>
</td>
</tr>
<tr>
<td align="center" valign="top"><a href="javascript:windowOpen(\'index.php?section=editPipes&deviceID='.$rowD['PK_Device'].'&from=avWizard\',\'width=600,height=300,toolbar=1,scrollbars=1,resizable=1\');">'.$TEXT_EDIT_PIPES_CONST.'</a></td>
</tr>';