RE: is an object with a lot of methods a memory buster?

2003-05-30 Thread Adam Wayne Lehman
Are there any applications out there that will give me a live view of what classes and instances are loaded? If not, where are these class files being stored or compiled to? Is cold fusion re-compiling the class when it doesn't exist? Or are they treated like templates and only being compiled when

RE: CFC and private function

2003-05-30 Thread Adam Wayne Lehman
You can also just pass it a struct and only specify keys of the parameters you want to pass. This way you only have to pass one variable through the function, and you can specify what you want and do not want. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health

RE: Recursion Tutorial?

2003-05-30 Thread webguy
BTW the king of Modelling trees in DBs, Joe Celko (http://www.celko.com/books.htm) , has got an entire book on the subject coming out, soon It calles TREES HIERARCHIES IN SQL WG -Original Message- From: Chris Montgomery [mailto:[EMAIL PROTECTED] Sent: 29 May 2003 05:04 To: CF-Talk

RE: is an object with a lot of methods a memory buster?

2003-05-30 Thread Dave Watts
Are there any applications out there that will give me a live view of what classes and instances are loaded? If not, where are these class files being stored or compiled to? I don't know if there's any way to see what's in memory, really. The class files themselves are compiled and stored

RE: Improve FB3 website performance

2003-05-30 Thread Dave Watts
we currently measure that only based on that total registrants on the Fusebox.org site. Since registration is optional (for the purposes of using Fusebox and its core files or parts thereof) the number is obviously the low range -- though not the lowest since people are clearly able to

Help w/errMsg: End of stream was detected on a read.

2003-05-30 Thread Bosky, Dave
I've been getting a few of these error messages lately but can't locate what the problem might be. - [Macromedia][SQLServer JDBC Driver]End of stream was detected on a read. - If I go the the webpage that generates the error there seems to be no visible problems, the Data is

RE: Help w/errMsg: End of stream was detected on a read.

2003-05-30 Thread Adrian Lynch
Try removing the cftry and cfcatch from the code, see what happens and let us know. Ade -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED] Sent: 29 May 2003 14:50 To: CF-Talk Subject: Help w/errMsg: End of stream was detected on a read. I've been getting a few of these

all records deleted from table

2003-05-30 Thread cburke
Does variable and CFQueryParam checking also apply to Access databases? Is it needed when using MS Access 2000 as a backend? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

all records deleted from table

2003-05-30 Thread cburke
Does val() and CfQueryParam checking also apply if you're using Access as your backend database? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: CFFILE Upload question

2003-05-30 Thread Lee, Sima - Workstream
Hi, What I did is do both client and server side validations. The client side check is put all the accepted file extension in a list then use a JavaScript to validate the file field at the submission. If the user uploaded an unaccepted file display alert message do not submit the form. The

cfobject problem in CFMX --Need urgent help.

2003-05-30 Thread ramesh d
Hi Cfobject (type is Java ) is not working after upgradation from cf4.5 to CFMX (the same cfobject code works fine in cf4.5 but not in CFMX version. Pls could you suggest me these my following setting are correct or not. And if you have any suggestion that would be great also.) do you guys

Creating XML Packet with CF5

2003-05-30 Thread Graham Pearson
In one of my applications I am trying to send information to another server via xml. I am currently using CF5 for this application and looking for resources on how to create an XML packet that when called from another server will display the correct format so the other application can read the

RE: is an object with a lot of methods a memory buster?

2003-05-30 Thread Adam Wayne Lehman
These may seem like dumb question but I'd like to confirm what may seem obvious. /WEB-INF/cfclasses holds class files for any and all compiled CFCs since the server's existence... Are these classes ever deleted? Like say I wrote a CFC when we first got the server to test how CFCs worked and all

Re: CFFILE Upload question

2003-05-30 Thread Ewok
Also using cftry and cfcatch is not enough, if the use upload an empty file the cfcatch will not catch it, but the CFFILE.ServerFile is not created, when you try to reference it you will get an error. (This was caught by our QA guy!). I've never been able to get CF 4.5 or 5 to upload a 0 byte

RE: cfobject problem in CFMX --Need urgent help.

2003-05-30 Thread webguy
Is your webroot in cfmx pointing to c:/inetpub/wwwroot/?? Put your jars and classes in c:/inetpub/wwwroot/WEB-INF/classes etc... -Original Message- From: ramesh d [mailto:[EMAIL PROTECTED] Sent: 29 May 2003 15:20 To: CF-Talk Subject: cfobject problem in CFMX --Need urgent help. Hi

Re: all records deleted from table

2003-05-30 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote: Does variable and CFQueryParam checking also apply to Access databases? Is it needed when using MS Access 2000 as a backend? Yes. I am not sure whether you get the performance improvements with Access, but cfqueryparam is still a protection against SQL Injection

Re: Creating XML Packet with CF5

2003-05-30 Thread Critz
oi Graham!! http://www.developer.be/index.cfm/fuseaction/tutorialDetail/GroupID/71/tutorialName/Generating_XML_with_ColdFusion_-_A_Rough_Guide.htm ?? Thursday, May 29, 2003, 10:27:16 AM, you wrote: GP In one of my applications I am trying to send

RE: Control Panel for hosting?

2003-05-30 Thread Stephenie Hamilton
Before we built our own dll's to do this type of thing we were using Lewis Sellers Intranet Hosting Kit (http://www.intrafoundation.com/ihtk.asp) ~~ Stephenie Hamilton Macromedia Certified ColdFusion Professional CFXHosting -Original Message- From: Troy Montour [mailto:[EMAIL

CFLOCK and CFFILE

2003-05-30 Thread yakov tetelbaum
I tried to submit form in pdf file and send to coldfusion server. It is possible to make HTML and all fields are transmitting in cfm file, but when I try fdf, pdf, or xml it is not transmitting. May be I should use special variables in cfm file Thank you in advance Yakov Tetelbaum

RE: CFFILE Upload question

2003-05-30 Thread David Collie (itndac)
Hi All, I've already sent this to Scott who asked the question but here was my go at a custom tag for file upload feel free to hack it to bits/comment on it's crapness but I think it is pretty much covering everything that you are discussing if you use it and improve it, please let me

Saving CF output to Excel and comma delimited text

2003-05-30 Thread Earl, George
We are using CF 5.0 to generate some pretty complex report output from answer sets we return from DB2 and Oracle. One of our requirements is to allow users to save the final formatted report output to Excel and to text files on their workstations (either directly in place of sending output to the

Re: Saving CF output to Excel and comma delimited text

2003-05-30 Thread Thomas Chiverton
On Thursday 29 May 2003 16:04 pm, Earl, George wrote: can import as a .xls file. I need to look at this more, but I'm concerned about the additional overhead considering the large number of reports we have. I've outputted HTML with suitable tables for Excel to parse before, and the loading

Re: Saving CF output to Excel and comma delimited text

2003-05-30 Thread CF Dude
George, I have done two things relating to Excel and CF/ASP. 1.Write results to .csv file and then import into XL. This one is pretty simple. A.Run query B.Use CFSAVECONTENT to store the contents of your csv file C.Use CFFILE to write the contents to a .csv file 2.Use the XL

Eclipse

2003-05-30 Thread Thomas Chiverton
I don't suppose anyone knows of a CFML plugin for this IDE ? -- Tom C Land of the free, home of the brave... you have to be brave to live there and enjoy the freedoms ~| Archives:

Problem with shopping cart (probably bad session coding)

2003-05-30 Thread Mark Picker
Hi All, Now this is really starting to s*t me off. Has been giving me a headache for weeks now and I'm sure it will turn out to be something very very simple that I changed that is causing my problems. More or less these pages come from a shopping cart tag I got a long time ago from the

RE: Eclipse

2003-05-30 Thread Hal Helms
I don't, Thomas, but please, if you find one, post it. Eclipse is such a great IDE. Hal Helms Java for CF Programmers class in Washington, DC June 23-27 www.halhelms.com -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 11:40 AM To:

SOT: Miva Merchant

2003-05-30 Thread Brad Roberts
Anyone using Miva Merchant? I have a client that wants e-commerce at no cost and I have a few q's about this product: 1. How difficult is it to integrate without any knowledge of the product? 2. How customizable is it (look and feel)? 3. To what extent can you use ColdFusion? Any other

RE: Saving CF output to Excel and comma delimited text

2003-05-30 Thread Ian Skinner
http://www.sys-con.com/coldfusion/article.cfm?id=378 There is a great article in the December 2001 ColdFusion Developer's Journal (Vol. 3 issue 12) Excel's Web Query by Norman Elton [http://www.sys-con.com/coldfusion/archivesa.cfm?volume=03issue=12] on using Excel Web Queries and ColdFusion to

RE: Miva Merchant

2003-05-30 Thread John Wilker
That came up at our last UG meeting. We were talking about a grou project to build a CF equivilent. A member was saying the latest miva is a compiled thing. I got this link from him, should haelp with questions of expandability and such http://www.mvcentral.com/modules.mvc?find Not sure about CF

RE: Miva Merchant

2003-05-30 Thread Dan Phillips
I have quite a bit of experience using it over the last year or so. 1. It's very easy. A web based admin just has you fill in the blanks and it does the rest. Doing this you can make the cart very basic or very complex. 2. There are a few templates included in it but you can change quite a few

OT: PHP Equiv of cfoutput group

2003-05-30 Thread cfmail
Sorry of the ot post, but does anyone know of the equivilent of cfoutput query= group= group= ability. Thanks in advance. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Recursion Tutorial?

2003-05-30 Thread Chris Montgomery
Some more links on recursion I just found: http://cfhub.com/advanced/customtags/recursion.cfm http://www.cfhub.com/tutorials/ftp2tree/recursion.cfm In addition, you might want to search the CF-Talk archives for the following subject lines: CF recursive question Recursive parent/child

Re: cfobject problem in CFMX --Need urgent help.

2003-05-30 Thread Joe Eugene
Can we see you Java Object call? Are you calling a Java Class/JavaBean? C:\CFusionMX\wwwroot\WEB-INF\siteminder_P3d1.jar C:\CFusionMX\wwwroot\WEB-INF\classes12.zip classes12.zip looks like Oracle DB Driver Classes... What is siteminder_P3d1.jar? What exactly are you doing with Java Classes?

RE: Eclipse

2003-05-30 Thread Haggerty, Mike
Have you taken a look at GEF? From the description, I would assume this is where CF Extensibility would be developed. http://www.eclipse.org/gef/ M -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 11:40 AM To: CF-Talk Subject: Eclipse I

CFobject issue in CFMX

2003-05-30 Thread ramesh d
Hi, when i execute following code i am getting below java error.. do u have any idea why it is getting.. but this is working in CF4.5 not in CFMx. any ideas greatly appreciated. Is there any mistake which i did here ? cftry cfoutput cfobject action=CREATE type=JAVA

Re: CFobject issue in CFMX

2003-05-30 Thread ramesh d
ramesh d [EMAIL PROTECTED] wrote:Hi, when i execute following code i am getting below java error.. do u have any idea why it is getting.. but this is working in CF4.5 not in CFMx. any ideas greatly appreciated. Is there any mistake which i did here ? class=#defaults.class_budget#

cfobject problem in CFMX --Need urgent help.

2003-05-30 Thread sapdeva sapdeva
Hi, when i execute following code i am getting below java error.. do u have any idea why it is getting.. but this is working in CF4.5 not in CFMx. any ideas greatly appreciated. Is there any mistake which i did here ? cftry cfoutput cfobject action=CREATE type=JAVA

RE: PHP Equiv of cfoutput group

2003-05-30 Thread Costas Piliotis
AFAIK I don't think there is one really... You'd probably just hafta do it manually: Something like: $checkvar = ; while ($row = mysql_fetch_object($result)) { if ($row-field1 != $checkvar) { //This would be your summary row. $checkvar = $row; }

OT: PHP Equiv of cfoutput group=

2003-05-30 Thread cfmail
Sorry of the ot post, but does anyone know of the equivalent of cfoutput query= group= group= ability. Thanks in advance. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

CF5/Linux Server Restarting (from Mail Spool) still!

2003-05-30 Thread Tony Schreiber
I still can't find a solution to this. I've been experimenting with the differnet kind of mail (text vs html) that gets dumped in the spool. I did a mailing with 1,800 text emails about 1.5k each. Server sent them all within 10 minutes or so, restarting only three times. I did another mailing

RE: cfobject problem in CFMX --Need urgent help.

2003-05-30 Thread Adam Wayne Lehman
Make sure you have applied updater 3. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance Education Division -Original Message- From: ramesh d [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 10:20 AM To: CF-Talk Subject: cfobject

Finding parts to a string

2003-05-30 Thread will
Hi, thanks for both your replies. Matthew, I've not tried yours yet but will do later, esp as you're a kiwi :) CF Dude, yours nearly works - except there *will* always be text after the country name. But we know there'll be a space and 3 stops, i.e. ... So how can I tell it to stop when

Re: Finding parts to a string

2003-05-30 Thread CF Dude
#TRIM(sText)# should do the trick Or cfset newText = TRIM(sText) E - Original Message - From: [EMAIL PROTECTED] Hi, thanks for both your replies. Matthew, I've not tried yours yet but will do later, esp as you're a kiwi :) CF Dude, yours nearly works - except there *will*

RE: Eclipse

2003-05-30 Thread webguy
When I went to look at Eclipse, the thing that stuck me, that it was a major hassle to add sytax highlighting , code completion for a unsupported language., you seemed to have to pratically write a token parser for each language. Is that the case? Also, its bloody big download, since it doesn't

Re: Eclipse

2003-05-30 Thread Clint
eclipse is much faster and not as much of a resource hog as jEdit though. I use eclipse to code robocode - a java based game that you use java to program tank bots that fight each other.. HTH clint - Original Message - From: webguy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: Eclipse

2003-05-30 Thread Jim Campbell
It is a big download, but I've found that it's a much faster interface than jEdit *because* it doesn't use Swing. I heartily agree that it is incredibly obtuse in some areas, though :) - Jim -Original Message- From: webguy [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 1:45 PM

Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Jamie Jackson
I hacked up the popup javascript generated by DreamWeaver MX, so I could make the popups data-driven (see below, if interested). I only have one problem, though: mm_menu.js doesn't dynamically size the popup cells, so if your data is longer than your static width, it's ugly. Apparently

RE: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Shawn Grover
The COOLjsMenu and COOLjsTree look pretty good. Decent prices too. http://javascript.cooldev.com/scripts/coolmenu/ -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 1:14 PM To: CF-Talk Subject: Making the MX Popup Menu Javascript Dynamic I

RE: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Barney Boisvert
I usually use a character count times an average width. For instance, I use 6.5 as my multiplier for 10pt verdana. Capital 'W' is 11 pixels, I believe, lowercase 'l' is 2 pixels, and the rest are somewhere in between. Really simple, no cost, and quite effective: script multiplier = 6.5; buffer

RE: is an object with a lot of methods a memory buster?

2003-05-30 Thread Dave Watts
These may seem like dumb question but I'd like to confirm what may seem obvious. /WEB-INF/cfclasses holds class files for any and all compiled CFCs since the server's existence... Are these classes ever deleted? Like say I wrote a CFC when we first got the server to test how CFCs worked

Re: Finding parts to a string

2003-05-30 Thread Matthew Walker
;-) So I look at everything upside down right? I know one thing: I look at this list when most of its members are asleep. Re regular expressions, while they're a bit daunting at first (especially when you're using CF's return subexpressions syntax), they're a really handy thing to know -- the CRC

Re: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Jamie Jackson
I had thought about that, but I think I got scared off, thinking that there may come a time when there's an inordinate number of wide characters in the string. I may decide to bite the bullet and go your route, though, considering I'm 99% there, anyway. Thanks, Jamie On Thu, 29 May 2003 12:51:33

Saving CF output to Excel and comma delimited text

2003-05-30 Thread John Ho
hi Eric I would like to see your code for option 2. would you please send for me one?. I try to create some report. I dont like the format in HTML much. Thanks John ~| Archives:

Re: is an object with a lot of methods a memory buster?

2003-05-30 Thread Sean A Corfield
On Thursday, May 29, 2003, at 06:14 US/Pacific, Adam Wayne Lehman wrote: Are there any applications out there that will give me a live view of what classes and instances are loaded? I don't know. I'm sure there are Java tools to do this tho'... If not, where are these class files being

RE: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread webguy
Does anyone know how to make to a menu like those work over a select element in IE5/win so that the select isn't visible thru' the menu div ?? My HTML/JS guy says it can't be done WG -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: 29 May 2003 20:52 To: CF-Talk

Re: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Bryan Stevenson
Your HTML/JS guy is WRONG. First I'd didch this MX JS script your using and grab CoolMenus from www.DHTMLCentral.com It works back to IE 4+ and Netscape 4+. It also works OVER select boxes and other form elements (instead of being hidden behind like you sound like you're experiencing). The

Re: RE: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread ksuh
Go to http://www.milonic.co.uk/menu/. Their menu works over select boxes. Show to your HTML/JS guy. Make sure you help him close his jaw :) - Original Message - From: webguy [EMAIL PROTECTED] Date: Thursday, May 29, 2003 2:44 pm Subject: RE: Making the MX Popup Menu Javascript Dynamic

RE: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Marlon Moyer
And he is correct. It has to do with IE reusing system objects for text boxes. In essence, your text box is sitting atop the web page and not really part of it. -Original Message- From: webguy [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 3:44 PM To: CF-Talk Subject: RE:

RE: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Marlon Moyer
From the Coolmenus web site faq: Q: How can I avoid overlapping form elements, flash plugins or applets thru coolmenus? Answer by Sergi Meseguer There are certain elements that float above HTML elements. It is not a z-index issue. Well, this is not an easy issue, as the problem is not from the

Re: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread jon hall
Select's are window elements in IE. _Nothing_ can appear above them, same as Flash. It is possible to create the illusion of this, but can be difficult if the layout doesn't take this into account. http://support.microsoft.com/support/kb/articles/Q177/3/78.ASPNoWebContent=1 One workaround

Re: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Bryan Stevenson
Marlon... I say hooey to that article...it's not written by the author of the code. ;-) All I can say is...I use CoolMenus...they do NOT let the form elements show through AND I am NOT doing anything special with the form fields (i.e. hiding them in a seperate div). To prove it...go here and

CFFILE problem

2003-05-30 Thread Venable, John
I have a template that allows one of our folks to upload a word .doc to a given directory. I have been experiencing a strange error lately. i get this error when it's run by this person: ~| Archives:

Re: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Bryan Stevenson
BTW...it's DHTMLcentral.com and not webreference.comperhaps there are 2 scripts called CoolMenus?? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] -

CFFILE Problem

2003-05-30 Thread Venable, John
as i was saying... I have a template that allows one of our folks to upload a word .doc to a given directory. I have been experiencing a strange error lately. i get this error when it's run by this person: The MIME type of the uploaded file (application/octet-stream) was not accepted by the

Re: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Calvin Ward
I was curious about that... http://www.dhtmlcentral.com/projects/webcronize/examples/hide_selecboxes_and_form_example.html Guess I'll remain curious. - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 29, 2003 4:48 PM Subject:

Re: CFFILE Problem

2003-05-30 Thread Jochem van Dieten
Venable, John wrote: as i was saying... I have a template that allows one of our folks to upload a word .doc to a given directory. I have been experiencing a strange error lately. i get this error when it's run by this person: The MIME type of the uploaded file (application/octet-stream)

Re: RE: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread ksuh
http://www.milonic.co.uk/menu/overforms_sample.php The instructions on this page are wrong, though. You don't need to wrap divs around your form. - Original Message - From: Marlon Moyer [EMAIL PROTECTED] Date: Thursday, May 29, 2003 3:01 pm Subject: RE: Making the MX Popup Menu

Re: cfobject problem in CFMX --Need urgent help.

2003-05-30 Thread Joe Eugene
cftry cfoutput cfobject action=CREATE type=JAVA class=#defaults.class_budget# name=budget_info Where is your class (defaults.class_budget) located(Directory) in CFMX? All your Java classes used as Objects/JavaBeans need to be in E:\CFusionMX\wwwroot\WEB-INF\classes You native

Non-Descript 500 Error?

2003-05-30 Thread Jeff D. Chastain
Periodically, I get a very non-descript 500 error. It shows up in the standard looking CFMX error box, but without any context - i.e. page/code location, description, debug times/info. I have encountered this before trying to cfdump a structure that if I check through other means, is a perfectly

Re: RE: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Donnie Bachan
Another fairly striaghtforward way is (at least in IE, I have not tested it on Netscape or Opera) is to hide the form element (SELECT or OBJECT) that is below the menu. I know this may not be a popular solution but go to microsoft.com and do a full save of the page, you will see toolbar.js,

Re: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Jason Miller
You know.. after programming my own w/ one of my developers, using dhtml central's and various others - milonic etc etc... they were all to heavy , bulky or something. THe happest I was - was with my own using the 1k api from dithered's site... but they were crashing too many browsers.. I

Re: Regex?

2003-05-30 Thread Ewok
hello? no ideas? - Original Message - From: Ewok [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 29, 2003 1:30 AM Subject: Regex? Hi, I've written a message board in CF The user's can add links to their posts and make them hot by surrounding the url in

RE: Regex?

2003-05-30 Thread Ben Doom
If you have a problem with the length of the string, you're going to have to loop across it, as there's not way I know of to limit the length of the output without limiting the length of the input. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original

Re: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Calvin Ward
Now put a select box under that menu and observe it. NN should obscure fine, IE should not. Calvin - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 29, 2003 5:14 PM Subject: Re: Making the MX Popup Menu Javascript Dynamic

RE: Non-Descript 500 Error?

2003-05-30 Thread Matthew Walker
Does PT-Gadget-ID mean anything to you? Do you have [PT-Gadget-ID] anywhere in your code? -Original Message- From: Jeff D. Chastain [mailto:[EMAIL PROTECTED] Sent: Friday, 30 May 2003 9:53 a.m. To: CF-Talk Subject: Non-Descript 500 Error? Periodically, I get a very non-descript

RE: Problem with shopping cart (probably bad session coding)

2003-05-30 Thread Ezine
Hrm..perhaps this has to do with browser caching :).. You also may want to make sure that on a multiple product listing.. that the other products on the form are not also getting added to the user's cart. Also.. be careful when storing the price in a hidden field in the HTML form..a

Improve FB3 website performance

2003-05-30 Thread Python Python
Well John i would be very happy to see more information about FB4. My biggest concern is beeing stuck in the middle of the convertion from FB3 to FB4, with something that i know how to do but i dont understand how it works (that's important to me) or, even worse, with a problem that i can't get

Improve FB3 website performance

2003-05-30 Thread Python Python
Ops, I didn't saw the FB4 forum, it's @ the bottom of the page. Thank you for the tips Barney. BP. It's pretty solid. I just ported a moderatly sized app (5 circuits, around 100 fuseactions) from FB3 to FB4 and haven't had any problems with the framework. Had to do some stuff differently

Improve FB3 website performance

2003-05-30 Thread Python Python
Sandy, i guess i wil have to wait for the book, cos i'm not in north america (i'm in Brazil) to attend to this courses. Maybe someone could tape those ceminars and classes and share them with the 3rd world cfers =) Regards. BP. Well lessee, CFUN03 in DC June 21/22 will be featuring 3 FB

Re: Improve FB3 website performance

2003-05-30 Thread Sean A Corfield
On Wednesday, May 28, 2003, at 23:55 US/Pacific, John Quarto-vonTivadar wrote: we currently measure that only based on that total registrants on the Fusebox.org site. I wondered where the number came from - thanx. Yes, it's really hard to get solid numbers on who is using what. I hear 300,000

CFINDEX problem

2003-05-30 Thread Andy Ousterhout
Any thoughts why the cfIndex part of this code is bombing out? cfquery name=findprod datasource=#variable.DSN# dbtype=ODBC username=#request.stcSecPriv[readUser]# password=#request.stcSecPriv[SysPassword]# select Item_PK, ID, Name, Desc, ListPrice from tabItems order by (Desc); /cfquery

RE: CFINDEX problem-Never Mind

2003-05-30 Thread Andy Ousterhout
Never mind. Found the problem. Sorry. Collection name is products, not product. -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 5:53 PM To: CF-Talk Subject: CFINDEX problem Any thoughts why the cfIndex part of this code is

CF Dev Journal Heaviest Advertiser Awards.

2003-05-30 Thread Mike Randolph
Hello Everyone, These award's are NOW NOTHING but a perk of advertising with CFDJ with their new vote counting procedures (see below). So when you decide on your next CF purchase please don't accept these awards as meaning anything but the company has an advertising budget with CFDJ. I know

Re: CF Dev Journal Heaviest Advertiser Awards.

2003-05-30 Thread ksuh
Holy babble, Batman. - Original Message - From: Mike Randolph [EMAIL PROTECTED] Date: Thursday, May 29, 2003 5:11 pm Subject: CF Dev Journal Heaviest Advertiser Awards. Hello Everyone, These award's are NOW NOTHING but a perk of advertising with CFDJ with their new vote counting

RE: CF Dev Journal Heaviest Advertiser Awards.

2003-05-30 Thread Ken Wilson
Another category needs to be added. Most Annoying Website Advertising And the winner is... http://www.sys-con.com/coldfusion/ for all it's annoying pop-ups and frame-based advertising panels. ~| Archives:

Re: CF Dev Journal Heaviest Advertiser Awards.

2003-05-30 Thread Michael Dinowitz
Please move this non-technical thread over to CF-OT or CF-Community. Thanks Hello Everyone, These award's are NOW NOTHING but a perk of advertising with CFDJ with their new vote counting procedures (see below). So when you decide on your next CF purchase please don't accept these awards as

CFMX and local SQL Server

2003-05-30 Thread Brad Peloquin
Hi, so I select data sources from the Data Services in order to define a MS SQL server database that is running on my PC, and I get the following error: = Element SQLEXECUTIVE is undefined in REQUEST. The error occurred in

RE: Non-Descript 500 Error?

2003-05-30 Thread Jeff D. Chastain
That is the name of a key in a structure that is being passed into this piece of code that is throwing the error. If I check the structure on its way into this piece of code, that key exists. So, with this and previous cases, it appears that is not really an error. Either way, my main question

RE: Non-Descript 500 Error?

2003-05-30 Thread Matthew Walker
Personally, I'm continually getting vague errors from CFMX. In my experience it's either a syntax error that's being poorly reported, or a server setup fault. I was just wondering if the hyphens in the key might be causing a problem somewhere. -Original Message- From: Jeff D. Chastain

correct way to implement this

2003-05-30 Thread Dave Lyons
if i have the following insert statement cfquery name=qaddEmployee datasource=fly INSERT INTO employee (firstName) VALUES ('#form.firstName#') /cfquery how do i add this tag to the insert statement? cfmodule template=../cf_tags/StripHTML.cfm textinvar = FORM.FRarea

Re: correct way to implement this

2003-05-30 Thread Mike Randolph
Hello Dave, I'd think you should have an 'strippedtextoutvar' (whatever the name) defined in the module call, but I'm not familiar with that specific tag. Kind Regards, Mike Randolph At 09:38 PM 5/29/2003 -0400, you wrote: if i have the following insert statement cfquery name=qaddEmployee

OT: any flash experts?

2003-05-30 Thread Tony Weeg
hey, any flash people out there... sorry cftalk for the ot, but this is something i gotta figure out, before i waste too much time with flash... can i do a gradient mask, so that images could go from one side to the other, and when they get to the left side they fade into white? does that make

RE: correct way to implement this

2003-05-30 Thread Matthew Walker
Like this perhaps? (If you're using cf5+ you might want to use a udf striphtml() which you can insert inline - Isaac has one at cflib.org I think.) cfmodule template=../cf_tags/StripHTML.cfm textinvar = FORM.FRarea cfquery name=qaddEmployee datasource=fly INSERT INTO employee

RE: any flash experts?

2003-05-30 Thread Gunther Ahamer
yes you can - have the gradient layer on top of the sliding image... the gradient should be transparent to white try www.flashkit.com -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, 30 May 2003 11:42 AM To: CF-Talk Subject: OT: any flash experts? hey, any

Re: OT: any flash experts?

2003-05-30 Thread Mike Randolph
Hey Tony, No answer for you but I've been lurking on the chatty fig Flash lists and there very active, I'd join quick :) http://chattyfig.figleaf.com/ Cheers (It's after 5:)), Mike Randolph At 09:42 PM 5/29/2003 -0400, you wrote: hey, any flash people out there... sorry cftalk for the ot,

Re: any flash experts?

2003-05-30 Thread Dave Lyons
i can probably do that 4 ya tony - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 29, 2003 9:42 PM Subject: OT: any flash experts? hey, any flash people out there... sorry cftalk for the ot, but this is something i gotta figure

RE: any flash experts?

2003-05-30 Thread Tony Weeg
twas what i thoughtthank you! i just started playing with that actually ;) y'all are good tho' hey...only 8 more days and heck, only 5 more till i turn 30!!! later all. tw -Original Message- From: Gunther Ahamer [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 9:47 PM

Re: any flash experts?

2003-05-30 Thread Jason Miller
p.s use a transparent .png format for best results. Also there is actionscript where you can alter the color in advanced stages... Unless you specifically need it an image sliding to the left in a gradient until it disappears is the same as an image moving to the left while winding down

Re: correct way to implement this

2003-05-30 Thread Dave Lyons
i already have the template, i just dont know where to stick the tag to make sure it strips everything. By the looks of what you wrote i should just place them before the insert statement. I have the template in a folder called cf_tags would it be like this and just put a tag for each field

Re: any flash experts?

2003-05-30 Thread Dave Lyons
you can also use swish i did this one in about 5 minutes http://www.horsenrider.com/horsenrider/horse/search.horse/show.all.cfm - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 29, 2003 9:52 PM Subject: RE: any flash experts?

  1   2   >