Hi,
I'm getting the follow link in the login text, before the vote:
http://mydomain.com/news/2008/10/node/1%22/user/login?destination=node/1%22
Is this problem related to pathauto?

Regards

Comments

vm’s picture

Category: bug » support
Status: Active » Postponed (maintainer needs more info)

Hard to say with such limited information from you about what this has to do with contributed modules DrupalIt?
The path to your login would be yoursite.com/user obviously something is affecting your path.

Marking as support request until such time as a bug is actually confirmed with more information

patrickmedina’s picture

I'm talking about the login link inside the drupalit box that apears on the node, in the vote-wrap div.

apanag’s picture

Hi,

are you signed in or signed out?
What is the content type in which you are using drupalit?
And what is your problem? you clicked your drupalit link and what happens?

thanks

patrickmedina’s picture

Well, it seems strange but, didn't happened again :S

apanag’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

OK!
Let me know, if you have any problems in the future.

sotiris’s picture

Status: Closed (fixed) » Active

Hello, i have a similar problem with pathauto(6.x-1.1) and drupalit.

I am using drupalit for stories.
When i am signed out (anonymous), the link Login (under the score counter) is sending me in a Page Not Found.

The link sends me at mydomain.com/content/node/723%22/user/login?destination=node/723%22

I changed manually the code in drupalit.module to send me in mydomain.com/user/login. After that the link sent me at user login form normally. Although this is working, i have to find the corect redirect to send the user back to the specific node after he has been loged in.

Any advice would be much appreciated!

apanag’s picture

Hi sotiris,

on drupalit.module find this code:

<a href='. $_GET['q'] .'"/user/login?destination='. $_GET['q'] .'" title=""><span id="vote-text-'. $nid .'" class="vote-text">'. t('Login') .'</span></a>

and change it to that:

<a href="/user/login?destination='. $_GET['q'] .'" title=""><span id="vote-text-'. $nid .'" class="vote-text">'. t('Login') .'</span></a>

Let me know, if that solved the problem.

Thanks,
apanag

sotiris’s picture

Hello apanag,

I did the change, and now the link is working, as expected.

Thanks a lot!

Sotiris

vm’s picture

Status: Active » Closed (fixed)