PDA

View Full Version : redirects?


oninuva
05-11-2006, 02:34 PM
i dont know why but my CMPS keeps re-directin to /profile.php

try it here (http://www.wow-elite.org)

any suggestions?

KW802
05-11-2006, 02:44 PM
If it isn't already there then add "profile.php" to your list of Footer Replacements in the CMPS ACP.

Our Sponsors
 

oninuva
05-11-2006, 02:56 PM
that'll fix it?

ill try

KW802
05-11-2006, 03:20 PM
From the problem you're describing, it should fix it.

Our Sponsors
 

D.I.H.
05-16-2006, 11:40 PM
Hi I recently had this problem on mine... it seems that there is a piece of code in the footer that auto send the user back to profile php

to fix this simply edit your footer by looking for the following

style manager > footer

find



<form action="../profile.php" method="post" name="dstform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="dst" />
</form>



Change this to



<form action="profile.php" method="post" name="dstform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="dst" />
</form>



this worked for me and took me about 5 days to figure out... its always something easy... and the first place you wouldnt look.

funniest ish was that i only got redirected in ie, net8, firefox

but in opera it worked fine.


anyway hope this helps ya.

KW802
05-17-2006, 09:07 PM
DIH, it's a lot easier to just add profile.php to the footer replacements. ;)

D.I.H.
05-18-2006, 01:48 AM
DIH, it's a lot easier to just add profile.php to the footer replacements. ;)
yeah see the problem with that is that that WAS there.... in the footer replacements.. didnt help... doing what I stated thou however IMMEDIATELY fixed the problem.

I was just offering up a suggestion that worked for me definatively.