laravel 5.4 HTTP ERROR 500 unable to handle this request - laravel

I am uploading the Laravel 5.4 project in a sub domain of rehobothmissionschool.org Cpanel its showing
"This page isn’t working rehobothmissionschool.org is currently
unable to handle this request. HTTP ERROR 500"
I changed the PHP version from 5.6 to 7.1 even that it's not working.enter image description here

Related

API server block request from GuzzleHttp

I have 2 servers which are API server and Client server ....
Both server using Google Cloud server and I use Laravel framework to develop my system...
So, currently the problem is, it return 403 error when calling API (to API server) using GuzzleHttp (from Client Server).....
But after I change the user agent to curl/7.65.3, suddenly it is working fine...
But I want to know why??? Is there any other solution without changing the user-agent???
Thanks
What is your use method? If GET you can refer to:
GET Requests That Include a Body
If a viewer GET request includes a body, CloudFront returns an HTTP status code 403 (Forbidden) to the viewer.
https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/RequestAndResponseBehaviorCustomOrigin.html

Why did Not working Laravel middleware CORS with Vue.js

working with Laravel 5.7 as backend and Vue.js as frontend. so, I need send http request fron Vue to Laravel backend. so, I used Laravel CORS package to using github link as following https://github.com/barryvdh/laravel-cors but it is not sucess and (not pass data to table fron vue). and my console error is `Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:8000/api/addItem. (Reason: CORS request did not succeed).
how can fix this error?`
It is only for localhost & in production if you use https then this issue will not raise any more. However for local test you can open chrome browser in disabled security mode. Details about how to do
Access-Control-Allow-Origin (Laravel & Vue)

Laravel: localhost is currently unable to handle request

After entering this URL in my browser http://localhost/laravel-projects/public/
This page isn’t working localhost is currently unable to handle this request. HTTP ERROR 500
I am running Laravel project on Xampp. I also tried Vagrant and Homestead installation but am getting the same error.

how to import google contacts in laravel 5.2

I'm working with laravel and I have done login with Google in laravel using socialite. Now I'm trying to get google contacts and I'm using Artdarek\OAuth for this. But I'm getting an error
TokenResponseException in StreamClient.php line 68: Failed to request resource. HTTP Code: HTTP/1.1 400 Bad Request
here is error screen shot
I also tried many links, but I don’t know what’s problem with my code.

How to get API error message from using Laravel and Guzzle

I'm using guzzle and laravel to call an API however when I get an error from the API, I can't view the error message sent back from the API. Laravel / Guzzle gives a default error Client error: 400.
How do I view the error message sent back?
I added this to the request which solved my issue.
'http_errors' => false

Resources