similar to: Different Types of Users and User Engine

Displaying 20 results from an estimated 1000 matches similar to: "Different Types of Users and User Engine"

2006 Jan 10
13
# of entrys in different months
right now im writing a weblog as my first project in rails. Most tings seems to be working great :), but there is (a least) one thing left i can''t figure out how to do. As most weblogs i would like to have an archive, whick looks like this: January 2006 (42) December 2005 (60) November 2005 (2) October 2005 (101) September 2005 (4) August 2005 (2) July 2005 (101010) where (x) is the
2006 Jan 06
7
how do I create a change password using sha1?
Hello, The problem I am having is I have a form where a user can edit their data that does not include their password. I have another form that I allow them to change their password. Both forms use the before_update method that hashes the password. There is no password in the first form. Am I making this too complicated? How do I call the hash_password for only the second form? Both forms use
2006 Jan 22
7
: Indexed Search Engine 0.1.3 Released
Hello all, IndexedSearch Engine for Rails Engines version 0.1.3 has been released. IndexedSearch is a simple, pluggable engine for rails applications which can be used to enable full text indexed searches within an application. Searchable data is parsed, stemmed using the Porter stemmer, and added to a fully indexed table. This allows you to index things like "he runs fast" which will
2006 Jan 16
5
Soft Deletes
How would I go about setting up my rails applications to soft delete items from the database rather than actually deleting it. I would imagine that I need to over ride the methods from ActiveRecord. Where would I do this would it be in the model? enviroment.rb? I would imagine that if i wanted it throughout my entire application it would need to be in the enviroment.rb. Also to
2006 Jan 03
5
Announcement: Indexed Search Engine 0.1.2 Available
Hello all. Apologies... I was a little too eager in my earlier annoucement about the Indexed Search Engine for Rails apps. The DB migration file contained an error that had to be worked around. I''ve fixed that, added more (and clearer) documentation, and a sample application. You can find most everything you want to know about Indexed Search Engine here:
2006 Jan 03
18
Trying to do a simple thing ...
Hi ! I was talking to a seasider and he asked me if it was easy to do the following thing using rails : 1) ask a number to the user 2) ask a second number 3) give the addition of the two number and a link to be able to replay All these things have to be done in one controller and one action, there is no need for verification and other stuff. I tried but I''ve got some problems
2006 Jan 18
3
search with like operation from a table
I have a table with the list of business name and address in it. It may contain 1 million rows. The users want to look up into this table based on the business name. The simple solution is to use LIKE in mysql, but I am worried about performance, since the user load will be very high for this system. Any suggestion on how to handle the potential performance issue? How can i use a search
2002 Apr 11
3
Help installing from Rpm
All, I'm trying to install R-base on RedHat Linux 7.2. Rpm complains that libreadline.4.1.so is needed; the problem is that I have libreadline4.2.so. What can I do to get around this? -Scott -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or
2010 Feb 02
4
Domain login delays w2k8 R2
Hello! We have a w2k8 R2 64-bit machine in a Samba 3.4.4 controlled domain. When logging in as a domain user there is a ~30 sec delay waiting for the User Profile Service. This has nothing to do with the size of the user profile. Looking at the network traffic I can see 2 gaps, the first about 11 sek and the second about 19 sek with no packets sent except one TCP ACK (from the client) in each
2009 Mar 09
1
will_paginate plugin
hi all, I am using will_paginate plug_in i am getting URL as http://localhost:3000/admin/edit#/admin/edit?page=3 but i want it should be http://localhost:3000/admin/edit?page=3 how can I do it. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2006 Jan 17
3
Experiences w /payment gateways and credit card processing?
I wanted to know if anyone had any good experiences with particular payment gateways and Rails? and what did it take to integrate? My current client uses PayPal for the credit card payment processing, and would like to stay with them, if possible. So has anyone had any experiences with integrating with PayPal? I''d love to hear who provides your payment services? -- Posted via
2006 May 05
2
newbie ruby string match question
All, I want to know in the Application.rb controller if I''m on the login screen. When I''m on the page I care about the controller variable is "#<ActiveRbac::UserController:0x408b3d6c>" So I want something like: if controller contains ActiveRbac::UserController What is the right syntax for the above? Thanks Greg -- Greg Freemyer The Norcross Group Forensics
2006 Jan 11
6
UK Rates for RoR Contract work?
Hi all, I''ve been offered a short-term contract here in the North of England - around 3 months work, but with RoR I think it will take considerably less time - and am just curious what market rates were right now. I''ve been offered a little under ?1k/week which seems ''right'' for a PHP coder doing this kind of work, but should I be hitting for more, or is
2005 Dec 09
7
UserEngine - rake bootstrap aborted
Hi there, I''ve just installed login_engine and user_engine from the repositories, followed the setup procedures as documented in: vendor/plugins/user_engine/README But I''m getting the following failure: vince@vaio:~/Projects/Booking$ rake bootstrap (in /home/vince/Projects/Booking) rake aborted! undefined method `edit'' for class `UserController''
2006 Jan 06
4
Upload Progress Bar Problems
I''m writing an application where the user will be uploading many images and user feedback is essential. I''ve been trying to get the upload progress bar plug-in to work, but thus far have not had any success. I''ve downloaded Sean Treadway''s application code from his site http://sean.treadway.info/demo/upload/ and I followed the steps in his Upload
2002 May 31
3
About password length in solaris 8 and samba 2.2.4
Hello You wrote as below in samba-list: Message: 19 Date: Tue, 28 May 2002 22:13:35 -0500 (CDT) From: "Gerald (Jerry) Carter" <jerry@samba.org> To: Carl Vincent <c.a.vincent@ncl.ac.uk> Cc: samba@lists.samba.org Subject: Re: [Samba] Password Length Conundrum On Fri, 24 May 2002, Carl Vincent wrote: > I've jsut installed Samba-2.2.4, from source on a Solaris 2.6 box.
2006 Apr 24
3
quick q on script/generate scaffold
I want a scaffold to manager both products and users. To get the products scaffold I used script/generate scaffold Product Admin if I use, script/generate scaffold User Admin will it overwrite my product admin controller? Would I be better off doing script/generate scaffold User User_Admin or something? -- Posted via http://www.ruby-forum.com/.
2007 Nov 28
6
Broken edge
Hi all, Not sure if I''m the only one with this problem... We''re on edge for both rails and rspec, and i just did an update... Some apparently innocuous rails stuff was updated, and then half my specs broke due to an error in rspec_on_rails: ArgumentError in ''UserController without logged in user should show the index page'' wrong number of arguments (2
2005 Jan 25
1
Threshhold Models in gnlm
Hello, I am interested in fitting a generalized nonlinear regression (gnlr) model with negative binomial errors. I have found Jim Lindsay's package that will do gnlr, but I have having trouble with the particular model I am interested in fitting. It is a threshhold model, where below a certain value of one of the parameters being fitted, the model changes. Here is a sample: Cones:
2017 Mar 22
3
access DENIED for non-printserver bits
Hi, Running Samba 4.4.10 as a NT-domain controller. Does anybody know what the error message "access DENIED for non-printserver bits" (log level 3) means when trying to add a new printer driver? Regards, Åke