用" fosUser"登录和" prod.log"被临时锁定

时间:2015-10-28 12:48:11

标签: symfony fosuserbundle hwioauthbundle symfony-2.4

束 - fosUserBundle - HWIOAuthBundle

一开始,一切正常 但是,每隔5天,使用" fosUser"锁定1天或更短时间...... 他回来了#34;登录或密码不正确..." (当#34; fosUser"被锁定时,HWIOAuthBundle仍在工作!!!!)

清除缓存后问题仍然存在...... 项目创建prod目录和他的子目录/文件... 但是日志目录是空的!!!

1 个答案:

答案 0 :(得分:0)

当您使用与Web服务器用户不同的用户的控制台时,这是一个常见问题。要解决此问题,您应修复logscache目录权限,如同documentation建议:

rm -rf app/cache/*
rm -rf app/logs/*

HTTPDUSER=`ps axo user,comm | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\  -f1`
sudo chmod +a "$HTTPDUSER allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs
sudo chmod +a "`whoami` allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs