Displaying 6 results from an estimated 6 matches for "acts_as_authent".
Did you mean:
acts_as_authenti
2007 May 08
2
Install plugin acts_as_auth.. no access to techno-weenie.net
...in install http://svn.techno-weenie.net/projects/plugins
and it bombs.
On a machine w/ access to this repository, I did an svn checkout and
tar''d up the contents... then untar''d on the machine in question but
this does not work:
script/plugin install /sometempdir/where_i_untared/acts_as_authenticated
=> plugin not found
I presume it must be a svn respository.. Is there no alternate? i found
loads on trac but they are all viewers.. how can I access this? thanks
in advance
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received...
2006 Apr 25
7
undefined method form_for ?
Seems the only issues I ever have with Rails are these bizarre fiddly
little things that make no sense.
Can''t for the life of me understand why I''m getting undefined method on
form_for in a view?
And it''s actually part of the acts_as_authenticated plugin that''s doing
it. But how can it not know about form_for?
--
Posted via http://www.ruby-forum.com/.
2006 Mar 22
4
Problem with ACL plugin system
Don''t know if anyone else has experienced this but I''m having a problem
with the access_denied method in Ezra''s ACL access control plugin. It''s
working fine (in conjunction with acts_as_authenticated) until it comes
across a user it denies access to, in which case it throws the following
error:
NoMethodError in Admin#index
protected method `access_denied'' called for
#<AdminController:0x408fc9a8>
RAILS_ROOT: script/../config/..
Application Trace | Frame...
2006 May 09
9
Recommendation for a user authentication plugin
Hi,
Which user-authentication plugins should one try first? Too many out
there and too little time to try them all fairly. Thanks for your
recommendation.
cheers!
--
Posted via http://www.ruby-forum.com/.
2006 Jul 12
0
acts_as_authenticated and paypal
I''m working on a subscription form that has to be tied to paypal using
the paypal ipn plugin at http://elctech.com/products_ruby_paypal.shtml.
I''ve got my subscription (signup) form setup to include the creditcard
information as well as the billing address etc. It''s a modified version
of the signup form from the acts_as_auth plugin.
I want the model to not save if
2008 May 13
0
assert_no_difference question
I have the following test code:
assert_no_difference Avatar, :count do
a = create_avatar(:description => nil)
assert a.errors.on(:description)
end
further down, create_avatar looks like:
def create_avatar(options = {})
Avatar.create(:description => "Foo Descr.").merge(options)
end
(Borrowed from the user test in acts_as_auth...)
It seems to pass, as my avatar model