[User Warning] Authenticator "signup" doesn't support tabbed forms

GET /Security/login/index.html

Line 809 in /opt/bitnami/apps/silverstripe/htdocs/vendor/silverstripe/framework/src/Security/Security.php

Source

800      * @param array $results
801      * @return array
802      */
803     protected function aggregateTabbedForms(array $results)
804     {
805         $forms = [];
806         foreach ($results as $authName => $singleResult) {
807             // The result *must* be an array with a Form key
808             if (!is_array($singleResult) || !isset($singleResult['Form'])) {
809                 user_error('Authenticator "' . $authName . '" doesn\'t support tabbed forms', E_USER_WARNING);
810                 continue;
811             }
812 
813             $forms[] = $singleResult['Form'];
814         }
815 

Trace

GET /Security/login/index.html

[Emergency] Uncaught UnexpectedValueException: The stream or file "/opt/bitnami/apps/silverstripe/htdocs/public/../silverstripe.log" could not be opened in append mode: failed to open stream: Permission denied

GET /Security/login/index.html

Line 115 in /opt/bitnami/apps/silverstripe/htdocs/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php

Source

106             set_error_handler(array($this, 'customErrorHandler'));
107             $this->stream = fopen($this->url, 'a');
108             if ($this->filePermission !== null) {
109                 @chmod($this->url, $this->filePermission);
110             }
111             restore_error_handler();
112             if (!is_resource($this->stream)) {
113                 $this->stream = null;
114 
115                 throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened in append mode: '.$this->errorMessage, $this->url));
116             }
117             $this->streamSetChunkSize();
118         }
119 
120         if ($this->useLocking) {
121             // ignoring errors here, there's not much we can do about them

Trace