ISPConfig 3 Cannot login after installation - ispconfig

I have just finished ISPConfig 3 installation. The problem is that when I try to login at main panel: remote_host:8080, entering admin and admin as user and password the page is reloaded and nothing happens. It won't go to the index.php page. But it also won't say the the login information is incorrect. I have tried wrong information as login and then it will say that the information is invalid.
What could be happening?
Thanks in advance for the help!
Henrique

Try to delete cookies, it worked for me.

Had the same problem and deleting cookies works

Had the same error and did some research.
I could login on https://$IP:8080/ but not on https://$DOMAIN:8080/.
Deleting cookies did not work for me.
The problem is a login-cookie, it sets the ip-adress as "login-domain" and if this doesnt match, login fails without a message/info/error.
Found here (german)

Related

Facebook Login - Magento extension

We have a Magento extension - EZLOGIN LITE for Facebook login.
Set everything up, but when you click 'F log in' still getting this: "Dear Customer! Allow this application to complete the login process".
Here is link: http://www.blubond.com/store/customer/account/login/
But 'F log in' is temporary removed because of this.
Anyone know what is it about?
Thank you.
Thanks for commenting back.
For me the development server's facebook login also not working fine.
Showing like this :
For which domain you have downloaded the extension, That will work for that domain only I think, So you download the extension again by giving the production server(http://www.blubond.com/) link from http://store.velanapps.com/products/magento/free-facebook-login-extension.
While creating facebook app also you have to give site url.
So create one more facebook app by giving the production server link(http://www.blubond.com/)
as given in this guide : http://velanapps.com/Ezlogin-Installation-Manual.pdf
Try by doing this. If then also it didn't work, I will help you out.
Cheers :-)

Disabled User - Joomla plugin and now can't login

Hope someone can help.
I have accidental disabled the user - joomla plugin that allows the login of both front and back end. Consequently I can no longer log in to the back end to enable it again.
Is there any way I can do this through ftp in a file or something?
Thanks in advance
This issue can be addressed by logging in to phpMyAdmin, going to the #__extensions table, and then setting the enabled field of the plg_authentication_joomla plugin to 1 in joomla V.3
You could enable plugin via database (phpmyadmin).
You have to locate it in #__extensions table and set enabled value to 1.
Hope this helps

Joomla 2.5.9 Wrong redirect after Read more -> Login

I´ve a strange Joomla 2.5.9 problem where I do not know if it´s a bug or a setting issue.
Anyway my problem is I ´ve created a menu item kind "Blog List", choosed a category and set the "access" of the articles to "registered" and "show unauthorized access links" to yes. Now the user can see the articles, but is redirected to the login if he clicks "read more".
steps can be seen here (-> http://tinyurl.com/bldbvx4)
So far so good. Unfortunately the return URL for the article is not created correctly.
I ´ve created a demo installation which illustrates my problem.
http://seminare-gratz.de/Joomla_2/index.php/problem
Login:
demo
demo
If I click "Koala" and log-in in the next step, Joomla tries to redirect me to:
http://seminare-gratz.de/Joomla_2/index.php/%2FJoomla_2%2Findex.php%2Fproblem%3Fid%3D25%3Akoala
correct would be:
http://seminare-gratz.de/Joomla_2/index.php/problem/25-koala
To solve this issue I tried to cut the wrong part with htaccess (failed)
Any clue how to fix this?
Thankful for any help,
Tony
Okay, got it. For everyone else having this problem. I did a template override of:
components/com_content/views/category/tmpl/blog_item.php
and cutted the urlencode in line 149.
//$link->setVar('return', base64_encode(urlencode($returnURL)));
$link->setVar('return', base64_encode($returnURL));
with this hack it works ...
This is because you have given Access level to register so normal users are not allowed to read this article. So you kindly change access level registered to public.

Jomsocial not going to 2nd step when registering new user, it stays in 1st registration screen

Hope you all are doing great!
I just have installed jomsocial Version: 2.6.2 and when I try to Register new user (jomsocial index, 1st step) and click next the page just reloads and nothing happens (I stay on 1st step and I’m not directed to the second step where personal info is entered). Everything works perfect in localhost but in my godaddy’s server I have this problem, any ideas? Help will be highly appreciated!
Make sure it's not a SEF urls issue (do the urls look the same on localhost and godaddy?),
then check the error logs.
Also see my answer to JomSocial - Registration Redirection it could be a solution for you too.

FB.Connect.logoutAndRedirect is not redirecting to the specified page

Not sure whats wrong, below code logs me out of facebook but not redirecting to test2.php, after the popup disappears, the page just refreshes, no redirection
//test1.php
FB.init("xxxxxxxxxxxx", "xd_receiver.htm",{"reloadIfSessionStateChanged":true});
FB.Connect.logoutAndRedirect('test2.php');
can any one help?
According to the documentation,
If the user does not have a session,
this function will not redirect.
Could that be the problem?
Remove ",{"reloadIfSessionStateChanged":true}" from FB.init and it will work.