RESOLVED dateDiff ?

2001-12-13 Thread Douglas Brown
Thanks anyhow Doug - Original Message - From: "Douglas Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 13, 2001 7:08 PM Subject: dateDiff ? > I am trying to display different images based upon the difference in two > dates, I want to show newpost

Re: Anti Virus Recommendations

2001-12-13 Thread Christopher Dawes
Hello CF-Talk, I find NOD32 a fantastic solution. They've won the virus bulletin awards 16 times in the last 16 months, and haven't missed a virus in that time, unlike Vet, Norton and the other majors. I do not work for this company, nor does anyone I associate with. It's just

Re: How do you insert 10 form fields into one database field?

2001-12-13 Thread Douglas Brown
Sorry I did not understand your post. I guess your table for phonenumbers is kind of like so. phonenumbers id pk int autonumber custid fk_customer int insert into phonenumber (custid,phone1,phone2,phone3,phone4,phone5,phone6,phone7,phone8,phone9,phone 10) values (#custid#,'#phone1#','#phone2#'

Re: How do you insert 10 form fields into one database field?

2001-12-13 Thread Douglas Brown
Why do they not have seperate naming conventions in your form? Are you saying there is just one form field named phonenumber and the customer types 10 different numbers into it? Doug - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December

dateDiff ?

2001-12-13 Thread Douglas Brown
I am trying to display different images based upon the difference in two dates, I want to show newpost.gif if the postdate is less than 1 day older than the current date. Can someone help me out here. Thanks Doug ~~ Get the mailserver tha

RE: CFGRID Not updating

2001-12-13 Thread Angel Stewart
Uhh...Well.. What if you want them to be able to update the primary key? Like in the case of the Holidays table, for some reason the Primary Key is the Date of the Holiday, which must be unique. But you also want the user to be able to edit the Date of the holidays, or add new holidays with new

How do you insert 10 form fields into one database field?

2001-12-13 Thread one
Whats the best way to insert 10 form fields into one field in the server database via CFHTTP. Is it better to: 1. Do 10 separate insert statements or 2. Use just CFINSERT and let it occur autmatically or 3. Use a loop statement. Field name on form is "phonenumber", there are 10 different ones

RE: Production server running way too slow (Long)

2001-12-13 Thread Keen
I would suggest turning on the exploded bench marking - debug, as it will give you the total execution time and also a breakdown of where the time was really spent. Since this is a production server be sure that you specify the ip address of your machine in cf administrator so that only you see t

RE: CFGRID Not updating

2001-12-13 Thread Bryan Love
not necessarily... CF knows what the primary key of the table is and looks for it in the grid you pass. Just make sure that when you declare your grid you are declaring a grid column with the name of the primary key and display set to "no". +---+ Br

RE: RegEx Help

2001-12-13 Thread Bryan Love
why use regular expressions? try: of if you can't use IF statements for some reason: +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecomunication Systems [EMAIL PROTECTED] +--

RE: recompile mod_coldfusion.c

2001-12-13 Thread Mak Wing Lok
too bad, i'm using solaris version, that's a Windows version. --- Jared Clinton <[EMAIL PROTECTED]> wrote: > On the Allaire site, there is source code for > mod_coldFusion.so , but I'm > not sure if it works with CF4.5x .. as it is > advertised as for CF5.0 > > Have a look here: > http://www.al

Re: Anti Virus Recommendations

2001-12-13 Thread Matt Robertson
I've recently become familiar with F-Prot and like it a lot. 20-computer annual license for $40. Small footprint, light resource usage, catches virii like crazy. I have it set up on desktops and with Declude/Imail to vscan my domain email services. http://f-prot.com

Re: Anti Virus Recommendations

2001-12-13 Thread Stephen Hait
My favorite is the "original" AVP now available from Kaspersky Labs: http://www.kaspersky.com/ > Hi All - > > I have heard horror stories about certain anti virus > programs not playing will with ColdFusion. I am asking for > recommendations for an anti virus program to use my > computer. >

RE: recompile mod_coldfusion.c

2001-12-13 Thread Jared Clinton
On the Allaire site, there is source code for mod_coldFusion.so , but I'm not sure if it works with CF4.5x .. as it is advertised as for CF5.0 Have a look here: http://www.allaire.com/Handlers/index.cfm?ID=22186&Method=Full Jared Clinton. NEC Business Solutions NEC Australia -Original Mes

RE: recompile mod_coldfusion.c

2001-12-13 Thread Mak Wing Lok
hi eric, i try to integrate a digital signature solution that using a samrt card reader to extarct the client cert, the digi cert vendor told me this is the only way we can make CF talks to their CFX tags. --- "Carlisle, Eric" <[EMAIL PROTECTED]> wrote: > I might be on the wrong scent here, bu

RE: Netscape is crashing

2001-12-13 Thread Gonzo Rock
Ben, YES! Thanks, pulling out the .css include changed everything... Now my job is to chase down the Netscape specific .css problem... I have a netscape specific style sheet so should not be t hard. Thanks again, This list rocks! now if I could just fix the 'ole it can't window.focus() pr

Re: RegEx Help

2001-12-13 Thread Don Vawter
The main problem is that you are trying to use a character expression when you need to match a multicharter expression. I would probably do this in multiple passes. In the first pass do say: st=rereplacenocase(st,'src="http://','src="|","all"); this will replace all http with a | symbol ( if yo

Re: RegEx Help

2001-12-13 Thread Jochem van Dieten
Bernd VanSkiver wrote: > Got a Regular Expression problem that I can't figure out how to solve. > Below are two possible strings that could be send to my replace function. > The order of the atributes could be in any order and the domain name and > file name will also be different in each case. >

RE: CFGRID Not updating

2001-12-13 Thread Angel Stewart
No..that's not it. I made that change and It still does not update the database. Does this need to go hand in hand with the AppendKey in the CFGRID definition? Can I only change one field? For example on the Hlidays table there are two fields. Holiday Date and holiday description. If I change

Re: Oracle Stored Procedure and

2001-12-13 Thread Chris Alvarado
has a maxrows attribute hope this helps, -chris.alvarado [application developer - 4 Guys Interactive] >From: Troy Simpson <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Oracle Stored Procedure and >Date: Thu, 13 Dec 2001 14:22:34 -0500 > >All, >

RE: regex for escaping ampersands

2001-12-13 Thread Zac Belado
> Not sure about this, but does anyone know about CF > support for this feature of Perl's regex support? Isn't there a CFX tag in the Tag Gallery that does this? ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://ww

RegEx Help

2001-12-13 Thread Bernd VanSkiver
Got a Regular Expression problem that I can't figure out how to solve. Below are two possible strings that could be send to my replace function. The order of the atributes could be in any order and the domain name and file name will also be different in each case. http://www.domain.com/aboutuson

Re: Can we have two datasources with the same name?

2001-12-13 Thread Alex
Put the datasource in your Application.cfm file that way you only have to comment and uncomment one line of code On Thu, 13 Dec 2001, bajaria aslam wrote: > Hi. > > Suppose I have a datasource datasource1 pointing to > Database1 on a SQL Server called test. > > Can I have another datasource ca

Re: regex for escaping ampersands

2001-12-13 Thread Gyrus
> string = replace(string,"&","&","all")> > string = replace(string,"&","&","all")> This code would spoil all non-ampersand character entities. "•" would become "•", "é" would become "é"... you see the problem. Someone on another list mention Perl's support for "zero-width negative l

RE: Verity with the vspider and K2

2001-12-13 Thread Sean McCarthy
Funny you bring up the rcvdk tool. I have had no sucess with that. I can see my collections with the rcvdk but can not get a search to return anything. Comes back saying 0 of 0. Can you get the rcvdk to work? I have had to restart the K2server everytime I create a collection with mdvdk to get it

RE: CFGRID Not updating

2001-12-13 Thread Bryan Love
I'll venture a gues... put this in your GRIDUPDATE tag: KEYONLY="Yes" +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecomunication Systems [EMAIL PROTECTED] +

RE: Can we have two datasources with the same name?

2001-12-13 Thread Matt Robertson
If you use an app var in the CFQUERY statement you have to place an application-level CFLOCK around your query. I forgot to mention in my earlier post on this thread that I set request vars for the local and live settings in application.cfm. Does the same job w/o need for locking. No idea

RE: regex for escaping ampersands

2001-12-13 Thread Bryan Love
You're examples are not very clear, but I think what you are saying is that you don't want characters that are already escaped to have their leading '&' escaped again. un-escape all characters first, before escaping them again so solve your problem. string = replace(string,"&","&","all")> stri

Re: Can we have two datasources with the same name?

2001-12-13 Thread Matt Robertson
I do something similar, but in application.cfm. That way I don't have to change a bunch of individual templates. Instead of a CFIF, you could use a CFSWITCH to choose between dev, test and live servers so no code needs to be changed anywhere as you move from server to server. local setti

RE: Can we have two datasources with the same name?

2001-12-13 Thread Larry Juncker
If I understand what you are asking, why do you not just set your DSN as an Application variable? or You would use whichever one you wanted while testing and then just change this one spot in your Application.cfm file when you were ready to go live. Create the ODBC connections and just call th

RE: Verity with the vspider and K2

2001-12-13 Thread Garza, Jeff
I've had problems getting CFSEARCH to work on a K2 collection created without using the VDK tools. Perhaps it's because I wasn't restarting the K2 server... Are you able to search your MKVDK created collections using CFSEARCH? Or are you using the command line tool rcvdk.exe to search the co

Re: tcpclient and cfhttp -- how to post data?

2001-12-13 Thread Greg Saunders
Both your method and Dave's method worked beautifully -- thanks to both of you! I tried Stretch and also recommend it. Here's the direct URL for anyone else who's interested: http://www.kestral.com.au/devtools/stretch/ greg At 03:44 PM 12/13/2001 -0500, Lewis Sellers wrote: >On

Re: Can we have two datasources with the same name?

2001-12-13 Thread Jacob
Create a template and add it to all of the files needed. All you need it one line. datasource.cfm Then for your queries: select * from table So the files would look like this: select * from table At 01:36 PM 12/13/2001 -0800, you wrote: >Hi. > >Suppose I have a datasource datasourc

Can we have two datasources with the same name?

2001-12-13 Thread bajaria aslam
Hi. Suppose I have a datasource datasource1 pointing to Database1 on a SQL Server called test. Can I have another datasource called datasource1 pointing to Database1 on SQL Server called dev? The datasource1 currently works fine on http://localhost/ I have created a virtual site called http://

regex for escaping ampersands

2001-12-13 Thread Gyrus
As part of a mammoth custom tag to clean up HTML markup submitted through a form, I'm trying to work out how to escape all ampersands. Only, of course, I don't want to escape those that are already part of character entities. So I want this: Go to home page & see a message to become this: Go

Querying FoxPro Date

2001-12-13 Thread Jacob
How can you select records for a FoxPro date by using date? The query: select ponumber, supplier,odr_date from purchase where odr_date > ''12/10/01" It returns with the error: ODBC Error Code = 22005 (Error in assignment) [Microsoft][ODBC Visual FoxPro Driver]Operator/operand type mismatch.

CFGRID Not updating

2001-12-13 Thread Angel Stewart
And on with my CFGRID Saga. *sigh* Now I have the grids displaying, I have them formatted and lloking all pretty.. But now they are not updating any tables. Would you believe this utter rubbish!!?? I can't update or insert data into several tables. When I go to the action page, the values I ent

Re: Schedule weirdness

2001-12-13 Thread Tony Schreiber
ha! you're right 41893 is like 16 hours. Mama. Thanks for pointing that out. It's not when it started, it's when it ended. Oh. ;p > Tony Schreiber wrote: > > > I have a task scheduled: > > > > New Half Prices > >HTTPRequest > >10/09/2001 - INDEFINITELY > >Daily at 02:30:00. > > > > Se

Re: wharts wrong with this cfhttp?

2001-12-13 Thread corrigan
Never mind, I tested it locally and it is skipping your first row as a column row. Add a row to the top that identifies the column names and it'll work Michael Corrigan Programmer Endora Digital Solutions www.endoradigital.com 630/942-5211 x-134 - Original Message - From: [EMAIL

RE: Verity with the vspider and K2

2001-12-13 Thread Sean McCarthy
Thanks for the input Jeff. I can get my collection made with the mdvdk to be recognized by the K2 server using the alias name I've defined in the k2server.ini. This the code im using to pull back results from it. The mdvdk created collection does show up on the page where you define the K2 Ser

Re: wharts wrong with this cfhttp?

2001-12-13 Thread corrigan
I think that it might be ignoring the first row thinking that it is the field headers. I can't find the documentation to support this, but I'm referencing Mastering CF 4.5 and their examples have a text doc with four fields, the first being field headers, but the output is only the 3 records.

RE: wharts wrong with this cfhttp?

2001-12-13 Thread Cameron Childress
> me too, except that the query has 3 rows and the text file has 4... I think the first row is assumed to be column names... -Cameron Cameron Childress elliptIQ Inc. p.770.460.1035.232 f.770.460.0963 -- http://www.neighborware.com America's Leading Community Network Softwar

RE: Schedule weirdness

2001-12-13 Thread Tony Schreiber
I've subscribed to the theory that you should'nt ever EDIT a scheduled task or it won't run again. I think this was a problem with earlier versions, don't know if it affects 5 also, but I still follow. If I have to make any changes to a task, I delete and add it again. But until today, I haven't

Re: Schedule weirdness

2001-12-13 Thread Jochem van Dieten
Tony Schreiber wrote: > I have a task scheduled: > > New Half Prices >HTTPRequest >10/09/2001 - INDEFINITELY >Daily at 02:30:00. > > Seems to work fine. Today I see in my server.log file: > > "Warning","1156","12/13/01","14:08:37",,"Template: > /tasks/half.pricenew.cfm, Ran: 41893

RE: wharts wrong with this cfhttp?

2001-12-13 Thread Larry Juncker
I find nothing wrong with it. What are you wanting it to do. Your file you are calling contains this: 123,0009,'KAPLAN H.S. Seniors','keywords','description' 123,0009,'KAPLAN H.S. Seniors','keywords','description' 123,0009,'KAPLAN H.S. Seniors','keywords','description' 123,0009,'KAPLAN H.S. Senio

RE: Schedule weirdness

2001-12-13 Thread Joshua Miller
We're dealing with a similar issue. Sometimes it won't run at all, then when you go to run it manually, it works fine. Joshua Miller Web Development::Programming Eagle Technologies Group, Inc. www.eagletgi.com [EMAIL PROTECTED] (304) 622-4499 x320 (VMail) CONFIDENTIALITY NOTICE The information c

RE: Production server running way too slow (Long)

2001-12-13 Thread Bruce, Rodney (Contractor)
a possibility is: Check for a SQL.log file , by default its in the root dir i.e. C:\sql.log you might have ODBC tracing on and this will bring most servers to a craw. To check and disable: WIN2K: Go to Control Panel/Administrative Tools/Data Sources(ODBC) Click on the tr

RE: wharts wrong with this cfhttp?

2001-12-13 Thread Bryan Love
me too, except that the query has 3 rows and the text file has 4... +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecomunication Systems [EMAIL PROTECTED] +

Re: wharts wrong with this cfhttp?

2001-12-13 Thread corrigan
I just copied and pasted your code onto my dev server and it worked just fine. What problems were you having? Michael Corrigan Programmer Endora Digital Solutions www.endoradigital.com 630/942-5211 x-134 - Original Message - From: Kris Pilles To: CF-Talk Sent: Thursday, Dece

RE: tcpclient and cfhttp -- how to post data?

2001-12-13 Thread Dave Watts
> Thanks to everyone who responded on this. I'm still stumped, but I > think it's just a simple syntax question related to TCPClient. I > actually wasn't trying for multiple encodings in a single form post > -- sorry for the confusion. > > I simply want to post form data like this: > > [

any lead tracking apps?

2001-12-13 Thread Paul Ihrig
i was just curious if any one has seen a good lead tracking app in cf? so that users can see what clients have been contacted & by whom & when what is a hot lead ect. if you have seen one, please let me know thanks -paul ~~ Structure your ColdFusi

Re: Production server running way too slow (Long)

2001-12-13 Thread Jochem van Dieten
Andrew Peterson wrote: > Bryan, > > >>You get the idea... you HAVE TO eliminate the variables to find the >> > problem. > > I'll go you one further :) > > Take a look at www.ioc.state.il.us/speedtest/speed.htm - The page comes up > really fast. > > I took this exact page - which contains not

Re: tcpclient and cfhttp -- how to post data?

2001-12-13 Thread Lewis Sellers
On Thu, 13 Dec 2001 14:09:04 -0600, Greg Saunders <[EMAIL PROTECTED]> wrote: >> >> >> >> >> > >But I'm not sure what to do with the data. I suspect something like this: > >> It just follows the separating blank line without any fanfare, like: >Maybe this is suppressing form data somehow? I'

Schedule weirdness

2001-12-13 Thread Tony Schreiber
I have a task scheduled: New Half Prices HTTPRequest 10/09/2001 - INDEFINITELY Daily at 02:30:00. Seems to work fine. Today I see in my server.log file: "Warning","1156","12/13/01","14:08:37",,"Template: /tasks/half.pricenew.cfm, Ran: 41893 seconds." "Warning","1212","12/13/01","14:08:

RE: Verity with the vspider and K2

2001-12-13 Thread Garza, Jeff
Sean, See my comments inline > 1. Is there a reason I would be better off to use the tag to > create my collection if I am not planning on using the VDK mode or > ? > To me it seems it is creating unnecessary directory structures that > will not be used by the vspider. The custom a

RE: EXCEL Question Spaces in Field names

2001-12-13 Thread Kelly Matthews
Worked like a charm you rock! :) Thanks! Kelly -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 3:16 PM To: CF-Talk Subject: RE: EXCEL Question Spaces in Field names Sorry. I should have been more clear. I used curRow as a generic va

wharts wrong with this cfhttp?

2001-12-13 Thread Kris Pilles
http://webmaster.wsboces.org/xcatalog.txt"; method="Get" delimiter="," textqualifier="''" columns="Syear,Catalog_code,Catalog_name,Keywords,Description" name="buildquery"> #Syear# #Catalog_code# #Catalog_name#

Re: tcpclient and cfhttp -- how to post data?

2001-12-13 Thread Greg Saunders
Thanks to everyone who responded on this. I'm still stumped, but I think it's just a simple syntax question related to TCPClient. I actually wasn't trying for multiple encodings in a single form post -- sorry for the confusion. I simply want to post form data like this: [EMAIL PROTE

RE: EXCEL Question Spaces in Field names

2001-12-13 Thread Jerry Johnson
Sorry. I should have been more clear. I used curRow as a generic variable indicating the row of the query you were on. Since you are using a query loop, there should be a variable called currentRow available to you, that CF increments at each loop. >>> [EMAIL PROTECTED] 12/13/01 02:58PM >>>

RE: Production server running way too slow (Long)

2001-12-13 Thread Andrew Peterson
Bryan, > You get the idea... you HAVE TO eliminate the variables to find the problem. I'll go you one further :) Take a look at www.ioc.state.il.us/speedtest/speed.htm - The page comes up really fast. I took this exact page - which contains not one cf tag - and saved it as a cfm file : www.ioc

Mime Type

2001-12-13 Thread Bernd VanSkiver
How do I get the MIME Type of a file on the ColdFusion server with ColdFusion? I know I can get it from an uploaded file just after it is uploaded, can't seem to get it from a file that is already on the server. Bernd VanSkiver [EMAIL PROTECTED] ColdFusion Developer ~

RE: EXCEL Question Spaces in Field names

2001-12-13 Thread Kelly Matthews
Ok I tried that but it threw an error let me show you all the code so it may help. You will see for the FLAG field I used your code that threw an error saying it didn't know what CURROW was. before it was throwing an error because of the space. Kelly SELECT * FROM RESULTS

Re: Christmas cards? (OT/HTML) W/DOWNLOAD

2001-12-13 Thread Joseph Thompson
Worked like a champ! Kudos etc :-) > Due to the responses that I've received (many people asking me to post the > code) and seeing as how I am feeling generous since it's the holidays, I > have decided to let who ever is interested in it, download it: > http://cftags.veloxweb.com/cards/download/

Re: EXCEL Question Spaces in Field names

2001-12-13 Thread Jerry Johnson
Is 'case number' from another query? if so, you could reference it via #queryname['case number'][curRow]# Jerry Johnson Lawyersweekly.com >>> [EMAIL PROTECTED] 12/13/01 02:39PM >>> Ok here is the deal. I have an excel file. I can query through it no problem. I have to take results and update a

RE: OT(apologies)

2001-12-13 Thread Nathan Stanford
My turn to reply... Most of the people on this list... on cf-talk, on my list at cftipsplus (sorry had to say it.), and other cf places go to work in the REAL WORLD each and every day... you do not have to look very far to find a list of sites... my email @nsnd.com (nsnd.com cf site) I am

EXCEL Question Spaces in Field names

2001-12-13 Thread Kelly Matthews
Ok here is the deal. I have an excel file. I can query through it no problem. I have to take results and update a SQL database. Again no problem. Except some of the field names in the excel file have spaces. We receive this file from another party so we can't remove the spaces from the file. Can

RE: Production server running way too slow (Long)

2001-12-13 Thread Tyler M. Fitch
Bryan, Storing client vars in the registry was discussed at DevCon and the message was this. If the server is dedicated to the job of tossing out CF and web content then DO use the registry. But set the registry to grow to 100MB, and purge client vars after 10 days I believe. Storing client va

RE: OT(apologies)

2001-12-13 Thread Michael Dinowitz
For those who do not understand the reference, whitehouse.com is not a government site. It is an adult site that uses the whitehouse name to get people to come in. I can't say if it is using CF or not (I don't know) but I do know programmers for adult sites who use CF for their work. A lot of

RE: AS400 RPG Stored Procedures and ColdFusion

2001-12-13 Thread Nathan Stanford
Is there anyone out there that has a clue on what to do with this? -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 7:47 AM To: CF-Talk Subject: AS400 RPG Stored Procedures and ColdFusion I am do not know AS400 so I am working with a

Oracle Stored Procedure and

2001-12-13 Thread Troy Simpson
All, Is it possible to pass a parameter into an Oracle Stored Procedure to limit the record set that is returned but the procedure? If I remove the "IN" Parameter from the Oracle Stored Procedure, it works fine. But I do not want all the records. I just want a return a set of records. I appear

Re: tcpclient and cfhttp -- how to post data?

2001-12-13 Thread lsellers
At 12:39 PM 12/13/2001 -0600, you wrote: >OK, I'm learning about some of the pain referenced below ;-) > >I'm trying to perform an HTTP post operation, but I can't figure out how to >do it with TCPClient. I know I need to change the method from GET to POST: > > > >But I don't know how t

Re: tcpclient and cfhttp -- how to post data?

2001-12-13 Thread Jon Hall
I know you have already done a lot of work with TCPClient, but why use it to do http? I actually built a little http get script with tcpclient a while back, then rewrote it when I discovered it didn't have to be than hard... There are quite a few free http COM objects that are specifically built f

RE: What might be causing this cfserver error message?

2001-12-13 Thread Brunt, Michael
It looks very much like a memory-variable-locking error. As Bryan says you should check the ColdFusion logs in particular Application and Server, do a search for the word "thread" or "threading" and investigate any .cfm files identified as creating either of those words to occur in that log. Any

RE: OT(apologies)

2001-12-13 Thread Costas Piliotis
Dude. Don't post that in here. I don't really think that's appropriate... (Not that I care, but someone else just might...) -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 9:51 AM To: CF-Talk Subject: RE: OT(apologies) www.whitehouse.com O

RE: tcpclient and cfhttp -- how to post data?

2001-12-13 Thread Dave Watts
> I'm trying to perform an HTTP post operation, but I can't figure > out how to do it with TCPClient. I know I need to change the method > from GET to POST: > > > > But I don't know how to set the form data. By default, when form data is sent to a server, it's encoded just like URL data

Re: Production server running way too slow (Long)

2001-12-13 Thread Alex
Are both servers on the same network? How do the pages come up when you are viewing them from the server itself? Easiest solution is to take ten minutes and reinstall coldfusion and see what happens. On Thu, 13 Dec 2001, Andrew Peterson wrote: > I am looking for some suggestions on how to speed

RE: get back to correct section...

2001-12-13 Thread Janine Jakim
Thank you for getting me to seriously review that update page. I set up the original update page months ago when I was first learning...At that time I wasn't successful in making it work dynamicallyOut of time constraints/frustration I hardcoded it by subject codeID. After your email I went

RE: Production server running way too slow (Long)

2001-12-13 Thread Bryan Love
Ideally you would set simultaneous connections to 7 on dual proc server... Experiment to find the problem: 1. go to the server (physically walk over there) and hit a CFM page that only does a single from 127.0.0.1 - this will eliminate network issues. 2. do the same thing again, but hit a pag

RE: Production server running way too slow (Long)

2001-12-13 Thread Joshua Miller
Perhaps it's the Cached Queries? I was under the impression that these take up a LOT of server resources. Other than that, if you're using SESSION variables and you're storing them in the Registry, this could cause a slowdown. If you're using the Registry to store variables try moving them into th

Re: get back to correct section...

2001-12-13 Thread Gyrus
I don't think this is to do with your original problem, but just at a glance, shouldn't the following code: be something like: You just need to change the values assigned to SubjectType, or change the way URL.fa is processed. Then you have one line of code instead of up to 30 's. A

Production server running way too slow (Long)

2001-12-13 Thread Andrew Peterson
I am looking for some suggestions on how to speed up our website, which is alarmingly slow. Actually, it was working fine until we upgraded to CF 5.0 and moved to a new server. Only the ColdFusion templates are crawling, with even the simplest cfm templates taking 70 seconds or longer to load. I

Re: tcpclient and cfhttp -- how to post data?

2001-12-13 Thread Greg Saunders
OK, I'm learning about some of the pain referenced below ;-) I'm trying to perform an HTTP post operation, but I can't figure out how to do it with TCPClient. I know I need to change the method from GET to POST: But I don't know how to set the form data. Also, is it possible to use

Re: get back to correct section...

2001-12-13 Thread Douglas Brown
The only way you will be able to do what you are wanting that I can think of is to create a array of structures to hold the data of the paticular view and when they do their modifications then return them to the page with the values of those structures. Doug - Original Message - From:

Re: OT(apologies)

2001-12-13 Thread Alex
www.google.com search .cfm On Thu, 13 Dec 2001, Moneymaker, Jon S CONT (WPNSTA Yorktown) wrote: > Ok, I have lurked on this list for some time now and remember some time ago > a brief flurry of activity about "who uses CF in the real world." > I seem to recall a list somewhere or an article some

RE: OT(apologies)

2001-12-13 Thread Alex
www.whitehouse.com On Thu, 13 Dec 2001, Kris Pilles wrote: > half.com victorias secret.com > New York State > New Mexico > Federal Government > Aol (corporate site) > Eminem.com > > Theres tons of them > > Kris Pilles > Website Manager > Western Suffolk BOCES > 507 Deer Park Rd., Building C

get back to correct section...

2001-12-13 Thread Janine Jakim
I have a page that allows the user to choose how they want to view the information (ie: by subject/by homeroom teacher/user defined) So they pull up a student by any of these views and I want them to be able to add/update their grades and return to the same view they were at. This includes not o

RE: What might be causing this cfserver error message?

2001-12-13 Thread Bryan Love
check the server log. It's available through the CFAdmin or you can just go into the logs folder and open it. +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecomunication Systems [EMAIL PROTEC

RE: Netscape is crashing

2001-12-13 Thread Joel Blanchette
If you can send us the URL we could help you out more. Netscape is a bit harder to code for in html since it is really picky about the HTML. It has to be perfect to work. Send us the URL and we will be able to help you out better. Joel -Original Message- From: Gonzo Rock [mailto:[EMAIL

RE: OT(apologies)

2001-12-13 Thread Moneymaker, Jon S CONT (WPNSTA Yorktown)
Thanks...great,very helpful as always. Jon -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 12:42 PM To: CF-Talk Subject: Re: OT(apologies) www.forta.com Bryan Stevenson VP & Director of E-Commerce Development Electric Edge Systems

ColdFusion Programmer tools

2001-12-13 Thread Larry W. Virden
What kinds of tools do people use besides ColdFusion studio? I don't mean tags - but tools for instance to generate listings, cross reference tables of variable usage, etc. I myself am particularly interested in tools that would run on SPARC Solaris. -- Never apply a Star Trek solution to a Bab

Re: OT(apologies)

2001-12-13 Thread Bryan Stevenson
www.forta.com Bryan Stevenson VP & Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Allaire Alliance Partner www.allaire.com - Original Message - From: "Moneymaker, Jon S CON

RE: OT(apologies)

2001-12-13 Thread Kris Pilles
half.com victorias secret.com New York State New Mexico Federal Government Aol (corporate site) Eminem.com Theres tons of them Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED] -Original Message- From:

RE: OT(apologies)

2001-12-13 Thread C. Hatton Humphrey
A list can be found on Ben Forta's site http://www.forta.com/cf/using/ Hatton Humphrey > -Original Message- > From: Moneymaker, Jon S CONT (WPNSTA Yorktown) > [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 13, 2001 12:37 PM > To: CF-Talk > Subject: OT(apologies) > > > Ok, I h

Re: tcpclient and cfhttp

2001-12-13 Thread Lewis Sellers
On Thu, 13 Dec 2001 15:12:26 -, Craig Dudley <[EMAIL PROTECTED]> wrote: >I've been using a month or so now on a test site, albeit under quite heavy >load, I have't had a single error. And to say that it's faster than CFHTTP >would be a mild understatement. Thanks. That's definately the major

OT(apologies)

2001-12-13 Thread Moneymaker, Jon S CONT (WPNSTA Yorktown)
Ok, I have lurked on this list for some time now and remember some time ago a brief flurry of activity about "who uses CF in the real world." I seem to recall a list somewhere or an article someone wrote about some of the big companies who use CF I was asked this question the other day and cou

RE: Cf 5.0 Upgrade

2001-12-13 Thread Brunt, Michael
My experience is the main thing to watch for is any Java based CF Stuff you are using (CFTREE-CFGRID etc.) Need to make sure that the latest version of the JVM is installed. In addition, take care if you are using Advanced Security as this was upgraded to a later version in CF5.0. Outside of th

Re: Netscape is crashing

2001-12-13 Thread Gonzo Rock
Hey Dave, Thanks for the ideas... have to say though... I'm very confused by the fact that the viewed source from IE loads into Netscape without incident. Does Apache feed slightly different code to a Netscape client?? I would think NOT. I have been using an incHeader.cfm and a incFooter.cfm

RE: Netscape is crashing

2001-12-13 Thread Mueller, Ben
If you're using css on the page, there could be a problem there. I've done exactly as you describe: save the source from IE as a .html file, then open that file in Netscape, and it works perfectly. Because this test .html file wasn't including any of my .js or .css files, it didn't take long to

Cf 5.0 Upgrade

2001-12-13 Thread Hirschman, Miriam
Can someone please tell me where I can find information on compatibility issues when upgrading from CF 4.0/4.5 to CF 5.0? ~~ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http

Re: PopUp Problem

2001-12-13 Thread Gonzo Rock
Hi Tyler, Yep, I have tried help_win.focus() various different ways... still no luck! At 09:43 AM 12/13/01 -0500, you wrote: >Have you tried putting the focus onto the actual link. > >maybe but not sure: >onClick="help_win.focus();">Click4Help > >- Original Message - >From: "Gonzo Rock

  1   2   >