Paranoid programming...

2000-11-02 Thread Larry W. Virden
Okay - bear with me here folk! Imagine one has a database (for example Oracle) which requires a user id and password to access. Now, imagine writing an application to let joe user to look up and insert info into this table. HOWEVER, we do not want to generally publish the user id and password;

Re: ColdFusion is vulnerable?

2000-11-02 Thread Angel Stewart
I disagree. Especially with Microsoft Products. With that company I have resigned to taking a wait and see approach. If What I have now works, and works well, then I am not going to upgrade to the 'next best thing'. When the first patch or "Service Pack" comes out, I go see what was fixed, and wh

RE: CF and Flash problem

2000-11-02 Thread Paul Ihrig
isnt there an onload event in F5? you should be able to use that to check your variable frame num by using geturl parameter? not sure. -paul > -Original Message- > From: S R [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, November 01, 2000 3:30 PM > To: CF-Talk > Subject: RE: CF and Fla

RE: conference info

2000-11-02 Thread Paul Ihrig
The Marriott Wardman Park provides the following shuttle information: AIRPORT SERVICES: (no hotel shuttle) RONALD REAGAN A/P: 8 MILES TAXI: APPROX. $17 SUPER SHUTTLE $8 PER PERSON Taxis and Super Shuttle located outside baggage claim. Please advise if we can be of

Sending e-mail in a batch

2000-11-02 Thread ryo watanabe
This is a multi-part message in MIME format. --=_NextPart_000_000D_01C044A2.2579BDA0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Hi, I was wondering what would be the best way to send e-mail in a batch. = Say batch of 100 e-mail messa

RE: Paranoid programming...

2000-11-02 Thread Paul Johnston
How about storing some of the information using a one way hash (ie MD5)? This can't be unencoded (or at least, it's pointless to try). This encrypts a string the same way each time, so if you have a password, you can put the same one in, and you always get the same result. The problem is that yo

RE: Paranoid programming...

2000-11-02 Thread Shane Witbeck
Create a separate user/pass and authenticate through email? i.e. they supply a user/pass to get the db user/pass sent to them via email. -Original Message- From: Larry W. Virden [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 4:41 AM To: CF-Talk Subject: Paranoid programming.

Re: CF listen to >1 port?

2000-11-02 Thread Chris Norloff
>At 15:59 10/30/00 -0500, you wrote: >>Can Cold Fusion listen to more than one port? > >I'm a little unsure what you are getting at, I think you set your >webserver up to run on whatever ports you like, say 80 and 443. >But no matter what port a request comes in to your webserver on, >your webse

Re: Free web hosting

2000-11-02 Thread Steve Nelson
cfm-resources.com Steve Nelson Haryono wrote: > > I want to upload my web site(ColdFusion), but I don't know where I can get > free web hosting? > Can you tell me where i can get free web hosting? so I can upload my web > site free. > > >---

RE: Paranoid programming...

2000-11-02 Thread Paul Johnston
This is not a secure solution (which is what I assume you are after). What is to stop someone malicious getting/intercepting the email? Sending a username and password over email is a hackers dream! You cannot pass any variables to anyone except the cold fusion server. There has to be some form

RE: CFTRY in Application.cfm?

2000-11-02 Thread Chris Norloff
Thanks. I like the Fusebox approach. We may go that way for our next wave of building. Chris Norloff -- Original Message -- From: "Christopher P. Maher" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Tue, 31 Oct 2000 15:11:47 -0500 >> Darn. So I

Re: CFPOP

2000-11-02 Thread Howie Hamlin
Not all emails have a reply-to header so it's possible that this is blank. What you might try is using the From var if the replyto is blank. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's mos

Re: Paranoid programming...

2000-11-02 Thread Steve Nelson
How about store the username/password in a variable that is obtained from some other place? so instead of doing this: You would need to pull that variable from somewhere, maybe from another database, maybe from a file, that would be up to you. But this would keep the username/password out o

Re: Sending e-mail in a batch

2000-11-02 Thread Steve Nelson
I do that all the time. It's a very powerful method of emailing users because it helps to spread the load out on both your mail server and your CF server. Here's the code I use. User_newsletter_logs has two fields: user_id, date_sent, first I load that table with the users I'm sending the messa

Querying a text File

2000-11-02 Thread Corina S. Moore
All, I am trying to query a text file and am getting the following error: "[Microsoft][ODBC Text Driver] Cannot update. Database or object is read-only." I have created the datasource in CFAdmin and it verifies. I have complete access to the File and it is not set to Read Only. Currently I

Re: Paranoid programming...

2000-11-02 Thread Larry W. Virden
From: Steve Nelson <[EMAIL PROTECTED]> How about store the username/password in a variable that is obtained from some other place? so instead of doing this: You would need to pull that variable from somewhere, maybe from another database, maybe from a

generating random passwords for a db field

2000-11-02 Thread Shane Witbeck
What is the BEST way to generate random passwords to populate an existing field in a db. I tried using the RandRange(1, 1) function to do this but wound up generating the same random number for every record instead of a different random number for every record. The passwords generated do n

Re: Re: Sending e-mail in a batch

2000-11-02 Thread ryo watanabe
Thanks for the help! What would you suggest for the numbers of messages and the interval? ryo - Original Message - From: "Steve Nelson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, November 02, 2000 8:46 AM Subject: Re: Sending e-mail in a batch > I do that all

RE: generating random passwords for a db field

2000-11-02 Thread Scott J. Brader
You could use several methods to accomplish this. One, is to use Rob Bilson's CF_RandomPassword tag. I've used it a number of times and it works very well. You can find information for it at Allaire's Tag Gallery, or whatever they're calling it now. http://devex.allaire.com/developer/gallery/info

RE: Paranoid programming...

2000-11-02 Thread Gavin Myers
How about this: you have a database, here are the table names: password / content password would be like this: :654312324968765132165463213216479897 :6546464634455678998545613213 :54546465465f6asa6sfas1z3x2cz6x5v4a64 content would be like this: : : now, i do not know if this would

Re: Paranoid programming...

2000-11-02 Thread Deanna L. Schneider
Larry, Is it select access to the data that is an issue? Or is it update/insert/delete? I would start by suggesting that you create another user in the Oracle db and grant that user the barest minimum access to the tables that is necessary. Use this "other" user as the web connection. *

RE: Displaying decimal part as a fraction...

2000-11-02 Thread Simon Horwith
David, Just wanted to mention that if you use the code i gave you, you SHOULD account for .05 and .25 either specifically or by doing a step -1, not -2. Also, all other odd numbers result in no output, so you need to handle that as well.

RE: generating random passwords for a db field

2000-11-02 Thread Paul Johnston
There are many ways to do it. There are custom tags to do it. Just to show how easy it is, here is a random password generator you can do what you want with: watch for the text wrapping! The textstring is one line. You can make this a custom tag if you want. -CF Code-

RE: generating random passwords for a db field

2000-11-02 Thread Scott Wolf
Shane, I would suggest using the CF_RandomPassword Custom Tag that's available on Allaire's website. It's what I use when I need to generate a pw, it works really well. Hopefully that helps. Scott Wolf Goodfriend Computer Training -Original Message- From: Shane Witbeck [mailto:[EMAIL P

CFPOP - replyto variable

2000-11-02 Thread Jake Hileman - Patmos
I can't seem to get the replyto variable to pull out the reply information. I've got to be able to reply to email messages online... what good is web based email if you can't reply! :-) Here's some code.. the #replyto# is coming up blank.. when the senders email should be showing up. Fro

Re: Paranoid programming...

2000-11-02 Thread Larry W. Virden
From: "Deanna L. Schneider" <[EMAIL PROTECTED]> Larry, Is it select access to the data that is an issue? Or is it update/insert/delete? I would start by suggesting that you create another user in the Oracle db and grant that user the barest minimum access to the tables tha

Cold Fusion Executive Service?

2000-11-02 Thread Bill Edstrom, Jr.
Under NT or Windows 2000 CF installs 3 services: Cold Fusion Application Server Cold Fusion Executive Cold Fusion RDS I understand the function of the CF Application Server and RDS. What is the Cold Fusion Executive service for? Is it necessary to have it running. There doesn't seem to be any li

Reporting Packages

2000-11-02 Thread cr.alvarado
We are pretty much a UNIX shop here. Solaris / Sun Servers all the way. We started using Cold Fusion as an alternative to PERL a while back and since we are in a UNIX environment Crystal Reports is just not a good solution. Can anyone recomend any good reporting packages similar to Crystal repor

Re: Cold Fusion Executive Service?

2000-11-02 Thread Howie Hamlin
I think that one does CFMail and scheduling... Regards, Howie - Original Message - From: "Bill Edstrom, Jr." <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, November 02, 2000 9:29 AM Subject: Cold Fusion Executive Service? > Under NT or Windows 2000 CF installs 3

Re: Reporting Packages

2000-11-02 Thread Larry W. Virden
Some of our local developers (we are a strictly SPARC Solaris shop as well) are using Oracle Reports for doing their reporting. We use the new cfexecute to invoke the oracle reports app with appropriate command line arguments... -- Larry W. Virden mailto:[EMAIL PROTECTED]> http://www.purl.org

RE: SQL Server 7.0 Stored Procedures

2000-11-02 Thread Jay White
OK, I figure out my problem with truncated output parameters in stored procedures. When you create the parameter with CF, there is an 'optional' MAXLENGTH parameter that you can set. If you do not specify the MAXLENGTH for varchar, it defaults to 255. That explains the truncation of the varchar

Re: Paranoid programming...

2000-11-02 Thread Steve Nelson
true the username/password data does need to sit somewhere. Although with this method below you could store the data in a file that you are SURE is secured. This is an interesting dilemma. I'm curious to know if you'll find the solution you want. I've had the similar issues of how to store

Re: Sending e-mail in a batch

2000-11-02 Thread Steve Nelson
I usually just do a calculation to determine that. Figure out how long you want the email to span over. 1 hour? 1 day? 1 week? etc. Then divide that by the number of emails that need to go out and you'll be able to figure out how many to send. This depends on how much load you think your serve

Re: Paranoid programming...

2000-11-02 Thread Larry W. Virden
From: Steve Nelson <[EMAIL PROTECTED]> My solution ended up being a combination, the key was both in the code AND in the database. that way you have to break into both servers to access the full key. Not a perfect solution, but better than if it was only in one place.

OT: Text box widths in Netscape...

2000-11-02 Thread Rees, Mark (TWIi London)
Text box: Textarea: Both of these work in Netscape, you can use styles to override those values in ie. The values for both are in characters by the way. Cheers Mark -Original Message- From: Scott, Andrew [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 3:25 AM To: CF-Talk

SQL Question

2000-11-02 Thread Kevin Schmidt
This is a multi-part message in MIME format. --=_NextPart_000_000A_01C044B4.AD1069F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Gotta question. This is my lack of advanced SQL knowledge making itself = known. Here is the query: SELEC

RE: CFHEADER

2000-11-02 Thread Chris Norloff
Well, this is what I use (be sure to put it in the element). It meets HTML standards, but I'm having trouble with some caching proxies that seem to ignore any no-cache commands. Chris Norloff -- Original Message -- From: "Dylan Bromby" <[EMAIL PROTE

Map Program of US

2000-11-02 Thread Nathan Stanford
Does anyone know of a FREE or Cheap Map Program for the web where you can color in the states with different colors depending on a search. Like precentages with different colors from the search. Thanks alot, Nathan ---

Re: Paranoid programming...

2000-11-02 Thread Steve Nelson
how about instead of storing the username/pass in a database you store it in a file that can only be accessible by the CF user? not sure what you're doing, but you might be right about the web being too insecure. The web is "pretty" secure if you take a lot of precautions, but it's not invincibl

RE: Paranoid programming...

2000-11-02 Thread Gavin Myers
how about this: what about a dummy database? once again, i don't know how this would work but you make one database that serves as a relay to another... so the person submits the information to one, and on a time basis another off server database would link to that one, download the information

RE: SQL Question

2000-11-02 Thread Doyle, Mike
Are you using a numeric value instead of a string? In that case, take out the '' in your WHERE condition. What error are you receiving when you run the query? Mike "Room service!?? Send up a larger room!" -Groucho Marx -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]

RE: access query crashing server...

2000-11-02 Thread Dharmesh Goel
Hi Deanna, You may need to install Service Pack 2 (right now a RC2) for CF 4.51. I found this in the Release notes: Database The Microsoft Windows 2000 SP1 release caused ColdFusion to become unresponsive if a CFM page executed a CFQUERY against an MS Access data source target with SQL like

RE: SQL Server 7.0 Stored Procedures

2000-11-02 Thread Andy Ewings
Excelent!...thanks Jay. When I first started to use CF I always wondered why it didn't ask for the size of the varchar param Personally I think it would be usefull for this to be compulsory as it is at the other end in SQL. -- An

RE: Displaying decimal part as a fraction...

2000-11-02 Thread Rice, David
I passed it on the the programmer who is to use it, Katrina. I haven't heard back from him so apparently it did work. I apologize for not looking it over better from the beginning, Max. I stand chastised... ;) David -- -Original Message- From: Chapman, Katrina [m

Re: SQL Question

2000-11-02 Thread Kevin Schmidt
It can't determine the value if messagesenderuserid - Original Message - From: "Doyle, Mike" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, November 02, 2000 9:17 AM Subject: RE: SQL Question > Are you using a numeric value instead of a string? In that case, take

RE: CFHEADER

2000-11-02 Thread Dylan Bromby
Sorry, this one didn't work either. -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 7:09 AM To: CF-Talk Cc: [EMAIL PROTECTED] Subject: RE: CFHEADER Well, this is what I use (be sure to put it in the element). It meets HTML standards,

Killing a variable

2000-11-02 Thread Jon Gage
I'm setting a session variable when people log into our site. I was wondering if there's a way to "kill" the variable when they log out, so an isDefined("SESSION.LOGGEDIN") will return as false. Is this possible? Thanks, Jon -

RE: CFHEADER

2000-11-02 Thread Anthony Geoghegan
I've used this to good effect: Regards, Anthony Geoghegan. Lead Developer, What's On Where (WOW!) http://www.wow.ie mailto:[EMAIL PROTECTED] -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: 01 November 2000 19:39 To: CF-Talk Subject: CFHEADER This is a multi-p

RE: Killing a variable

2000-11-02 Thread Simon Horwith
~Simon -Original Message- From: Jon Gage [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 11:03 AM To: CF-Talk Subject: Killing a variable I'm setting a session variable when people log into our site. I was wondering if there's a way to "kill" the variable when they log o

oracle and long text

2000-11-02 Thread Won Lee
OK i have a string that is longer than 2000 chars. Oracle won't allow more than 2000 chars on an insert. What is the SQL command to add a substring to the end of what is already in the db? For those interested here is the code? NOTe: update is where i'm getting the problems

RE: Killing a variable

2000-11-02 Thread Dylan Bromby
You can't *delete* a var. You can delete a cookie, but that's because it's not a CF var. You can delete structures using StructDelete() but they're not the same thing. You can make the value of the var null, or use a session variable to indicate login/out status (that's what I've done in the past

RE: Killing a variable

2000-11-02 Thread Bob Silverberg
will clear all session variables. Don't forget to CFLOCK it. Bob -Original Message- From: Jon Gage [mailto:[EMAIL PROTECTED]] Sent: November 2, 2000 11:03 AM To: CF-Talk Subject: Killing a variable I'm setting a session variable when people log into our site. I was wondering if the

RE: Query assignment... copy or reference?

2000-11-02 Thread mherbene
To continue an old thread - for those of us still on 4.0x for a while, has anybody created a CFX to copy a query? Something to stand in for Duplicate().. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, October 06, 2000 3:39 PM To: '[EMAIL PROTECTED]' Cc: '[EM

RE: access query crashing server...

2000-11-02 Thread Eron Cohen
Deanna, I've just been having a similar problem. The funny thing in my case is that on my local development machine, the queries work fine. When I transfered the database and CFML templates up to my webserver, they would crash CF Server when the queries were run. The way I wound up resolving i

RE: Killing a variable

2000-11-02 Thread Chen, Yung-Chih (CIT)
so, once you Clear the all session variables, does that mean session variable does not exist? or session variable still exists but without any values! If I do this right after that statement can I use isdefined() to find out see if session variable is exist or not? -Original Message-

Fwd: MSDE Management Tool for End Users and ISV's? - Need Feedback and Support

2000-11-02 Thread paul smith
I thot some here might be interested in this. best, paul >From: Scott Lezberg <[EMAIL PROTECTED]> >To: "SQL 7 Discussions" <[EMAIL PROTECTED]> >Subject: MSDE Management Tool for End Users and ISV's? - Need Feedback >and Support >Date: Thu, 2 Nov 2000 10:33:42 -0500 >X-Mailer: Internet Ma

RE: Killing a variable

2000-11-02 Thread Andy Ewings
I think that StructClear will release the bit of memory that is storing the session vars so they will not be defined. I'm not 100% sure about this. -- Andrew Ewings Project Manager Thoughtbubble Ltd http://www.thoughtbubble.net -

RE: Killing a variable

2000-11-02 Thread Dylan Bromby
One good way to find out is...TRY IT. :) However...the answer is yes. Session vars will NOT exist after using StructDelete(session, "{varname}"). --Dylan -Original Message- From: Chen, Yung-Chih (CIT) [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 8:37 AM To: CF-Talk Subje

RE: Killing a variable

2000-11-02 Thread Simon Horwith
my understanding is that structClear leaves an empty structure in memory. You'd probably want to test with StructIsEmpty() after that. ~Simon -Original Message- From: Chen, Yung-Chih (CIT) [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 11:37 AM To: CF-Talk Subject: RE: Kill

Help with Query

2000-11-02 Thread Kelly Matthews
Ok I will lay this out best i can... I have a database I am dealing just with one small table. In that table we have: Auto_ID FirstName LastName SocialSecNum TestName TestDate If someone takes a test, we will use Driver Training as an example. They take the test and pass and their info is automat

RE: Killing a variable

2000-11-02 Thread Chen, Yung-Chih (CIT)
thank you very much! One other question: is the a way to detect when the session variable is expired? or to catch when session variable is expired? thanks YC -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 11:47 AM To: CF-Talk Subject:

CFPOP

2000-11-02 Thread Jake Hileman - Patmos
Is there an alternative to use CFPOP? the replyto var is obviously a bug in cf 4.5.1, sp1, so... is there anything else I can do? jake Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com

RE: access query crashing server...

2000-11-02 Thread Simon Halcrow
Hi Yep - I've seen this - apparently it was supposedly fixed in the SP 4.5.1. I had exactly the same effect - it was flatlining the CPU and the only way out was to bounce the CF server. I was running on Win2k/IIS5 - and apparently it's a known bug. It's definitely a problem with concatenating

StructFind

2000-11-02 Thread Lee Surma
StructFind throws an error when it doesn't find the key. How do I get around this? -- _ Lee Surma Public Radio International [EMAIL PROTECTED] 612-330-9223 _ -

RE: Help with Query

2000-11-02 Thread Andy Ewings
try... SELECT FROM WHERE testdate in (SELECT MAX(testdate) FROM GROUP BY testdate) -- Andrew Ewings Project Manager Thoughtbubble Ltd http://www.thoughtbubble.net --

RE: Killing a variable

2000-11-02 Thread Simon Horwith
Download the DC CFUG archive for july 2000 from www.figleaf.com, at : http://www.figleaf.com/figleafhome/cfug/cfugjuly00.zip. It contains an excellent example of how to manage session log-ins, log-outs, AND EXPIRATIONS with CFSession vars and Javascript. Just another cool app from Steve Drucker,

RE: Help with Query

2000-11-02 Thread Jason Powers
Can't you say something like SELECT name, max(date) FROM table WHERE date<@mydate-2years GROUP BY name Jason Powers Fig Leaf Software -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 11:51 AM To: CF-Talk Subject: Help with Query Ok

RE: StructFind

2000-11-02 Thread Simon Horwith
wrap it with CFTRY, and use CFCATCH to handle errors. You could try mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 12:00 PM To: CF-Talk Subject: StructFind StructFind throws an error when it doesn't find the key. How do I get around this? -- _ Lee Surma

RE: CF and Flash problem

2000-11-02 Thread S R
Hi Jason or anyone, I was able to pass a variable from CF to flash so that when you go to a particular page it will the page will pass a variable called framelabel to a cfinclude file that contains the flash code which looks like this: myMove.swf?framelabel=#framelabel# This works perfectly i

VSS and CF

2000-11-02 Thread S R
Hi Everyone, I just installed Microsoft Visual Source Safe to be used with CF. I've never used VSS, but basically what I am trying to do is this: set up so each person has a local area on his/her computer (ideally, this would be the same for all our machines just to keep things as simple as p

RE: Map Program of US

2000-11-02 Thread Nathan Stanford
Does no one know of a web map program other then cfx_map ?? > -Original Message- > From: Nathan Stanford [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, November 02, 2000 9:12 AM > To: CF-Talk > Subject: Map Program of US > > Does anyone know of a FREE or Cheap Map Program for the we

startup,parsing & shutdown

2000-11-02 Thread Steve Nelson
Does anyone know of a rule of thumb to improve the execution time on "Startup, Parsing & Shutdown"? I'm noticing when i do the detailed view of my execution times, this last step is commonly the thing that is slowing my page down. Steve Nelson http://www.SecretAgents.com Tools for Fusebox Develo

RE: CFHEADER

2000-11-02 Thread Jaime Garza
I have not followed all along, but it seems that the problem is whith the schema. I have a login schema that does just that. 1. Every one of my pages is NOT cached, so that CF is called everytime. 2. I have my session space either initialized (logged-in) or uninitialized (logged-out.) There are

RE: CF and Flash problem

2000-11-02 Thread Jason Powers
Funny, it works fine for me. Are you remembering that you need to append the querystring to both the call(IE) and the src(NS)? If that's not the problem, can I see your object and embed calls? Jason Powers Fig Leaf Software -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent

RE: startup,parsing & shutdown

2000-11-02 Thread Mark Johnson
This is not an answer, but a related question. =) Why does the detail view order the templates in alpha order? It would be much nicer for fusebox if they were listed in execution/included order. Mark Johnson --- Senior Cold Fusion Developer Cardinal Communications -Ori

RE: StructFind

2000-11-02 Thread Mark Johnson
StructKeyExists() Mark -Original Message- From: Lee Surma [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 5:00 PM To: CF-Talk Subject: StructFind StructFind throws an error when it doesn't find the key. How do I get around this? -- _ Lee Surma

RE: CF and Flash problem

2000-11-02 Thread S R
I just figured that out. After I added the querystring to the 'object' it now sort of works in Netscape. What I mean by sort of is that some buttons it goes to the correct frame but others it ignores which frame to go to. Another thing happening is on some frames the type looks really strange,

*NIX Reporting packages

2000-11-02 Thread CAlvarado
I am looking for a reporting package similar to Crystal Reports for Solaris. All of the servers here are Solaris based running Cold Fusion. The only requirement as far as the functionality goes is that I need to be able to pass parameters at Run-Time in order to manipulate the output. Any suggest

RE: Killing a variable

2000-11-02 Thread Chapman, Katrina
Actually StructIsEmpty() will always return false on the session structure. There are 4 vars that CF includes by default in that structure. Can anyone guess what they are. --K -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 8:47 AM To:

RE: Paranoid programming...

2000-11-02 Thread Scott Becker
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C044FA.EB0FDE60 Content-Type: text/plain; charset="iso-8859-1" >The database itself is sensitive enough that the owner does not

RE: CF and Flash problem

2000-11-02 Thread Jason Powers
Can't really help you on that one. I'm more of an actionscripter, as opposed to a designer. All I can say is make sure you have your font outlines included if you need them. Are all your frames part of the main timeline? Can I recommend using frame labels and passing those in instead of frame n

RE: CF and Flash problem

2000-11-02 Thread S R
Thanks >From: Jason Powers <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: RE: CF and Flash problem >Date: Thu, 2 Nov 2000 13:36:49 -0500 > >Can't really help you on that one. I'm more of an actionscripter, as >opposed to a designer. All I can say is

RE: Help with Query

2000-11-02 Thread Kelly Matthews
well it still doesnt pull just the ONE distinct record my 2 records still come up...??? i only want the most recent of all the folks records to appear... Stay current with what's happening on AirportNet. Subscribe to our Announcement list today: http://www.airportnet.org/email.htm -

Re: ColdFusion is vulnerable?

2000-11-02 Thread Jon Hall
Actually no, SP1 for Win2k was not out for at least 3 -4 months after Win2k came out and it was delayed. Not to mention Win2k SP1 has caused problems with Cold Fusion 4.51 server on some of our web servers, causing runaway processor utilization. jon > need). And for their new releases, I would su

C++ CFAPI Unix machine

2000-11-02 Thread wpdd
Is it possible to use the C++ CFAPI (the api that deals with cold fusion custom tags) on a Unix machine? If yes, How? Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http:

Action Pages or Coding the Page in Action Attribute of tag

2000-11-02 Thread Rosa, Issac
Is it more advantageous to use an action page or code the action in the tag? The submitting page is passing 2 variables - id_market and id_category from drop down boxes. http://some_url.cfm" method="post"> or One issue I have noticed with using action pages is that when you hit the

Re: generating random passwords for a db field

2000-11-02 Thread Steve Reich
A custom tag seems to be the easy answer, but to solve the problem of why you are getting the same random number with RandRange seems to be your issue. You need to use the Randomize function to generate a random seed value along with RandRange to generate your random numbers. You can find more inf

RE: Paranoid programming...

2000-11-02 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > >The database itself is sensitive enough that the owner does > not want the > >userid and password put into the ColdFusion admin area either... > > I'm curious, why do you consider the ColdFusion admin area > insecure? Is > there a way the passwo

Re: Paranoid programming...

2000-11-02 Thread Larry W. Virden
From: Gavin Myers <[EMAIL PROTECTED]> > what about a dummy database? Now that's an interesting approach - I'll think about this one. The problem with the idea of storing the password in a file 'accessible only by the CF user' is that, under Unix, the server runs as a single user. It gets cert

Re: CFPOP

2000-11-02 Thread Max Paperno
Actually there IS (or was) a bug with CFPOP and ReplyTo header. It's always blank, even if the email does contain it. I dealt with this a year ago or so while trying to write a decent "webmail" system. (Must be no one at Allaire thought that bug was important enough to fix ;-) I don't th

Re: Paranoid programming...

2000-11-02 Thread Larry W. Virden
From: Scott Becker <[EMAIL PROTECTED]> > I'm curious, why do you consider the ColdFusion admin area insecure? Is > there a way the password can be discovered once its put there? The problem, as it is described to me, is this. Coldfusion on Solaris requires one to share one ColdFusion instance

Re: Paranoid programming...

2000-11-02 Thread Jake Hileman - Patmos
In Win, you can just set a certain key to 0 and wallah, the CFPassword is no longer even in use... hosting companies should never let users use the CFregistry tag. Anyhow... do any of you boys have a solution to why cfpop won't give me a valid #replyto# var? it just pops it out empty... is this

RE: Paranoid programming...

2000-11-02 Thread Chris Evans
What about hardcoding the username and password in a CFX tag? It is compiled, so it won't be simple to extract. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Larry W. Virden [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 2:39 PM To: CF-Tal

Still need Help with Query

2000-11-02 Thread Kelly Matthews
maybe you can shed some light got it to work by doing this: (there could be an easier way) This query finds all the distinct ssn's. SELECT DISTINCT ssn FROM STUDENTS WHERE AIRPORT_CODE = 'AAE' AND testname = 'Driver Training' Then i loop through (actually 2 loo

URGENT - compatability issue

2000-11-02 Thread Janssen Dolores Y (Contractor)
i just found out that our unix sys admin team is moving our development server to cf v4.5.1 this weekend. our production server will remain at cf v4.01 for another month. we haven't even had the time to test our current aps for compatibility with v4.5.1 and we are still using cf studio v4.01. we

What is the best source?

2000-11-02 Thread bajaria aslam
Hi All, I have to create a new website from scratch (including programming, getting an IP address, hardware etc) for a company. What is the best source for this? I am a CF programmer. But, All I have done is do CF and Javascript programming. But, I don't know much about web hosting. If you can

RE: CFHEADER

2000-11-02 Thread Max Paperno
Proxies aren't necessarily going to read the contents of the HTML document and parse the META tags. META is really intended just for the browser. Good proxies should, however, pay attention to real HTTP headers such as those set by CFHEADER. As to the original question, I think something lik

Re: CFPOP

2000-11-02 Thread Jake Hileman - Patmos
> Now I use Howie's iMS and have done away with CFPOP and CFMAIL altogether :) What's this? where can I get? jake > > Cheers, > -Max > > > > At 11/2/2000 08:32 AM -0500, you wrote: > >Not all emails have a reply-to header so it's possible that this is blank. > >What you might try is using the

RE: What is the best source?

2000-11-02 Thread Gavin Myers
Are you going to have it hosted locally or through a web hosting company? -Original Message- From: bajaria aslam [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 1:49 PM To: CF-Talk Subject: What is the best source? Hi All, I have to create a new website from scratch (inclu

RE: Paranoid programming...

2000-11-02 Thread Larry W. Virden
From: "Chris Evans" <[EMAIL PROTECTED]> What about hardcoding the username and password in a CFX tag? It is compiled, so it won't be simple to extract. Might work - except I have been unable for the past 18+ months to find any info about writing cfx's for Solaris... -- Larry W. V

  1   2   >