Re: OT: using js to include files

2005-05-26 Thread Simon Cornelius P . Umacob
>I don't think there's such a thing as a Javascript include function or 
>method.

You might want to check out DynAPI at http://dynapi.sourceforge.net/.  This 
library has (or had? It's been yrs...) a cross-browser include method.  
Depending on the browser, it may either use , , innerHTML, or 
other ways to put external files to your web page.  You need not worry about 
this because the details are abstracted from you.  The implementation may be 
different depending on the brower, but the end effect is still the same.

>
>I've been wanting one for a LONG LONG time and never seen such a beast.
>
>Am I wrong?  Please tell me I'm wrong and that there IS a standard, 
>cross browser way of including a javascript file that can reference 
>other javascript files.

Fear not, for the second coming is already near.  Fear not, for the time of the 
Browser Utopia is at hand!  Behold the prophesy:

"And so at last the beast fell and the unbelievers rejoiced. But all was not 
lost, for from the ash rose a great bird. The bird gazed down upon the 
unbelievers and cast fire and thunder upon them. For the beast had been reborn 
with its strength renewed, and the followers of Mammon cowered in horror."

-from The Book of Mozilla, 7:15 

Cheers,

[ simon.cpu ]

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207833
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: using js to include files

2005-05-26 Thread Massimo, Tiziana e Federica
> I don't think there's such a thing as a Javascript include function or
> method.
>
> I've been wanting one for a LONG LONG time and never seen such a beast.
>
> Am I wrong?  Please tell me I'm wrong and that there IS a standard,
> cross browser way of including a javascript file that can reference
> other javascript files.

I was playing with the idea last week. This isn't standard, just a proof of
concept, it works on IE 5+, Mozilla/FireFox and, with appropiated fixes to
the code, it could works with Safari 1.3+:
http://www.massimocorner.com/csi/


Massimo Foti
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207832
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


How to make my checkbox insert values

2005-05-26 Thread Will Tomlinson
In my cart app there's the billing/shipping info page. I'm using cfform. 

Is there a way to make my "use billing info for ship to info" checkbox 
automatically insert the values that were entered in the billing part into the 
ship to cfinputs? 

Thanks,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207831
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Verity and languages

2005-05-26 Thread Paul Hastings
chad gray wrote:
> I do have a question now that i got it working.  The variable "Score"
> that is returned when using CFSearch comes back with a comma for
> european languages.

i think that has more to do w/your server's locale. try doing a 
getLocale() & see what it says. in any case this should work (once you 
figure out which locale your cf server is):

#lsParseNumber(MySearch.Score) * 100#%

(seeing that ray's probably sleeping right now, i'll do you a favor & 
suggest that you not use evaluate).

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207830
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Multiple table join statement question

2005-05-26 Thread Ray Champagne
Forget it, this was much easier than I expected.  Figured it out!

Thanks,

Ray

Ray Champagne wrote:
> Okay, I have a database, not designed by me, but I have to work with it, 
> with these tables:
> 
> _Owners_
> OwnerID
> OwnerName
> etc
> 
> _Clients_
> ClientID
> OwnerFK
> ClientName
> etc
> 
> _Users_
> UserID
> ClientFK
> FirstName
> etc
> 
> _Bridge_
> BridgeID
> UserFK
> FileFK
> 
> _Files_
> FileID
> FileName
> etc
> 
> What I need to do is select all files that are "owned" by one owner's 
> ID.  If you follow the above diagram, I need to get all the files using 
> the fileID field, get all the UserFK's from the bridge table, get all 
> the ClientFK's from the Users table using the UserFKs, all the way up to 
> the owners, where I currently hold the OwnerID in a Session Var.
> 
> I think that I need to do a complicated (for me) join statement that 
> links each table all the way up the line until I get a WHERE OwnerID = 
> #SESSION.OwnerID# type-statement, but I have no idea how to construct 
> that.  Anybody wanna help me out?  I think this exercise will help me 
> understand the concept of joins quite a bit more.  I've written simple 
> ones plenty of times, but this bugger is a PITA.
> 
> Thanks!
> 
> Ray

-- 
=
Ray Champagne - Senior Application Developer
CrystalVision Web Site Design and Internet Services
603.433.9559
www.crystalvision.org
=

The information contained in this transmission (including any
attached files) is CONFIDENTIAL and is intended only for the
person(s) named above. If you received this transmission in
error, please delete it from your system and notify us
immediately. If you are not an intended recipient, please note
that any use or dissemination of the information contained in this
transmission (including any attached files) and the copying,
printing, or retransmission of that information is strictly
prohibited. You can notify us by return email or by phone at
603.433.9559.

Thank you.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207829
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Multiple table join statement question

2005-05-26 Thread Ray Champagne
Okay, I have a database, not designed by me, but I have to work with it, 
with these tables:

_Owners_
OwnerID
OwnerName
etc

_Clients_
ClientID
OwnerFK
ClientName
etc

_Users_
UserID
ClientFK
FirstName
etc

_Bridge_
BridgeID
UserFK
FileFK

_Files_
FileID
FileName
etc

What I need to do is select all files that are "owned" by one owner's 
ID.  If you follow the above diagram, I need to get all the files using 
the fileID field, get all the UserFK's from the bridge table, get all 
the ClientFK's from the Users table using the UserFKs, all the way up to 
the owners, where I currently hold the OwnerID in a Session Var.

I think that I need to do a complicated (for me) join statement that 
links each table all the way up the line until I get a WHERE OwnerID = 
#SESSION.OwnerID# type-statement, but I have no idea how to construct 
that.  Anybody wanna help me out?  I think this exercise will help me 
understand the concept of joins quite a bit more.  I've written simple 
ones plenty of times, but this bugger is a PITA.

Thanks!

Ray
-- 
=
Ray Champagne - Senior Application Developer
CrystalVision Web Site Design and Internet Services
603.433.9559
www.crystalvision.org
=

The information contained in this transmission (including any
attached files) is CONFIDENTIAL and is intended only for the
person(s) named above. If you received this transmission in
error, please delete it from your system and notify us
immediately. If you are not an intended recipient, please note
that any use or dissemination of the information contained in this
transmission (including any attached files) and the copying,
printing, or retransmission of that information is strictly
prohibited. You can notify us by return email or by phone at
603.433.9559.

Thank you.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207828
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Weird Error Message.

2005-05-26 Thread Ricardo Russon
I left my Dev box running overning.

When i came back into work I saw this error at the command prompt.

27/05 07:00:44 error Event Handler Exception.
[1]java.lang.OutOfMemoryError
[0]coldfusion.runtime.EventHandlerException: Event Handler Exception.
at 
coldfusion.runtime.AppEventInvoker.onRequest(AppEventInvoker.java:118)

Now. No one was accessing the box at 7am. I only arrived at 8:30AM.

By the looks of things it was the 'Client Storage Purge'

But what could have caused it to error.

It was running fine every 1hour and 7minutes (as per the admin
settings) since i left work yesterday.

Any ideas. Thanks.

Ricardo

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207827
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: traffic monitoring software

2005-05-26 Thread Sergey Croitor
ctsd> does s.o. know a good
ctsd> traffic monitoring software
ctsd> other than CommTraffic (Tamos) and
ctsd> MRTG ?

http://lastbit.com/trafmeter

Powerful and convenient.

-- 
 Sergey


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207825
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: using js to include files

2005-05-26 Thread S . Isaac Dealey
head = document.getElementsByTagName('head');
head.innerHTML += '

Re: cfexecute and wget

2005-05-26 Thread Roger B.
Tim: Out of curiousity, why are you using a CFEXECUTEd wget instead of CFHTTP?

--
Roger Benningfield
http://admin.support.journurl.com/

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207824
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Trouble with Verisign's cfx_payflowpro tag -- fixed

2005-05-26 Thread Jeffrey Polaski
The correct settings are below. The problem was with the classpath... It
doesn't need "Verisign.jar" at the end.

Extensions --> CFX Tags
Tag Name: CFX_PAYFLOWPRO
Class Name: CFXPayFlowPro

Server Settings --> Java and JVM
ColdFusion Classpath: 
Right:
C:\CFusionMX\CustomTags\java\verisign
Wrong:

C:\CFusionMX\CustomTags\java\verisign\Verisign.jar

Thanks for your help!

Jeff Polaski
RGS Webmaster
(949) 824-6363

"The ant has made himself illustrious
 Through constant industry industrious.
 So what?
 Would you be calm and placid
 If you were full of formic acid?" 
-Ogden Nash

-Original Message-
From: Ken Ferguson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 26, 2005 1:47 PM
To: CF-Talk
Subject: Re: Trouble with Verisign's cfx_payflowpro tag


I've forgotten the exact solution, but I had problems after the upgrade 
to 7. Search the archives; I know I posted the solution. This would 
probably have been sometime in March I'm guessing. I remember it was an 
issue with the classpath and that the entries needed were slightly 
different than the instructions...

Sorry I can't remember the solution in any more detail, but I'm sure you

can find my archived messages.

--Ferg

Jeffrey Polaski wrote:

>Has any one else had this problem...
>
>I've installed Verisign's PayFlowPro by their instructions, but when I 
>get to a page that uses their custom tag, cfx_payflowpro, I keep 
>getting an error:
>
>500 com/Verisign/payment/PFProAPI com/Verisign/payment/PFProAPI
>
>It hasn't worked since we upgraded to CF MX 7, running on Windows 2000 
>(w/all service packs, etc).
>
>Has any one run into the same, or similar problems?
>
>
>
>
>
>"Over 70% of all statistics are made up. The more precision you see in 
>a statistic, the more likely it is made up. This has been shown to be 
>true 78.66% of the time."
>
>Jeff Polaski
>RGS Webmaster
>(949) 824-6363
>www.rgs.uci.edu
>
>



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207823
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: using js to include files

2005-05-26 Thread Jann E. VanOver
I don't think there's such a thing as a Javascript include function or 
method.

I've been wanting one for a LONG LONG time and never seen such a beast.

Am I wrong?  Please tell me I'm wrong and that there IS a standard, 
cross browser way of including a javascript file that can reference 
other javascript files.

(ps. I know about using @import for CSS.  Wish JS had the same)

Tim Do wrote:

>Hi All,
> 
>I'm trying to use js inside an html file to include an asp file.  This
>is what I have so far:
> 
>script language="JavaScript" type="text/javascript">
>// must be a fully qualified URL -- can be any type of file
>(html,jsp,asp,etc)
> 
>include("http://192.200.1.37/Voyager50/Forms/LateCount.asp?tenant="+docu
>ment.Resident.HTENANT.value);
> 
>I'm getting document.Resident.HTENANT.value is null or not an object
>error.  Strange thing is, I'm using the same value elsewhere on this
>html file and not getting errors in those areas.  Can somebody tell me
>what is wrong with this or is there another way to include files using
>js?
>


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207822
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX7 and OSX 10.4 install issue

2005-05-26 Thread Tom McNeer
> That thread just turned up in my mailbox... strange...

Can't speak to the slow mail, but ... thanks to everyone for the help.



-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207821
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to deal with the african money scams

2005-05-26 Thread Matt Robertson
On 5/26/05, Adrocknaphobia <[EMAIL PROTECTED]> wrote:
> Report them to the Secret Service. (Honestly, I know, but Secret
> Service is the government branch that goes after online fraud)

WHAT?!?

Actually I shouldn't laugh.  When I saw the first one of these several
years ago I actually called the local branch of the US Secret Service
to report it.  I got about three lines into the description and the
case officer interrupted me with a very bored "Yeah yeah its in
Nigeria, right?"  Followed by "we know.  Don't worry about it."

I'm sure they are still in hot pursuit of that lead.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207820
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX7 and OSX 10.4 install issue

2005-05-26 Thread Sean Corfield
On 5/26/05, Tom McNeer <[EMAIL PROTECTED]> wrote:
> > I didn't see any message on cf-mac...
> It is/was there. Mark Drew and I have exchanged a few messages in the thread.

That thread just turned up in my mailbox... strange...
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207819
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX7 and OSX 10.4 install issue

2005-05-26 Thread Rob
Yeah I have seen that. Just click on the submit button it'll error
saying you didn't put in the password. After that you can focus to it
(at least I could)

On 5/26/05, Tom McNeer <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> I've posted this to the CF-Mac list, but haven't found a solution yet,
> although Mark Drew has worked hard to help. So I'll check here to see
> if a Mac person who's not watching that other list has ideas.
> 
> I'm having a problem installing CFMX7 on a new Powerbook running OSX
> 10.4. The machine came with 10.4 installed, and I've run the updater
> to move it to 10.4.1.  I've read the various information about CFMX7
> and OSX from Macromedia, Sean Corfield, et al.
> 
> So I started out by installing and updating JRun. This went fine.
> 
> However -- when I try to install CFMX7, I hit a snag. Everything's
> fine until it gets to the point of asking for a CF Admin password.
> Then it won't accept keyboard input. This occurs both when using the
> graphical installer and when doing the whole thing from the command
> line. In the graphical interface, it seems that the password field
> won't even accept focus.
> 
> But in neither case can I enter a password.
> 
> Has anyone else experienced this? Has anyone else done a fresh install
> of CFMX7 on Tiger? (I know several folks have successfully upgraded to
> Tiger without breaking CFMX7.)
> 
> Or -- does anybody have any ideas, period?
> --
> Thanks,
> 
> Tom
> 
> Tom McNeer
> MediumCool
> http://www.mediumcool.com
> 530 Means St NW, Suite 110
> Atlanta, GA 30318
> 404.589.0560
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207818
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to deal with the african money scams

2005-05-26 Thread Adrocknaphobia
Report them to the Secret Service. (Honestly, I know, but Secret
Service is the government branch that goes after online fraud)

-Adam

On 5/26/05, Katz, Dov B (IT) <[EMAIL PROTECTED]> wrote:
> I'm getting more and more of those north african money scammers hitting
> my site.
> 
> Basically they'll go to a page like www.onlysimchas.com/classifieds and
> register an account to send private messages to users, en masse, with
> their millions of dollars tied up in some imaginary bank, etc...
> 
> I've found that they all seem to originate from a Cote D'Ivoire ISP
> called afnet.net
> 
> What's the best way to block this ISP's IP block (the ip they used today
> is 213.136.122.149  from getting to my server
> 
> IIS5, CFMX6.1, W2kserver
> 
> Thansk
> 
> 
> NOTICE: If received in error, please destroy and notify sender.  Sender does 
> not waive confidentiality or privilege, and use is prohibited.
> 
> 
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207817
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Verity and languages

2005-05-26 Thread chad gray
>chad gray wrote:
>> Not that i know of.  Are they on the macromedia site or on the CD?
>
>www.macromedia.com/go/verity

Thanks for the help!  That fixed it.

I do have a question now that i got it working.  The variable "Score" that is 
returned when using CFSearch comes back with a comma for european languages.

If i use the evaluate function on this variable it is not smart enough to know 
comma is a period.

Error Occurred While Processing Request  
The value "0,9111" cannot be converted to a number  

#evaluate(MySearch.Score * 100)#%

How do i do math with commas in the numbers?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207816
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFX tags and JRE 1.4

2005-05-26 Thread Guy Rish
Steve,

If you'd like to chat off-list about your configuration I'd be happy to help.
I've never had to tweak very much in order to do a simple compile.  Certainly 
don't need to worry about various configuration files and XML files and so 
forth.  
Command line, environment variable to JARs, compile and go.
Likewise, I could help you get setup with Eclipse.  Not much effort there 
either.

It really doesn't have to be that unpleasant of an experience.

rish

Original Message ---
Ok, I solved the problem but not the issue.  It has absolutely nothing to do
with the code (as I thought).  I had someone else try to compile the library
with the same code, and his JAR works fine, so it's some obscure setting or
configuration issue on my machine.  HUGE surprise.  I've been dealing with
this since I started using Java and it's my #1 complaint.  There are so many
system settings, XML configuration files and component versioning issues that
somedays it drives me batty.  I'm not a huge Microsoft fan (only because of
business practices) but it sure is nice to install a framework, launch the
IDE, write some code and (gasp) it works without having to scour hundreds of
pages of poorly written documentation and then spend a few hours changing a
dozen files so it will work just right on your machine.

Ok, I'm starting to rant and I hate it when people do that, sorry.

Anyway, I'm going to avoid the issue since it's somewhat resolved (mentally
brushing it under the rug as I type here).

> -Original Message-
> From: Guy Rish [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, May 26, 2005 3:19 PM
> To: CF-Talk
> Subject: RE: CFX tags and JRE 1.4
> 
> Steven,
> 
> I don't think it's a bytecode version issue.
> The error you're getting sounds like there is something wrong 
> in the definition of the class that the ColdFusion Server is 
> trying to load (the one specified as the CFX class in the 
> Administrator).
> 
> If you can why don't you post the following:
> 1. The class source or at last the class declaration and the 
> method declarations.
> 2. The command line you are using to compile the class.
> 
> rish



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207815
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to deal with the african money scams

2005-05-26 Thread Ken Ferguson
Even if you can't get an anti-spam app installed for whatever reason, 
you could build a filter similar to a profanity filter and run the 
content through that before the cfmail operation. Then you could 
populate your filter with keywords you wish to block. Set up your app so 
that you can assign a number as a keyword density above which an email 
is not sent. Most of these emails are very similar, so you may find this 
to be at least a fairly effective solution.

--Ferg


Katz, Dov B (IT) wrote:

>Go to www.onlysimchas.com/classifieds
>
>Or www.onlysimchas.com/galleries
>
>Any guestbook//classified ad has a clickable user name which launches
>the messaging system.
>
>Should I play with CAPTCHA?  Its kind of cumbersome but it might do the
>trick
>
>-dov
>
>  
>


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207814
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Trouble with Verisign's cfx_payflowpro tag

2005-05-26 Thread Ken Ferguson
I've forgotten the exact solution, but I had problems after the upgrade 
to 7. Search the archives; I know I posted the solution. This would 
probably have been sometime in March I'm guessing. I remember it was an 
issue with the classpath and that the entries needed were slightly 
different than the instructions...

Sorry I can't remember the solution in any more detail, but I'm sure you 
can find my archived messages.

--Ferg

Jeffrey Polaski wrote:

>Has any one else had this problem... 
>
>I've installed Verisign's PayFlowPro by their instructions, but when I
>get to a page that uses their custom tag, cfx_payflowpro, I keep getting
>an error:
>
>500 com/Verisign/payment/PFProAPI
>com/Verisign/payment/PFProAPI
>
>It hasn't worked since we upgraded to CF MX 7, running on Windows 2000
>(w/all service packs, etc). 
>
>Has any one run into the same, or similar problems?
>
>
>
>
>
>"Over 70% of all statistics are made up. The more precision you see in a
>statistic, the more likely it is made up. This has been shown to be true
>78.66% of the time."
>
>Jeff Polaski
>RGS Webmaster
>(949) 824-6363
>www.rgs.uci.edu
>
>

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207813
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFX tags and JRE 1.4

2005-05-26 Thread Steve Brownlee
Ok, I solved the problem but not the issue.  It has absolutely nothing to do
with the code (as I thought).  I had someone else try to compile the library
with the same code, and his JAR works fine, so it's some obscure setting or
configuration issue on my machine.  HUGE surprise.  I've been dealing with
this since I started using Java and it's my #1 complaint.  There are so many
system settings, XML configuration files and component versioning issues that
somedays it drives me batty.  I'm not a huge Microsoft fan (only because of
business practices) but it sure is nice to install a framework, launch the
IDE, write some code and (gasp) it works without having to scour hundreds of
pages of poorly written documentation and then spend a few hours changing a
dozen files so it will work just right on your machine.

Ok, I'm starting to rant and I hate it when people do that, sorry.

Anyway, I'm going to avoid the issue since it's somewhat resolved (mentally
brushing it under the rug as I type here).

> -Original Message-
> From: Guy Rish [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, May 26, 2005 3:19 PM
> To: CF-Talk
> Subject: RE: CFX tags and JRE 1.4
> 
> Steven,
> 
> I don't think it's a bytecode version issue.
> The error you're getting sounds like there is something wrong 
> in the definition of the class that the ColdFusion Server is 
> trying to load (the one specified as the CFX class in the 
> Administrator).
> 
> If you can why don't you post the following:
> 1. The class source or at last the class declaration and the 
> method declarations.
> 2. The command line you are using to compile the class.
> 
> rish

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207812
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX7 and OSX 10.4 install issue

2005-05-26 Thread Steven Erat
On Solaris and Linux when using ksh instead of csh, sh, or bash, the 
terminal "freaks out" on the line for CF Admin password input.  Make 
sure you're not in ksh first.





Sean Corfield wrote:

>On 5/26/05, Tom McNeer <[EMAIL PROTECTED]> wrote:
>  
>
>>I've posted this to the CF-Mac list, but haven't found a solution yet,
>>
>>
>
>I didn't see any message on cf-mac...
>
>  
>
>>Has anyone else experienced this? Has anyone else done a fresh install
>>of CFMX7 on Tiger? (I know several folks have successfully upgraded to
>>Tiger without breaking CFMX7.)
>>
>>
>
>I just ran the installer from the command line on 10.4.1 and it worked
>perfectly.
>
>java -jar coldfusion-70-other.jar -i console
>
>Remember that the script will not echo what you type at the Password:
>prompt for security reasons. When you press return, it accepts the
>password and asks you to confirm it by typing it again.
>  
>

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207811
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX7 and OSX 10.4 install issue

2005-05-26 Thread Tom McNeer
Hi Sean,

> I didn't see any message on cf-mac...

It is/was there. Mark Drew and I have exchanged a few messages in the thread.

> Remember that the script will not echo what you type at the Password:
> prompt for security reasons. When you press return, it accepts the
> password and asks you to confirm it by typing it again.

Thank you. That's the answer. Being new to Unix, I didn't realize that. 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207810
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT Checking for video plugins

2005-05-26 Thread Kevin Aebig
I completely agree with JD. I'll give credit where its due on Flash video.
The codec used is amazing in it's quality and streaming capabilities.

I'd consider Flash and Quicktime on an even playing field, but the Flash
plugin is a few pounds lighter, offers more interaction and video player
flexibility (skinning, user interaction).

Sincerely,

Kevin

-Original Message-
From: John Dowdell [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 26, 2005 12:31 PM
To: CF-Talk
Subject: Re: OT Checking for video plugins


Stuart Kidd wrote:
> Does anyone know of any client side code that checks for a certain video
> plugin? Like:
> If user has RealPlayer
> do
> If user has Windows Media
> do
> If user has Quicktime
> do
> Else

Maybe "if user has Macromedia Flash Player v6.0 or greater"...?  ;-)

It's possible to poll most browsers to find what they have (check the
plugins array, or try to create an ActiveX instance in IE/Win and
VBScript -- websearch term "video detection javascript" pulls up many
handlings), but you'd also have to check versioning if using recent
codecs. I've seen a few sites which attempt this, like live365.com, but
for me it has been 50/50 whether the script has recognized what my
browser can do, and if the script doesn't work correctly, then the user
can be locked out of content they can actually play.

That's why most sites seem to present a button array for people to
choose one of the architectures (albeit without information on plugin
version and content requirements), as well as bandwidth buttons.

Over the last year, many sites have moved to video through the
Macromedia Flash Player to simultaneously reach a wider audience,
simplify scripting development, and provide an overall better experience
to site visitors.

Sounds self-interested, I know, but it's true ;-)

jd




--
John Dowdell . Macromedia Developer Support . San Francisco CA USA
Weblog: http://www.macromedia.com/go/blog_jd
Aggregator: http://www.macromedia.com/go/weblogs
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207809
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to deal with the african money scams

2005-05-26 Thread Katz, Dov B \(IT\)
Go to www.onlysimchas.com/classifieds

Or www.onlysimchas.com/galleries

Any guestbook//classified ad has a clickable user name which launches
the messaging system.

Should I play with CAPTCHA?  Its kind of cumbersome but it might do the
trick

-dov

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 26, 2005 3:33 PM
To: CF-Talk
Subject: RE: How to deal with the african money scams

How does you system allow a user to pick who the recipient of the
message is?  Can you prevent them from easily or automatically selecting
these?  Provided a road block to sending out hundreds and thousands of
messages, because the selection process is to long?


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

.-Original Message-
.From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED]
.Sent: Thursday, May 26, 2005 12:29 PM
.To: CF-Talk
.Subject: RE: How to deal with the african money scams 
.Guys,
.
.I think you misunderstood my problem.
.
.I have a site. It requires user registration to communicate with
other users.  The communication is sent via email.  Users who
register are reuqired to confirm their randomly assigned password
via email before completing registration.
.
.So, lets say we have one such newly registered user, who decides to
.communicate with other users on my site, by sending this stuff out
to them.
.
.How do I prevent a registered user on my site from easily blasting
.others with these types of message.
.
.I'm not looking to prevent spam, or bayesian filters etc, I'm
looking to prevent my web application from becoming a vehicle for
this communication.
.
.Is there an open database or filter web service I could compare the
.attempted-to-be-sent message to see whether it is spam before I
CFMAIL
.it?   Should I just keep a message-send counter which counts similar
.messages sent during an existing session and lock down the ability
to send more than X messages per Y minutes per session?
.
.This is the kind of advice I was looking for 
.Thanks in advance,
.
.-Dov
.
.
.-Original Message-
.From: Matt Robertson [mailto:[EMAIL PROTECTED]
.Sent: Thursday, May 26, 2005 3:20 PM
.To: CF-Talk
.Subject: Re: How to deal with the african money scams 
.You mean those spam email confirmation things where it says "you
sent me mail now fill in this or I won't see it"?
.
.Those are evil.  Anyone using them on me gets deep-sixed.  I've
never heard a list owner say anything but vile things about them.
.
.Sorry.  Touched a nerve there.
.
.--
.--mattRobertson--
.Janitor, MSB Web Systems
.mysecretbase.com
.
.
.
.



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207808
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


I'd Like To Know What My Customers Are Shopping For - In Real Time...

2005-05-26 Thread Che Vilnonis
I've got a bit a code the can track what pages users are viewing on my web
site in real time. It works great. I'd like to expand on that code to see
what is in their shopping basket in real time. I'm using CF 5.0.

I use Client variables to store shopping basket variables w/in a database.
var ShoppingBasket is a structure that is stored as a WDDX Packet. I use a
query like the one below to select the Client variable that contains the
ShoppingBasket structure as well as all other variables that are tied to the
respective CFID & CFTOKEN.


SELECT DATA FROM CDATA WHERE APP='MY_APP' AND
CFID='#Application.WhoIsOnArray[idx][1]#'


When I loop over all of the 'live' customers, to create my report... I can't
seem to extract the WDDX packet (the ShoppingBasket struct) no matter what I
try.  doesn't work. I cannot deserialize the variable. I get an
error that the provided string is not a valid WDDX packet.

Any ideas???

Below is what the 'struct' Shoppingbasket looks like. May be that will help.

7142113.9500Size 0 (Child Size 12-14) -
Ea.279010.25000<
string>ProForce 5oz. Ultra Lightweight TKD Student
Uniform2788

Thanks, Che


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207807
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to deal with the african money scams

2005-05-26 Thread Kevin Aebig
>> You don't have enough fingers or toes to stick
>> into that dyke.



Kevin

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 26, 2005 1:07 PM
To: CF-Talk
Subject: Re: How to deal with the african money scams


The way to deal with this is in your anti-spam filtration.  I've found
Bayesian filters to be particularly effective.  The only one I've seen
in months came to my GMail account today, as its on whatever system
google puts it on.

IP blocks don't work.  You don't have enough fingers or toes to stick
into that dyke.

--
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207806
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Trouble with Verisign's cfx_payflowpro tag

2005-05-26 Thread Jeffrey Polaski
Has any one else had this problem... 

I've installed Verisign's PayFlowPro by their instructions, but when I
get to a page that uses their custom tag, cfx_payflowpro, I keep getting
an error:

500 com/Verisign/payment/PFProAPI
com/Verisign/payment/PFProAPI

It hasn't worked since we upgraded to CF MX 7, running on Windows 2000
(w/all service packs, etc). 

Has any one run into the same, or similar problems?





"Over 70% of all statistics are made up. The more precision you see in a
statistic, the more likely it is made up. This has been shown to be true
78.66% of the time."

Jeff Polaski
RGS Webmaster
(949) 824-6363
www.rgs.uci.edu

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207805
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Verity and languages

2005-05-26 Thread Paul Hastings
chad gray wrote:
> Not that i know of.  Are they on the macromedia site or on the CD?

www.macromedia.com/go/verity

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207804
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to deal with the african money scams

2005-05-26 Thread Matt Robertson
What about putting in an antispam gateway?  Mine looks at outgoing as
well as incoming messages.  Even stuff sent by CF is filtered, just
for this reason.

There are other systems available, but they are not CF-based.  If you
are using Imail then Declude Hijack would be exactly what you want. 
Not sure if they have a SmarterMail version yet.

If the cfmails are going out individually (rather than sending out
with 2000 addresses in the To: field) then build in a frequency filter
that limits the number of mails sent in X amount of time to something
you are comfortable with.  OR if they are going out with 2000
addresses inside then build in something that parses out the to: field
(like listlen() )and reject anything thats over what you consider a
reasonable limit.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207803
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Verity and languages

2005-05-26 Thread chad gray
>chad gray wrote:
>> I am trying to add some verity collections using CF Admin.
>
>did you d/l & install the language packs?

Not that i know of.  Are they on the macromedia site or on the CD?

Thanks!
Chad

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207802
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


New layout and search

2005-05-26 Thread Michael Dinowitz
Current searches applied against the House of Fusion archives from Google today 
is somewhere over 3500 terms. I expect to hit 5000 by days end. I'll be adding 
a link on the search page for all search terms for a day, but it'll be LONG. 

> I put the new layout into effect and added a search results page. You 
> can now see what people are searching for up to the minute. Fun stuff. 
> :)
> 
> I still have to add print and verity when I get the blogoffusion.com 
> machine back up. That and the new post formatting which will reduce 
> page size by a bit. 
> 
> If you have any problems or thoughts, let me know.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207801
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to deal with the african money scams

2005-05-26 Thread Ian Skinner
How does you system allow a user to pick who the recipient of the message is?  
Can you prevent them from easily or automatically selecting these?  Provided a 
road block to sending out hundreds and thousands of messages, because the 
selection process is to long?


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

-Original Message-
From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 26, 2005 12:29 PM
To: CF-Talk
Subject: RE: How to deal with the african money scams

Guys,

I think you misunderstood my problem.

I have a site. It requires user registration to communicate with other
users.  The communication is sent via email.  Users who register are
reuqired to confirm their randomly assigned password via email before
completing registration.

So, lets say we have one such newly registered user, who decides to
communicate with other users on my site, by sending this stuff out to
them.

How do I prevent a registered user on my site from easily blasting
others with these types of message.

I'm not looking to prevent spam, or bayesian filters etc, I'm looking to
prevent my web application from becoming a vehicle for this
communication.

Is there an open database or filter web service I could compare the
attempted-to-be-sent message to see whether it is spam before I CFMAIL
it?   Should I just keep a message-send counter which counts similar
messages sent during an existing session and lock down the ability to
send more than X messages per Y minutes per session?

This is the kind of advice I was looking for

Thanks in advance,

-Dov


-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 26, 2005 3:20 PM
To: CF-Talk
Subject: Re: How to deal with the african money scams

You mean those spam email confirmation things where it says "you sent me
mail now fill in this or I won't see it"?

Those are evil.  Anyone using them on me gets deep-sixed.  I've never
heard a list owner say anything but vile things about them.

Sorry.  Touched a nerve there.

--
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com





~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207800
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX7 and OSX 10.4 install issue

2005-05-26 Thread Sean Corfield
On 5/26/05, Tom McNeer <[EMAIL PROTECTED]> wrote:
> I've posted this to the CF-Mac list, but haven't found a solution yet,

I didn't see any message on cf-mac...

> Has anyone else experienced this? Has anyone else done a fresh install
> of CFMX7 on Tiger? (I know several folks have successfully upgraded to
> Tiger without breaking CFMX7.)

I just ran the installer from the command line on 10.4.1 and it worked
perfectly.

java -jar coldfusion-70-other.jar -i console

Remember that the script will not echo what you type at the Password:
prompt for security reasons. When you press return, it accepts the
password and asks you to confirm it by typing it again.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207799
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Verity and languages

2005-05-26 Thread Paul Hastings
chad gray wrote:
> I am trying to add some verity collections using CF Admin.

did you d/l & install the language packs?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207798
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFX tags and JRE 1.4

2005-05-26 Thread Guy Rish
Steven,

I don't think it's a bytecode version issue.
The error you're getting sounds like there is something wrong in the definition 
of the class that the ColdFusion Server is trying to load (the one specified as 
the CFX class in the Administrator).

If you can why don't you post the following:
1. The class source or at last the class declaration and the method 
declarations.
2. The command line you are using to compile the class.

rish

Original Message ---
This might be a little off topic, depending on if anyone has done some CFX
development before.  In fact, it might not be related to ColdFusion at all,
but I'm not sure.  We use 7 custom CFX tags in our application, and they've
been humming along happily since we upgraded to CF7.  However, I wanted to
make an improvement to some of them recently, and after I build the tags
again, I get the following error when they try to execute.

Error processing CFX custom tag "CFX_com.printcafe.cfx.cfx_WDDXTOJS".
A ClassCastingException occured. The CFX custom tag
"CFX_com.printcafe.cfx.cfx_WDDXTOJS" needs to implement
"com.allaire.cfx.CustomTag" interface. Please be sure to add this to your
custom class.


Now, being a C# guy, I'm not 100% comfortable with Java yet, but my intuition
tells me that it's the different Java runtime we're using now (we upgraded
all development machines to 1.4.2_07).  Also, there's an innocuous line of
documentation from Livedocs - "You can use a wide range of Java development
environments, including the Java Development Kit (JDK) v 1.3.1 from Sun" -
that makes me think I'm on the right track.  Perhaps CFX.JAR isn't 1.4
compatible?

Anyone have experience with this?

Thanks in advance,
Steve



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207797
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to deal with the african money scams

2005-05-26 Thread Katz, Dov B \(IT\)
Guys,

I think you misunderstood my problem.

I have a site. It requires user registration to communicate with other
users.  The communication is sent via email.  Users who register are
reuqired to confirm their randomly assigned password via email before
completing registration.

So, lets say we have one such newly registered user, who decides to
communicate with other users on my site, by sending this stuff out to
them.

How do I prevent a registered user on my site from easily blasting
others with these types of message.

I'm not looking to prevent spam, or bayesian filters etc, I'm looking to
prevent my web application from becoming a vehicle for this
communication.

Is there an open database or filter web service I could compare the
attempted-to-be-sent message to see whether it is spam before I CFMAIL
it?   Should I just keep a message-send counter which counts similar
messages sent during an existing session and lock down the ability to
send more than X messages per Y minutes per session?

This is the kind of advice I was looking for

Thanks in advance,

-Dov


-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 26, 2005 3:20 PM
To: CF-Talk
Subject: Re: How to deal with the african money scams

You mean those spam email confirmation things where it says "you sent me
mail now fill in this or I won't see it"?

Those are evil.  Anyone using them on me gets deep-sixed.  I've never
heard a list owner say anything but vile things about them.

Sorry.  Touched a nerve there.

--
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207796
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Verity and languages

2005-05-26 Thread chad gray
I am trying to add some verity collections using CF Admin.

I get an error on any language that i select except for English.  English works 
fine.

Unable to create collection.
An error occurred while performing an operation in the Search Engine native 
library.
coldfusion.tagext.lang.CFCollectionTagException: Error # -2 Error E0-1230 
(Language): Could not create locale tradci..


Anyone know why this is happening?
Thansk!

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207795
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to deal with the african money scams

2005-05-26 Thread Matt Robertson
You mean those spam email confirmation things where it says "you sent
me mail now fill in this or I won't see it"?

Those are evil.  Anyone using them on me gets deep-sixed.  I've never
heard a list owner say anything but vile things about them.

Sorry.  Touched a nerve there.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207794
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to deal with the african money scams

2005-05-26 Thread Rick Root
Forcing email confirmation of new accounts is one way to stop a lot of 
this kind of stuff, because most of them don't use real email addresses.

Rick


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207793
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to deal with the african money scams

2005-05-26 Thread Les Mizzell
Scam them back?  Personally, I love to string these guys on for as long 
as I can!

But I'm evil and that's just me and my idea of fun is a little different...


-- 
---
Les Mizzell

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207792
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF ODBC services

2005-05-26 Thread Matt Robertson
Not an answer to your question, but a related FYI:

in CF 6.1 I don't even run the ODBC services on production servers,
since I only use jdbc dsn's.  jrun.exe is the only service I have
running.  If you use jdbc you don't need odbc at all.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207791
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to deal with the african money scams

2005-05-26 Thread Matt Robertson
The way to deal with this is in your anti-spam filtration.  I've found
Bayesian filters to be particularly effective.  The only one I've seen
in months came to my GMail account today, as its on whatever system
google puts it on.

IP blocks don't work.  You don't have enough fingers or toes to stick
into that dyke.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207790
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


CFX tags and JRE 1.4

2005-05-26 Thread Steve Brownlee
This might be a little off topic, depending on if anyone has done some CFX
development before.  In fact, it might not be related to ColdFusion at all,
but I'm not sure.  We use 7 custom CFX tags in our application, and they've
been humming along happily since we upgraded to CF7.  However, I wanted to
make an improvement to some of them recently, and after I build the tags
again, I get the following error when they try to execute.

Error processing CFX custom tag "CFX_com.printcafe.cfx.cfx_WDDXTOJS".
A ClassCastingException occured. The CFX custom tag
"CFX_com.printcafe.cfx.cfx_WDDXTOJS" needs to implement
"com.allaire.cfx.CustomTag" interface. Please be sure to add this to your
custom class.


Now, being a C# guy, I'm not 100% comfortable with Java yet, but my intuition
tells me that it's the different Java runtime we're using now (we upgraded
all development machines to 1.4.2_07).  Also, there's an innocuous line of
documentation from Livedocs - "You can use a wide range of Java development
environments, including the Java Development Kit (JDK) v 1.3.1 from Sun" -
that makes me think I'm on the right track.  Perhaps CFX.JAR isn't 1.4
compatible?

Anyone have experience with this?

Thanks in advance,
Steve

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207789
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT Checking for video plugins

2005-05-26 Thread John Dowdell
Stuart Kidd wrote:
> Does anyone know of any client side code that checks for a certain video
> plugin? Like:
> If user has RealPlayer
> do
> If user has Windows Media
> do
> If user has Quicktime
> do
> Else

Maybe "if user has Macromedia Flash Player v6.0 or greater"...?  ;-)

It's possible to poll most browsers to find what they have (check the 
plugins array, or try to create an ActiveX instance in IE/Win and 
VBScript -- websearch term "video detection javascript" pulls up many 
handlings), but you'd also have to check versioning if using recent 
codecs. I've seen a few sites which attempt this, like live365.com, but 
for me it has been 50/50 whether the script has recognized what my 
browser can do, and if the script doesn't work correctly, then the user 
can be locked out of content they can actually play.

That's why most sites seem to present a button array for people to 
choose one of the architectures (albeit without information on plugin 
version and content requirements), as well as bandwidth buttons.

Over the last year, many sites have moved to video through the 
Macromedia Flash Player to simultaneously reach a wider audience, 
simplify scripting development, and provide an overall better experience 
to site visitors.

Sounds self-interested, I know, but it's true ;-)

jd




-- 
John Dowdell . Macromedia Developer Support . San Francisco CA USA
Weblog: http://www.macromedia.com/go/blog_jd
Aggregator: http://www.macromedia.com/go/weblogs
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207788
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Weird SQL error

2005-05-26 Thread Rick Root
Rick Root wrote:
> Anyone ever seen this?
> 
> Error Occurred While Processing Request
> 7 >= 7
> 
> the query is a simple select query...
> 
> SELECT * FROM GALLERY_PHOTOS
> where
> blog_id=
> and gallery_id= value="#GALLERY_ID#">
> 
> (I don't know what database is involved, the person who reported this 
> bug to me didn't specify... she also said it was sporadic)

This is occuring in SQL Server 2000.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207787
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE:__Structures_vs._"Real_Structures"

2005-05-26 Thread S . Isaac Dealey
> Good tip Isaac - thanks.

welcome

s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207786
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX 7 and JRun updater 5

2005-05-26 Thread Steven Erat
Boby posted that remark on April 9th, before the announcement was made. 
At that time, QA hadn't finished regression tests.

Updater 5 for JRun is supported with CFMX 7.




Bert Dawson wrote:

>OK, i've just been pointed to Brandon Purcell's blog which says:
>"CFMX 7 with JRun 4 U5 is tested and supported. "
>(http://www.bpurcell.org/blog/index.cfm?mode=entry&entry=1053)
>
>I'd still be interested to know what Boby was talking about...
>
>Cheers
>Bert
>
>On 5/26/05, Bert Dawson <[EMAIL PROTECTED]> wrote:
>  
>
>>"Macromedia recommends that ALL customers apply Updaters."
>>(http://www.macromedia.com/support/updaters/terms.html)
>>
>>But someone called Boby Thomas (from macromedia?) posted this on MM forums:
>>"updater5 of JRun 4 has not yet been certified to be used with CF7"
>>(http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=69&threadid=995120)
>>
>>Should i go ahead an install JRun Updater 5?
>>If so, can anyone explain what Boby is talking about?
>>
>>Running win2k and CFMX 7 ent.
>>
>>Cheers
>>Bert
>>
>>
>>


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207785
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: mysql + coldfusion: counting and pointing to table columns

2005-05-26 Thread S . Isaac Dealey
> One may argue that this is a serious database design flaw.
> The argument is probably correct, but please note that I'm
> just experimenting with ColdFusion in order to learn more
> about this language (I've only started this month).

I'd make that argument. :) Although if you want to get metadata from
your database there are some decent db-platform independent ways to
accomplish this using JDBC. I wrote an article about it in the
ColdFusion Developer's Journal which can be found here:

http://coldfusion.sys-con.com/read/45569.htm

Although if you're using CodlFusion version 7 you can probably avoid
using the undocumented (and therefore unsupported)
coldfusion.server.serviceFactory object by using the new ColdFusion
Adminsitration API (a collection of built-in CFC's).


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207784
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: _Structures_vs._"Real_Structures"

2005-05-26 Thread Mark A Kruger
Good tip Isaac - thanks.

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 26, 2005 10:11 AM
To: CF-Talk
Subject: RE:_Structures_vs._"Real_Structures"


> This is what Isaac was talking about.

> on CFMX 7 arraySum(queryname.coluname) doesn't work.  But
> arraySum(queryname['columnName']) does.  The trick is
> getting a reference to
> the array to return from the call.

> -Mark

With MX I actually used queryname[variable].toArray() in the
QueryColumnToArray() function -- it's undocumented but it's consistent
(and iirc using them as arrays in general is undocumented) -- so if it
changes in the future (unlikely I think) the functioin will need to
revert to something else -- worse case scenario it could revert to
looping over the query and building the array manually... hopefully it
will never come to that.


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207783
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Structures vs. "Real Structures"

2005-05-26 Thread Mark A Kruger
ha...

-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 26, 2005 10:08 AM
To: CF-Talk
Subject: RE: Structures vs. "Real Structures"


> -Original Message-
> From: Mark A Kruger [mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 26, 2005 10:41 AM
> To: CF-Talk
> Subject: RE: Structures vs. "Real Structures"
>
> This is what Isaac was talking about.
>
> on CFMX 7 arraySum(queryname.coluname) doesn't work.  But
> arraySum(queryname['columnName']) does.  The trick is getting a reference
> to
> the array to return from the call.

Yup - my bad.

I've been doing that since CF 4.5 and still screw it up.

Doing "queryname.columnname" will automatically give you the value of the
first row (same as "queryname.columnname[1]").

Using the index notation does return an array reference.

Now I'll tattoo that on my eyelid for easy reference...

Jim Davis







~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207782
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flash form group of checkboxes

2005-05-26 Thread Ken Ferguson
I think you mean actionscript. If you're using flash forms, you won't be 
able to use javascript.

Damien McKenna wrote:

>>How do I create a requirement that at least one checkbox out of a
>>group of checkboxes must be checked without having to resort to
>>server logic?
>>
>>
>
>Javascript, though because Javascript can be turned off in most browsers
>you'll want to also do server validation.
>
>  
>


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207781
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Puzzled...

2005-05-26 Thread Eric J. Hoffman
Got it, thanks. 
CreateODBCDate was added and poof.

Sometimes the simplestdoh!



-Original Message-
From: Gaulin, Mark [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 26, 2005 12:28 PM
To: CF-Talk
Subject: RE: Puzzled...

That GROUP BY may not be what you want... It will collapse all records
where the qty's are the same into one record. 

-Original Message-
From: Eric J. Hoffman [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 26, 2005 1:02 PM
To: CF-Talk
Subject: Puzzled...

Still can't figure out what is wrong with this query:


Select  
COUNT (customer_orders.id) as totqty,
SUM (customer_orders_prod.qty) as sumqty,
customer_orders_prod.qty
FROM customer_orders
LEFT OUTER JOIN customer_orders_prod on customer_orders.id =
customer_orders_prod.order_id
WHERE customer_orders.orderdate BETWEEN #start1a# AND
#DateAdd('D', 1, end1a)#
AND customer_orders_prod.product_id = 102
AND qty > 0
GROUP BY customer_orders_prod.qty
ORDER by customer_orders_prod.qty ASC


It gets all data summed up rather than just for the records for the date
range.  What am I doing wrong here?

Thanks,

Eric





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207780
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Puzzled...

2005-05-26 Thread Gaulin, Mark
That GROUP BY may not be what you want... It will collapse all records
where the qty's are the same into one record. 

-Original Message-
From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 26, 2005 1:02 PM
To: CF-Talk
Subject: Puzzled...

Still can't figure out what is wrong with this query:


Select  
COUNT (customer_orders.id) as totqty,
SUM (customer_orders_prod.qty) as sumqty,
customer_orders_prod.qty
FROM customer_orders
LEFT OUTER JOIN customer_orders_prod on customer_orders.id =
customer_orders_prod.order_id
WHERE customer_orders.orderdate BETWEEN #start1a# AND
#DateAdd('D', 1, end1a)#
AND customer_orders_prod.product_id = 102
AND qty > 0
GROUP BY customer_orders_prod.qty
ORDER by customer_orders_prod.qty ASC


It gets all data summed up rather than just for the records for the date
range.  What am I doing wrong here?

Thanks,

Eric



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207779
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Puzzled...

2005-05-26 Thread Paul Vernon
Are you sure you want a left outer join?


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207778
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX 7 and JRun updater 5

2005-05-26 Thread Bert Dawson
OK, i've just been pointed to Brandon Purcell's blog which says:
"CFMX 7 with JRun 4 U5 is tested and supported. "
(http://www.bpurcell.org/blog/index.cfm?mode=entry&entry=1053)

I'd still be interested to know what Boby was talking about...

Cheers
Bert

On 5/26/05, Bert Dawson <[EMAIL PROTECTED]> wrote:
> "Macromedia recommends that ALL customers apply Updaters."
> (http://www.macromedia.com/support/updaters/terms.html)
> 
> But someone called Boby Thomas (from macromedia?) posted this on MM forums:
> "updater5 of JRun 4 has not yet been certified to be used with CF7"
> (http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=69&threadid=995120)
> 
> Should i go ahead an install JRun Updater 5?
> If so, can anyone explain what Boby is talking about?
> 
> Running win2k and CFMX 7 ent.
> 
> Cheers
> Bert
>

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:20
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Search questions

2005-05-26 Thread Rick Root
I've been asked to investigate a method of making our documentation 
searchable.

We have a database driven FAQ, numerous CFM pages with "static" content, 
  and word/PDF documents.

We're currently running CFMX 6.1.

What are my options?  Verity can't do that in a single collection, right?

rick


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207776
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re[2]: OT: traffic monitoring software

2005-05-26 Thread cf-talk
Just counting all the traffic on all ports.
It is a dedicated Win2003 box for a customer.
Uwe

JvD> [EMAIL PROTECTED] wrote:
>> 
>> does s.o. know a good
>> traffic monitoring software
>> other than CommTraffic (Tamos) and
>> MRTG ?

JvD> What are the requirements? Do you want to monitoring network 
JvD> ports, IP addresses or on a higher layer?

JvD> Jochem

JvD> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207775
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


CFMX 7 and JRun updater 5

2005-05-26 Thread Bert Dawson
"Macromedia recommends that ALL customers apply Updaters."
(http://www.macromedia.com/support/updaters/terms.html)

But someone called Boby Thomas (from macromedia?) posted this on MM forums:
"updater5 of JRun 4 has not yet been certified to be used with CF7"
(http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=69&threadid=995120)

Should i go ahead an install JRun Updater 5?
If so, can anyone explain what Boby is talking about?

Running win2k and CFMX 7 ent.

Cheers
Bert

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207774
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Weird SQL error

2005-05-26 Thread Rick Root
Anyone ever seen this?

Error Occurred While Processing Request
7 >= 7

the query is a simple select query...

SELECT * FROM GALLERY_PHOTOS
where
blog_id=
and gallery_id=

(I don't know what database is involved, the person who reported this 
bug to me didn't specify... she also said it was sporadic)

Rick


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207773
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: RDS point Entry in CFMX7 developer Edition

2005-05-26 Thread David Manriquez
I see, 

But maeby I can restrict  the access to RDSServlet?...



David Manriquez 
[EMAIL PROTECTED] 
(+56-2) 43 00 155



-Mensaje original-
De: Dave Watts [mailto:[EMAIL PROTECTED] 
Enviado el: Jueves, 26 de Mayo de 2005 11:33
Para: CF-Talk
Asunto: RE: RDS point Entry in CFMX7 developer Edition

> I there , i was looking for a method to control the access to 
> the RDS and found some instruccion what are working for CFMX 
> 6.1 but i cant see the RDS entry point in CFMX7
>  /CFIDE/main/api.cfm (main folder do not exist on my server)
> 
>  Any ideas?
> 
>  Plus i cann se in the Web.xml
> 
> 
>   
>   RDSServlet
>   /CFIDE/main/ide.cfm
>   
> 

By default, you can't control access to RDS with CFMX very easily from your
web server. There's no actual file used by RDS requests - the server uses
the mapping you've found to automatically route requests with that URL
pattern to the RDS servlet.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207772
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Puzzled...

2005-05-26 Thread Eric J. Hoffman
Still can't figure out what is wrong with this query:


Select  
COUNT (customer_orders.id) as totqty,
SUM (customer_orders_prod.qty) as sumqty,
customer_orders_prod.qty
FROM customer_orders
LEFT OUTER JOIN customer_orders_prod on customer_orders.id =
customer_orders_prod.order_id
WHERE customer_orders.orderdate BETWEEN #start1a# AND
#DateAdd('D', 1, end1a)#
AND customer_orders_prod.product_id = 102
AND qty > 0
GROUP BY customer_orders_prod.qty
ORDER by customer_orders_prod.qty ASC


It gets all data summed up rather than just for the records for the date
range.  What am I doing wrong here?

Thanks,

Eric

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207771
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE:_Structures_vs._"Real_Structures"

2005-05-26 Thread S . Isaac Dealey
>> -Original Message-
>> From: Mark A Kruger [mailto:[EMAIL PROTECTED]
>> Sent: Thursday, May 26, 2005 10:41 AM
>> To: CF-Talk
>> Subject: RE: Structures vs. "Real Structures"
>>
>> This is what Isaac was talking about.
>>
>> on CFMX 7 arraySum(queryname.coluname) doesn't work.  But
>> arraySum(queryname['columnName']) does.  The trick is
>> getting a reference
>> to
>> the array to return from the call.

> Yup - my bad.

> I've been doing that since CF 4.5 and still screw it up.

> Doing "queryname.columnname" will automatically give you
> the value of the
> first row (same as "queryname.columnname[1]").

> Using the index notation does return an array reference.

> Now I'll tattoo that on my eyelid for easy reference...

Iirc I actually found that there were conditions in which array
notation didn't work... sometimes queryname[columname] worked and
other times it required queryname["#columnname#"]... not sure why --
though it was across different versions -- iirc the behavior on an
individual version of CF is consistent.

s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207770
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


CFMX7 and OSX 10.4 install issue

2005-05-26 Thread Tom McNeer
Hi,

I've posted this to the CF-Mac list, but haven't found a solution yet,
although Mark Drew has worked hard to help. So I'll check here to see
if a Mac person who's not watching that other list has ideas.

I'm having a problem installing CFMX7 on a new Powerbook running OSX
10.4. The machine came with 10.4 installed, and I've run the updater
to move it to 10.4.1.  I've read the various information about CFMX7
and OSX from Macromedia, Sean Corfield, et al.

So I started out by installing and updating JRun. This went fine.

However -- when I try to install CFMX7, I hit a snag. Everything's
fine until it gets to the point of asking for a CF Admin password.
Then it won't accept keyboard input. This occurs both when using the
graphical installer and when doing the whole thing from the command
line. In the graphical interface, it seems that the password field
won't even accept focus.

But in neither case can I enter a password.

Has anyone else experienced this? Has anyone else done a fresh install
of CFMX7 on Tiger? (I know several folks have successfully upgraded to
Tiger without breaking CFMX7.)

Or -- does anybody have any ideas, period?
-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207769
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


CF ODBC services

2005-05-26 Thread Bryan Stevenson
Hey All,

I've got CFMX 7 on my laptop for dev purposes, but I switched all the services 
to manual start instead of automatic so CF doesn't have to start everytime I 
start my laptop (just when I need it for dev).

Since I did that I can't get the CF ODBC services to stay running (after 
starting all othr CF services and leaving JRun admin service off as I don't use 
the admin).  They start and then stop right away with a message saying that 
some services only run when called on...but in CF Admin I do get some "ODBC 
service not running or installed" messages.

Any ideas?  Are those services dependant on other CF services?

TIA

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207768
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: mySQL, set preceeding zeros in auto_increment

2005-05-26 Thread Simon Cornelius P . Umacob
Sorry, I forgot to add a single quote:

data char(32) NOT NULL default '', 


Cheers,


[ simon.cpu ]  <-- often forgets small details such as this :)

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207767
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: mySQL, set preceeding zeros in auto_increment

2005-05-26 Thread Simon Cornelius P . Umacob
I hope I'm not mistaken, but I believe you *can* set the auto_increment number 
and pad it with leading zeroes.  Take for instance a table created using the 
query below:

CREATE TABLE blah (
  key int(12) unsigned zerofill NOT NULL auto_increment,
  data char(32) NOT NULL default '',
  PRIMARY KEY (key)
);

To set the auto_increment number, you just insert the number just like any 
other query:

INSERT INTO blah VALUES(0008, 'Lorem ipsum dolor');

To use auto increment, just set the value to zero or simply ignore it such that:

INSERT INTO blah VALUES(0, 'de Finibus Bonorum et Malorum');
or
INSERT INTO blah(data) VALUES('Gwapo ako, pero uwat gad la.');


Regards, 


[ simon.cpu ]


>I don't believe you can do that, you'll have to pad the number in your
>code.
>
>-- 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207766
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: ColdFusion 7 Enterprise

2005-05-26 Thread Ray Champagne
As far as I know, I think they are the exact same for the reasons that 
you're worried about...

Chad McCue wrote:
> Is it possible to develop on ColdFusion 7 developer edition and then move the 
> app to ColdFusion 7 enterprise? Is there anything that I should watch for 
> using the enterprise version, different setup issues, etc? First time using 
> enterprise and any information would be very helpful.
> 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207765
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


ColdFusion 7 Enterprise

2005-05-26 Thread Chad McCue
Is it possible to develop on ColdFusion 7 developer edition and then move the 
app to ColdFusion 7 enterprise? Is there anything that I should watch for using 
the enterprise version, different setup issues, etc? First time using 
enterprise and any information would be very helpful.



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207764
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


cfgraph weirdness

2005-05-26 Thread Ray Champagne
Hey all:

I have created a really simple app for graphing prices over a time 
period for a client.  I have tested it using our testing account, 
everything works fine.  I created a new account at our hosting company 
that is an IP only account, uploaded the same files, and tested.  For 
some reason, the page that used the cfgraph tag is not outputting the 
flash-based graph under the IP-only account.  Does cfgraph need to have 
a domain for some reason?  This is just weird

Ray
-- 
=
Ray Champagne - Senior Application Developer
CrystalVision Web Site Design and Internet Services
603.433.9559
www.crystalvision.org
=

The information contained in this transmission (including any
attached files) is CONFIDENTIAL and is intended only for the
person(s) named above. If you received this transmission in
error, please delete it from your system and notify us
immediately. If you are not an intended recipient, please note
that any use or dissemination of the information contained in this
transmission (including any attached files) and the copying,
printing, or retransmission of that information is strictly
prohibited. You can notify us by return email or by phone at
603.433.9559.

Thank you.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207763
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: js popup resizing ?

2005-05-26 Thread Bryan Stevenson
nevermindit's from the end of one of the sponsor links that Mike adds 
;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com
- Original Message - 
From: "Bryan Stevenson" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, May 26, 2005 8:27 AM
Subject: Re: js popup resizing ?


> WTF is going on??  where is that tiny.cfm/54 coming from...it sure as hell
> wasn't there when I posted??
>
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> phone: 250.480.0642
> fax: 250.480.1264
> cell: 250.920.8830
> e-mail: [EMAIL PROTECTED]
> web: www.electricedgesystems.com
>
>
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207762
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: js popup resizing ?

2005-05-26 Thread Bryan Stevenson
WTF is going on??  where is that tiny.cfm/54 coming from...it sure as hell 
wasn't there when I posted??

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207761
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: RDS point Entry in CFMX7 developer Edition

2005-05-26 Thread Dave Watts
> I there , i was looking for a method to control the access to 
> the RDS and found some instruccion what are working for CFMX 
> 6.1 but i cant see the RDS entry point in CFMX7
>  /CFIDE/main/api.cfm (main folder do not exist on my server)
> 
>  Any ideas?
> 
>  Plus i cann se in the Web.xml
> 
> 
>   
>   RDSServlet
>   /CFIDE/main/ide.cfm
>   
> 

By default, you can't control access to RDS with CFMX very easily from your
web server. There's no actual file used by RDS requests - the server uses
the mapping you've found to automatically route requests with that URL
pattern to the RDS servlet.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207760
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfexecute and wget

2005-05-26 Thread Tim Oommen
Wait I take that back, sorry the code you sent does work, but the sadly the 
result is the same. The process is still hanging in the task manager.

thanks again for you help.

Tim

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207759
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: mySQL, set preceeding zeros in auto_increment

2005-05-26 Thread Damien McKenna
I don't believe you can do that, you'll have to pad the number in your
code.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 
 

> -Original Message-
> From: mayo [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, May 26, 2005 11:00 AM
> To: CF-Talk
> Subject: mySQL, set preceeding zeros in auto_increment
> 
> I don't use mySQL that often. I need a 12 character auto_increment
> number. (I need to start with '01') I've been 
> searching for
> an hour an unable to find how to set the auto_increment number.
>  
> Thx
>  
> mayo
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207758
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE:_Structures_vs._"Real_Structures"

2005-05-26 Thread S . Isaac Dealey
> This is what Isaac was talking about.

> on CFMX 7 arraySum(queryname.coluname) doesn't work.  But
> arraySum(queryname['columnName']) does.  The trick is
> getting a reference to
> the array to return from the call.

> -Mark

With MX I actually used queryname[variable].toArray() in the
QueryColumnToArray() function -- it's undocumented but it's consistent
(and iirc using them as arrays in general is undocumented) -- so if it
changes in the future (unlikely I think) the functioin will need to
revert to something else -- worse case scenario it could revert to
looping over the query and building the array manually... hopefully it
will never come to that.


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207757
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Structures vs. "Real Structures"

2005-05-26 Thread Jim Davis
> -Original Message-
> From: Mark A Kruger [mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 26, 2005 10:41 AM
> To: CF-Talk
> Subject: RE: Structures vs. "Real Structures"
> 
> This is what Isaac was talking about.
> 
> on CFMX 7 arraySum(queryname.coluname) doesn't work.  But
> arraySum(queryname['columnName']) does.  The trick is getting a reference
> to
> the array to return from the call.

Yup - my bad.

I've been doing that since CF 4.5 and still screw it up.

Doing "queryname.columnname" will automatically give you the value of the
first row (same as "queryname.columnname[1]").

Using the index notation does return an array reference.

Now I'll tattoo that on my eyelid for easy reference...

Jim Davis





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207756
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


mySQL, set preceeding zeros in auto_increment

2005-05-26 Thread mayo
I don't use mySQL that often. I need a 12 character auto_increment
number. (I need to start with '01') I've been searching for
an hour an unable to find how to set the auto_increment number.
 
Thx
 
mayo


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207755
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


tag between tag

2005-05-26 Thread Aldwin Sabornido
Thanks, guys for replying.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207754
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Structures vs. "Real Structures"

2005-05-26 Thread Mark A Kruger
This is what Isaac was talking about.

on CFMX 7 arraySum(queryname.coluname) doesn't work.  But
arraySum(queryname['columnName']) does.  The trick is getting a reference to
the array to return from the call.

-Mark


-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 24, 2005 7:56 PM
To: CF-Talk
Subject: RE: Structures vs. "Real Structures"


> -Original Message-
> From: Rebecca Wells [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, May 24, 2005 6:58 PM
> To: CF-Talk
> Subject: RE: Structures vs. "Real Structures"
>
> So, if you can't just use the structname[structKey] kind of reference for
> a query then how can you reference reference a query value using this
> model, if at all?

You can use either dot or indexed notation to access the query, just not
structure functions to work with it.

For example you CAN do queryname.columnname - this is exactly like doing
structure.keyname.  You can also do queryname["columnname"]. However you
can't do StructClear(queryname).

But as I said you can use most array functions on query columns (generally
those that don't affect the order or the number of items in the array).
Want a total of a column of numbers?  Don't loop!  Use
ArraySum(queryname.columname).

It's pretty powerful stuff when you know the limitations.

Jim Davis







~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207753
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Structures vs. "Real Structures"

2005-05-26 Thread Mark A Kruger
This does not appear to work in CFMX 7.

When I try it on a column that is an INT or a DECIMAL I get the error

The value of the parameter 1, which is currently "get.dev_id", must be a
interface java.util.List value.

-Is it specific to a version?

-Mark


-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 24, 2005 7:56 PM
To: CF-Talk
Subject: RE: Structures vs. "Real Structures"


> -Original Message-
> From: Rebecca Wells [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, May 24, 2005 6:58 PM
> To: CF-Talk
> Subject: RE: Structures vs. "Real Structures"
>
> So, if you can't just use the structname[structKey] kind of reference for
> a query then how can you reference reference a query value using this
> model, if at all?

You can use either dot or indexed notation to access the query, just not
structure functions to work with it.

For example you CAN do queryname.columnname - this is exactly like doing
structure.keyname.  You can also do queryname["columnname"]. However you
can't do StructClear(queryname).

But as I said you can use most array functions on query columns (generally
those that don't affect the order or the number of items in the array).
Want a total of a column of numbers?  Don't loop!  Use
ArraySum(queryname.columname).

It's pretty powerful stuff when you know the limitations.

Jim Davis







~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207752
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: tag between tag

2005-05-26 Thread Joe Rinehart
Aldwin,

The cfif itself isn't the source of the slowdown - it's most likely
your database itself.  If tbllisting is of any size, you'll want to
make sure it's indexed by the listingID column.

-Joe

On 5/26/05, Aldwin Sabornido <[EMAIL PROTECTED]> wrote:
> >Show your code - will make it easier to debug.
> >
> >
> >
> >-Original Message-
> >From: Aldwin Sabornido [mailto:[EMAIL PROTECTED]
> >Sent: 26 May 2005 15:19
> >To: CF-Talk
> >Subject:  tag between  tag
> >
> >Hello! Great Masters of Cold Fusion..
> >Can you help me with this problem, it seems to me that  is slow when
> >you are going to place it inside  tag... Please give me your
> >opinion...
> > Aldwin
> 
> 
> 
> Here is my code... Thanks in advance for replying...
> 
> 
>  select * from tblisting
>  
>where listingID = #listingID#
>  
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207751
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: tag between tag

2005-05-26 Thread Dave Watts
> Can you help me with this problem, it seems to me that  
> is slow when you are going to place it inside  
> tag... Please give me your opinion...

What makes you think it's any slower there than anywhere else?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207750
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: tag between tag

2005-05-26 Thread Robertson-Ravo, Neil (RX)
How big is tblisting? How many rows? What type of data types?



-Original Message-
From: Aldwin Sabornido [mailto:[EMAIL PROTECTED] 
Sent: 26 May 2005 15:30
To: CF-Talk
Subject: RE:  tag between  tag

>Show your code - will make it easier to debug.
>
>
>
>-Original Message-
>From: Aldwin Sabornido [mailto:[EMAIL PROTECTED] 
>Sent: 26 May 2005 15:19
>To: CF-Talk
>Subject:  tag between  tag
>
>Hello! Great Masters of Cold Fusion..
>Can you help me with this problem, it seems to me that  is slow when
>you are going to place it inside  tag... Please give me your
>opinion...
> Aldwin



Here is my code... Thanks in advance for replying...


 select * from tblisting
 
   where listingID = #listingID#
 




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207749
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: tag between tag

2005-05-26 Thread Aldwin Sabornido
>Show your code - will make it easier to debug.
>
>
>
>-Original Message-
>From: Aldwin Sabornido [mailto:[EMAIL PROTECTED] 
>Sent: 26 May 2005 15:19
>To: CF-Talk
>Subject:  tag between  tag
>
>Hello! Great Masters of Cold Fusion..
>Can you help me with this problem, it seems to me that  is slow when
>you are going to place it inside  tag... Please give me your
>opinion...
> Aldwin



Here is my code... Thanks in advance for replying...


 select * from tblisting
 
   where listingID = #listingID#
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207748
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: tag between tag

2005-05-26 Thread Robertson-Ravo, Neil (RX)
Show your code - will make it easier to debug.



-Original Message-
From: Aldwin Sabornido [mailto:[EMAIL PROTECTED] 
Sent: 26 May 2005 15:19
To: CF-Talk
Subject:  tag between  tag

Hello! Great Masters of Cold Fusion..
Can you help me with this problem, it seems to me that  is slow when
you are going to place it inside  tag... Please give me your
opinion...
 Aldwin



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207747
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


tag between tag

2005-05-26 Thread Aldwin Sabornido
Hello! Great Masters of Cold Fusion..
Can you help me with this problem, it seems to me that  is slow when you 
are going to place it inside  tag... Please give me your opinion...
 Aldwin

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207746
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Flash Form future date validation

2005-05-26 Thread Damien McKenna
> How do I create a validation that only allows future dates in a
> datefield without having to resort to server logic?

See my other reply.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207745
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Flash form group of checkboxes

2005-05-26 Thread Damien McKenna
> How do I create a requirement that at least one checkbox out of a
> group of checkboxes must be checked without having to resort to
> server logic?

Javascript, though because Javascript can be turned off in most browsers
you'll want to also do server validation.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207744
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RDS point Entry in CFMX7 developer Edition

2005-05-26 Thread David Manriquez
I there , i was looking for a method to control the access to the RDS and found 
some instruccion what are working for CFMX 6.1 but i cant see the RDS entry 
point in CFMX7
 /CFIDE/main/api.cfm (main folder do not exist on my server)

 Any ideas?

 Plus i cann se in the Web.xml



RDSServlet
/CFIDE/main/ide.cfm



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207743
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Flash form group of checkboxes

2005-05-26 Thread Chris Velevitch
How do I create a requirement that at least one checkbox out of a
group of checkboxes must be checked without having to resort to server
logic?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207742
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Flash Form future date validation

2005-05-26 Thread Chris Velevitch
How do I create a validation that only allows future dates in a
datefield without having to resort to server logic?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207741
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfexecute and wget

2005-05-26 Thread Tim Oommen
Thanks for the response. Unfortunantly the code you send no longer lauches wget.
The first thing you have in the argument is /c correct?

Tim

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207740
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to deal with the african money scams

2005-05-26 Thread Robertson-Ravo, Neil (RX)
Well, you have kinda given them the opportunity to do this so unless you
lock down the process - maybe by approval etc then who is to say they will
not hit your site form another IP range?  And what about Legitimate users
from your identified address range?

You are on a hiding to nothing if you think you can stop this - without
altering your registration process.





-Original Message-
From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] 
Sent: 26 May 2005 12:33
To: CF-Talk
Subject: How to deal with the african money scams

I'm getting more and more of those north african money scammers hitting
my site.
 
Basically they'll go to a page like www.onlysimchas.com/classifieds and
register an account to send private messages to users, en masse, with
their millions of dollars tied up in some imaginary bank, etc...
 
I've found that they all seem to originate from a Cote D'Ivoire ISP
called afnet.net
 
What's the best way to block this ISP's IP block (the ip they used today
is 213.136.122.149  from getting to my server
 
IIS5, CFMX6.1, W2kserver
 
Thansk 

 
NOTICE: If received in error, please destroy and notify sender.  Sender does
not waive confidentiality or privilege, and use is prohibited. 
 




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207739
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: traffic monitoring software

2005-05-26 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote:
> 
> does s.o. know a good
> traffic monitoring software
> other than CommTraffic (Tamos) and
> MRTG ?

What are the requirements? Do you want to monitoring network 
ports, IP addresses or on a higher layer?

Jochem

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207738
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: traffic monitoring software

2005-05-26 Thread Robertson-Ravo, Neil (RX)
Are we talking about all traffic (regardless of protocol).  IIS provides
piss poor logs for analysis - certainly in verbose format.



-Original Message-
From: Damien McKenna [mailto:[EMAIL PROTECTED] 
Sent: 26 May 2005 14:13
To: CF-Talk
Subject: RE: traffic monitoring software

How is this different to log analysis?

-- 

Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207737
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: traffic monitoring software

2005-05-26 Thread Damien McKenna
How is this different to log analysis?

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207736
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to deal with the african money scams

2005-05-26 Thread Damien McKenna
> What's the best way to block this ISP's IP block (the ip they 
> used today
> is 213.136.122.149  from getting to my server

You can do it in the master settings for IIS.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207735
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


re: cfform / cfform.js issues

2005-05-26 Thread Tim Blankenship
We do not run Norton but we do use McAfee.
The pages have been up for a few years without this issue.

Another note, it is on all forms on the site in multiple directories. When the 
user submits I get an error the some variable is not defined but it is. But the 
value in the form is not passed on some people. I still can't rule out 
permissions. THe web server was added to active directory. Still dazed and 
confused

> look at source code when u submit also is there a chance norton is 
> running on any of these machines its not working on?
> 
> ~Dave the disruptor~ 
> 
> 
> From: Tim Blankenship <[EMAIL PROTECTED]>
> Sent: Wednesday, May 25, 2005 9:48 PM
> To: CF-Talk 
> Subject: cfform / cfform.js issues 
> 
> Additional info
> Works on Windows 2000 machines but intermitent on XP.
> Co-worker goes to the form and submits and the dump of the form is 
> empty.
> I log in to the machine and the dump shows the forms value correctly.
> Co-worker is an Admin on his box and a domain Admin so that rules out 
> permissions.
> 
> > About 2 weeks ago the issue started. Only thing that we know has 
> > changed it the webserver has been joined to a new domain.
> > 
> > I have 2 cfm pages. 
> > 1. Form
> > 2. Action page
> > 
> > Here is the form
> > 
> 
> > SELECT DISTINCT USERNAME
> 
> > FROM SITEUSERS
> 
> > WHERE GROUPNAME = 'Desktop Engineering'
> > 
> 
> >  
> 
> > 
> > size="1"
> > query="GETIDETEAM"
> > value="USERNAME"
> > Display="USERNAME"
> > required="YES"> 
> > 
> 
> > 
> 
> > 
> > 
> > action page is one line
> > 
> > 
> > Problem: I and a few others can run this fine but for some they get 
> an 
> > empty struct.
> > 
> > Other info:
> > CFMX 6.1 standard on top of IIS 5 /W2K Server
> > 
> > IIS log errors:
> > Good (me)
> > 2005-05-25 16:52:17 10.160.14.178 ITSDO\TB6859 150.233.68.45 80 POST 
> 
> > /softfusion/test_engine_teammember.cfm CSR=2976 200 Mozilla/4.
> > 0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+(R1+1.5);+.NET+CLR+1.1.
> 
> > 4322)
> > Bad (not me)
> > 2005-05-25 16:54:13 10.160.14.221 ITSDO\SB3643 150.233.68.45 80 GET 
> 
> > /softfusion/test_edit_teammember.cfm CSR=2976 200 Mozilla/4.
> > 0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322)
> > 2005-05-25 16:54:13 10.160.14.221 - 150.233.68.45 80 GET 
> > /CFIDE/scripts/cfform.js - 304 Mozilla/4.0+(compatible;+MSIE+6.
> > 0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322)
> > 
> > Things tried
> > moved to unsecure directory
> > added scriptSrc argument to cfform, copied cfform.js to same 
> directory 
> > as page, made a directory in my project cfide/scripts and copied it 
> 
> > there.
> > 
> > We are supposed to have all the same browser setting so that should 
> 
> > not be an issue. 
> > Security is controlled by IIS and it is set to Intergrated WIndows 
> > Authentication. In the error above the script, cfform.js does not 
> have 
> > a user defined but does have the IP so I would think that might be 
> the 
> > problem but am not sure.
> > 
> > Any suggestions are appreciated, Tim
> > [EMAIL PROTECTED]
> com
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207734
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   >