Drivers Cmscom

People CMS is a fully-managed, modular content management system. It integrates perfectly with beautiful, custom website design, and makes it super simple for busy marketers to roll out new content, products and services.

Dealership management systems. Design a tool that will integrate automated inventory management, F&I, service, BHPH, accounting, free leads, KBB & NADA values, VIN Decoding, DMV fee calculator and so much more. . Includes four different screwdriver bits and 1/4' and 5/16' nut drivers 6-in-1 Ratcheting STUBBY SCREWDRIVERS As the tradesperson’s needs change, so do Klein’s products. The latest additions to our line of drivers feature added functionality to increase productivity and decrease the number of tools on the belt or in the bag.

I am currently working on a Laravel 4.2 app. I have implemented LDAP authentication with no user data in the database. Would it be possible to use the same LDAP driver with OctoberCMS? I suspect it should work fine if October is using the following interfaces for authentication:

  • IlluminateAuthUserInterface
  • IlluminateAuthUserProviderInterface
  • IlluminateAuthAuthManager

I am looking to move to a CMS for static page maintenance and many of the other features OctoberCMS has. However, I cannot take the time to rewrite the LDAP driver.

Thanks for any insight you can give!

Did you make any progress with this? I have the same requirement now?

I made this work for me, I extended UserAccount in a small plugin, created a backend settings page for the ldap credentials and it was straightforward in the end. But I have a very simple use case; to authenticate a user against ldap and nothing else.

Ok cool ! Van you post it on github ? Or send it to me ? Robin.fave@gmail.com thanks :-)

can you send it to me too (jr1342@gmail.com)? i'm stuck with this too >_<Thanks in advance.

Hi axomat - would you be willing to send me your implementation as well, please? roy dot shay at gmail dot com. Thanks!

@axomat, can you send it to me too(gzakay@163.com)? Thank you very much.>axomat said:

Sent to you by email

Drivers Cmscom

axomat said:

I made this work for me, I extended UserAccount in a small plugin, created a backend settings page for the ldap credentials and it was straightforward in the end. But I have a very simple use case; to authenticate a user against ldap and nothing else.

Please send to me: gzakay@163.com, thank you.

Drivers compaq

@axomat, can you please share your code with me (sqzaman@gmail.com)

@axomat, can you please send it to me too, very appreciate ( prophet1114@gmail.com)

Here is a way to override back-end authentication, i made it work for backend user authentication using rest service

//Put this code in your custom Plugin, then write ure authentication logic inside signin_onSubmit()

Last updated

@axomat, can you please share your code with me too kp@c42.at

@axomat, can you please send it to me too, very appreciate (sunyakun00@gmail.com)

Drivers complete reversal hyphenated

Thanks for your contribution, sqzaman21683I have tried your code. It works but failed in my case. The problem with your example code is: the signin_onSubmit will be called twice.

  • First time, it will be called from your anonymous class in your plugin.
  • Second time, it will be called in the Auth controller class of backend module.That being said: your approach will face to a big problem as the final call (Auth controller) will win. The mechanism of extending class cannot help to override completely the function signin_onSubmit

So, I would propose another approach and I have tested it successfully. My approach follows below steps:

Step 1: Inject a piece of Javascript code into the backend auth view to replace the action URL by the URL handled by your own controller class in your plugin.

Step 2: Implement your own controller plugin with whatever logic you want.I will send the example code for you guys if you want to have a look for the reference.

Drivers Company

Cheers,

Drivers Consortium

I put the whole solution and problems I have faced to implement this POC here. So, you can check it out for reference: [https://www.learn4.fun/octobercms-ldap-plugin/]