[orangehrm] 安装问题集合

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;

  

  

posted @ 2015-05-07 13:59  捕蛇者说  阅读(577)  评论(0编辑  收藏  举报