N°1934: Security hardening

This commit is contained in:
Stephen Abello
2019-01-09 11:02:21 +01:00
parent 05bcfbe4c3
commit 48c920f848
2 changed files with 8 additions and 0 deletions

2
setup/phpcheck.php Normal file
View File

@@ -0,0 +1,2 @@
<?php
echo '<h1>PHP works!</h1>';

View File

@@ -1,3 +1,9 @@
<?php
require_once('../approot.inc.php');
require_once(APPROOT.'/application/startup.inc.php');
require_once(APPROOT.'/application/loginwebpage.class.inc.php');
LoginWebPage::DoLogin(true); // Check user rights and prompt if needed
phpinfo();
?>