<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: external-database-authentication</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: external-database-authentication</description>
<language>en</language>
<pubDate>Tue, 24 Nov 2009 08:50:11 +0000</pubDate>

<item>
<title>thofuerl on "[Plugin: External DB authentication] Problem with German umlaut"</title>
<link>http://wordpress.org/support/topic/303017#post-1183000</link>
<pubDate>Fri, 21 Aug 2009 11:45:49 +0000</pubDate>
<dc:creator>thofuerl</dc:creator>
<guid isPermaLink="false">1183000@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hi. i am hosting wordpress in a j2ee webapplication for newscontent. &#60;/p&#62;
&#60;p&#62;users a stored in my database and wordpress uses external db authentication for login.&#60;/p&#62;
&#60;p&#62;i works as i expected - except with some user containing german umlaut signs. (Ä,Ü,Ö,...). I do not allow them in the useridentificaton, but - the name and lastname fields contain them. &#60;/p&#62;
&#60;p&#62;Both databases are Mysql UTF-8 Databases.&#60;/p&#62;
&#60;p&#62;Does anybody know a solution for my problem?&#60;/p&#62;
&#60;p&#62;thank you. thomas&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/external-database-authentication/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/external-database-authentication/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Hoodie on "[Plugin: External DB authentication] Small bug"</title>
<link>http://wordpress.org/support/topic/277235#post-1153648</link>
<pubDate>Tue, 28 Jul 2009 08:02:19 +0000</pubDate>
<dc:creator>Hoodie</dc:creator>
<guid isPermaLink="false">1153648@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is this all that I would have to do to integrate my two databases?  I can figure out how to change the links for registering and for logging in.  I just want my users to only have to have on login.  Thanks for any help.
&#60;/p&#62;</description>
</item>
<item>
<title>Jim R on "[Plugin: External DB authentication] How does this work?"</title>
<link>http://wordpress.org/support/topic/285596#post-1122432</link>
<pubDate>Wed, 01 Jul 2009 12:01:30 +0000</pubDate>
<dc:creator>Jim R</dc:creator>
<guid isPermaLink="false">1122432@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have submitted the external database information, and it showed success.  I'm trying to use the members from my SMF forum.  It provides the backbone to my site, and I'm switching over to WP for my site.  I still want to keep it as the forum and maintain all my member registrations (over 3,000), as I use SMF's membergroups and Paypal to control subscriptions and user access.  &#60;/p&#62;
&#60;p&#62;I can easily utilize the code to control access, as well as cross over SMF registration onto a WP page, but I'd like to have integrated use of member information.  In other words, have WP recoganize SMF users.&#60;/p&#62;
&#60;p&#62;Now what?
&#60;/p&#62;</description>
</item>
<item>
<title>kc2002 on "[Plugin: External DB authentication] Small bug"</title>
<link>http://wordpress.org/support/topic/277235#post-1094231</link>
<pubDate>Sun, 07 Jun 2009 10:15:38 +0000</pubDate>
<dc:creator>kc2002</dc:creator>
<guid isPermaLink="false">1094231@http://wordpress.org/support/</guid>
<description>&#60;p&#62;$username = NULL;&#60;/p&#62;
&#60;p&#62;You need to add the above line at line 426 before the semicolon. &#60;/p&#62;
&#60;p&#62;			else {	//username exists but wrong password...&#60;br /&#62;
				global $ext_error;&#60;br /&#62;
				$ext_error = &#34;wrongpw&#34;;&#60;br /&#62;
				$username = NULL;&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;Otherwise you can login with an old password in WPMU &#60;em&#62;after&#60;/em&#62; it has been changed externally. &#60;/p&#62;
&#60;p&#62;Also I had to edit the ext_db_auth.php file and add default values because they blank out when new blogs are created. Here is my code (with default values added) that works with SMF (Simple Machines) 2.0 RC1-1 if anyone is interested.&#60;/p&#62;
&#60;p&#62;	add_option('ext_db_type',&#34;MySQL&#34;,&#34;External database type&#34;);&#60;br /&#62;
	add_option('ext_db_mdb2_path',&#34;&#34;,&#34;Path to MDB2 (if non-standard)&#34;);&#60;br /&#62;
	add_option('ext_host',&#34;localhost&#34;,&#34;External database hostname&#34;);&#60;br /&#62;
	add_option('ext_db_port',&#34;&#34;,&#34;Database port (if non-standard)&#34;);&#60;br /&#62;
	add_option('ext_db',&#34;wpsmf&#34;,&#34;External database name&#34;);&#60;br /&#62;
	add_option('ext_db_user',&#34;root&#34;,&#34;External database username&#34;);&#60;br /&#62;
	add_option('ext_db_pw',&#34;&#34;,&#34;External database password&#34;);&#60;br /&#62;
	add_option('ext_db_table',&#34;smf_members&#34;,&#34;External database table for authentication&#34;);&#60;br /&#62;
	add_option('ext_db_namefield',&#34;member_name&#34;,&#34;External database field for username&#34;);&#60;br /&#62;
	add_option('ext_db_pwfield',&#34;passwd&#34;,&#34;External database field for password&#34;);&#60;br /&#62;
	add_option('ext_db_first_name',&#34;&#34;);&#60;br /&#62;
	add_option('ext_db_last_name',&#34;&#34;);&#60;br /&#62;
	add_option('ext_db_user_url',&#34;website_url&#34;);&#60;br /&#62;
	add_option('ext_db_user_email',&#34;email_address&#34;);&#60;br /&#62;
	add_option('ext_db_description',&#34;&#34;);&#60;br /&#62;
	add_option('ext_db_aim',&#34;aim&#34;);&#60;br /&#62;
	add_option('ext_db_yim',&#34;yim&#34;);&#60;br /&#62;
	add_option('ext_db_jabber',&#34;&#34;);&#60;br /&#62;
	add_option('ext_db_enc',&#34;Other&#34;,&#34;Type of encoding for external db (default SHA1? or MD5?)&#34;);&#60;br /&#62;
	add_option('ext_db_error_msg','Register a new account &#60;a href=&#34;http://charismatoday.com/wpforum/index.php?action=register&#34;&#62;here.&#60;/a&#62;',&#34;Custom login message&#34;);&#60;br /&#62;
	add_option('ext_db_other_enc','$password2 = sha1(strtolower($username) . $password);');&#60;br /&#62;
	add_option('ext_db_role_bool','');&#60;br /&#62;
	add_option('ext_db_role','');&#60;br /&#62;
	add_option('ext_db_role_value','');&#60;/p&#62;
&#60;p&#62;I also see where you disabled the change password in WP; however, there is no error message or warnings. It states that the changes were saved. It's not a biggee. &#60;/p&#62;
&#60;p&#62;Your script has saved me a lot of time in developing a new site! Thank you.&#60;/p&#62;
&#60;p&#62;Keith Tysinger
&#60;/p&#62;</description>
</item>
<item>
<title>takuya on "[Plugin: External DB authentication] Can't login, stuck at configurations..."</title>
<link>http://wordpress.org/support/topic/255674#post-1024980</link>
<pubDate>Tue, 24 Mar 2009 13:44:06 +0000</pubDate>
<dc:creator>takuya</dc:creator>
<guid isPermaLink="false">1024980@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I think it should be in the form of:&#60;/p&#62;
&#60;p&#62;$password2 = $password;&#60;br /&#62;
$password2 = md5($password);&#60;/p&#62;
&#60;p&#62;but above two would never work.&#60;/p&#62;
&#60;p&#62;There're three different auth keys set at my config.php, but not sure which one is used for passwords encryption.&#60;/p&#62;
&#60;p&#62;any expert outhere?
&#60;/p&#62;</description>
</item>
<item>
<title>takuya on "[Plugin: External DB authentication] Can't login, stuck at configurations..."</title>
<link>http://wordpress.org/support/topic/255674#post-1024626</link>
<pubDate>Tue, 24 Mar 2009 01:21:18 +0000</pubDate>
<dc:creator>takuya</dc:creator>
<guid isPermaLink="false">1024626@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I want to connect to another wordpress installation, but I'm stuck at configurations.&#60;/p&#62;
&#60;p&#62;So far the database information is correct as it can find the admin user from the external database. But even if I input admin password, it returns &#34;invalid password.&#34;&#60;/p&#62;
&#60;p&#62;I assume the problem is at encryption method.&#60;/p&#62;
&#60;p&#62;I've tried MD5, SHA1 and none of them are working.&#60;/p&#62;
&#60;p&#62;I don't know what to write in Other encryption field if trying to connect to other wordpress installation.&#60;/p&#62;
&#60;p&#62;If you have any experience connecting two wordpress database using this plugin, please advise.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/external-database-authentication/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/external-database-authentication/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>nonaesthetic on "[Plugin: External DB authentication] SQL syntax Error"</title>
<link>http://wordpress.org/support/topic/250079#post-1006762</link>
<pubDate>Thu, 05 Mar 2009 21:05:27 +0000</pubDate>
<dc:creator>nonaesthetic</dc:creator>
<guid isPermaLink="false">1006762@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Ah, my connection fields had spaces in their names. Surrounding the names with backticks fixed the problem.
&#60;/p&#62;</description>
</item>
<item>
<title>nonaesthetic on "[Plugin: External DB authentication] SQL syntax Error"</title>
<link>http://wordpress.org/support/topic/250079#post-1006579</link>
<pubDate>Thu, 05 Mar 2009 18:11:33 +0000</pubDate>
<dc:creator>nonaesthetic</dc:creator>
<guid isPermaLink="false">1006579@http://wordpress.org/support/</guid>
<description>&#60;p&#62;After activating the External DB Authentication plugin and logging out of Wordpress, I receive the following error:&#60;/p&#62;
&#60;p&#62;You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Address = ''' at line 1&#60;/p&#62;
&#60;p&#62;Running WP 2.7, with plugin v.3.1&#60;br /&#62;
MySQL client version: 4.1.22&#60;/p&#62;
&#60;p&#62;Any help would be appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>Lari on "[Plugin: External DB authentication] Want to create users with different permission levels?"</title>
<link>http://wordpress.org/support/topic/209314#post-975541</link>
<pubDate>Wed, 04 Feb 2009 13:01:31 +0000</pubDate>
<dc:creator>Lari</dc:creator>
<guid isPermaLink="false">975541@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Worked at least with the test user, thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>charlener on "[Plugin: External DB authentication] 3.1 released - now with role checks and MU 2.7 compatibility"</title>
<link>http://wordpress.org/support/topic/240107#post-974520</link>
<pubDate>Tue, 03 Feb 2009 14:54:18 +0000</pubDate>
<dc:creator>charlener</dc:creator>
<guid isPermaLink="false">974520@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Title says most of it.  Also some better error messages upon failed logins and fixed a hole so that only external db users can authenticate - existing accounts on WP are not used at all except for WP-related roles and personal details which get synced with the external database.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/external-database-authentication/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/external-database-authentication/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>charlener on "[Plugin: External DB authentication] Want to create users with different permission levels?"</title>
<link>http://wordpress.org/support/topic/209314#post-974486</link>
<pubDate>Tue, 03 Feb 2009 14:02:43 +0000</pubDate>
<dc:creator>charlener</dc:creator>
<guid isPermaLink="false">974486@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Alrighty,&#60;/p&#62;
&#60;p&#62;Added into version 3.1.  Give it a shot and let me know what you think.&#60;/p&#62;
&#60;p&#62;I just noticed WP-MU got the 2.7 release - I'll try the new plugin code with it too and see if it works for everyone...
&#60;/p&#62;</description>
</item>
<item>
<title>Lari on "[Plugin: External DB authentication] Want to create users with different permission levels?"</title>
<link>http://wordpress.org/support/topic/209314#post-973456</link>
<pubDate>Mon, 02 Feb 2009 12:25:52 +0000</pubDate>
<dc:creator>Lari</dc:creator>
<guid isPermaLink="false">973456@http://wordpress.org/support/</guid>
<description>&#60;p&#62;In Activecollab there’s one table with the roles that have an id and another table with users. In the users table there’s a field &#60;em&#62;role_id&#60;/em&#62;, which tells what role the user has. So the role ids come from the roles table. 1 to 7, currently.&#60;/p&#62;
&#60;p&#62;If I could tell your plugin the name of the field and a value that is required to add the user to Wordpress, that would be great.
&#60;/p&#62;</description>
</item>
<item>
<title>charlener on "[Plugin: External DB authentication] Want to create users with different permission levels?"</title>
<link>http://wordpress.org/support/topic/209314#post-970788</link>
<pubDate>Fri, 30 Jan 2009 05:57:02 +0000</pubDate>
<dc:creator>charlener</dc:creator>
<guid isPermaLink="false">970788@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hmm.  Are these role ids typically in some sort of numeric range, or only numeric?  This doesn't sound hard to add, though you'd still have to go that extra step of setting up in WP what local WP role will assign for new accounts.&#60;/p&#62;
&#60;p&#62;Think it's doable with more info on what typical data type is used for role ids.
&#60;/p&#62;</description>
</item>
<item>
<title>Lari on "[Plugin: External DB authentication] Want to create users with different permission levels?"</title>
<link>http://wordpress.org/support/topic/209314#post-964071</link>
<pubDate>Fri, 23 Jan 2009 10:58:15 +0000</pubDate>
<dc:creator>Lari</dc:creator>
<guid isPermaLink="false">964071@http://wordpress.org/support/</guid>
<description>&#60;p&#62;For me, it would suffice to set permissions based on the permissions of the external table. In my external users table there is a field that contains a role id. If I could restrict access to Wordpress to ids above some value or to a specific value, that would be sweet.&#60;/p&#62;
&#60;p&#62;Right now I can’t use the plugin because I don’t want to give access to all the users in the external database.&#60;/p&#62;
&#60;p&#62;I think this would be simpler than using a third table.
&#60;/p&#62;</description>
</item>
<item>
<title>charlener on "[Plugin: External DB authentication] Want to create users with different permission levels?"</title>
<link>http://wordpress.org/support/topic/209314#post-872390</link>
<pubDate>Thu, 09 Oct 2008 03:12:07 +0000</pubDate>
<dc:creator>charlener</dc:creator>
<guid isPermaLink="false">872390@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Got an email from someone asking about this - namely, using a third database/table/field that contains information about permissions for the accounts in question.  &#60;/p&#62;
&#60;p&#62;In theory, this is a non-trivial addition, except for the complete lack of standardization of how to actually determine the permission levels.  Right all user accounts are created with the same level of permissions as set in WP config section.&#60;/p&#62;
&#60;p&#62;Is this a feature that others would use? Is it necessary?  Based on feedback, I'll work on adding it or not, as I personally don't use this.
&#60;/p&#62;</description>
</item>
<item>
<title>charlener on "[Plugin: External DB authentication] MsSQL authentication issue"</title>
<link>http://wordpress.org/support/topic/206104#post-861228</link>
<pubDate>Wed, 24 Sep 2008 16:25:36 +0000</pubDate>
<dc:creator>charlener</dc:creator>
<guid isPermaLink="false">861228@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Thanks for the feedback - I made some changes based on your comments above (almost identically) and 3.04 should take care of things.  Please update and let me know if you hit any more roadbumps.  I'm glad someone finally tried it out with MSSQL!
&#60;/p&#62;</description>
</item>
<item>
<title>jklotz on "[Plugin: External DB authentication] MsSQL authentication issue"</title>
<link>http://wordpress.org/support/topic/206104#post-860809</link>
<pubDate>Wed, 24 Sep 2008 02:02:55 +0000</pubDate>
<dc:creator>jklotz</dc:creator>
<guid isPermaLink="false">860809@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I to connected to a MsSQL server and I believe I found two errors:&#60;/p&#62;
&#60;p&#62;1&#38;gt; The term &#34;limit&#34; is not valid SQL in Microsoft.  Deleting &#34;Limit 1&#34; from all of the quires seemed to resolve the issue.&#60;/p&#62;
&#60;p&#62;2&#38;gt; When connecting to MsSQL URL the port is separated from the host using a colon &#34;:&#34; it was coded to use a comma &#34;,&#34; on line 257.&#60;/p&#62;
&#60;p&#62;After making those changes it works great with MsSQL&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/external-database-authentication/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/external-database-authentication/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>charlener on "[Plugin: External DB authentication] All outstanding issues resolved"</title>
<link>http://wordpress.org/support/topic/205232#post-857724</link>
<pubDate>Sat, 20 Sep 2008 05:06:32 +0000</pubDate>
<dc:creator>charlener</dc:creator>
<guid isPermaLink="false">857724@http://wordpress.org/support/</guid>
<description>&#60;p&#62;As far as I know, you no longer get an include file error re: MDB2 package whether you have it installed or not, I don't get login loop errors in 2.6.2 (or any other problems for that matter), and login special instructions now work again and password resets within wordpress' login page are disabled.  For neatness' sake, let's post support-related things in wordpress rather than my personal blog so that everyone can more widely benefit.
&#60;/p&#62;</description>
</item>
<item>
<title>charlener on "[Plugin: External DB authentication] Updated 2.6 version in progress - with one issue."</title>
<link>http://wordpress.org/support/topic/196415#post-833080</link>
<pubDate>Wed, 20 Aug 2008 05:18:28 +0000</pubDate>
<dc:creator>charlener</dc:creator>
<guid isPermaLink="false">833080@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Blah.  All uploaded and ready to be used.
&#60;/p&#62;</description>
</item>
<item>
<title>charlener on "[Plugin: External DB authentication] Updated 2.6 version in progress - with one issue."</title>
<link>http://wordpress.org/support/topic/196415#post-828089</link>
<pubDate>Wed, 13 Aug 2008 12:24:59 +0000</pubDate>
<dc:creator>charlener</dc:creator>
<guid isPermaLink="false">828089@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Due to updates in WP (I think) the hook I would now use doesn't quite work right when you have unsynchronized passwords.  The workaround for this right now means that the custom error message doesn't appear if the login already exists in the WordPress user database.  Otherwise everything works.&#60;/p&#62;
&#60;p&#62;This will be uploaded tonight most likely.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/external-database-authentication/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/external-database-authentication/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
