'.$lang['reghere'].': '. $registerLink .'
'); } if (actionOK('resendpwd')) { $resendPwLink = (new \dokuwiki\Menu\Item\Resendpwd())->asHtmlLink('', $svg); $form->addElement(''.$lang['pwdforget'].': '. $resendPwLink .'
'); } html_form('login', $form); print '' . sprintf($lang['recent_global'], getNS($ID), wl('', 'do=recent')) . '
' . $lang['nothingfound'] . '
| - | |||
| - | > | ||
|---|---|---|---|
| + | |||
| + | > | ||
| > | > | ||
When reporting bugs please send all the following '; print 'output as a mail to andi@splitbrain.org '; print 'The best way to do this is to save this page in your browser
'; print '$INFO:';
    print_r($nfo);
    print '';
    print '$_SERVER:';
    print_r($_SERVER);
    print '';
    print '$conf:';
    print_r($cnf);
    print '';
    print 'DOKU_BASE:';
    print DOKU_BASE;
    print '';
    print 'abs DOKU_BASE:';
    print DOKU_URL;
    print '';
    print 'rel DOKU_BASE:';
    print dirname($_SERVER['PHP_SELF']).'/';
    print '';
    print 'PHP Version:';
    print phpversion();
    print '';
    print 'locale:';
    print setlocale(LC_ALL,0);
    print '';
    print 'encoding:';
    print $lang['encoding'];
    print '';
    if($auth){
        print 'Auth backend capabilities:';
        foreach ($auth->getCapabilities() as $cando){
            print '   '.str_pad($cando,16) . ' => ' . (int)$auth->canDo($cando) . NL;
        }
        print '';
    }
    print '$_SESSION:';
    print_r($ses);
    print '';
    print 'Environment:';
    print_r($_ENV);
    print '';
    print 'PHP settings:';
    $inis = ini_get_all();
    print_r($inis);
    print '';
    if (function_exists('apache_get_version')) {
        $apache = array();
        $apache['version'] = apache_get_version();
        if (function_exists('apache_get_modules')) {
            $apache['modules'] = apache_get_modules();
        }
        print 'Apache';
        print_r($apache);
        print '';
    }
    print '';
}
/**
 * Form to request a new password for an existing account
 *
 * @author Benoit Chesneau