Limits to textarea? (II): No solutions?

2002-06-10 Thread JAAV

Hello,

I have the same problem with w2k+MS SQL.

I have a text field with 94000+ characters but when I try to do a query the
DB returns me a 64.999 bytes (exactly) field.

Any solutions to this issue?

TIA

Juan


- Original Message -
> From: "Russel Madere" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, January 14, 2002 8:59 PM
> Subject: RE: Limits to textarea?
>
>
> > Very interesting issue.
> >
> > Thanks for the info.  I might give it a try on a Win 2K system with MS
SQL
> > to see if anything is different.  In my copious spare time, of course.
:)
> >
> > Russel
> >
> > -Original Message-
> > From: Brian Scandale [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, January 14, 2002 11:41 AM
> > To: CF-Talk
> > Subject: RE: Limits to textarea?
> >
> >
> > Hi Russel,
> >
> > I created a 10,000 character document with no spaces...
> > 123456789012345678901234567890 etc... and cut and pasted it into the
> >  textarea box...
> >
> > After saving it I cut and pasted the result when querying it into msword
> and
> >  then asked it to count the characters for me... 8194 was the answer.
> >
> > I then went to the database with another tool, (pgAdmin on NT against
> >  postgreSQL on a linux box), to find only 8194 characters. HOWEVER I was
> >  able to add more characters to the database vchar field via pgAdmin. So
> it
> >  is not that the database can't, but rather I think that the CF
> >  server/postgreSQL ODBC driver combination can't.
> >
> > As an aside; it is interesting that 2^13 = 8192...  And yes, 16 bits is
> >  65536, the expected limitation.
> >
> > Brian
> >
> >
> >
> > At 10:34 AM 1/14/02 -0600, you wrote:
> > >Out of curiousity, where are you getting the figure 8194?  I have seen
> that
> > >number as a character limit on the size of a single record in MS SQL.
> > >
> > >Russel
> > >
> > >-Original Message-
> > >From: Brian Scandale [mailto:[EMAIL PROTECTED]]
> > >Sent: Monday, January 14, 2002 1:49 AM
> > >To: CF-Talk
> > >Subject: Limits to textarea?
> > >
> > >
> > >Anyone know off hand what the limits are to a  are?
> > >
> > >I just tested and found 8194 characters maximum with the extra being
> > >truncated.
> > >
> > >But... that was only one config in one browser etc...
> > >
> > >thanks,
> > >Brian
> > >
> > >
> > >
> > >
> >
> > 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



I can't find RDS Service

2002-04-18 Thread JAAV

Hello,

Do you know how can be sure if RDS Service is installed?
I've checked in "services" and I didn't found anything related with RDS
service.
What is the exact name of the service? can I install again the RDS Service?

I'm using CF Server 5 and CF Studio 5 in a w2ksp2 box.
Can you help me?

Thanks,

Juan

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hits counter at DB? (II)

2002-01-22 Thread JAAV

First : thank all of you guys...   :)

Right now, we made this (for people can be interested)

1. An update statement like:  UPDATE Statistics SET Displays = Displays + 1 WHERE 
IDCard=
#attributes.IDCard# and DisplayDate = #odbcDate#

where:
odbcdate: is the date of the day using this format mm/dd/  (without
time)

This table contains the daily hits statistics.

2. Each month,  a process consolidate that data into a montly table (and
delete the old ones)
---

I know DB (SQL Server in my case) must be able (or we must suppose that)
 to
process tons of transactions without problems but, because of the increa
sing
of hits, I thought text file can be a better alternative.

I hope the current mechanism is a scalable one.

Thanks again,

JAAV

- Original Message -
From: "Andrew Scott" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, January 22, 2002 3:36 PM
Subject: RE: Hits counter at DB? (II)


> Well no not really because this file gets cached by the OS, but it wou
ld
> have to be cflocked and this would create a performance loss!
>
>
> -Original Message-
> From: Steve Oliver [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 23 January 2002 1:31 AM
> To: CF-Talk
> Subject: RE: Hits counter at DB? (II)
>
> Oh, one more thing, about the text file hit counter.
>
> If your using a text file, your server would have to access that file 
on
> the hard drive each time it was written to.
>
> That would cause serious performance loss.
>
> The fastest way would be through the database, adding a hit_counter
> field to your rows would be less of an impact on the database size the
n
> if you added an entire new table that tracked each business card by
> hits.
>
> __
> steve oliver
> cresco technologies, inc.
> http://www.crescotech.com
>
>
> -Original Message-
> From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, January 22, 2002 8:48 AM
> To: CF-Talk
> Subject: RE: Hits counter at DB? (II)
>
>
> Okay, going on that there are a couple of questions to ask in return.
> What kind of data source is this running on?  Is it running on a
> dedicated machine or on something that is sharing resources?  As far a
s
> the "business cards", where do they come from?  Are they stored in the
> database or are they static pages that are being called?
>
> Counters can be done any number of ways.  The easiest would be to do a
n
> update or a locked update statement.  Another way would be to create a
> table that was a "counter" table that you inserted into versus updatin
g.
> The "report" would then be along the lines of "select count(page_id) a
s
> hit_count from counter where page_id = whatever" instead of "select
> hit_count from counter".  Another idea, a hybrid of the two I just
> mentioned, would be to have a temp table that a hit would insert into
> and then a second table that head totals that were calculated nightly 
by
> a scheduled process.
>
> Hope these give you some food for thought.
>
> Hatton
>
> > > Our website is composed by a huge number of "business cards". We
> > > want to show to our clients their "card" statistics with pretty
> > > interface.
> > Something
> > > like: hits by day, hits in the last month, average, etc. The first
> > > thing
> > we
> > > thought was to make an "UPDATE Counter = Counter + 1" query
> > each time the
> > > webuser hits each webpage. But We are thinking this can be
> > dangerous cause
> > > we have more than 1000 000 hits in a month and growing.
> > >
> > > We can't give access to a statistics software.
> > >
> > > May we use and text file instead? What do you recommend?
> > >
> > > Thanks in advance,
>
>
> 
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Hits counter at DB? (II)

2002-01-22 Thread JAAV

Please!! Anyone had a similar issue?

any help will be appreciated,

JAAV

- Original Message -
From: "JAAV" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, January 21, 2002 5:15 PM
Subject: Manual statistics/ Hits counter at DB?


> Hello,
>
> Our website is composed by a huge number of "business cards". We want to
> show to our clients their "card" statistics with pretty interface.
Something
> like: hits by day, hits in the last month, average, etc. The first thing
we
> thought was to make an "UPDATE Counter = Counter + 1" query each time the
> webuser hits each webpage. But We are thinking this can be dangerous cause
> we have more than 1000 000 hits in a month and growing.
>
> We can't give access to a statistics software.
>
> May we use and text file instead? What do you recommend?
>
> Thanks in advance,
>
> ~Jaav

>
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Manual statistics/ Hits counter at DB?

2002-01-21 Thread JAAV

Hello,

Our website is composed by a huge number of "business cards". We want to
show to our clients their "card" statistics with pretty interface. Something
like: hits by day, hits in the last month, average, etc. The first thing we
thought was to make an "UPDATE Counter = Counter + 1" query each time the
webuser hits each webpage. But We are thinking this can be dangerous cause
we have more than 1000 000 hits in a month and growing.

We can't give access to a statistics software.

May we use and text file instead? What do you recommend?

Thanks in advance,

~Jaav
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Sniffing WAP Browsers II

2001-12-03 Thread JAAV

Hello,

I have some problems with WAP detecting and redirecting wap browsers. Any
help is welcome.

This is the situation:

I have a directory (say /wap) with all the wap cfm templates. That directory
has a special application.cfm template for WAP application.
In that template we put something like:



and it works ok with both: web browsers and wap devices.

Now, We want to use WAP.mydomain.com  Our hosting provider says we have to
use a redirection script. I mean: to detect what subdomain is requested with
CGI.SERVER_NAME variable and redirect to the right directory/template.

We put in the main application.cfm template something like this:




But the server seems to be in loop or something

Did someone have a similar problem?

TIA,

~Jaav
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Wordwrap and ASPMail (?)

2001-11-27 Thread JAAV

Hello,

We have a weird error sending emails.

We use the ASPMail object (DLL) to send emails and the MIME method for dual
mail (HTML and plain text).
We realize when we try to send a "big mail" (say, 50kb!!!) the HTML part of
the email appears with errors:.
ASP Mail puts some kind a space.

I've read ASPMail docs and they say

"AspMail can encode high characters using a scheme where the = sign
indicates a character to be decoded follow by the hex string value of
the character to be encoded. This system of course assumes that the client
can decode these characters (which most can). This is called
quoted-printable encoding. The default for AspMail is not to use QP
encoding. Things that trigger automatic QP encoding:
High characters - characters with the following ordinal values
0..31,61,128..255
Long lines of a message body (you can turn wordwrap on to fix this case)
Most clients are capable of handling QP encoding. If your client is not
capable then you should upgrade your client or you must work within the
above limitations to prevent the QP encoding from occuring."

But we turn WordWrap ON  but still we get errors with space.

someone had a similar problem?
May I use some kind of wordwrap function ? or something?

thanks in advance (!!),

~Juan
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Spell Checker

2001-10-25 Thread JAAV

http://www.forta.com/cf/tags/

- Original Message - 
From: "Kinley Pon" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, October 25, 2001 7:07 PM
Subject: Spell Checker


> Hello everyone,
> 
> I was wondering if anyone have any ideas how I can obtain a spell
> checker?  For example, the spell checker that is available in hotmail.
> 
> 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



WDDX question

2001-10-24 Thread JAAV

Hello,

I'm take my first glance in WDDX.

I want to use CFML2JS: may I have CFQuery to use it? 
I mean I have some Arrays and I need to put in (WDDX) JS format.

is it possible?

TIA,

~Juandres

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Plain text view in outlook?

2001-09-05 Thread JAAV

hello Kay,

I had the same "problem" I went to cyberspace.org and opened a Unix
(telnet) account...
you can use pine to test your mails.

my two cents,

juan

- Original Message -
From: "Kay Smoljak" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, September 05, 2001 8:25 AM
Subject: Re: Plain text view in outlook?


> On Fri, 31 Aug 2001 12:46:15 +0200, "Michael Lugassy"
> <[EMAIL PROTECTED]> wrote:
> >How can I use my outlook to simulate Plain text e-mail reader?
> >
> >I just come up with a code that will send both html and plain text In
> >the same message = I see the html just fine (without text notes) But I
> >want to be able to see it in Plain text also.
>
> I can telnet into my mail server and use Pine to read my mail. Your sys
> admin or ISP might have something like that set up.
>
> K.
>
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: fusebox & IIS 5 (II part: R.I.P. to fusebox?)

2001-07-31 Thread JAAV

well,
Hosting guys fix up the problem.
I think they had have disable hte friendly URLs "function" in some way

The conclusion: it is posible to have W2000 + IIS 5 + FORMURL2ATTRIBUTES
(with URL friendly)

thanks Stephen & Jhon,

Juan

- Original Message -
From: "Stephen Moretti" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, July 30, 2001 7:39 PM
Subject: RE: fusebox & IIS 5 (II part: R.I.P. to fusebox?)


> Juan,
>
> This is true, but in no way means the end of Fusebox.
>
> I have to be honest and say I haven't kept up with all the latest
> advancements in Fusebox, but as I remember the tag FORMURL2ATTRIBUTES now
> picks up the query string and turns a safe URL into a bunch of variables.
>
> HTH
>
> Regards
>
> Stephen
>
> > -Original Message-
> > From: JAAV [mailto:[EMAIL PROTECTED]]
> > Sent: 30 July 2001 17:49
> > To: CF-Talk
> > Subject: fusebox & IIS 5 (II part: R.I.P. to fusebox?)
> >
> >
> > what surprise guys!
> > they say:
> >
> > "The reason the behavior was changed was due to several
> > security vulnerabilities associated with this form of passing parameters
> > to scripts. Actually this should not work on IIS 4 either - there was a
> > security fix released about 14 months ago which disabled this
> > functionality on IIS 4"
> >
> > is it true ?
> >
> > Juan
> >
> > - Original Message -
> > From: "JAAV" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Monday, July 30, 2001 6:43 PM
> > Subject: Fw: fusebox & IIS 5
> >
> >
> > > Hello guys,
> > >
> > > I'm changing my web hosting plan to a dedicated one. In my share plan
we
> > had
> > > IIS 4 + CF 4.5. Well, "almost" everything is ok...but...
> > >
> > >  our search-engine-friendly(Fusebox) urls don't WORK!
> > >  www.help!.org/directory/index.cfm/var/val.htm
> > >
> > >  Our hosting provider says: "in IIS 5 (W2000) it doesn't work, the IIS
5
> > >  believes everything is a directory and... crash! it reports an
error."
> > >
> > >  is it True? if yes, Any ideas ? something at IIS 5
> > configuration? at CF ?
> > >
> > >  help!
> > >
> > >  TIA,
> > >
> > >  Juan
> > >
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



fusebox & IIS 5 (II part: R.I.P. to fusebox?)

2001-07-30 Thread JAAV

what surprise guys!
they say:

"The reason the behavior was changed was due to several
security vulnerabilities associated with this form of passing parameters
to scripts. Actually this should not work on IIS 4 either - there was a
security fix released about 14 months ago which disabled this
functionality on IIS 4"

is it true ?

Juan

- Original Message -----
From: "JAAV" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 30, 2001 6:43 PM
Subject: Fw: fusebox & IIS 5


> Hello guys,
>
> I'm changing my web hosting plan to a dedicated one. In my share plan we
had
> IIS 4 + CF 4.5. Well, "almost" everything is ok...but...
>
>  our search-engine-friendly(Fusebox) urls don't WORK!
>  www.help!.org/directory/index.cfm/var/val.htm
>
>  Our hosting provider says: "in IIS 5 (W2000) it doesn't work, the IIS 5
>  believes everything is a directory and... crash! it reports an error."
>
>  is it True? if yes, Any ideas ? something at IIS 5 configuration? at CF ?
>
>  help!
>
>  TIA,
>
>  Juan
>


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Fw: fusebox & IIS 5

2001-07-30 Thread JAAV

Hello guys,

I'm changing my web hosting plan to a dedicated one. In my share plan we had
IIS 4 + CF 4.5. Well, "almost" everything is ok...but...

 our search-engine-friendly(Fusebox) urls don't WORK!
 www.help!.org/directory/index.cfm/var/val.htm

 Our hosting provider says: "in IIS 5 (W2000) it doesn't work, the IIS 5
 believes everything is a directory and... crash! it reports an error."

 is it True? if yes, Any ideas ? something at IIS 5 configuration? at CF ?

 help!

 TIA,

 Juan


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



problem with encrypt/base64

2001-06-07 Thread JAAV

Hello again,

Well, I'm having a problem using the encrypt/base64.
It give me this error:

--
Error Diagnostic Information:
An error occurred while evaluating the expression:
 attributes.Text =
decrypt(tostring(tobinary(attributes.myEncryptedMail)),key)
Error near line 24, column 8.
The value to be decrypted is not valid
--

when I try to decrypt string containing mails, for example:
- [EMAIL PROTECTED]  Work!
- [EMAIL PROTECTED] doesn't work

the numbers ? the @ ?

ideas?

Juan



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: syntactically valid variables?

2001-05-31 Thread JAAV

I have the same problem!!

what do you mean with "Remove the forward slash from the variable name." ?

I mean I have the same error but my variables don't have any slash in their
names.

how about you Nicole? did you fix your problem?

thanks in advance for your answers guys,

~Juan

- Original Message -
From: "Howarth, Craig (IBK-NY)" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, April 06, 2001 4:58 PM
Subject: RE: syntactically valid variables?


> Remove the forward slash from the variable name.
>
> > -Original Message-
> > From: Toivonen, Nicole [SMTP:[EMAIL PROTECTED]]
> > Sent: Friday, April 06, 2001 10:11 AM
> > To: CF-Talk
> > Subject: syntactically valid variables?
> >
> > Hi there,
> >
> > I'm getting the error below when attempting to generate a variable from
a
> > checkbox.  I am using the FuseBox 'formURL2Attribute' tag, which is
where
> > the the issues are arising.
> >
> > Unfortunately, I'm not very sure what 'syntactically valid variable
name'
> > means in this context, or what about the variable is creating an error.
Any
> > pointers would be appreciated.
> >
> > (CF 4.5.1 on WinNT 4)
> >
> >
> > TIA,
> >
> > Nicole.
> >
> > 
> >
> > Error Occurred While Processing Request
> > Error Diagnostic Information
> >
> > An error occurred while evaluating the expression:
> >
> >
> >  NOT ISDEFINED( 'ATTRIBUTES.' & field )
> >
> >
> >
> > Error near line 20, column 9.
>
> --
--
> > 
> >
> > Parameter 1 of function IsDefined which is now
"ATTRIBUTES.E6_HL_C/CCNOADD"
> > must be a syntactically valid variable name
> >
> >
> > The error occurred while processing an element with a general identifier
of
> > (CFIF), occupying document position (20:4) to (20:48) in the template
file
> > D:\CFUSION\CustomTags\formURL2Attributes.cfm.
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



html in mail

2001-05-15 Thread jaav

hello,

a question: do you know some URLs where I can found tips to make a HTML
mail?

1.
I have some problems using something like:



and then

bla.

this always open a new window from the mail program.

2. Any tips about some tags? for example, May I use "style sheets" ?


Thanks in advance,

~Juan


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: disabling coldfusion's javascript functions

2001-05-04 Thread JAAV

ops! off course.
short answer for a short question:))

thanks Craig



- Original Message -
From: "Craig Dudley" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, May 04, 2001 10:43 AM
Subject: RE: disabling coldfusion's javascript functions


> use a  tag instead of a  , that will do thhe trick ;-)
>
> -Original Message-
> From: JAAV [mailto:[EMAIL PROTECTED]]
> Sent: 04 May 2001 08:55
> To: CF-Talk
> Subject: disabling coldfusion's javascript functions
>
>
> hello,
>
> a little question: Can I disable the Coldfusion's javascript functions ?
(I
> mean _CF_onError, _CF_hasValue and their friends)
>
> I'm already using "enablecab=no" on the CFFORM tag
>
> ideas?
>
> ~Juan
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



disabling coldfusion's javascript functions

2001-05-04 Thread JAAV

hello,

a little question: Can I disable the Coldfusion's javascript functions ?  (I
mean _CF_onError, _CF_hasValue and their friends)

I'm already using "enablecab=no" on the CFFORM tag

ideas?

~Juan


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



IIS 4, 404 http error & fusebox (more data)

2001-05-02 Thread JAAV

index.cfm/fuseaction/foo/myvar/bar.htm  [doesn't work]
 
 index.cfm/fuseaction/foo/myvar/bar [do work!!!]
 
 any ideas?
 
~Juandres

> - Original Message - 
> From: "JAAV" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, May 02, 2001 10:48 AM
> Subject: IIS 4, 404 http error & fusebox
> 
> 
> Hi everyone,
>  
>  We are using fuseaction URLs in our local server.
>  We had a WinNT4 SP 4 box and we upgraded to SP 6 but suddenly all the
>  fuseaction links don't work,
>  but all the normal links work normally.
>  
>  The IIS send a 404 http error. Something like 'check your URL...'
>  
>  anybody know what the problem is ?
>  
>  thanks in advance,
>  
>  ~Juan



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



IIS 4, 404 http error & fusebox

2001-05-02 Thread JAAV

Hi everyone,
 
 We are using fuseaction URLs in our local server.
 We had a WinNT4 SP 4 box and we upgraded to SP 6 but suddenly all the
 fuseaction links don't work,
 but all the normal links work normally.
 
 The IIS send a 404 http error. Something like 'check your URL...'
 
 anybody know what the problem is ?
 
 thanks in advance,
 
 ~Juan
 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Sending mail with coldfusion

2001-04-26 Thread JAAV

a little question David:

how can you send 24000+ emails at a time with CF?

do you use some wait mechanism between mails ?

~Juan

- Original Message -
From: "David Hannum" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, April 26, 2001 2:50 AM
Subject: Re: Sending mail with coldfusion


> I use CFMAIL here to send out 24,000+ emails at a time.  Never have a
> problem.  Are you sure it's not your SMTP server that's choking?  Just a
> thought.
>
> Dave
>
>
>
> - Original Message -
> From: William J Wheatley <[EMAIL PROTECTED]>
> To: CF-Talk <[EMAIL PROTECTED]>
> Sent: Wednesday, April 25, 2001 5:11 PM
> Subject: Sending mail with coldfusion
>
>
> > Ok i have just about had it with CF mail =). With the bulk of the mail
we
> > send out it just eventually fills the spool at about 12,000 or so and
then
> > Dies nothing else goes out, no errors in any of the logs but the mail
just
> > wont go out and its in the /opt/coldfusion/mail directory
> >
> > has anyone come up with an alternative to sending mail then using
CFMAIL?
> > Because i swear even trying to send 1 CFMAIL to a hundred people does
not
> > cut it..its a major issue.
> >
> > Thanks for the quick help!
> >
> >
> > Bill Wheatley
> > Director of Development
> > AEPS INC
> > Allaire ColdFusion Consulting Partner
> > Allaire Certified ColdFusion Developer
> > http://www.aeps.com
> > ICQ: 417645
> > 954-472-6684 X303
> >
> > IMPORTANT NOTICE:
> > This e-mail and any attachment to it is intended only to be read or used
> by
> > the named addressee.  It is confidential and may contain legally
> privileged
> > information.  No confidentiality or privilege is waived or lost by any
> > mistaken transmission to you.  If you receive this e-mail in error,
please
> > immediately delete it from your system and notify the sender.  You must
> not
> > disclose, copy or use any part of this e-mail if you are not the
intended
> > recipient.  The RTA is not responsible for any unauthorized alterations
to
> > this e-mail or attachment to it
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Another regular expression question

2001-04-24 Thread JAAV

Thanks Mark and Paul...

it works!!

- Original Message -
From: "Paul Johnston" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, April 24, 2001 12:47 PM
Subject: RE: Another regular expression question


> using a ^ says "not one of these" and using [] says group these together
>
> how about saying if you find something that is not a number or a letter:
>
> 
> ERROR
> 
> do processing
> 
>
> what you said is:
>
> find 0 or more alpha chars and 0 or more digits next to it
>
> which works with any string on the planet!
>
> I hope this helps!
>
> Paul
>
> On Tuesday, April 24, 2001 11:24 AM, JAAV [SMTP:[EMAIL PROTECTED]] wrote:
> > Hi,
> >
> > Yes, I'm a newbie   :)   but it's a short question:
> >
> > How can I check if an string contains alpha-numeric characters only?
> > I'm trying to check if a login name (given by the user) is valid or not.
> >
> > I'm using something like:
> > #REFindNoCase('[[:alpha]]*|[[:digit]]*',attributes.usuario)# but it
doesn't
> > work.
> >
> > BTW, some links of POSIX regular expression are welcome.
> >
> > thanks in advance
> >
> > ~JAAV
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Another regular expression question

2001-04-24 Thread JAAV

Hi,

Yes, I'm a newbie   :)   but it's a short question:

How can I check if an string contains alpha-numeric characters only?
I'm trying to check if a login name (given by the user) is valid or not.

I'm using something like:
#REFindNoCase('[[:alpha]]*|[[:digit]]*',attributes.usuario)# but it doesn't
work.

BTW, some links of POSIX regular expression are welcome.

thanks in advance

~JAAV


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Detect session timeout and prompt messages.

2001-03-29 Thread JAAV

HI Rudy,

I never have tested it but I saw a website where they use a refresh
meta-tag. and  they did program to show a desconnection page.



hope this helps,

~Jaav
- Original Message -
From: Rudy Rustam <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Thursday, March 29, 2001 10:58 AM
Subject: Detect session timeout and prompt messages.


> Hi folks,
> How is it possible to prompt the user a message after session timeout?
> Or how do we detect whether the session has time out?
>
> thanx in adv
>
> - Rudy
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Mailing Shots in CF (and timeouts)

2001-03-29 Thread JAAV

hi guys,

I'll need to send tons of mails and I was reading your posts but I have some
questions:

- Will the CFX_Wait overwrite the web server and/or Coldfusion server
timeouts ?
- Who wrote the CFX_WAIT tag? is it reliable ? I mean: is it secure ? trojan
free ? in the Developer Exchange it doesn't have an author or website.

thanks in advance,


~Jaav


> >
> > > If you try to send out a ton of mail at once with CFMAIL, for some
> reason
> > it
> > > just stops working and you have to reboot the server or reinstall the
> dll.
> > > Allaire just hasn't quite got thier arms around CFMAIL and CFFTP yet.
> And
> > > they especially didn't have thier arms around it in 4.0.  What I found
> > works
> > > is putting CFMAIL inside a loop and foregoing the query attribute.
Then
> > use
> > > the cfx_wait tag between each iteration of the loop. BTW, Tony Aly
came
> up
> > > with this solution, so I cannot take credit for it.  It works, give it
a
> > > try.
> > >
> > > EG.,
> > > 
> > > 
> > >   > > from="#trim(get_email_message.from_vc)#"
> > > subject="#trim(get_email_message.subject_vc)#"
> > >
server="#trim(attributes.mail_server)#">#get_email_message.message_mem#
> > >  
> > >  
> > > 
> > >  
> > > 
> > > 
> > > 
> > >
> > > The CFX_WAIT tag is available in the Allaire tag library
> > >




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists