[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Login Help

Phil Clarke

4/16/2008 8:03:00 PM

Hi all,
I've got to do a simple user login/logout system as part of a university
project and haven't the faintest clue where to start!
Any help would be great
Cheers
--
Posted via http://www.ruby-....

9 Answers

Dan Zwell

4/16/2008 8:18:00 PM

0

Phil Clarke wrote:
> Hi all,
> I've got to do a simple user login/logout system as part of a university
> project and haven't the faintest clue where to start!
> Any help would be great
> Cheers

Phil,

Could you be more specific? What are you logging in to? Is there a
current system in place that accomplishes the same thing? How does it work?

My school has a wireless network, and to use it, you must go to
https://1.1.1.1/... and enter a username and password to use the
internet. I have written a script to automate this process, and will
share it if it might be useful. But could you tell us a little more
about your situation?

-Dan

kranthi reddy

4/17/2008 5:28:00 AM

0

[Note: parts of this message were removed to make it a legal post.]

Hey Phil,
It would be better if you can actually let me know where you are stuck up or
what you want to do after having a login/logout system

On Thu, Apr 17, 2008 at 1:48 AM, Dan Zwell <dzwell@gmail.com> wrote:

> Phil Clarke wrote:
>
> > Hi all,
> > I've got to do a simple user login/logout system as part of a university
> > project and haven't the faintest clue where to start!
> > Any help would be great
> > Cheers
> >
>
> Phil,
>
> Could you be more specific? What are you logging in to? Is there a current
> system in place that accomplishes the same thing? How does it work?
>
> My school has a wireless network, and to use it, you must go to
> https://1.1.1.1/... and enter a username and password to use the
> internet. I have written a script to automate this process, and will share
> it if it might be useful. But could you tell us a little more about your
> situation?
>
> -Dan
>
>

Phil Clarke

4/18/2008 9:44:00 PM

0

Hey,
Basically me and my team have to make a social networking site, similar
to facebook but a lot less complex, i've been given the task of making
the user login part and have to do it from scratch. Unfortunately there
isn't a system in place that accomplishes this

Phil



Dan Zwell wrote:
> Phil Clarke wrote:
>> Hi all,
>> I've got to do a simple user login/logout system as part of a university
>> project and haven't the faintest clue where to start!
>> Any help would be great
>> Cheers
>
> Phil,
>
> Could you be more specific? What are you logging in to? Is there a
> current system in place that accomplishes the same thing? How does it
> work?
>
> My school has a wireless network, and to use it, you must go to
> https://1.1.1.1/... and enter a username and password to use the
> internet. I have written a script to automate this process, and will
> share it if it might be useful. But could you tell us a little more
> about your situation?
>
> -Dan

--
Posted via http://www.ruby-....

Daniel Finnie

4/18/2008 9:52:00 PM

0

Hi,

Are you using Rails or another framework? Or pure Ruby?

Dan

On Fri, Apr 18, 2008 at 5:43 PM, Phil Clarke
<philip.clarke@learner.dmu.ac.uk> wrote:
> Hey,
> Basically me and my team have to make a social networking site, similar
> to facebook but a lot less complex, i've been given the task of making
> the user login part and have to do it from scratch. Unfortunately there
> isn't a system in place that accomplishes this
>
> Phil
>
>
>
>
>
> Dan Zwell wrote:
> > Phil Clarke wrote:
> >> Hi all,
> >> I've got to do a simple user login/logout system as part of a university
> >> project and haven't the faintest clue where to start!
> >> Any help would be great
> >> Cheers
> >
> > Phil,
> >
> > Could you be more specific? What are you logging in to? Is there a
> > current system in place that accomplishes the same thing? How does it
> > work?
> >
> > My school has a wireless network, and to use it, you must go to
> > https://1.1.1.1/... and enter a username and password to use the
> > internet. I have written a script to automate this process, and will
> > share it if it might be useful. But could you tell us a little more
> > about your situation?
> >
> > -Dan
>
>
>
> --
> Posted via http://www.ruby-....
>
>

Phil Clarke

4/18/2008 10:46:00 PM

0

I'm using rails

--
Posted via http://www.ruby-....

Todd Benson

4/19/2008 1:09:00 AM

0

On Fri, Apr 18, 2008 at 5:45 PM, Phil Clarke
<philip.clarke@learner.dmu.ac.uk> wrote:
> I'm using rails

It's possible that you might want to hit
http://groups.google.com/group/rubyon.... Not that people
won't be able to help you here if you have a Ruby question. Your
question sounds a little more like an implementation one. (?)

Todd

Daniel Finnie

4/19/2008 2:02:00 AM

0

Hi,

I previously used LoginGenerator successfully for user authentication.
You can find an installation guide here:
http://wiki.rubyonrails.com/rails/pages/HowToQuicklyDoAuthenticationWithLogi...

But yes, Rails questions should go to the Rails group.

Dan

On Fri, Apr 18, 2008 at 9:08 PM, Todd Benson <caduceass@gmail.com> wrote:
> On Fri, Apr 18, 2008 at 5:45 PM, Phil Clarke
>
> <philip.clarke@learner.dmu.ac.uk> wrote:
> > I'm using rails
>
> It's possible that you might want to hit
> http://groups.google.com/group/rubyon.... Not that people
> won't be able to help you here if you have a Ruby question. Your
> question sounds a little more like an implementation one. (?)
>
> Todd
>
>

Zundra Daniel

4/20/2008 2:57:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

On Fri, Apr 18, 2008 at 5:43 PM, Phil Clarke <
philip.clarke@learner.dmu.ac.uk> wrote:

> Hey,
> Basically me and my team have to make a social networking site, similar
> to facebook but a lot less complex, i've been given the task of making
> the user login part and have to do it from scratch. Unfortunately there
> isn't a system in place that accomplishes this
>
> Phil
> Look into acts_as_authenticate
>
>
> Dan Zwell wrote:
> > Phil Clarke wrote:
> >> Hi all,
> >> I've got to do a simple user login/logout system as part of a
> university
> >> project and haven't the faintest clue where to start!
> >> Any help would be great
> >> Cheers
> >
> > Phil,
> >
> > Could you be more specific? What are you logging in to? Is there a
> > current system in place that accomplishes the same thing? How does it
> > work?
> >
> > My school has a wireless network, and to use it, you must go to
> > https://1.1.1.1/... and enter a username and password to use the
> > internet. I have written a script to automate this process, and will
> > share it if it might be useful. But could you tell us a little more
> > about your situation?
> >
> > -Dan
>
> --
> Posted via http://www.ruby-....
>
>

Bryan Richardson

4/20/2008 11:18:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

If you're using Rails 2.0 I'd suggest using the RESTful Authentication
plugin. It's drop-dead easy to use.

On Sun, Apr 20, 2008 at 8:56 AM, Zundra Daniel <zundra.daniel@gmail.com>
wrote:

> On Fri, Apr 18, 2008 at 5:43 PM, Phil Clarke <
> philip.clarke@learner.dmu.ac.uk> wrote:
>
> > Hey,
> > Basically me and my team have to make a social networking site, similar
> > to facebook but a lot less complex, i've been given the task of making
> > the user login part and have to do it from scratch. Unfortunately there
> > isn't a system in place that accomplishes this
> >
> > Phil
> > Look into acts_as_authenticate
> >
> >
> > Dan Zwell wrote:
> > > Phil Clarke wrote:
> > >> Hi all,
> > >> I've got to do a simple user login/logout system as part of a
> > university
> > >> project and haven't the faintest clue where to start!
> > >> Any help would be great
> > >> Cheers
> > >
> > > Phil,
> > >
> > > Could you be more specific? What are you logging in to? Is there a
> > > current system in place that accomplishes the same thing? How does it
> > > work?
> > >
> > > My school has a wireless network, and to use it, you must go to
> > > https://1.1.1.1/... and enter a username and password to use
> the
> > > internet. I have written a script to automate this process, and will
> > > share it if it might be useful. But could you tell us a little more
> > > about your situation?
> > >
> > > -Dan
> >
> > --
> > Posted via http://www.ruby-....
> >
> >
>