Displaying 20 results from an estimated 100 matches similar to: "Captcha Module"
2006 Aug 16
4
Accessing Constants Declared in Helper Modules
Hello all,
I''m having great trouble accessing a constant declared in a helper for
one of my view templates. I am trying to create a grouped selection list
based on a predefined set of values. Rather than declare this set of
values in the view, I wanted to put it in the helper that automatically
gets included for the view. Unfortunately, it doesn''t seem to work.
All methods
2003 Oct 22
29
Meetme
Yes.
Tim Thompson
http://www.amatechtel.com
(806) 722-2227
-----Original Message-----
From: CW_ASN - Gus [mailto:cw_asn@fibertel.com.ar]
Sent: Wednesday, October 22, 2003 1:12 PM
To: asterisk-users@lists.digium.com
Subject: Re: [Asterisk-Users] Meetme
Do you have ztdummy or zaptel device in your system?
----- Original Message -----
From: "Panny Malialis"
2005 Nov 17
6
apache refuses to start because of port conflict
Here is the deal. I''m trying out the latest Instant Rails and when I
start it Apache claims that the web port is being used.
"Apache cannot be runned : another Web server use the Web port"
Okay, no problem. I went into the Apache configuration and changed the
port it was binding to. However I get the same problem.
The troubleshooting continues, so I install Apache by itself
2011 Jun 02
1
Paid R Help
Hello R people,
I am looking to pay someone to help write some R code.
Inputs:
Study identifier: ID Number for the study, each ID number is for one study only each block set should only be used for that study. This will require that you store the results from the blocks someplace on the file system.
Trait #1: dichotomous rural / urban
Trait #2: dichotomous sick / healthy
Assignment Ratio:
2011 Aug 27
3
Ordered probit model -marginal effects and relative importance of each predictor-
Hi, I have a problem with the ordered probit model -polr function
(library MASS). My independent variables are countinuos.
I am not able to understand two main points:
a) how to calculate marginal effects
b) how to calculate the relative importance of each independent variables
If required i will attach my model output.
Thanks
Franco
2001 Jan 11
2
Winamp plugin bug
Okay I just found out about Vorbis today. I like it! However the Winamp
plugin bug struck me the first time I used it. I used the encoder to
compress 2 wavs. Each time I play these ogg files I either get a Winamp
crash or a beep at the end of playing the file.
I checked the archives and saw the old posts for this same bug. Has it been
fixed in a newer version?
I take it since the Winamp plugin
2006 Jul 16
0
Captcha Fun
Hello,
I am trying to integrate a captcha into a form that is used to update a
database. I am using a method that is outlined here:
http://svn.2750flesk.com/validates_captcha/trunk/README, but things are not
working correctly. The captcha image shows up in the user form, but the
captcha input is being ignored. The following shows my controller file:
class PublicController <
2009 Jan 23
1
iscsi unsupported INQUIRY
I configured iscsi-target on FreeBSD 7.1 and after I mounted target from
VMware ESXi I got this following error message:
-------------------------------------------------------------------------------------------------------------------
Jan 23 14:26:35 srv6 iscsi-target: pid 11892:disk.c:956: ***ERROR***
Unsupported INQUIRY VPD page 85
Jan 23 14:26:35 srv6 last message repeated 1000 times
2007 Mar 23
2
cause 127
Hello.
Someone knows what cause 127 mean. The phone that i'm calling rings once and
than the connection interrupts:
P[ 5] --> l3id:10040
P[ 5] --> cause:127
P[ 5] --> out_cause:127
P[ 5] --> state:ALERTING
P[ 5] --> Channel: mISDN/5-1 hanguped new state:CLEANING
P[ 5] $$$ CLEANUP CALLED pid:3
best regards
--
Thomas Stein
knowledgeTools? ....damit Sie sehen, was Sie
2007 Jul 25
1
dspam plugin
Hello,
I'm trying to install the dspam plugin to dovecot.
So far, I've
Installed dovecot 1.0.2 from RPM and set up
Installed dspam 3.8.0, set up and integrated with postfix, using
dspam as local delivery agent before dovecot's deliver
Downloaded the dovecot 1.0.2 source in order to compile the C file
http://johannes.sipsolutions.net/Projects/dovecot-dspam-integration/
2006 Apr 11
0
KittenAuth vs. CAPTCHA
Is anyone working with KittenAuth instead of using CAPTCHA?
--
Posted via http://www.ruby-forum.com/.
2010 Apr 06
1
captcha in a belongs_to
Hi
I am using simple_captcha. I have two models User and Staff.
Relation ship are
User has_one staff
staff belongs_to user
Now in the staff edit I have to include a captcha. I did like
<% form_for @user, :url => staff_url(@staff), :html => {:method => :put
} do |f|%>
<p>
<%= f.text_field :first_name,:maxlength => 50 %>
</p>
2007 Jun 12
1
Captcha, account verification in RoR
I am creating a Ruby on Rails site and am curious about the best way to
stop spam on the site. For account creation there is:
a) Captcha
b) email verification
For messages, forums I am sure you could try to check the message for
any weird characters or typical spam phrases. I saw in the other post
there is the hivelogic email enkoder for hiding email addresses for
protecting email addresses. I
2011 Jan 18
2
how to get captcha image with mechanize ?
Hey, how to get captcha image with mechanize ? the image is not a
static picture, it''s a stream, a text-model.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://rubyforge.org/pipermail/mechanize-users/attachments/20110118/bf9a58ff/attachment.html>
2009 Jun 24
0
[solved] CAPTCHA gem: undefined method `stringFT'
Since it took me quite some time to resolve this problem, I hope this
post will be useful for someone else.
I am using the CAPTCHA gem in my application and always got the
following error:
undefined method `stringFT'' for GD::Image:Class
It turns out that I was missing the GD libs for ruby. I''m on ubuntu, so
a quick
sudo install libgd-ruby
solved the problem for me.
I also
2010 Mar 01
0
stubbing CAPTCHA to pass Cucumber scenario
Hi,
I''m trying to start using cucumber. I''ve done login, logout scenarious,
but stumbled in CAPTCHA validation on user registration page. As I get I
should stub CAPTCHA validation method. I guess I should implement
stubbing Given step or include stubbing code in Before filter?
I use validates_captcha gem, thus instance method to stub is
module ValidatesCaptcha
module
2009 Jul 26
1
Simple Captcha - Update attributes?
I am using the great simple captcha plugin for saving records like this
if @xxx.save_with_captcha
do something
else
do something
end
How do I use it when updating records?
if @xxx.update_attributes(params[:blah])
can I just say
if @xxx.update_with_captcha(params[:blah])
do something
else
do something
end
--
Posted via http://www.ruby-forum.com/.
2009 Jun 20
0
problem with simlpe captcha
Hi simple captcha works fine on my app. recently I changed my hosting
provider and moved the app to new server. Here its not working and
throwing error
ActionView::TemplateError (undefined method `find_by_key'' for
SimpleCaptchaData():Class) on line #246 of home/register.rhtml:
243: </td>
244: <td align=left>
245:
2014 Feb 12
0
[fdo] Captcha added for subscription
Hi all,
as some of you've probably noticed, list subscriptions have been broken
for a few days. This was an attempt at handling a sustained
spam-through-signup attack. Obviously, we needed something better and
list signups now require people to solve a captcha. Hopefully this
should solve the problem.
Please let me know if there are any problems.
--
Tollef Fog Heen
UNIX is user
2014 Feb 13
0
[fdo] Captcha added for subscription
]] James Cloos
> The site shouldn't rely on ecmascript and nothing should farm out to
> goog or the like.
Feel free to provide an alternate implementation of captchas for
mailman.
You can also subscribe without captchas using the email interface if
you like that better.
--
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are