Aniket Karne
Aniket Karne

Reputation: 325

I can not deploy laravel 5.3 app to server

I tried an old method like changing server.php to index.php and then ran the app but I am getting error like error.

The domain.com page isn’t working

domain.com is currently unable to handle this request.
HTTP ERROR 500

I am using godaddy shared hosting.. the server.php has changed in laravel 5.3

Upvotes: 0

Views: 392

Answers (2)

camelCase
camelCase

Reputation: 5598

Laravel 5.3 now requires a PHP version of >= 5.6.4. From the docs:

You will need to make sure your server meets the following requirements:

  • PHP >= 5.6.4
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP
  • Extension Tokenizer PHP Extension

Upvotes: 4

Aniket Karne
Aniket Karne

Reputation: 325

Also note that Laravel 5.3 now requires a PHP version of >= 5.6.4

answered by camelCase

Upvotes: 0

Related Questions