LookingGlass 在 PHP7 环境无法使用,解决方案如下:
在根目录下ajax.php文件中找到以下内容

// execute command
$output = $lg->$_GET['cmd']($_GET['host']);

修改为

// execute command
$output = $lg->{$_GET['cmd']}($_GET['host']);

即可。