Page 1 of 1

Disable login authentication

Posted: Mon Aug 01, 2016 2:29 pm
by kang08
How can i disable build-in login system as i already have my own login system in my server. I can deny the access of admin page by require specific permission. But how can i disable the login page of bludit? A.k.a. Disabling user management.

Re: Disable login authentication

Posted: Fri Aug 05, 2016 12:29 pm
by Edi
I do not really understand what you want to do? Access to the backend without a login?

Re: Disable login authentication

Posted: Sat Aug 06, 2016 5:27 am
by jaidenmedia
@kang08: I'd like to know how to restrict Bludit admin login to my own IP address. Have tried a couple of different ways with no success.

Re: Disable login authentication

Posted: Wed Aug 10, 2016 1:29 am
by diego
jaidenmedia wrote:@kang08: I'd like to know how to restrict Bludit admin login to my own IP address. Have tried a couple of different ways with no success.
You can try whit this variables from PHP.

http://stackoverflow.com/questions/3003 ... ess-in-php

Re: Disable login authentication

Posted: Thu Aug 11, 2016 4:20 am
by jaidenmedia
Thanks, but that wasn't my question.

When using WordPress, the wp-login page can be restricted to a single IP address to block brute-force attacks. This is very easy to do with .htaccess. My question was about doing the same thing for Bludit. I haven't been able to do it because Bludit's login works differently than WordPress's login. I hope that's more clear.

Re: Disable login authentication

Posted: Fri Aug 12, 2016 5:54 pm
by diego
You need to edit the controller of the login, it's in /bl-kernel/admin/controller/login.php; You can check the IP address with PHP and allow your IP and deny all.

Anyway you can work with httaccess to deny access to /admin

Bludit has a system anti-brute force, when you try 10 times the IP is blocked for a few minutes; You can change it in /bl-content/databases/security.php

Re: Disable login authentication

Posted: Fri Aug 12, 2016 6:28 pm
by jaidenmedia
Ah, OK. Thank you.