2017-11-01 20:23:28 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2020-06-09 13:51:01 +02:00
|
|
|
<title>{{ trans('firefly.debug_page') }}</title>
|
2017-11-01 20:23:28 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2017-11-03 10:28:45 +01:00
|
|
|
<p style="font-family:Arial, Arial, Helvetica, sans-serif;font-size:12pt;width:600px;">
|
2020-06-09 13:51:01 +02:00
|
|
|
{{ trans('firefly.debug_submit_instructions')|raw }}
|
2017-11-01 20:23:28 +01:00
|
|
|
</p>
|
2019-10-02 07:00:58 +02:00
|
|
|
<p style="font-family:Arial, Arial, Helvetica, sans-serif;font-size:12pt;width:600px;">
|
2020-06-09 13:51:01 +02:00
|
|
|
<strong>{{ trans('firefly.debug_pretty_table') }}</strong>
|
2019-10-02 07:00:58 +02:00
|
|
|
</p>
|
2017-11-03 10:28:45 +01:00
|
|
|
<textarea rows="30" cols="100" name="debug_info" style="font-family:Menlo, Monaco, Consolas, monospace;font-size:8pt;">
|
2017-11-01 20:23:28 +01:00
|
|
|
Debug information generated at {{ now }} for Firefly III version **{{ FF_VERSION }}**.
|
|
|
|
|
2020-05-26 06:28:42 +02:00
|
|
|
| Scope | Version |
|
|
|
|
| --- | --- |
|
|
|
|
| Firefly III | {{ FF_VERSION }} |
|
|
|
|
| Firefly III API | {{ config('firefly.api_version') }} |
|
|
|
|
| PHP | {{ phpVersion }} |
|
|
|
|
| Host | {{ phpOs }} |
|
|
|
|
|
|
|
|
| System info | Value |
|
2017-11-01 20:23:28 +01:00
|
|
|
| --- | --- |
|
2020-02-23 06:36:58 +01:00
|
|
|
| Installation ID | {{ installationId }} |
|
2020-05-26 06:28:42 +02:00
|
|
|
| Using docker? | {% if isDocker %}true{% else %}false{% endif %} |
|
|
|
|
| Telemetry | {% if telemetry %}true{% else%}false{% endif%} |
|
2018-01-01 15:33:24 +01:00
|
|
|
| App environment | {{ appEnv }} |
|
|
|
|
| App debug mode | {{ appDebug }} |
|
2018-01-06 09:33:06 +01:00
|
|
|
| App cache driver | {{ cacheDriver }} |
|
2018-08-17 20:01:46 +02:00
|
|
|
| App logging | {{ appLogLevel }}, {{ logChannel }} |
|
2018-01-01 15:33:24 +01:00
|
|
|
| Display errors | {{ displayErrors }} |
|
|
|
|
| Error reporting | {{ errorReporting }} |
|
2017-11-03 10:28:45 +01:00
|
|
|
| Interface | {{ interface }} |
|
2020-05-26 06:28:42 +02:00
|
|
|
| Default language | {{ defaultLanguage }} |
|
|
|
|
| Default locale | {{ defaultLocale }} |
|
2017-11-01 20:23:28 +01:00
|
|
|
| DB drivers | {{ drivers }} |
|
|
|
|
| Current driver | {{ currentDriver }} |
|
2018-11-02 21:17:07 +01:00
|
|
|
| Login provider | {{ loginProvider }} |
|
2017-11-08 08:23:58 +01:00
|
|
|
| Trusted proxies (.env) | {{ trustedProxies }} |
|
2020-05-26 06:28:42 +02:00
|
|
|
|
|
|
|
| User info | Value |
|
|
|
|
| --- | --- |
|
|
|
|
| Session start | {{ session('start') }} |
|
|
|
|
| Session end | {{ session('end') }} |
|
|
|
|
| Session first | {{ session('first') }} |
|
|
|
|
| User ID | {{ Auth.user.id }} |
|
|
|
|
| User language | {{ userLanguage }} |
|
|
|
|
| User locale | {{ userLocale }} |
|
|
|
|
{% for code,result in localeAttempts %}
|
|
|
|
| Attempt at "{{ code }}" | {{ result }} |
|
|
|
|
{% endfor %}
|
2017-11-03 10:28:45 +01:00
|
|
|
| User agent | {{ userAgent }} |
|
|
|
|
</textarea>
|
|
|
|
|
2017-11-24 21:51:31 +01:00
|
|
|
<p style="font-family:Arial, Arial, Helvetica, sans-serif;font-size:12pt;width:600px;color:#a00;">
|
2020-06-09 13:51:01 +02:00
|
|
|
<a href="{{ route('index') }}">{{ trans('firefly.back_to_index') }}</a>
|
2017-11-24 21:51:31 +01:00
|
|
|
</p>
|
2017-11-03 10:28:45 +01:00
|
|
|
|
|
|
|
<p style="font-family:Arial, Arial, Helvetica, sans-serif;font-size:12pt;width:600px;color:#a00;">
|
2020-06-09 13:51:01 +02:00
|
|
|
{{ trans('firefly.debug_additional_data')|raw }}
|
2017-11-03 10:28:45 +01:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<textarea rows="30" cols="100" name="log_info" style="font-family:Menlo, Monaco, Consolas, monospace;font-size:7pt;">
|
|
|
|
```
|
|
|
|
{{ logContent }}
|
|
|
|
```
|
2017-11-01 20:23:28 +01:00
|
|
|
</textarea>
|
2017-11-24 21:51:31 +01:00
|
|
|
|
|
|
|
<p style="font-family:Arial, Arial, Helvetica, sans-serif;font-size:12pt;width:600px;color:#a00;">
|
2020-06-09 13:51:01 +02:00
|
|
|
<a href="{{ route('index') }}">{{ trans('firefly.back_to_index') }}</a>
|
2017-11-24 21:51:31 +01:00
|
|
|
</p>
|
|
|
|
|
2017-11-01 20:23:28 +01:00
|
|
|
</body>
|
2017-11-08 09:05:10 +01:00
|
|
|
</html>
|