0

I wish to create a simple adminhtml public page and not a private page.

www.website.com/admin/users/form

How can I realize that ?

asked Nov 17, 2016 at 17:27

2 Answers 2

1

Authentication is handled by Mage_Adminhtml_Controller_Action::preDispatch() function. If you don't call parent::preDispatch() you should be able enable access without authentication.

But is that really a good idea? Make sure you aren't exposing major security holes here.

answered Nov 18, 2016 at 23:42
0

Ideally, forms in the admin shouldn't be public since it uses authentication to prevent unauthorised access. Ideally, you want to create a module that extends the customer account section. This may help - How to add custom tab to My account(frontend) .

answered Nov 17, 2016 at 18:33
1
  • Thanks for your help but your answer does not help me. My page must be public because I wish to create a login form for my users roles only. Commented Nov 17, 2016 at 19:01

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.