Stephane Daury (stephdau)
Forum Replies Created
-
Forum: Plugins
In reply to: Feedback wanted for new Directory (LDAP/AD/etc) authentication pluginHi there,
First, thanks for giving it a shot. 🙂
I haven’t had time to write the readme yet, so here it goes:
Installation:
– create as follow [wordpress_root]/wp-content/plugins/wpDirAuth/
– drop wpDirAuth.php in the latter directory.
– go to http://[wordpress_install]/wp-admin/plugins.php and activate the plugin
– go to http://[wordpress_install]/wp-admin/options-general.php where you should now see a menu entitled “Directory Auth.”
– click it and it should take you to the plugin admin screen, most likely located at http://[wordpress_install]/wp-admin/options-general.php?page=wpDirAuth.phpI’ve been debating having the menu under the plugin section instead, but also being new to WP, I’m not sure if there are backward compatibility issues and if having the admin tool in the Options section is better. To be debated. 🙂
In case it comes up, one of the reasons that I’m not using OO on this one is primarily due to the limitations of OO in PHP4, which WP still supports (probably at least for a few more months, until php.net drops their own support of php4 [sched. for around 2008-01-01]).
Let me know how it goes.
Forum: Plugins
In reply to: LDAP plugin fatal error in 2.2.1After getting in touch in and getting “approval” from its author, I’m attempting to fork off and revive wpLDAP and would like the code to be peer reviewed by other developers before I release my version.
Please see http://wordpress.org/support/topic/129814
Thanks for any help I can get. 🙂
Forum: Plugins
In reply to: LDAP authenticationAfter getting in touch in and getting “approval” from its author, I’m attempting to fork off and revive wpLDAP and would like the code to be peer reviewed by other developers before I release my version.
Please see http://wordpress.org/support/topic/129814
Thanks for any help I can get. 🙂
Forum: Installing WordPress
In reply to: LDAP – Appears to not be an active project?After getting in touch in and getting “approval” from its author, I’m attempting to fork off and revive wpLDAP and would like the code to be peer reviewed by other developers before I release my version.
Please see http://wordpress.org/support/topic/129814
Thanks for any help I can get. 🙂
Forum: Themes and Templates
In reply to: wp_list_pages issueThere’s a small typo in your code:
if($post->page_type != 'post') {should be:
if($post->post_type != 'post') {Thanks for the code though. It helped me figure out my page nav. 🙂