This is my first issue on this website, if I'm missing info, feel free to tell me so I can add it. Sorry!
I am trying to make a PHP cart with composer. My index.php file keeps showing "This page is not working" in Chrome. I guess this is an error 500, or some sort of error. It's PHP's issue though. With the code:
<?php
require __DIR__ . '/../bootstrap/app.php';
$app->run();
?>
When I run that code I get the page is not working error. I commented out the require portion of the code, still had the error. I commented out the $app->run portion and kept the require, and the error went away and showed a blank screen. It looks like $app->run() is causing my page to crash. Anyone know why it does this? This is the first time I'm running PHP on a VPS, usually I just use shared hosting with cPanel.
More Information
OS: Debian Wheezy (7)
PHP Version: 5.5.38-1~dotdeb+7.1
Webserver: nginx 1.2.1
Also to note, this error comes up no matter what composer script is installed.