I wasn't able to run ntop from this page.
The problem was in file status_services.php. Lines 52 and 53 were:
start_service($_GET['service']);
}
and they should be in revese order (start_service out of the switch command):
}
start_service($_GET['service']);