Parse Issues
Instead of seeing what I expected, a white screen of death appears.
1. Solution
Verify your webserver provides PHP
8.0 or higher. You can enable another version inside your .htaccess
file:
addhandler php80-cgi .php
2. Solution
XAMPP ships the PEAR Config that causes a fatal error. Please uncomment the include_path
inside your php.ini
file located in the XAMPP directory:
include_path = ".:/php/includes"Edit on GitHub