✔️"; $wfalse = "
Here, you can easily verify if important system files can be written to. This is important for every function to work properly. Entries marked with a '✔️' work as expected, entries marked with a '❌' do not.
File | Hover for more |
---|---|
{{ base_path(".env") }} | 0) {echo "$wtrue";} else {echo "$wfalse";} ?>|
{{ base_path("database/database.sqlite") }} | 0) {echo "$wtrue";} else {echo "$wfalse";} ?>
Here, you can easily verify if critical system files can be accessed externally. It is important that these files cannot be accessed, otherwise user data like passwords could get leaked. Entries marked with a '✔️' cannot be accessed externally, entries marked with a '❗' can be accessed by anyone and require immediate action to protect your data.
Link | Hover for more |
---|---|
{{ url('/.env') }} | |
{{ url('/database/database.sqlite') }} |
Required PHP modules.
BCMath PHP Extension | @if(extension_loaded('bcmath'))✔️@else❌@endif |
Ctype PHP Extension | @if(extension_loaded('Ctype'))✔️@else❌@endif |
cURL PHP Extension | @if(extension_loaded('cURL'))✔️@else❌@endif |
DOM PHP Extension | @if(extension_loaded('DOM'))✔️@else❌@endif |
Fileinfo PHP Extension | @if(extension_loaded('Fileinfo'))✔️@else❌@endif |
JSON PHP Extension | @if(extension_loaded('JSON'))✔️@else❌@endif |
Mbstring PHP Extension | @if(extension_loaded('Mbstring'))✔️@else❌@endif |
OpenSSL PHP Extension | @if(extension_loaded('OpenSSL'))✔️@else❌@endif |
PCRE PHP Extension | @if(extension_loaded('PCRE'))✔️@else❌@endif |
PDO PHP Extension | @if(extension_loaded('PDO'))✔️@else❌@endif |
Tokenizer PHP Extension | @if(extension_loaded('Tokenizer'))✔️@else❌@endif |
XML PHP Extension | @if(extension_loaded('XML'))✔️@else❌@endif |
SQLite PHP Extension | @if(extension_loaded('PDO_SQLite'))✔️@else❌@endif |
MySQL PHP Extension | @if(extension_loaded('PDO_MySQL'))✔️@else❌@endif |