fredwen
Forum Replies Created
-
Forum: Plugins
In reply to: [Active Directory Integration] ldaps failedIf you are on Windows,
1. create C:\OpenLDAP\sysconf\ldap.conf (Yes, it MUST be this path because it’s hard-coded in the dll)
2. put this line at the top:
TLS_REQCERT never
3. Save, stop/start apache.See http://php.net/manual/en/function.ldap-bind.php for other clue.
Forum: Plugins
In reply to: [Active Directory Integration] Any ideas how to create a Single Sign On?With IIS, it supports integrated authentication which authenticates user transparently if browser is configured correctly.
With Apache on Windows, a module called SSPI can achieve same result.
Once this web server based authentication mechanism is implemented, use a plugin such as HTTP authentication to pass authenticated user information to WP.Forum: Plugins
In reply to: [Active Directory Integration] ldaps failedI figured out the solution myself!
For Version 1.1.4 of this plug-in, on line 420 of file ad_ldap\adLDAP.php in function connect(), add following line:
ldap_set_option($this->_conn, LDAP_OPT_REFERRALS, 0);Forum: Reviews
In reply to: [WP-HTML-Compression] Doesn't apply to wp-adminI’m interested more on the absolute to relative URL link conversion than compression. I need this feature because I want to offer wp-admin part from a different host, for example https://admin.sample.com so that this admin host can be secured by enterprise SiteMinder SSO. This leaves public facing site http://sample.com untouched by SiteMinder, which is not a highly stable product. Providing a separate host for wp-admin can be easily achieved through Apache mod_rewrite and r-proxy, but without relative URL links, every subsequent request from wp-admin results in a client-side redirect, and hence more performance penalty to site admins.
It would be even better if you can offer an option to enable/disable URL conversion and HTML compression separately.