为什么DNN 4.x 的永久登陆用不了?

“记住登录(Remember Me)”功能在DNN 4里面默认的持续时间是1小时,在DNN 4之前设置的是50年。如果想修改持续时间,可以修改web.config文件,修改的地方如下:

<authentication mode="Forms">
      <forms name=".DOTNETNUKE" protection="All" timeout="60"/>
</authentication>

如果想修改为7天:

<authentication mode="Forms">
      <forms name=".DOTNETNUKE" protection="All" timeout="10080"/>
</authentication>

如果想修改为1年:

<authentication mode="Forms">
      <forms name=".DOTNETNUKE" protection="All" timeout="
525600
"/>
</authentication>

原文:Venexus DotNetNuke Blog - DotNetNuke 4 Persistent Login - Remember me for more than 1 hour!

你可能感兴趣的:(为什么DNN 4.x 的永久登陆用不了?)