authenticate

search for more blogs here

 

"Hooking custom authentication into Radiant CMS" posted by ~Ray
Posted on 2008-11-19 12:10:15

Create a CrowdAuthenticator module in the lib directory under the extension. The CrowdAuthenticator module has a method to authenticate users by calling Ruby code that wraps the Crowd SOAP API. It also handles updating the Radiant database with the user information from Crowd. class CrowdAuthenticatorExtension < Radiant::Extension def activate User send :include. CrowdAuthenticator endend Radiant looks for the user in the database. I want to change the definition of User authentication without editing the Radiant code. I was having trouble trying to “override” the “static” authenticate method. Fortunately Simon Harris helped out with # crowd_authenticator rbrequire 'crowd'module CrowdAuthenticator def self included(base) base extend ClassMethods base class_eval do class << self alias_method :old_authenticate. :authenticate alias_method :authenticate. :crowd_login end end end module ClassMethods def crowd_login(login password) crowd_user = get_crowd_user login password return nil if crowd_user nil? find_or_create_user crowd_user end def get_crowd_user(login password) # call api # check groups crowd_user end def find_or_create_user(crowd_user) # create radiant user if necessary # update radiant user with info from crowd_user # save and return user end endend I also added some new routes to disable the existing pages for creating and editing users since these are now managed through Crowd. <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Forex Groups - Tips on Trading

Related article:
http://donc.wordpress.com/2007/11/06/hooking-custom-authentication-into-radiant-cms/

comments | Add comment | Report as Spam


"Using Live ID to authenticate to WordPress" posted by ~Ray
Posted on 2008-09-29 02:42:31

Yesterday I've been hacking a bit with the and I wrote a very small and simple plugin for that enables you to login in to WordPress with your passport Live ID. I had read that such a plugin would be welcome… I looked around and found none yet (if anyone has instead already written something like this and I missed it I will happily waste the simple stuff I did for something more advanced/well written… just let me know :-)). I took a be at and eventually even found that there is. The wordpress openid plugin is much more complex and much more advanced than what I did tough. It ordain let you log in with just ANY OpenID user it will automatically create a user for you on that wordpress installation and cerebrate it with your ID even just for the purpose of commenting etc. But in my blog I don't require or need people to actually log in to do anything. I actually like anonymous/free comment. A CAPTCHA takes compassionate of spammers and I am fine with it so far. Probably for a big place with a lot of users it might make sense but for my blog so far it doesn't. But there's one thing for which this is instead useful: I have always been worried when logging in through HTTP (thus without SSL) to my blog from networks I don't manage or completely trust that my password could be sniffed over the wire and stolen. Live ID solves my problem by letting Microsoft validate my identity: I undergo associated my Live ID to the blog's main user account(=myself) the one writing this post. So the plugin in its current form (the CAN still be used if you like of course you just don't undergo to. Also the use of xmlrpc will comfort demand local user/pwd combination.). Anyway this new form will authenticate you thorugh Live ID and then analyse if your Live ID is associated to any local user. If it is it will log you on to wordpress with that account. Otherwise it will inform you that you are successfully logged on to passport Live but unfortunately there is no corresponding local account for you and that it would need to be set up. Setting it up is as difficult as adding a line to the database… probably adding a form or a property page would be nice but in my case I just did it with a query: INSERT INTO `wordpress`.`wp-usermeta` (`umeta_id` ,`user_id` ,`meta_key` ,`meta_value`)VALUES (NULL. '1'. 'LiveID'. 'f11fa1d3e82c68776f94a3a5c459b70b'); which adds an extra "property" for the first user (admin) called 'LiveID' which contains your be ID (the one above is not my real one in case you were wondering). When you are authenticated by LiveID and you get back this value the plugin checks in this table which WordPress userid in the database has been associated with this Live ID and - if it finds one - it authenticates you as that user. Of course you should not have duplicates. My label is mostly based on with some modification to integrate it in WordPress as a plugin. Of course I removed the file that is used as "user database" and used wordpress DB instead. There's a ton of things that could be improved. I just did not put any more effort and time in it. As you might know if you read this blog. I am not a full time developer. Actually I shouldn't write code at all for work and I am mainly considered an "infrastructure" guy. Anyway. I would like to label more and even if I am not supposed to. I always try to sight stimulating situations that require a bit of integration thinking out of the box some scripting etc… [updated: november 3rd 2007] You can download the sample plugin "AS-IS" here: . This has only been tested and only works with Wordpress 2.3 x serie (but should also work with earlier versions - not tested) [updated: march 30th 2008] has changed the way the authentication cookie is generated therefore here is an updated version of the plugin that works with the new secure cookies: I should really invest some more time in this and clear up the code. I should also make an interface to alter the configuration easier and maybe alter a version that works on both 2.3 and 2.5 branches. I am not sure when I will have time for that though… [updated: april 20th 2008] I have released version 0.3c of the plugin which now finally includes a simple configuration page and should work on both WordPress 2.3 (and older) and on the 2.5 brach. Please visit the new Windows. Disclaimer:The information in this weblog is provided "AS IS" with no warranties and confers no rights. This weblog does not represent the thoughts intentions plans or strategies of my employer. It is solely my own personal opinion. All label samples are provided "AS IS" without warranty of any kind either express or implied including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. THIS WORK IS NOT ENDORSED AND NOT EVEN CHECKED. AUTHORIZED. SCRUTINIZED NOR APPROVED BY MY EMPLOYER. AND IT ONLY REPRESENT SOMETHING WHICH I'VE DONE IN MY FREE TIME. NO GUARANTEE WHATSOEVER IS GIVEN ON THIS. THE AUTHOR SHALL NOT BE MADE RESPONSIBLE FOR ANY DAMAGE YOU MIGHT subject WHEN USING THIS PROGRAM. This entry was posted on Friday. November 2nd. 2007 at 10:39 pm and is filed under. . You can follow any responses to this entry through the feed. Tags: . You can or from your own site.

Forex Groups - Tips on Trading

Related article:
http://www.muscetta.com/2007/11/02/using-live-id-to-authenticate-to-wordpress/

comments | Add comment | Report as Spam


"Re: hb_gui failing to authenticate... although it hasworkedin the past" posted by ~Ray
Posted on 2008-03-16 00:43:24

> > Hi. > > > > General Linux-HA mailing list <linux-ha[at]lists.linux-ha.org> wrote: > >> so I experience it's not firewall related. It has just inexplicitly stopped > >> working! > >> > >> Does any one have any other ideas as to why the hb_gui connection has > >> stopped working? Is there any other way to set up a virtual ip without > >> using hb_gui? > > I had a similar problem on openSUSE 10.2. Check /etc/pam d/hbmgmtd and > > change pam_unix so to pam_unix2 so. That fixed the problem for me on > > openSUSE despite I just checked on SLES10 SP1 and I only have > > Thanks Sebastian > > Will pam_unix and pam_unix2 coexist on the same box? On CentOS pam_unix > is installed from a package pam_unix2 seems to be only available as > source.. if I build it presumbly I can keep the other? > unfortunately. I have no idea haven't tried to use both on the same machine but as far as I can see why not. Sebastian _______________________________________________ Linux-HA mailing enumerate Linux-HA[at]lists.linux-ha.org See also:

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/linuxha/users/43468

comments | Add comment | Report as Spam


"Can not authenticate also can not boot to cd when restart" posted by ~Ray
Posted on 2008-01-02 00:07:15

HELP!!I'm really hoping someone can back up me! I recently upgraded to a new macbook - so my old intel imac is going to a family member. When I was trying to change the administrator I made it his name and no password - thinking he can set that up later. I clicked the lock to save the settings and never thought a thing more. Then I was trying to install a program and it asked me to authenticate - I tried his name and no password - didn't work - so I tried my old username and password - still nothing. Then I read on Apple com that you can reset the admin and password by booting into the install disc. I have both leopard and tiger install discs. I held down the C key while restarting and nothing - still im booted into os. I tried tapping the C key consistantly while it booted and still nothing. I construe up and found out there are two other ways to reboot using cd. 1 go into system settings and then click startup disc and select the cd - but needs me to authenticate.2 was to hold down this really stupid combo of command +option +alter + delete to skip the HDD when booting - tried this with both cds many times - still i get booted into the OS. WHAT can I do?? I'm going nuts trying to choose this out. I have to deliver this to the new owner next weekend. Can I change without stupid authentication?Hoping someone out there knows a way around this. I would be extremely grateful for any suggestions. Thanks in advanceMiksta. __________________"Build a man a fire and he'll be warm for a day. Set a man on blast and he'll be warm for the be of his life." -Terry Pratchett. Sorry didn't see that. Are you using an Apple keyboard or a third party keyboard? I had a similar problem with it not picking up my commands using the 3rd celebrate keyboard. I then used an old Apple USB keyboard and it did the trick. __________________"Build a man a fire and he'll be warm for a day. Set a man on fire and he'll be change for the rest of his life." -Terry Pratchett. Have the CD in the drive direct down OPTION (ALT) while before the chime and hold it till it gives you the enumerate to choose from. The CD should show up then click that and it should boot into it. Thanks both for your feedback. I was using the new slimmer keyboard - as soon as I plugged my old chunky mac keyboard in it boots to cd pressing drink the "c". Not sure why this didn't work with my new keyboard - as it is made by mac?!? Strange. Anyway problem sorted. Thanks.

Forex Groups - Tips on Trading

Related article:
http://forums.macrumors.com/showthread.php?t=380504

comments | Add comment | Report as Spam


"Re: hb_gui failing to authenticate... although it hasworked in the ..." posted by ~Ray
Posted on 2007-12-15 15:26:18

>> I've checked by connecting to the server using hb_gui on the same subnet >> so I experience it's not firewall related. It has just inexplicitly stopped >> working! >> >> Does any one undergo any other ideas as to why the hb_gui connection has >> stopped working? Is there any other way to set up a virtual ip without >> using hb_gui? > I had a similar problem on openSUSE 10.2. analyse /etc/pam d/hbmgmtd and > dress pam_unix so to pam_unix2 so. That fixed the problem for me on > openSUSE despite I just checked on SLES10 SP1 and I only have pam_unix so > there but is working. > > Sebastian > Thanks Sebastian ordain pam_unix and pam_unix2 coexist on the same box? On CentOS pam_unix is installed from a package pam_unix2 seems to be only available as source.. if I build it presumbly I can keep the other? John -- John Gardner - Tagish Ltd. Infrastructure Manager T: 01665 833 322 F: 01665 830 695 D: 01665 833 310 _______________________________________________ Linux-HA mailing list Linux-HA[at]lists.linux-ha.org See also: > >> I've checked by connecting to the server using hb_gui on the same subnet > >> so I know it's not firewall related. It has just inexplicitly stopped > >> working! > >> > >> Does any one undergo any other ideas as to why the hb_gui connection has > >> stopped working? Is there any other way to set up a virtual ip without > >> using hb_gui? > > I had a similar problem on openSUSE 10.2. Check /etc/pam d/hbmgmtd and > > change pam_unix so to pam_unix2 so. That fixed the problem for me on > > openSUSE despite I just checked on SLES10 SP1 and I only undergo pam_unix so > > there but is working. > > > > Sebastian > > > > Thanks Sebastian > > Will pam_unix and pam_unix2 coexist on the same box? On CentOS pam_unix > is installed from a package pam_unix2 seems to be only available as > source.. if I build it presumbly I can act the other? That won't help pam_unix2 is suse specific. Besides if this is the same air you reported recently it is definitely not about authentication failing. Thanks. Dejan > John > > -- > John Gardner - Tagish Ltd. > Infrastructure Manager > T: 01665 833 322 > F: 01665 830 695 > D: 01665 833 310 > _______________________________________________ > Linux-HA mailing list > Linux-HA[at]lists.linux-ha.org > > See also: _______________________________________________ Linux-HA mailing list Linux-HA[at]lists.linux-ha.org See also:

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/linuxha/users/43466

comments | Add comment | Report as Spam


"Re: hb_gui failing to authenticate... although it has worked in ..." posted by ~Ray
Posted on 2007-12-09 13:59:30

>>> I ran into a similar air and in my case it was the entertain's firewall. >>> undergo you enabled a firewall recently? >>> If so alter sure that tcp port 5560 is change state. >>> >>> wish this helps. >>> Justin > > In my inspect the firewall was actually installed on the box - not vpn > related. I'm running SLES10 SP1 and it comes with an iptables based > packet separate that required me to change state port 5560 manually. > I've checked by connecting to the server using hb_gui on the same subnet so I experience it's not firewall related. It has just inexplicitly stopped working! Does any one undergo any other ideas as to why the hb_gui connection has stopped working? Is there any other way to set up a virtual ip without using hb_gui? Thanks John -- John Gardner - Tagish Ltd. Infrastructure Manager T: 01665 833 322 F: 01665 830 695 D: 01665 833 310 _______________________________________________ Linux-HA mailing list Linux-HA[at]lists.linux-ha.org See also:

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/linuxha/users/43463

comments | Add comment | Report as Spam


"hb_gui failing to authenticate... although it has worked in the past" posted by ~Ray
Posted on 2007-11-27 21:19:00

I'm running CentOS 4.5 and I've had heartbeat up and running successfully for a number of months and configured it initially with hb_gui but I've never really used it since then... Anyway. 4 months on I powered up hb_gui to make some changes and it won't connect to the heartbeat server it gives this error: mgmtd: [23909]: ERROR: on_comprehend acquire login msg failed Why would it suddenly forbid working? Thanks John _______________________________________________ Linux-HA mailing enumerate Linux-HA[at]lists.linux-ha.org See also: linux-ha-bounces[at]lists.linux-ha.org wrote on 10/31/2007 08:44:14 AM: > I'm running CentOS 4.5 and I've had heartbeat up and running > successfully for a number of months and configured it initially with > hb_gui but I've never really used it since then... Anyway. 4 months on > I powered up hb_gui to make some changes and it won't connect to the > heartbeat server it gives this error: I ran into a similar issue and in my case it was the entertain's firewall. undergo you enabled a firewall recently? If so make sure that tcp port 5560 is open. wish this helps. Justin _______________________________________________ Linux-HA mailing list Linux-HA[at]lists.linux-ha.org See also: >> I'm running CentOS 4.5 and I've had heartbeat up and running >> successfully for a number of months and configured it initially with >> hb_gui but I've never really used it since then... Anyway. 4 months on >> I powered up hb_gui to alter some changes and it won't connect to the >> heartbeat server it gives this error: > > I ran into a similar issue and in my inspect it was the entertain's firewall. > undergo you enabled a firewall recently? > If so make sure that tcp port 5560 is open. > > Hope this helps. > Justin Justin It's running over a VPN so there are no ports to open... I've been connecting to it as xx xx xx xx:594 in the past so I'm not sure where 5560 go from? Thanks anyway but I don't /think/ that's the problem (I will check just to be sure though ;-) John _______________________________________________ Linux-HA mailing enumerate Linux-HA[at]lists.linux-ha.org See also: > I'm running CentOS 4.5 and I've had heartbeat up and running > successfully for a number of months and configured it initially with > hb_gui but I've never really used it since then... Anyway. 4 months on > I powered up hb_gui to alter some changes and it won't connect to the > heartbeat server it gives this error: > > mgmtd: [23909]: ERROR: on_comprehend receive login msg failed The first message on the connection was not a proper login communicate. This used to happen in the past also because of different client and server versions. Are you absolutely sure that nothing changed in the meantime? Things don't just stop working. Typically there is a cerebrate. Which heartbeat version do you run? Thanks. Dejan > Thanks > > John > _______________________________________________ > Linux-HA mailing enumerate > Linux-HA[at]lists.linux-ha.org > > See also: _______________________________________________ Linux-HA mailing enumerate Linux-HA[at]lists.linux-ha.org See also: >> I'm running CentOS 4.5 and I've had heartbeat up and running >> successfully for a number of months and configured it initially with >> hb_gui but I've never really used it since then... Anyway. 4 months on >> I powered up hb_gui to alter some changes and it won't connect to the >> heartbeat server it gives this error: >> >> mgmtd: [23909]: ERROR: on_listen receive login msg failed I'm using 2.0.8 which is packaged for CentOS. I'm using 2.0.8 version of of hb_gui and 2.0.8 of heartbeat. I've installed hb_gui on three separate servers two access the heartbeat server via VPN and the third is on the same subnet as the heartbeat server. All three connect using: Server(:port) 192.168.1.65:694 Username heartbeat Password xxxxxxx The 'heartbeat' user is definitely in the haclient group (see /etc/group below) haclient:x:90:heartbeat But every time I try to connect from either hb_gui client I get: Failed in the authentication User label or Password may be wrong or the user desn't be to the haclient assort on the GUI and the following in the log: Nov 5 10:26:56 server01 mgmtd: [25556]: ERROR: on_listen receive login msg failed Nov 5 10:32:10 server01 mgmtd: [25556]: ERROR: on_comprehend receive login msg failed I'm at a bit of a loss what to do next really. I need to add another Virtual IP today but I can't cerebrate :-( Regards John _______________________________________________ Linux-HA mailing list Linux-HA[at]lists.linux-ha.org See also: > >> I'm running CentOS 4.5 and I've had heartbeat up and running > >> successfully for a be of months and configured it initially with > >> hb_gui but I've never really used it since then... Anyway. 4 months on > >> I powered up hb_gui to alter some changes and it won't cerebrate to the > >> heartbeat server it gives this error: > >> > >> mgmtd: [23909]: ERROR: on_listen acquire login msg failed > > I'm using 2.0.8 which is packaged for CentOS. I'm using 2.0.8 version > of of hb_gui and 2.0.8 of heartbeat. > > I've installed hb_gui on three separate servers two access the > heartbeat server via VPN and the third is on the same subnet as the > heartbeat server. All three connect using: > > Server(:port) 192.168.1.65:694 > Username heartbeat > Password xxxxxxx > > The 'heartbeat' user is definitely in the haclient group (see /etc/group > below) > > haclient:x:90:heartbeat > > But every time I try to connect from either hb_gui client I get: > > Failed in the authentication > User Name or Password may be wrong. > or the user desn't belong to the haclient assort > on the GUI and the following in the log: > > Nov 5 10:26:56 server01 mgmtd: [25556]: ERROR: on_listen acquire login > msg failed > Nov 5 10:32:10 server01 mgmtd: [25556]: ERROR: on_comprehend receive login > msg failed > > I'm at a bit of a loss what to do next really. I be to add another > Virtual IP today but I can't connect :-( > Regards > > John > > > > > > > > > _______________________________________________ > Linux-HA mailing list > Linux-HA[at]lists.linux-ha.org > > See also:.

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/linuxha/users/43440

comments | Add comment | Report as Spam


"Re: hb_gui failing to authenticate... although it hasworked in the ..." posted by ~Ray
Posted on 2007-11-17 17:05:13

Hi. General Linux-HA mailing list <linux-ha[at]lists.linux-ha.org> wrote: > > I've checked by connecting to the server using hb_gui on the same subnet > so I know it's not firewall related. It has just inexplicitly stopped > working! > > Does any one have any other ideas as to why the hb_gui connection has > stopped working? Is there any other way to set up a virtual ip without > using hb_gui? I had a similar problem on openSUSE 10.2. Check /etc/pam d/hbmgmtd and dress pam_unix so to pam_unix2 so. That fixed the problem for me on openSUSE despite I just checked on SLES10 SP1 and I only undergo pam_unix so there but is working. Sebastian _______________________________________________ Linux-HA mailing list Linux-HA[at]lists.linux-ha.org See also:

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/linuxha/users/43464

comments | Add comment | Report as Spam


"openldap doesn't authenticate" posted by ~Ray
Posted on 2007-11-09 19:01:21

This is my first affix here mostly becasue in one of my servers is installed wildfire version 2.6.2-1 over a SLES9 instalation my intention was to modify the software and take advantage of the new version of openfire. I have installed openfire 3.3.2 over a Centos 5. I have successfully (aparently) configured the ldap connection but the users doesn't appear when i make a test i have construe several posts about this problem so i let it pass and act the lay process (The groups evaluate ok). My problema is I can't authenticate users.. i have checked the log on my ldap server and there are differences between the login from wldfire and openfire the main difference is this: Sep 10 10:11:19 ldap-server slapd: channelise=26098 op=2 BIND dn="UID=TESTUSER,OU=USERS,DC=DOMAIN,DC=COM" method=128 <ldap> <host>x x x x</entertain> <port>389</port> <baseDN>dc=domain,dc=com</baseDN> <adminDN>cn=Manager,dc=domain,dc=com</adminDN> <adminPassword>password</adminPassword> <connectionPoolEnabled>true</connectionPoolEnabled> <sslEnabled>false</sslEnabled> <ldapDebugEnabled>false</ldapDebugEnabled> <autoFollowReferrals>false</autoFollowReferrals> <usernameField>uid</usernameField> <vcard-mapping> TOO MUCH DATA</vcard-mapping> <nameField>cn</nameField> <emailField>send</emailField> <groupNameField>cn</groupNameField> <groupMemberField>memberUid</groupMemberField> <groupDescriptionField>description</groupDescriptionField> <posixMode>false</posixMode> </ldap> <encloseUserDN>false</encloseUserDN> <-- this i have added after several test but with no positive effect.

Forex Groups - Tips on Trading

Related article:
http://www.igniterealtime.org/community/message/155956

comments | Add comment | Report as Spam


"Paper Towels and more website..." posted by ~Ray
Posted on 2007-11-08 15:29:55

Look for paper towels , linens, bath towels, and more at TowelTown.com
stop by anytime

comments | Add comment | Report as Spam


"Cannot authenticate the phone : brand new 6085" posted by ~Ray
Posted on 2007-10-28 12:34:13

accept to the Nokia Support Discussions come in where you can share advice and tips with thousands of other Nokia telecommunicate users. look for the posts to find answers fast or to start your own topic. I undergo just bought a brand new 6085 and desire to connect via Bluetooth to my laprop ( full details below) . Depsite having a ameliorate working BlueTooth set up prior to installing PC Suite. I continually get the'Cannot authenticate the phone'error communicate after I undergo entered the passkey on the phone. I undergo spent about 6 hours checking all aspects of BT which is otherwise working fine. What is going on? If I can't get a solution promptly sadly this phone which in theory is ideal for my needs is going back to the obtain. Thanks for your back up,--------------------------------Operating system:Microsoft Windows XPBuild 2600function Pack 2Language: EnglishLanguage for non-Unicode programs: EnglishLocale: EnglishInput language: EnglishNokia PC Suite:Version 6.84.10.4Language: EnglishConnectivity Cable Drivers:Version 6.84.4.0PC Connectivity Solution:Version 7.22.7.1Microsoft Outlook:Version 11.0Build 8118Bluetooth stacks:WIDCOMM Bluetooth stackVersion 5.0.1Build 1200Microsoft Bluetooth stackVersion 5.1.2600create 2180

Forex Groups - Tips on Trading

Related article:
http://discussions.europe.nokia.com/discussions/board/message?board.id=connectivity&message.id=10099#M10099

comments | Add comment | Report as Spam


"ubbThreads v6.5 FAILED TO AUTHENTICATE on install..." posted by ~Ray
Posted on 2007-10-23 16:13:44

to interact with over 11,000 members! Registered users have Posting Privileges free access to Private Messaging. Email Notifications and more. Greetings. I have installed this about a year and a half ago. No problems. I have since removed the forum system. I am now wanting to re-establish the ubbThreads forum system again. However for the last four days I undergo had horrid problems getting an remove AUTHENTICATION ERROR when it asks for SERVER LOCATION and SERVER NAME. Here's what i've done...1) I've deleted the old database. It was alter anyways and built a new one.2) I have changed all the permissions as advised in the operators manual.3) I can get thru authentication on everything object the server location and name.4) I have asked for PowWeb converse assistance three times and emailed tech support twice. I am getting no response. Usually PW is quick about assisting. I am seeing that others have had this problem also since the migration of mySQL servers or the work they were doing on them. I was originally told to wait. Well i've waited four days. How desire do I have to wait to get someone to identify why it's failing to authenticate? Again i've installed it previously without a problem prior to the new mySQL changes. But now no authentication. Could it be a user error? It is certainly possible. However having read the manual searched online asked several PW techs for back up i'm comfort at inform adjust. So it's becoming irritating. Hopefully someone can assist me. Or explain why they are getting this error on the 2nd install screen of ubbThreads. I think it's not so much troubleshooting the software as it is authenticating. It seems to create and see everything else book object when the final authentication fails. Weird. I have also opened up ubbThreads and manually entered the data in the index lay register with server label and location and user id and pw etc. It still fails with manual entries. Thus it seems to be an authentication issue. Thanks for any suggestions,Respectfully,Mick Half-a-Bee thanks. I looked up all kinds of cram except compatibility. I appreciate that. I will research it more ubbThreads is a great proggie. I am disappointed about it. But the newest version 7 may fit my needs. I just hate paying more when I don't need all the newer features. But all's good. Thanks bud!Respectfully,Mick

Forex Groups - Tips on Trading

Related article:
http://forum.powweb.com/showthread.php?t=76299

comments | Add comment | Report as Spam


"Authenticate Login by POP server" posted by ~Ray
Posted on 2007-10-17 15:43:36

I be to figure out a quick way to authenticate a login for a few Macs in our computer lab. Mainly we be to have some trail showing the user who is using the computer at that moment. measure year students used the Macs to do what they shouldn't be doing because there is no log of who was on the computer when. I remember in the past I setup a linux box to authenticate against a POP server. We do have a POP server running and I thought this might be the ticket. Students all have accounts on our Novell eDirectory. I tried to use Prosoft's Netware client but we kept getting kernel panics. I looked into extending our schema and doing logins by LDAP but our network admin is flat-out alter now and can't deal with the mods on her end. Any ideas????Mike Powered by vBulletin® Version 3.6.7Copyright &write;2000 - 2007. Jelsoft Enterprises Ltd. Site design &write; Mac Publishing LLC; individuals retain procure of their postingsbut react to the possible use of their material in other areas of Mac Publishing LLC.

Forex Groups - Tips on Trading

Related article:
http://forums.macosxhints.com/showthread.php?t=77467&goto=newpost

comments | Add comment | Report as Spam


"Cannot authenticate through AD" posted by ~Ray
Posted on 2007-10-10 17:20:43

Guys - need some help on this: require_once( "$IP/extensions/LdapAuthentication php" ); $wgAuth = new LdapAuthenticationPlugin(); $wgLDAPDomainNames = array( "intranet" ); $wgLDAPServerNames = array( "intranet"=>"myserver intranet mydomain com" ); $wgLDAPSearchStrings = arrange( "intranet"=>"EXAMPLEDOMAIN\\USER-NAME" ); $wgLDAPEncryptionType = array( "intranet"=>"ssl" ); $wgLDAPUseLocal = false; $wgMinimalPasswordLength = 1; $wgLDAPBaseDNs = arrange( "intranet"=>"dc=intranet,dc=mydomain,dc=com" ); $wgLDAPSearchAttributes = array( "intranet"=>"sAMAccountName" ); This is My AD: LDAP://intranet mydomain com/CN=rock\ zham:OU=GLB,DC=INTRANET,DC=MYDOMAIN,DC=com I move authenticate through AD with the above setup. Appreciate any back up on this. -zham _______________________________________________ MediaWiki-l mailing list MediaWiki-l[at]lists.wikimedia.org

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/wiki/mediawiki/102689

comments | Add comment | Report as Spam


"API Support :: RE: php api user.authenticate problem" posted by ~Ray
Posted on 2007-10-06 09:13:33

Hi there,I'm having some problem regarding logging into the be using api. I can login to the website using the same be but i keep getting a boolean false when i use API. What might be doing wrong?My code: $revver_api = new RevverAPI('https://api revver com/xml/1.0?login=videoguy03&passwd=********');$results = $revver_api->callRemote('user authenticate'. 'videobull'. '*********'); revverapi disapprove( [url] => https://api revver com/xml/1.0?login=videoguy03&passwd=******** [change surface] => 1 [xmlrpc] => 1)Parameters Array( [0] => videobull [1] => *********)<?xml version='1.0'?><methodResponse><params><param><value><boolean>0</boolean></determine></param></params></methodResponse>bool(false) invictus. User authenticate authenticates users that undergo been created under your be (as a child user of your be). In other words it's used for any user you created using a user act label. The videobull example you have listed appears to be a standard Revver username created via Revver com instead of via an API call while authenticated as videoguy03. Also while starting up with the API please use the staging version of the API until you're confident you undergo the label finalized. Find out more. This ensures the API is not negatively impacted if you do alter some bad calls while learning how to use the API._________________asiSoftware Engineering - REVVER You cannot post new topics in this forumYou cannot say to topics in this forumYou cannot edit your posts in this forumYou cannot remove your posts in this forumYou cannot choose in polls in this forum

Forex Groups - Tips on Trading

Related article:
http://forums.revver.com/viewtopic.php?p=9539#9539

comments | Add comment | Report as Spam


 

 




blogs - aa blogs - air force blogs - aquarius blogs - aries blogs - army blogs - arts blogs - baby blogs - blogs 4 men - blogs 4 women - cancer blogs - capricorn blogs - career change blogs - choice blogs - christmas blogs - cigar blogs - cigarette blogs - cig blogs - coast guard blogs - coffee bean blogs - college baseball blogs - college basketball blogs - college football blogs - colleges blogs - computer blogs - create blogs - dating blogs - elvis blogs - email chat blogs - email pal blogs - enhancement blogs - fall blogs - fha blogs - freedom blogs - friendly blogs - funny blogs - gambler blogs - gemini blogs - her blog - his blog - hockey blogs - join blogs - javas blogs - kid safe blogs - leo blogs - libra blogs - apartments blogs - coffees blogs - horoscopes blogs - life advice blogs - lover blogs - marine blogs - married blogs - military blogs - misc blogs - more money blogs - mortgage blogs - move blogs - movies blogs - musical blogs - navy blogs - new in town blogs - obscure blogs - online date blogs - online game blogs - over 30 blogs - over 40 blogs - over 50 blogs - over 60 blogs - over 70 blogs - over 80 blogs - over 90 blogs - password blogs - pc blogs - mortgages blogs - peoples blogs - pictures blogs - pipe blogs - pisces blogs - poems blogs - poker blogs - police blogs - political blogs radio blogs - read blogs - recreational vehicle blogs - relocation blogs - reserve blogs - rv blogs - safe blogs - scorpio blogs - singles blogs - smokers blogs - smoker blogs - state blogs - state college blogs - taurus blogs - teen advice blogs - teenager blogs - tobacco blogs - tv blogs - vacation blogs - veteran blogs - virgo blogs - virtual blogs - weekly blogs - wingman blogs - word blogs - words blogs - writer blogs - poetry blogs - prescription blogs - sagittarius blogs - straight blogs - summer blogs - gi blogs - hooka blogs - penis enlargement blogs - vfw blogs - casinos blogs - casino blogs - web hosting blogs - hosting blogs - auto blogs - truck blogs - van blogs - suv blogs - 4 wheel blogs - harley blogs - flu blogs - diet blogs - pistols blogs - teenage blogs - lpga blogs - burnable blogs - new tunes blogs - coaching blogs - treasures blogs - trades blogs - nutty blogs - skate blogs - play 21 blogs - weather blogs - poker players - golf blogs - american blogs - football blogs - baseball blogs - hockey blogs - basketball blogs - soccer blogs - cooking blogs - recipe blogs - space blogs - 3d games blogs - barbecue blogs




the authenticate archives:

11 articles in 2006-01
22 articles in 2006-02
27 articles in 2006-03
37 articles in 2006-04
27 articles in 2006-05
26 articles in 2006-06
24 articles in 2006-07
18 articles in 2006-08
22 articles in 2006-09
30 articles in 2006-10
22 articles in 2006-11
22 articles in 2006-12
12 articles in 2007-01
12 articles in 2007-02
3 articles in 2007-03
7 articles in 2007-04
11 articles in 2007-05
10 articles in 2007-06
3 articles in 2007-07
1 articles in 2007-09
1 articles in 2007-11




next page


authenticate