RE: R U aggry with me on session concept?

2001-04-16 Thread mahmad
Hello All Here is a simple question .Plz reply me. I want to know ,what things in CF make the difference from ASP JSP. Why u recommend the site should be made in CF instead of ASP. Thanks in advance.. Mumtaz ~~ Structure your

YNT: R U aggry with me on session concept?

2001-04-16 Thread Abdusselam Karatas
Comparison of ASP, CF, Perl, JSP http://www.teratech.com/teratech/custom/asp.cfm An the answer of Why chose CF over ASP, PHP, JSP or PERL? CF author and CFConf speaker John Paul Ashenfelter explains in Fun with ColdFusion written for Webreview .

child window

2001-04-16 Thread Robert Orlini
This isn't a CF question, but does anyone know what to add to a pop-window JavaScript code to make the child window stay "module" or on top each time a link is clicked? Currently when I click each link it puts the child window in the background. -- script LANGUAGE="JavaScript" !--

Re: child window

2001-04-16 Thread dk
something like: newwindowname.focus() should do the trick DK www.artmaya.com - Original Message - From: Robert Orlini [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 16, 2001 7:30 PM Subject: child window This isn't a CF question, but does anyone know what to

Re: child window

2001-04-16 Thread Seth Weiss
childwindow.focus() - Original Message - From: "Robert Orlini" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, April 16, 2001 10:00 AM Subject: child window This isn't a CF question, but does anyone know what to add to a pop-window JavaScript code to make the child

Re: child window

2001-04-16 Thread Seth Weiss
Here is a little snip I use for this -- a little clearer than the last post: ! script language=javascript function newwindow(x) { childwindow=window.open( x, 'windowname', 'scrollbars=yes,width=460,height=400,toolbar=no') childwindow.focus() } /script

Alert Box with countdown?

2001-04-16 Thread Neil H.
Is there a way to make an alert box display a countdown timer and an ok Button to close it? Thanks, Neil ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Alert Box with countdown?

2001-04-16 Thread Dan G. Switzer, II
Neil, You can't update an alert box, but you could create a pop-up window (or if you're using IE exclusively, then create a Modal window.) With a pop-up or Modal window, you'd just be creating a standard HTML document. The other option, of course, would be to use DHTML to create alert-style

Re: Alert Box with countdown?

2001-04-16 Thread Neil H.
Dan, I am only using IE for this but I am not familiar with Modal? Do you have any sample code? Thanks, Neil - Original Message - From: "Dan G. Switzer, II" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, April 16, 2001 9:47 AM Subject: RE: Alert Box with

RE: Alert Box with countdown?

2001-04-16 Thread Duane Boudreau
Syntax showModalDialog( szURL, "", "dialogWidth:400; dialogHeight:400"); check out for more: http://msdn.microsoft.com/workshop/browser/mshtml/reference/IFaces/Window2/s howModalDialog.asp Dan, I am only using IE for this but I am not familiar with Modal? Do you have any sample code?

text box output truncation

2001-04-16 Thread paul .
Hi Guys am experiencing a strange thing! when I try to get the vakue from the dateabse into the text bos for further editing .. the value for #meeting_name#gets truncated.. and am getting results like"Brand" when i wanted that to be "Brand new day" please suggest the code is Given down below

RE: child window

2001-04-16 Thread Robert Orlini
Good code Seth...works great. Thank you and the others for their suggestions as well. Robert O. -Original Message- From: Seth Weiss [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 8:26 AM To: CF-Talk Subject: Re: child window Here is a little snip I use for this -- a little

Transferring 1-3Kb data

2001-04-16 Thread Michael Lugassy
We devloped a client program (in visual c++) that stores log files for usage in the client and its features. I need the best way to deliver those small log files (no more then 2Kb for a full week of usage) to our CF production server and then, to zip those files and send them daily to our

Re: text box output truncation

2001-04-16 Thread Michael Lugassy
Use "" signs in the value without it your value for textarea/text input will include only the first word. - Original Message - From: "paul ." [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, April 16, 2001 4:18 PM Subject: text box output truncation Hi Guys am

Re: text box output truncation

2001-04-16 Thread Judith Taylor
From my understanding of the TRIM() function, whenever it encounters a space, it then removes any and all following information if it exists. So, if you're wanting to have the "Brand new day" outputted correctly, drop the trim() portion. Judith paul . put into words: Hi Guys am experiencing

add new record

2001-04-16 Thread Jones, Becky
i have a drop down list of peoples names. on the same page right next to that drop down list i want to put an "add" button to add a new person, if the person isnt already in the list. any easy way to go about getting this done? thanks for the help, bec.

Inputfilter

2001-04-16 Thread Robert Everland
I was just reading up on my security at allaire and saw the input filter tag they say they have, but I can't download it. Does anyone have this tag, it's not the same that is on the tag gallery. This tag seems pretty interesting considering it would take care of anyone appending anything

Re: text box output truncation

2001-04-16 Thread Seth Weiss
My understanding of trim is that it removes leading and trailing spaces only and not spaces on the interior. If the variables are url, then urlencodedformat() function might be appropriate. Seth - Original Message - From: "Judith Taylor" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED]

Re: text box output truncation

2001-04-16 Thread paul .
Thanks micheal !. it works now -paul -- On Mon, 16 Apr 2001 17:26:35 Michael Lugassy wrote: Use "" signs in the value without it your value for textarea/text input will include only the first word. - Original Message - From: "paul ." [EMAIL PROTECTED] To: "CF-Talk" [EMAIL

Showing the results of an add or edit operation

2001-04-16 Thread Hubert Earl
Hi, I've built four files. The first shows the contents of a table. The second is a form which the user to add to, edit or delete from the table, after which the user is automatically returned to the file showing the table contents. The third is the action file for the add to and edit

RE: cfid/cftoken

2001-04-16 Thread Ken Beard
thanks for the info, but i still have one question.. when a user goes to another cf server with a cfid/token from the first server... does the new server make a new cfid/cftoken or does it use the one from the other server? If it does make a new one, does that overwrite the first one? thanks

Re: Two queries (nested cfoutput)

2001-04-16 Thread Jose Alberto Guerra Ugalde
You can change the nested cfoutput for a query cfloop: CFQUERY NAME="notices" DATASOURCE="newsAndNotices" select notice.noticeID, notice.title, notice.url, notice.information, documents.iconPath from notices, documents where notice.docType = documents.docTypeID /CFQUERY cfoutput

RE: add new record

2001-04-16 Thread John Wilker
I would check the Allaire site in the tag gallery. I'm pretty sure I've seen something like that in there. do a search for select or input, there are lots of custom tags for form activities. J. John Wilker Web Applications Consultant Allaire Certified ColdFusion Developer www.red-omega.com

Order of Display/Page Rendering Question

2001-04-16 Thread Les Mizzell
I have a page that was originally ASP that I've converted over to CF. This was a "Find a Rep near you" type search that has a huge database behind it (eight different countries) - so the search could take up to 10 or 15 seconds. On the ASP version, so the user wouldn't get too bored during the

RE: Order of Display/Page Rendering Question

2001-04-16 Thread Terry Bader
there will be a flush tag in CF5 that will allow you to do that... what you will have to do then is use JS to open a new window with the indicator and then close it once the search is complete Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757)

RE: Order of Display/Page Rendering Question

2001-04-16 Thread Garza, Jeff
Les, CF, under the 4.5 engine, renders the entire page before sending it to the client. Currently there is no response.flush capability. You'll have to wait for CF 5.0 for this functionality. The CFFLUSH tag will allow for this. Check out the CF Beta site at http://beta.allaire.com for more

CF Using 90-100% of processor time (911!)

2001-04-16 Thread Russ Conway
My server developed a problem today. CFServer.exe is using almost all of the available processing time. I've tried stopping and starting the services and the NT box, but as soon as I start CF again it almost immediately grabs all of the processor time. I'm running NT and CF 4.01. We've had this

Re: CF Using 90-100% of processor time (911!)

2001-04-16 Thread Bruce Holm
This sounds like a similar problem we had but on a Unix server. The culprit was Client Variables. We were not using them but had them "enabled". It filled up our registry file (8Mb). So check your registry file located in the coldfusion directory. If it's big that's a clue. To clean it out,

Re: Order of Display/Page Rendering Question

2001-04-16 Thread Ricq Pattay
You can sidestep the "top down" issue by using JavaScript to cycle through a series of images, creating the illusion of an animated image, instead of using an animated GIF. GIF animation seems to start only once the page is finished loading. E-mail me if interested in some code (kinda lengthy to

RE: CF Using 90-100% of processor time (911!)

2001-04-16 Thread Mike Brunt
Did you make any coding or ODBC-OLEDB-Native Driver changes just prior to this problem. Does CF take the resources before any actio-hits on the website/webserver? Kind Regards - Mike Brunt Macromedia Consulting Tel 562.243.6255 Fax 401.696.4335 http://www.allaire.com/services/consulting/

RE: CF Using 90-100% of processor time (911!)

2001-04-16 Thread Cameron Childress
Stop the service, look for a zero length file in cfusion/mail/spool. If you find one, delete it. Start the service again and you shold be good. This may not be your problem, but it will cause that behavior. -Cameron Cameron Childress elliptIQ Inc. p.770.460.7277.232

Verity Question....

2001-04-16 Thread Adam Sokolic
I have a verity search set up and working fine, the problem I'm having is I have a group of files that reside outside the directory where the collection is. Is it possible (somehow) that when the results are pulled up to link them outside the Collections directory. The only thing I can think to

RE: CF Using 90-100% of processor time (911!)

2001-04-16 Thread mjohnson
The question is what did you change! 90% of the time there is some bit of code that was uploaded that was not tested thoroughly enough and causes this type of problem. Revert back to the version of the code that existed before the problem occured and then walk through all the changes. My guess

cookies not being set

2001-04-16 Thread Mike Sprague
I have a login page that checks my db to validate user info and if valid uses cflocation to redirect to the appropriate page. I need cookies to work because people with AOL have been having problems keeing the session variables alive. My code is below, any help would be greatly appreciated.

Re: CF Using 90-100% of processor time (911!)

2001-04-16 Thread Steven A. del Sol
I believe your problem is that on one of your pages you are timing out. Check to see if you have a page where you are passing a Alpha into a numeric field. It will not necessarily crash if you have a number in the sequence somewhere but it can stall your cfserver for hours. Also, set your

RE: cookies not being set

2001-04-16 Thread Adrian Cesana
You cant use CFCOOKIE AND CFLOCATION on the same page, you may want to change your CFLOCATION's to a META redirect. -Adrian -Original Message- From: Mike Sprague [mailto:[EMAIL PROTECTED]] I have a login page that checks my db to validate user info and if valid uses cflocation to

RE: cookies not being set

2001-04-16 Thread Garza, Jeff
You cannot use CFCOOKIE and CFLOCATION on the same page. You'll have to code your redirects using Javascript and the onLoad Event. Jeff Garza Web Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Mike

RE: cookies not being set

2001-04-16 Thread Diana Nichols
You cannot use cflocation on the same page where you set cookies. Try this instead: script language="javascript" !-- parent.location="/login.cfm" // -- /script HTH * Diana Nichols Webmistress http://www.lavenderthreads.com 770.434.7374 "One man's magic is another man's

Re: cookies not being set

2001-04-16 Thread Kevin Schmidt
You can't use CFLOCATION and CFCOOKIE on the same page. CFLOCATION trashes the current HTTP headers where cookies are send and generates new ones. Since CF doesn't send the headers until the page is done processiong your headers with the cookies in them never even get to the browser. Kevin

RE: Verity Question....

2001-04-16 Thread Belfiori, Ross
If you have two seperate directories, you may want to make them two spereate collections and just search them both at the same time. -Original Message- From: Adam Sokolic [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 12:17 PM To: CF-Talk Subject: Verity Question I have

RE: cookies not being set

2001-04-16 Thread Jeff Britts
You cant set cookies on a page with CFLOCATION. The page is redirected before it is rendered by the browser, therefore, before your cookies are set. -Original Message- From: Mike Sprague [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 1:26 PM To: CF-Talk Subject: cookies not

Re: cookies not being set

2001-04-16 Thread Jason Lotz
As I'm sure 100 people on this list will tell you due to the horrendous lag, when cflocation is used on a page when cookies are being set, the cookies will not be set correctly. Instead, I use javascript to relocatewindow.location='whatever.cfm'; - Original Message - From: "Mike

RE: Dynamically Displayed Content Weekly?

2001-04-16 Thread SHEETS, DAYV (PB)
Thanks DK. Can you provide me with an example? Dayv -Original Message- From: dk [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 14, 2001 12:49 AM To: CF-Talk Subject: Re: Dynamically Displayed Content Weekly? Just create a .cfm page to get/ retrieve the content (maybe from a

RE: cookies not being set

2001-04-16 Thread Benjamin S. Rogers
Or write the redirect header manually: http://www.teamallaire.com/tutorials/index.cfm?fuseaction=displaytopicid=01 3 Benjamin S. Rogers Web Developer, c4.net Voice: (508) 240-0051 Fax: (508) 240-0057 -Original Message- From: Adrian Cesana [mailto:[EMAIL PROTECTED]] Sent: Monday, April

Excel and ColdFusion

2001-04-16 Thread Jeffry Houser
I searched the Microsoft Knowledge Base I searched the Allaire Knowledge Base. I looked at CFCOMET (great site) I searched the mailing list archives. I searched through the developer's exchange, and downloaded some of the tags. I checked the FAQ I still haven't found the

Ben Forta in KC

2001-04-16 Thread Bryan LaPlante
Hello everyone, I posted this the other day and I don't think I ever saw it come through, so here it is again. Ben Forta is coming to Kansas City to speak to our CFUG. go to http://www.kcfusion.org/ for details and RSVP for the meeting so we will know how many are coming. This event is

Note passing system?

2001-04-16 Thread Rey Bango
Anyone know of a good CF-based note/messaging system? I'm not talking about an email server but more of a db driven messaging software that will allow me to post a message to a specific suer. When that user comes in, they can check for their own messages and reply accordingly. Again, its not an

Re: Excel and ColdFusion

2001-04-16 Thread Brian bouldernet
This occurs in a could of cases: -When trying to import a file that has a invalid or not matching extension name. -Could be a bug with IIS 5. If you are running IIS 5 log in as administrator and view/modify privileges on the server. Check out:

RE: cookies not being set

2001-04-16 Thread Nick McClure
CFLocation works on an http error. It is 302 Object Moved. Cookies work on an http header also. You could get happy and create the http headers that will do this. It is all possible and I have done them separately. I do not know if this will actually set the cookie though. I am going to try

Re: Note passing system?

2001-04-16 Thread Jason Lotz
"A browser's beauty, at its heart, is its usefulness as a *TOOL*." What in the world does the above quote mean? It's boggling my mind! ~~ Structure your ColdFusion code with Fusebox. Get the official book at

HElp

2001-04-16 Thread Mcmeartya
~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

HEl

2001-04-16 Thread Mcmeartya
~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Unicode and CFTREE

2001-04-16 Thread Marius Milosav
Does anyone know if cftree supports unicode? thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Help Desk Demo (VHD) www.scorpiosoft.com/vhd/login.cfm ~~ Structure your ColdFusion code with

RE: Excel and ColdFusion

2001-04-16 Thread Dylan Bromby
have you tried using: CFSET temp=CFUSION_DISABLE_DBCONNECTIONS("{DSN}", 1) ? i don't know if the Excel DSN is being locked, thereby preventing you from accessing it, but that will force the DSN to be released. to re-enable the DSN, use: CFSET temp=CFUSION_DISABLE_DBCONNECTIONS("{DSN}", 0)

RE: Note passing system?

2001-04-16 Thread Tony Gruen
I am also scheduled to build such a system soon. Any input would be greatly appreciated. Perhaps I can get a head start. Tony Gruen -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 11:07 AM To: CF-Talk Subject: Note passing system? Anyone

RE: cookies not being set

2001-04-16 Thread Conrad Classen
Another way that may work is to set-up the cflocation tag as a string, and then evaluate it at the correct moment. I will try this myself a bit later. With cflocation itself in the template, CF will immediately process that line and ignore the rest. Conrad -Original Message- From:

CFFORM Validate and/or TextArea Validate

2001-04-16 Thread Mcmeartya
First I'm sorry if this has been covered in past ... which I'm sure it has. But I'd appreciate a little help or a push in the right direction. I've got a CFForm with CFInputs and a Textarea object. I'm letting CF handle validation for CF objects and I need to validate the textarea ... client

Studio 4.52 crashes on every exit!!

2001-04-16 Thread Jeff Fongemie
Hello cf-talk, I went from 4.0 to 4.52 with a fresh install after format. Studio crashes everytime I exit the program and in viewing, datasourses in the resourse tab, it won't refresh properly to see the latest tables. Is Studio 4.52 this bad for everyone? I may go back to 4.0.

RE: text box output truncation

2001-04-16 Thread Semrau, Steven L Mr SRA
Well right off the bat I would have to say it's the fact that you are setting a maximum limit on the text of "50". MAXLENGTH Indicates the maximum number of characters that can be entered into a text field. This can be greater than specified by the SIZE attribute, in which case the field will

RE: sql date times

2001-04-16 Thread Hoffman, Joe (CIT)
I have not seen a reply to this thread yet ... so I know this is an SQL question but does anyone know how to break dates apart using the (cast or convert functions, (I think)) IN SQL,, its just that when I mask my date from my query I never get the right date.. Can you elaborate some more

RE: HElp

2001-04-16 Thread Erika L Walker
H.did his computer eat him? Or her? Erika "Twixt optimist and pessimist, The difference is droll; The optimist sees the doughnut, The pessimist, the hole." - McLandburgh Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001

(Easy SQL)

2001-04-16 Thread Eric Dawson
I have a member table which contains userid, signup_datetime I want to create a daily summary of registrations. select signup_datetime as justDatenotTime,count(userID) as NewMembers from membertable group by justDatenotTime == * == I know this has to be simple, but I can't find the syntax. How

SQL help

2001-04-16 Thread Jeff Fongemie
Hello cf-talk, I'm stuck over how to do this. I have a table and each record has a date field (long date format). I need to display the records on a page where the record with the date closest to the current date when the page is viewed will display first, then the records whose

Re: Excel and ColdFusion

2001-04-16 Thread Jeffry Houser
Good reading, thank you! I've never heard of the p2p.wrox.com before. However it did not solve the problem. I'm running Apache on Windows 98. Also, the CFSET temp=CFUSION_DISABLE_DBCONNECTIONS("KWExcel", 1) command did not work, but thanks for that suggestion to. What did work,

RE: SQL help

2001-04-16 Thread Dave Livingston
*This message was transferred with a trial version of CommuniGate(tm) Pro* This should do it in MS-SQL Server. I think Oracle has a different Date convert function. SELECT title, date, where, description, time FROM my table WHERE (date CONVERT(DATETIME, '2001-4-16 00:00:00', 102)) ORDER BY

RE: SQL help

2001-04-16 Thread Hoffman, Joe (CIT)
Jeff, Something like this If you are actually using 'date', 'time' and 'where' as field names in your database ... they are SQL reserved word. If they are not, perhaps: SELECT title, titledate, titlewhere, description, titletime FROM my table WHERE titledate = #CreateODBCDate(NOW())# ORDER

Rename DB

2001-04-16 Thread Duane Boudreau
Hi All, I have a situation on my hands. I renamed a table that corrupt data, regenerated it from SQL and repopulated it with "good" data. Unfortunately, unbeknownst to me, the renaming of the original table caused all the triggers and views associated with the table to be modified. I am

Search Facility/Indexing Service

2001-04-16 Thread Christopher Cortes
I am looking for a product similar to Netscape's IPlanet - Compass Server. Has anyone worked with this product and know of similar tool that I can use with IIS. Thanks. - Chris !--- Christopher Cortes |Coming Q3 2001:

validation

2001-04-16 Thread Jones, Becky
i want to have a form where i can insert a new user into my database. and i have that form but i want to be able to validate it before it submits this new user into my database. i want to check to make sure the person doesnt already exist. (it wont be me entering the data, so i dont want to

RE: (Easy SQL)

2001-04-16 Thread John Wilker
dateformat(signup_datetime, "mm/dd/") Or use any mask you choose for the mm/dd/ part. Just run your query and grab the fields, then do the mask in CF when displaying the data. J. John Wilker Web Applications Consultant Allaire Certified ColdFusion Developer www.red-omega.com

RE: validation

2001-04-16 Thread Semrau, Steven L Mr SRA
What you might want to do is this: Create an action page that your form, that you have built already, is submitted to. On the action page first run a query that checks that database of users against the form input, say on Last Name. Then have a cfif that checks for the record count from the

RE: validation

2001-04-16 Thread David Baskin
Becky, this is what i do. the user submits their info and i do a check in the database on the processing page for the info they have just submitted. if it exists, i CFINCLUDE the previous page but display error messages as needed and pre-populate the fields they have filled out. if they don't

RE: Note passing system?

2001-04-16 Thread Daniel H
Tony: Have you looked at the code in Chatster? http://www.factorxsoftware.com/ This is basically a CFM version of AOLIM - ICQ etc.. dunno if this meets your needs wish you well in your quest Dan -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16,

RE: validation

2001-04-16 Thread Matt Eschenbaum
Steven has a simple and effective approach to your problem. You may also want, depending on your spec, want to allow the user to change current user information. This can be done in the same manner by giving them the option to update. Just another way to decide what the user is trying to

RE: (Easy SQL)

2001-04-16 Thread Eric Dawson
hmmm. I am getting a "'dateformat' not a recognized function" error. So I need the SQL statement similar to select datepart(,signup_datetime) as year, datepart(mm,signup_datetime) as month, datepart(d,signup_datetime) as day, count(userID) as NewMembers from membertable group by

RE: (Easy SQL)

2001-04-16 Thread Matt Eschenbaum
Here is a similar bit of code that I used to get records between certain dates. !--- Set Start and End Dates for the appointments --- cfset ODBCStartDate = "#DateFormat(Request.Week.Monday, '-MM-DD')#" " 07:00:00" cfset ODBCStartDate = CreateODBCDateTime(ODBCStartDate)

cfmal with attachments and cfserver memory usage

2001-04-16 Thread Ian MacFadyen
While sending multiple cfmail messages with attachments I have realized cfserver memory allocation problems. Has anybody else? WinNT CF Application Server 4.5.1 SP 2 acquires large volumes of RAM each time when sending large volumes of cfmails(near 1000 email messages per time, using the query

Re:CF4.5.1 SP2 is chewing up memory

2001-04-16 Thread David Frentrup
Read the thread on "smartheap", which is the memory management utility starting in 4.5. Memory is not returned to NT, but kept for cf to use later. It apparently doesn't matter what task manager or performance monitor tells you about available memory. David Frentrup I'm running CF Server

RE: (Easy SQL) Case Sensitive?

2001-04-16 Thread Erika L Walker
dateformat(signup_datetime, "mm/dd/") This post reminded me of something I needed to confirm I'm about to start development on a Unix platform, and I've been told to make sure my ColdFusion functions and Application.cfm were properly formatted in regards to case sensitivity. Is this

Re: Note passing system?

2001-04-16 Thread Paul Begovich
Sounds like you want a project management tool. We have an internal system here we use to parse out work. Basically the client/project manager submits an item to a form and it appears on the necessary persons desktop based on who they select. They see the item, do the work, mark their time,

anyone else?!

2001-04-16 Thread Jay Patton
does anyone else see anything wrong with this insert statement? INSERT INTO myWork ('siteTypeID', 'siteUrl', 'siteName', 'siteDescription', 'dateDone', 'sitePicture') VALUES ( #siteTypeId#, '#siteUrl#', '#siteName#', '#siteDescription#', '#dateDone#', '#sitePicture#') all fields are text

Server Co-Location

2001-04-16 Thread Kelly
Anyone know of any reasonable co lo places? We don't want a dedicated server we want to co-locate a server we already have. Anyway just figured I would see if anyone else was co-locating and if you could recommend any companies. Kelly ~~

CFMail not escaping dots

2001-04-16 Thread Victor Chou
I just had this interesting thing happening: While sending an html email, things look really funny, then found out that styles starting with a dot have the dot chopped off. eg. ..blah end up bing just blah Also, seems that if you have the dot on a single line as in crlf.cflf (standard way of

RE: anyone else?! GRRRRRRRRR

2001-04-16 Thread Jay Patton
its definitely Monday. ' around the column names would be my problem Sorry for the interruption Game on :) does anyone else see anything wrong with this insert statement? INSERT INTO myWork ('siteTypeID', 'siteUrl', 'siteName', 'siteDescription', 'dateDone', 'sitePicture') VALUES

RE: cfmal with attachments and cfserver memory usage

2001-04-16 Thread Christopher Cortes
Ian, It seems to me that you might be using CFMAIL as a high volume mail server. I don't think that it was intended to be used that way. Is there any way you can use ColdFusion to dump your messages to disk and use a dedicated (non-ColdFusion) mail server to do the rest of the work? Doing this

RE: anyone else?!

2001-04-16 Thread Garza, Jeff
INSERT INTO myWork (siteTypeID, siteUrl, siteName, siteDescription, dateDone, sitePicture) VALUES ( #siteTypeId#, '#siteUrl#', '#siteName#', '#siteDescription#', '#dateDone#', '#sitePicture#') To start with you don't need single quotes around your column names. The database is looking for a

RE: anyone else?!

2001-04-16 Thread Simon Horwith
try killing all those single quotes in the list of column names ;) ~Simon Simon Horwith Macromedia Certified Instructor Certified ColdFusion Developer Fig Leaf Software 1400 16th St NW, # 500 Washington DC 20036 202.797.6570 (direct line) www.figleaf.com -Original Message- From: Jay

Re: anyone else?!

2001-04-16 Thread Howie Hamlin
Take out the quotes from the first line. HTH, Howie - Original Message - From: "Jay Patton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, April 16, 2001 6:44 PM Subject: anyone else?! does anyone else see anything wrong with this insert statement? INSERT INTO

RE: anyone else?!

2001-04-16 Thread John Wilker
I'd say, ditch the single quotes around your column names. J. John Wilker Web Applications Consultant Allaire Certified ColdFusion Developer www.red-omega.com http://www.red-omega.com Pepsi's "Come Alive With the Pepsi Generation" translated into "Pepsi Brings Your Ancestors Back From the

RE: anyone else?!

2001-04-16 Thread C. Hatton Humphrey
You don't put quotes around the field names INSERT INTO myWork (siteTypeID, siteUrl, siteName, siteDescription, dateDone, sitePicture) VALUES ( #siteTypeId#, '#siteUrl#', '#siteName#', '#siteDescription#', '#dateDone#', '#sitePicture#') HTH Hatton -Original Message- From: Jay Patton

RE: Server Co-Location

2001-04-16 Thread Christopher Cortes
I have worked with DataReturn before. They seemed to have pretty good service. I don't know anything about their fees and policies. I think they are at www.datareturn.com - Chris !--- Christopher Cortes |Coming Q3 2001:

RE: CFMail not escaping dots

2001-04-16 Thread Kevin Langevin
What platform is this happening on? Sounds like a Unix/Solaris issue... CFUG-SFL Manager -Kev /CFUG-SFL Manager -Original Message- From: Victor Chou [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 6:47 PM To: CF-Talk Subject: CFMail not escaping dots I just had this

Creating Page Breaks to make page printable?

2001-04-16 Thread Steven A. del Sol
Does anyone know of a way to force printing breaks of a document? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Re: Note passing system?

2001-04-16 Thread Rey Bango
You'll have to ask Dave Watts on that one. It was a quote he made. It sounded cool so I took! ;o) Rey,,, - Original Message - From: "Jason Lotz" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, April 16, 2001 2:42 PM Subject: Re: Note passing system? "A browser's

Re: Note passing system?

2001-04-16 Thread Steven A. del Sol
I have a socket I wrote for my organization. Real crude but it works. Interested? Steve Sounds like you want a project management tool. We have an internal system here we use to parse out work. Basically the client/project manager submits an item to a form and it appears on the necessary

Re: Creating Page Breaks to make page printable?

2001-04-16 Thread jmedlin
Does anyone know of a way to force printing breaks of a document? You can do this with style sheets. -- This message sent compliments of db Technology http://www.dbtech.net/ ~~

RE: Server Co-Location

2001-04-16 Thread Erika L Walker
Do you have a location preference? Is it a rack server or a tower? Erika "Twixt optimist and pessimist, The difference is droll; The optimist sees the doughnut, The pessimist, the hole." - McLandburgh Wilson -Original Message- From: Kelly [mailto:[EMAIL PROTECTED]] Sent: Monday, April

Spectra

2001-04-16 Thread Parker, Kevin
Anyone in Australia using Spectra please contact me off list. Kevin Parker Web Services Manager WorkCover Corporation [EMAIL PROTECTED] www.workcover.com p: +61 8 82332548 f: +61 8 82332000 m: 0418 800 287

RE: Dynamically Displayed Content Weekly?

2001-04-16 Thread Christopher Olive, CIO
you don't even really need to do that. if you have queries to pull the data from your database on the "main page" (the one with the weekly data), use the CACHEDAFTER property of CFQUERY. this will cache the results until a certain date. set the date for one week from today, and voila! chris

RE: Dynamically Displayed Content Weekly?

2001-04-16 Thread Andrew Tyrone
Actually, that's not right. The cachedwithin attribute of cfquery will do what you are saying. cachedafter caches a query AFTER the date/time you specify, like so: cfquery datasource="MyDSN" name="MyQuery" cachedafter="#CreateDateTime(2001, 04, 16, 21, 35, 0)#" SQL... /cfquery

  1   2   >