Joomla
Joomla Guides
Frontend login error 403
| Frontend login error 403 |
|
|
|
| Written by Administrator | ||||
| Monday, 21 September 2009 | ||||
|
There is a problem in all Joomla versions on IE8, you get an error message and a 403 redirection when trying to login to the frontend. After many searches, i found these solutions: For Joomla 1.5.x Open this file: /templates/system/error.php Find the line: defined( '_JEXEC' ) or die( 'Restricted access' );
$ReferTo = $_SERVER['REQUEST_URI']; Open this file: /components/com_user/views/login/tmpl/default_login.php Find the line: <input type="hidden" name="return" value="<?php echo $this->return; ?>" />
<input type="hidden" name="return" value="<?php if ($_GET['ReferTo']) echo $_GET['ReferTo']; else echo $this->return; ?>" />
Open the file: includes/joomla.php // probably a spoofing attack Delete it. This should work now. Related Items:
Write Comment Add as favourites (227) | Quote this article on your site | Views: 3697
1. 22-04-2012 22:19 Thanks works like charm ! Thank you eblix 2. 18-04-2012 00:54 Fantastic Thank you! This worked perfectly! This error happened a few years ago when I first built my site and I just gave up using it, only allowing admins to have accounts. I may be able to actually add login feature now. 3. 14-10-2010 08:07 Thanks Thank you for this post - this issue had been bugging me for months as I failed to realise that Joomla itself was outputting the 403 header. Now fixed! :o) |
||||
| Last Updated ( Monday, 21 September 2009 ) | ||||
| Next > |
|---|