Web server allows .htaccess files # 这一项检查不通过
解决:
In conf/extra/httpd-vhosts.conf, add the line AllowOverride All for the website that you have having problem with
<VirtualHost example.site:80>
# rest of the stuff
<Directory "c:\Projects\example.site">
Require all granted
AllowOverride All <-----This line is required
</Directory>
</VirtualHost>
MySQL Event Scheduler status #没开启
解决:
$ /opt/lampp/bin/mysql -u root -p
mysql> SET GLOBAL event_scheduler = ON;