I'm working on a PHP web based application which reads user information(username,office,email,telephone etc) on Novel Console One via Ldap search. i now need it to show when will the password expire for each user search. Your assistance is highly appriciated.
How to retrieve the LDAP attribute "pwdLastSet" from Novel Console One using PHP
1.5k Views Asked by Decoy At
1
There are 1 best solutions below
Related Questions in PHP
- php Variable name must change in for loop
- register_shutdown_function is not getting called
- Query returning zero rows despite entries existing
- Retrieving *number* pages by page id
- Automatically closing tags in form input?
- How to resize images with PHP PARSE SDK
- how to send email from localhost using codeigniter?
- Mariadb max Error while sending QUERY packet PID
- Multiusers login redirect different page in php
- Imaginary folder when I use "DirectoryIterator" in PHP?
- CodeIgniter + XDebug: debug only working in the main controller, index() function
- PHP script timeout when I use sleep()
- posting javascript populated form to another php page
- AJAX PHP - Reload div after submit
- PHP : How can I check Array in array?
Related Questions in LDAP
- LDAP user attributes from CAS
- Error on java application
- how to bypass the necessity of having to have email address firstname and lastname in liferay to import authenticating users
- Async LDAP authentication with play framework
- migrate one ldap server to another - questions
- Check LDAP server connection from C#.NET 4.5.1 without user name and password
- JNDI - LDAP Authentication
- LDAP authentication using passport-ldapauth npm
- PHP Notice: Undefined index: username
- How does an LDAP Client eg Apache Directory Studio get schema from an LDAP Server?
- Spring LDAP Context.REFERRAL to follow
- Avoiding Active Directory Uniqueness Constraint Violation During Rename
- LDAP Directory Synchronization Tools
- Tomcat LDAP User Auth
- how to add multiple Owner in ADLDS groups
Related Questions in NOVELL
- Driver health configuration disturbing SOAP driver
- a list of all users: Ldap referral error (LDAPReferralException)
- Novell.Directory.Ldap Paged Search Results
- How can I login to a Novell Groupwise user account in C#?
- Proxy server breaking AJAX website on internal network
- How to get "supportedControl" from LDAP with com.novell.ldap
- How to connect to LDAP Novell using SSL in C#?
- How to check LDAP connection against Novell?
- Borland Delphi 7 TExcelApplication.Connect works on office machines but not at client
- ASP.NET Core : connect to Active Directory using Kerberos and Novell.Directory.Ldap.NETStandard library
- an API to connect to a shared resource on a Novell server
- Novell Ldap: missing LdapSearchResult message type in the LdapSearchQueue followint Search
- IIS - Access denied to directories and files on the novell network
- Get all users from active directory in NetCore 2.0
- How to retrieve the LDAP attribute "pwdLastSet" from Novel Console One using PHP
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
FINALLY GOT IT!!
$ds=ldap_connect("..*.*"); // must be a valid LDAP server! $person= "username";
$dn = "o=DOMAIN"; $filter="(|(sn=$person)(givenname=$person)(telephonenumber=*$person) (cn=$person))"; $justthese = array("ou", "sn", "givenname", "mail", "cn", "fullname", "telephonenumber", "title", "initials", "l", "manager");
$sr=ldap_search($ds, $dn, $filter, $justthese); $info = ldap_get_entries($ds, $sr);
$dn2=$info[0]["dn"]; $attributes = array();
$result = ldap_search($ds, $dn2, $filter, $attributes) or die("Search failed!");
$entries = ldap_get_entries($ds, $result);
echo $entries[0]['passwordexpirationtime'][0]."
";//PASS EXPIERY DATE