zoukankan      html  css  js  c++  java
  • Liferay 6.2 改造系列之七:关闭使用条款确认、密码提醒、新用户强制修改密码等功能

    关闭使用条款确认:

    在/portal-master/portal-impl/src/portal.properties配置文件中,有如下配置:

    #
    # Set this to true if all users are required to agree to the terms of use.
    #
    terms.of.use.required=true

    修改为:

    #
    # Set this to true if all users are required to agree to the terms of use.
    #
    terms.of.use.required=false

    关闭密码提醒功能:

    在/portal-master/portal-impl/src/portal.properties配置文件中,有如下配置:

    #
    # Set this to true to enable reminder queries that are used to help reset a
    # user's password.
    #
    users.reminder.queries.enabled=true

    修改为:

    #
    # Set this to true to enable reminder queries that are used to help reset a
    # user's password.
    #
    users.reminder.queries.enabled=false

    关闭首次登录强制修改密码功能:

    在/portal-master/portal-impl/src/portal.properties配置文件中,有如下配置:

    passwords.default.policy.change.required=true

    修改为:

    passwords.default.policy.change.required=false
  • 相关阅读:
    项目发展规划 题解
    善意的投票&小M的作物 题解
    方格取数加强版 题解
    BZOJ1001 狼抓兔子 题解
    a
    一个搬运
    代码“小白”的温故而知新(一)-----OA管理系统
    工作流-----WorkFlow
    温习SQL语句
    浅谈MVC基础
  • 原文地址:https://www.cnblogs.com/jytx/p/5454519.html
Copyright © 2011-2022 走看看