跳至内容
菜单
此问题已终结
1 回复
24768 查看

I have a website with an eCommerce webstore. Users are able to register to the website, but after logging in they are directed to 'localhost:5010/web?'. Because regular users have no access rights to this page they get an internal server error.

Instead they should be redirected to 'localhost:5010'. Where can I change this?

形象
丢弃
最佳答案

Go through these steps:

  1. Locate Menu User Interface/Views [Setting->Technical->User Interface->Views]

  2. Search Login 

  3. Edit this template  change the values of redirect form t-att-value="redirect" to "/"

  4.  <input type="hidden" name="redirect" value="/"/>

<?xml version="1.0"?> <t name="Login" t-name="web.login"> <t t-call="web.login_layout"> <form class="oe_login_form" role="form" t-attf-action="/web/login{{ '?debug' if debug else '' }}" method="post" onsubmit="this.action = this.action + location.hash"> <t t-call="web.database_select"/> <div class="form-group field-login"> <label for="login" class="control-label">Email </label>

<input type="text" name="login" t-att-value="login" id="login" class="form-control" required="required" autofocus="autofocus"/> </div> <div class="form-group field-password"> <label for="password" class="control-label">Password</label> <input type="password" name="password" id="password" class="form-control" required="required" t-att-autofocus="'autofocus' if login else None"/> </div> <p class="alert alert-danger" t-if="error"> <t t-esc="error"/> </p> <p class="alert alert-success" t-if="message"> <t t-esc="message"/> </p> <input type="hidden" name="redirect" value="/"/> <div class="clearfix oe_login_buttons"> <button type="submit" class="btn btn-primary">Log in</button> </div> </form> </t> </t>

形象
丢弃
编写者

Thanks, this worked!

相关帖文 回复 查看 活动
0
4月 25
1004
1
5月 24
3598
1
4月 24
2371
0
4月 24
1703
1
5月 23
4720