Hi,
Execute Command only works if you press the button.
Every time I write into the field I press Enter and it
doesn't execute the command.
I fixed that with the following changes to index.php
Line 112:
if($HTTP_POST_VARS['commandForm'] ||
$HTTP_GET_VARS['commandForm'] ||
($HTTP_POST_VARS['commandExecute'] ||
$HTTP_GET_VARS['commandExecute']) ||
$HTTP_POST_VARS['commandToExecute'])
Line 128:
if(($HTTP_POST_VARS['commandExecute'] ||
$HTTP_GET_VARS['commandExecute']) ||
$HTTP_POST_VARS['commandToExecute']) {
I deleted those surrounding brackets
from "commandToExecute".