in file web.php
line 114 and 126 should be
$dp_event = isset($_POST['dp_event']) ?
$_POST['dp_event'] :
isset($_GET['dp_event'])?$_GET['dp_event']:'';
not
$dp_event = $_POST['dp_event'] ? $_POST['dp_event'] :
$_GET['dp_event'];
'cos when i request index.php i have neither a post
variable nor request variable.
anyway seems like project does not continue anymore
sincerely