I have installed the module perfectly.
I have set iit up to static url.
I have inserted a node alias, also have tried node/4
Redirections conditions : always.
But nothing works!
User is always redirect to his user settings page.

Where am I wrong?

Thanks in advance.

Michel.

CommentFileSizeAuthor
#2 login.jpg55.61 KB_michel_

Comments

ardas’s picture

Please specify all your settings.
How did you set up redirection URL?

_michel_’s picture

StatusFileSize
new55.61 KB

my settings regarding this module are in a jpeg enclosed.
Do you agree to access the site and have a look?
That will be very kind from you.

Michel.
ms@auxe.net

ardas’s picture

I saw you specified 'listini' in your URL textarea... Is it correct path?
Does this page exists?
If it is an alias URL could you also try the original URL (node/123 or whatever it is).

_michel_’s picture

Problem solved.....

The problem was :
I have created, myself, the from to make a login window.

<form method="post" action="/user>
etc...

The solution is:

<form method="post" action="/user?destination=login_redirect">
etc...

Now everything is ok.

ARDAS!! Thanks for your quick reply.

Regards.

Michel.

ardas’s picture

I see.
When using Drupal you should not create forms in a pure HTML because you will loose an ability to alter forms, write validate and submit hooks, etc.

Our module uses form_alter hook to change form's action to the specified one. If you create a login form in a pure HTML our module will not work and more than !!! you don't need this module at all if you are going to specify destination=login_redirect :) You'd better set destination to the one you need and disable our module.

The proper approach is avoid HTML forms.

ardas’s picture

Status: Active » Closed (fixed)