I thought it might be good to see if my include file actually exists.
So I added this just before my include('../server/includes.php'); line; :
if(!file_exists('../server/includes.php'){
echo 'Include file does not exist';
exit;
}
Now I get an internal server error 500. If I take it back out the service runs up to the point where my include statement is then fails which is what prompted me to test if file existed.
This is in a web service api. Testing with latest Postman app.
Using php v5.6.30, Apache, xampp stack
Any ideas?