0
Note that your server is created and functional, the error is already part of your project. Note that according to the Laravel documentation, prerequisites are required on the server for everything to work properly. It seems that your server does not have Openssl Active or installed. Example of Laravel 5.3 requirements:
- PHP between 5.6.4 & 7.1.*
- Openssl PHP Extension
- PDO PHP Extension
- Mbstring PHP Extension
- Tokenizer PHP Extension
- XML PHP Extension
Reference: https://laravel.com/docs/5.3
Note, activating the extension in php.ini:
- Go to your php.ini (which is used by xampp)
- Remove the semicolon before Extension=php_openssl.dll
- Restart your Apache
Which version of the Laravel is installed?
– Darlei Fernando Zillmer
In this project is the 5.3
– Caio Souza
Check if your server meets all the requirements of a lockable installation
– Darlei Fernando Zillmer