Disable login authentication

Post Reply
kang08
Jr. Bludit
Posts: 1
Joined: Mon Aug 01, 2016 2:25 pm

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.
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

I do not really understand what you want to do? Access to the backend without a login?
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
jaidenmedia
Ssr. Bludit
Posts: 25
Joined: Wed Apr 13, 2016 2:01 am
Location: United States
Contact:

@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.
User avatar
diego
Site Admin
Posts: 773
Joined: Sat May 16, 2015 2:53 pm
Been thanked: 1 time
Contact:

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
jaidenmedia
Ssr. Bludit
Posts: 25
Joined: Wed Apr 13, 2016 2:01 am
Location: United States
Contact:

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.
User avatar
diego
Site Admin
Posts: 773
Joined: Sat May 16, 2015 2:53 pm
Been thanked: 1 time
Contact:

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
jaidenmedia
Ssr. Bludit
Posts: 25
Joined: Wed Apr 13, 2016 2:01 am
Location: United States
Contact:

Ah, OK. Thank you.
Post Reply