I’ve spent hours and hours now trying to just get a damned basic Kirby ‘welcome’ page to show up, then (hopefully) a Panel install option. Hours. So far, nothing but errors. I have managed to change configuration and permission and htaccess options about a thousand times. I’ve blown away nginx and gone back to apache2. I’ve chmodded and chowned everything ten ways from Sunday. I even blew away Kirby and reinstalled it from scratch. I’ve moved it from one default location to a different one. I’ve Googled things until every result shows to be previously read.
Nothing has worked.
At this point, I am getting a blank page with just the raw PHP showing like this:
launch();
when I go to the panel directory I get this raw PHP:
roots->index)) { $kirby->roots->index = $index; } // the default avatar directory if(!isset($kirby->roots->avatars)) { $kirby->roots->avatars = $index . DS . 'assets' . DS . 'avatars'; } // the default thumbs directory if(!isset($kirby->roots->thumbs)) { $kirby->roots->thumbs = $index . DS . 'thumbs'; } // create the panel object $panel = new Panel($kirby, __DIR__); // launch the panel echo $panel->launch();
I’m running this with PHP7 fpm and Apache2 and the Raspbian distro of Debian (on my Raspberry Pi 2).
If someone could point me in the right direction I would be eternally grateful!