By Jochen Strack on Friday, 06 December 2013
Posted in Technical Issues
Replies 8
Likes 0
Views 636
Votes 0
Hello,

when trying a login with false credentials at the fontend of easyblog, the page shows an comfused layout.

What should be done that editing false login credentials does not lead to a comfused layout?

Please see the attachment with screenshots.

Thank you for your good support and response in advance!

Jochen

Enclosure
Hello Jochen Strack,

Could you mind provide us with a temporary access to your Joomla backend (as admin) and an FTP access so we can check that issue and see where the problem is coming from? Please advise.
·
Friday, 06 December 2013 22:29
·
0 Likes
·
0 Votes
·
0 Comments
·
Dear Support,

we found out that a Redirect from component/users to /blog would do the Job. How can I configure easyblog to open the Password Dialog under

.../index.php/blog?view=Login

Thanks

PS.: Hear you can see the correct (manual) Redirect: http://www.anic-gmbh.de/index.php/blog/?view=login
·
Tuesday, 07 January 2014 18:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jochen Strack,

Is it possible for you to provide us with the Joomla back end and FTP access to your site to check on this issue? Please advise.
·
Tuesday, 07 January 2014 19:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Arlex,

sorry, but it is not possible.

We suggest ...

a) a Screen Sharing session
or
b) a zip-File joomla root folder of our website, which we can sent to your personalised e-mail-address.

Would one option OK for you?

Thanks in advance!
Jochen
·
Tuesday, 07 January 2014 19:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jochen Strack,

Sorry for late reply to this,
Hmm, if that is possible to provide us with your Joomla backend access so we can help you solve it quickly.
It seems like when i click the register button also redirect to login page, you try to create a hidden menu from your backend > menu manager > Click "NEW" button > Title & Menu Type : hidden > then save
After that, open again that hidden menu > Click "New" button > Menu title : Registration > Select "Menu Item Type * -> registration form " > then save
When you done remember clear the cache then see can work or not.

What do you mean by "Screen Sharing session" ? Please advise.
·
Wednesday, 08 January 2014 13:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Arlex,

thanks for your response.

We tryed it, but it does not really work.

We advise a GoToMeeting (Screen Sharing Session).

We would have time now until latest 5:45 p.m. your time.

Please sent us a personal E-Mail-address that we can sent you a GoToMeeting.

It would be fine.

Thanks in advcance!

Jochen
·
Friday, 10 January 2014 16:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jochen Strack,

You can sent to my email address arlex.wong@stackideas.com
·
Friday, 10 January 2014 17:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jochen,

So sorry for the delay in getting back to you. Please note a few things before you apply this hack. EasyBlog actually uses Joomla login so generally any failed logins will be redirected to Joomla login page. As far as I know there is no API to redirect failed login if you are using Joomla thus this hack will need to be applied in Joomla core file. Please go to

JOOMLA/components/com_users/controller.php

and put in the codes in line 83 to 90
// If the user is a guest, redirect to the login page.
$user = JFactory::getUser();
if ($user->get('guest') == 1)
{
// Redirect to login page.
$this->setRedirect(JRoute::_('index.php?option=com_easyblog&view=login', false));
return;
}

please refer here http://screencast.com/t/UZWb1LBZp Hope this helps.

Thanks!
·
Friday, 10 January 2014 18:31
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post