| Re: Login Form Error |
| by fredski on 2004/8/4 10:36:12 Ok I tried removing the $xoops_url so it would just be /index.php, problem with that is it redirects to the site root index and not my XOOPS root index i.e ideal-handling.com/index.php rather than ideal-handling.com/portal/index.php. the other redirects such as the register and password work fine with the $xoops_url I then took the line out for the hidden redirect and it works fine, thanks Dave_L and also everyone else for their replys
|
| Re: Login Form Error |
| by Catzwolf on 2004/7/30 13:10:11 Does it redirect you with the other parts of this form? ie with the <{$xoops_url}>/user.php#lost and <{$xoops_url}>/register.php? If so, there could be a problem as phpp says. I would drop the xoops_url and try that. |
| Re: Login Form Error |
| by phppp on 2004/7/30 13:00:48 Quote:
nothing else but XOOPS_URL."..." it blocks your _POST variables if your server safe mode on? |
| Re: Login Form Error |
| by Dave_L on 2004/7/30 12:45:20 Or you could try removing that hidden form field completely. I looked at how that field is processed in include/checklogin.php. The parsing is complicated and I'd have to spend more time to figure out exactly what it's doing. But if that form field is missing, then the default behavior is a redirect to XOOPS_URL.'/index.php', which appears to be what you want. |
| Re: Login Form Error |
| by Digiegirl on 2004/7/30 12:39:11 Hi Fredski, The error may be here: <input type="hidden" name="xoops_redirect" value="<{$xoops_url}>/index.php" /> try: <input type="hidden" name="xoops_redirect" value="/index.php" /> Hope it helps, Dee |