You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
340 B
PHTML
15 lines
340 B
PHTML
9 years ago
|
<?php
|
||
|
|
||
|
$config = array(
|
||
|
'admin_user' => 'admin',
|
||
|
'admin_pass' => '$2y$10$YKIyWAmnQLtiJAy6QgHQ.eCpY4m.HCEbiHaTgN6.acNC6bDElzt.i'
|
||
|
);
|
||
|
|
||
|
if ( $auth_details = fopen(RASPI_CONFIG.'/raspap.auth', 'r') ) {
|
||
|
$config['admin_user'] = trim(fgets($auth_details));
|
||
|
$config['admin_pass'] = trim(fgets($auth_details));
|
||
|
fclose($auth_details);
|
||
|
}
|
||
|
|
||
|
?>
|