RE: cfquery and two column output
You want to split 30 records into 15 in each column? If that is what you are saying then, this might help. Let's say your query is named 'q' and it has columns 'title' and 'body' with 30 records total. #q.title[i]# #q.body[i]# #q.title[i]# #q.body[i]# Joseph DeVore VeloxWeb Technologies -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 10:34 PM To: CF-Talk Subject: cfquery and two column output Hello Everyone. I have a query that returns say 30 records. What I am attempting to do is output the records in two columns but I am not having much luck. Can someone point me in the right direction? TIA, Mike Michael T. Tangorre Resident Assistant - Brick Web Applications Developer A.U. Webteam Slave :-) AIM: CrazyFlash4 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
cfquery and two column output
Hello Everyone. I have a query that returns say 30 records. What I am attempting to do is output the records in two columns but I am not having much luck. Can someone point me in the right direction? TIA, Mike Michael T. Tangorre Resident Assistant - Brick Web Applications Developer A.U. Webteam Slave :-) AIM: CrazyFlash4 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
JavaScript: onLoad and onSubmit
(Sorry if this doesn't make sense its 1am on the east coast) I know this possible but I can not remember how this is done. In my code below I have two problems, 1) I am over writing the onload event, which is a pain if anything else has already modified this event, or there is an onload event set. 2) I am over writing the onSubmit, which has the same problems as onLoad I know it is possible to append to the onSubmit and onLoad functions but I cant seem to remember what the correct syntax is. My code is structured like this (I've cut out several hundred lines of code but this should give you the idea): SELECT fieldtype, fieldlabel FROMformfields #qryFormFields.fieldlabel# - DisplayFormField.cfm function f1() { if (.) { alert("f1 invalid"); return false; } } document.forms[0].onSubmit="return f1();" function f1() { if (.) { alert("invalid image"); return false; } } document.forms[0].onSubmit="return f1();" - HexaEdit.cfm ... function saveHTML( ) { ... } function initEditor() { ... } document.forms[0].onSubmit="saveHTML( );" document.onload="initEditor();"> ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Best practices storing CC
> Somehow, that sounds like a lot more work for the customer than simply > reaching into his or her wallet, grabbing the CC and re-entering the > number. Hi Jim, By client, I actually meant the site owner/operator - my client :) The end user simply enters their credit card details once, and the tag encrypts them and stores them in the database. The site owner/operator is the one who has to enter the private key anytime they want to decrypt the numbers. Regards, Kay. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Best practices storing CC
been silent on this one :) I have considered implementing something for the wonderful CFWEBSTORE that we use as a base for our commerce implementations... some ground rules for whatever you use: 1. Store CC number + expiration + name in encrypted format... any one of the three fields got in plain text could be the start of compromising the rest... 2. Ideally, the password, keypad used to create the encryption schema shouldn't be found in plain text anywhere on your server. 3. Your decryption key/password should change with some regularity and be unique to each client. 4. Any swap spaces (disk) that is used to encrypt stuff should be routinely wiped of data and overwritten to make recovery impossible. As far as the encryption methodology, the RSA has proven itself to be some of the best stuff widely used to date. If you can buy the base technology and implementation at a price you/client can afford. IN the case of monthly renewals... If the cycle is set to auto-rebill, store the key yourself and have someone type it in while connected via SSL to the server as a monthly task If the renewal requires authorization each month from the card holder, create a form-based solution for the customer... Pull a faked TRANSACTION identifier that identifies the person/last transaction. Get a Yes or No from them to rebill... Ask them if they want to use the credit info you have on file... then have it added to a nightly batch or in the case of live time, you would have to store your pad in server's memory Recommend a daily batch job ran by administrator with the pad Ideally, with one set of keys the operator controls the show... with truly encrypted data, if a key is lost there is no data... :) Been through the consideration of this sort of solution for a while. Never found the real need in my world to implement it... Will be glad to share more with greater details provided by anyone. I believe that these sorts of subsystems will become mandatory shortly for anyone taking transactions involving banking info online. -paris -Original Message- From: Don Vawter [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 22:55 To: CF-Talk Subject: Re: Best practices storing CC I don't think client and customer are the same Jim. I think by client she is referring to the site owner who goes in once a month to process the cards of his customers. - Original Message - From: "Jim McAtee" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 8:42 PM Subject: Re: Best practices storing CC > - Original Message - > From: "Kay Smoljak" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Sunday, November 18, 2001 8:28 PM > Subject: Re: Best practices storing CC > > > > Hi Don, > > > > Warning: this email does contain a plug... > > > > We had a similar problem with a client who has a subscription site. We > > created a custom tag - CFX_PWCARDCRYPT, which encrypts the number using > > a 512, 1024 or 2048 bit RSA public key, which can safely be stored on > > the server. To process the payments each month, the client goes to an > > SSL page and enters his private key, which is only stored offline on his > > personal computer (we even recommend it's stored on a floppy disk in his > > safe, rather than on his machine). > > > Somehow, that sounds like a lot more work for the customer than simply > reaching into his or her wallet, grabbing the CC and re-entering the number. > > Jim > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Best practices storing CC
I don't think client and customer are the same Jim. I think by client she is referring to the site owner who goes in once a month to process the cards of his customers. - Original Message - From: "Jim McAtee" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 8:42 PM Subject: Re: Best practices storing CC > - Original Message - > From: "Kay Smoljak" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Sunday, November 18, 2001 8:28 PM > Subject: Re: Best practices storing CC > > > > Hi Don, > > > > Warning: this email does contain a plug... > > > > We had a similar problem with a client who has a subscription site. We > > created a custom tag - CFX_PWCARDCRYPT, which encrypts the number using > > a 512, 1024 or 2048 bit RSA public key, which can safely be stored on > > the server. To process the payments each month, the client goes to an > > SSL page and enters his private key, which is only stored offline on his > > personal computer (we even recommend it's stored on a floppy disk in his > > safe, rather than on his machine). > > > Somehow, that sounds like a lot more work for the customer than simply > reaching into his or her wallet, grabbing the CC and re-entering the number. > > Jim > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Best practices storing CC
- Original Message - From: "Kay Smoljak" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 8:28 PM Subject: Re: Best practices storing CC > Hi Don, > > Warning: this email does contain a plug... > > We had a similar problem with a client who has a subscription site. We > created a custom tag - CFX_PWCARDCRYPT, which encrypts the number using > a 512, 1024 or 2048 bit RSA public key, which can safely be stored on > the server. To process the payments each month, the client goes to an > SSL page and enters his private key, which is only stored offline on his > personal computer (we even recommend it's stored on a floppy disk in his > safe, rather than on his machine). Somehow, that sounds like a lot more work for the customer than simply reaching into his or her wallet, grabbing the CC and re-entering the number. Jim ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Client storage woes
I haven't tried that yet but it's worth a shot. Regards, Howie - Original Message - From: "Matt Robertson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 10:23 PM Subject: Re: Client storage woes > Have been following this thread all day long. Doesn't sound as if anything > is wrong. Must be maddening. > > Have you tried a cold reboot to reset all services to see if that helps? > Just a shot in the dark. > > - > Matt Robertson [EMAIL PROTECTED] > MSB Designs, Inc. http://mysecretbase.com > - > > > - Original Message - > From: "Howie Hamlin" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Sunday, November 18, 2001 5:53 PM > Subject: Re: Client storage woes > > > They are the same. I had CF create the tables... > > Thanks, > > Howie > > - Original Message - > From: "Tony Gruen" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Sunday, November 18, 2001 7:26 PM > Subject: RE: Client storage woes > > > > Compare the field types in your SQL Server databases on Dev and > Production. > > Your production database field type may need modified. > > > > Tony Gruen > > sfnetworks > > > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Best practices storing CC
Hi Don, Warning: this email does contain a plug... We had a similar problem with a client who has a subscription site. We created a custom tag - CFX_PWCARDCRYPT, which encrypts the number using a 512, 1024 or 2048 bit RSA public key, which can safely be stored on the server. To process the payments each month, the client goes to an SSL page and enters his private key, which is only stored offline on his personal computer (we even recommend it's stored on a floppy disk in his safe, rather than on his machine). The numbers are then decrypted and batch processed. The decrypted cc numbers and private key are *never* stored anywhere on the server except in memory. I'm sure it's not as secure as having a separate db server behind a firewall with hardware encryption etc etc, but it works on shared hosting and is every bit as secure as PGP, but without the huge cost. We're selling the tag for US$49 (http://www.developer.perthweb.com.au), and it doesn't require any other software. Contact me offlist if you have any questions. Regards, Kay. "Don Vawter" <[EMAIL PROTECTED]> wrote in message news:<098f01c16ee1$f8211860$6501a8c0@LAPTOP>... > I don't WANT to store credit card information. The question is whether > the customer is willing to reenter cc number every month. The billing > is monthly but unlike a subscription the charge is not constant which > seems to be difficult for the providers to handle. Currently I use > payflow from Verisign (cfm app by the way) and am perfectly happy with > them. I am just afraid in this new scenario that a B2B customer is > unlikely to be happy filling in cc info every month. Any better > solutions would be very welcome. I could even go the paper invoicing > method if necessary but that seems terribly inefficient. > > > - Original Message - > From: "BILLY CRAVENS" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Friday, November 16, 2001 1:07 PM > Subject: Re: Best practices storing CC > > > > > > I would strongly recommend against storing credit card numbers > anywhere. > > 1. potential for thousands, if not millions, in dollars of liability > > 2. if the site's customers find out, they will likely go > > somewhere > else > > (I do when I know a site stores my card #) > > 3. performance - CF's encryption is too weak - you'd need to use > > something third-party which would probably be a load increase > > 4. see #1 > > 5. see #4 > > 6. see #5 > > > > > > However, if you just HAVE to keep your users from reentering their > > card # every time, look at some third party solutions. Microsoft's > > comes to > mind. > > (Okay ppl - let's pretend like we're mature and not turn this into > > another pathetic "why Microsoft is bad thread" - I'm just pointing > > out a potential > > technology) I don't know how much faith I have in other company's > security > > infrastructures, but I'd be willing to bet that it's far better than > > anything that I could ever hope to build. > > > > > > > > > > - Original Message - > > From: "Don Vawter" <[EMAIL PROTECTED]> > > To: "CF-Talk" <[EMAIL PROTECTED]> > > Sent: Friday, November 16, 2001 1:46 PM > > Subject: Best practices storing CC > > > > > > > Any advice on storing credit card info? > > > > > > > > > My thoughts are that it should be stored in a separate db which is > > > not accessible via web and have cf push the info to a template > > > behind the firewall to do the > > actual > > > authorization and push the results back to the main server. Does > > > this > make > > > sense or am I making it too complicated (or leaving something > > > obvious > > out). > > > > > > What are recommendatsions on encyption, is DES ok or do I need > > > something else? > > > > > > TIA > > > > > > Don > > > > > > ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Client storage woes
Have been following this thread all day long. Doesn't sound as if anything is wrong. Must be maddening. Have you tried a cold reboot to reset all services to see if that helps? Just a shot in the dark. - Matt Robertson [EMAIL PROTECTED] MSB Designs, Inc. http://mysecretbase.com - - Original Message - From: "Howie Hamlin" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 5:53 PM Subject: Re: Client storage woes They are the same. I had CF create the tables... Thanks, Howie - Original Message - From: "Tony Gruen" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 7:26 PM Subject: RE: Client storage woes > Compare the field types in your SQL Server databases on Dev and Production. > Your production database field type may need modified. > > Tony Gruen > sfnetworks ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: uploading a whole folder-- instead of just a file.
You might try AppletFile... http://www.infomentum.com/appletfile/ I don't know about selecting a folder at a time, but you could definately add all the files in one trip. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 4:54 PM To: CF-Talk Subject: RE: uploading a whole folder-- instead of just a file. > ---how do I upload a FOLDER to the server? -- The short answer is, you don't, with just an HTML interface. If you can get your users to zip the folder into a file, as others have mentioned, you can then upload that file, but HTML forms by themselves don't provide a way to upload an entire folder. I wouldn't be surprised if there are ActiveX controls to allow this, but of course they'd only work on IE. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Fusebox - opinions?
> 2. Jumping back and forth between all the folders that is used to keep > track of your application. IE: _dsp, _act, _scripts, _css, _qry, > _images etc etc. If you are doing the site by yourself, this can > become tiresome. First you have to look at your index.cfm to see what > query you were using on a particular page and then go to the _qry > folder to find the file Just a note - you don't have to have your circuits set up like this. I go for the one circuit - one folder approach, with all my dsp_, qry_ and act_ files in one directory. Much easier to read. That kind of thing is entirely up to the individual. There's a lot in Fusebox that you can either take or leave depending on your requirements or individual style - that's one of the great things about it. I'm also a Fusebox convert - I picked it up a few months ago and can honestly say I would never go back. Following the methodology has changed the way I plan applications as well as how I document and code them. I think it's good to have a methodology - any methodology. Fusebox is great because it's already developed and has a strong community supporting it, but if you want to create something yourself or use another methodology I say go for it. Regards, Kay. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Client storage woes
They are the same. I had CF create the tables... Thanks, Howie - Original Message - From: "Tony Gruen" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 7:26 PM Subject: RE: Client storage woes > Compare the field types in your SQL Server databases on Dev and Production. > Your production database field type may need modified. > > Tony Gruen > sfnetworks ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Can't send form data with spaces in Netscape 4.61
Pardeep, Send me your code off list so I can help you out. It's pretty quick and easy. Joseph DeVore VeloxWeb Technologies -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 4:53 PM To: CF-Talk Subject: Can't send form data with spaces in Netscape 4.61 I'm unable to send form data with spaces in Netscape 4.61 Is there a way to URL encode it and then URL decode the message in the receiving file? Or is the solution to send to a redirect file with URL encode added to a URL going to the processing script? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Can't send form data with spaces in Netscape 4.61
I'm unable to send form data with spaces in Netscape 4.61 Is there a way to URL encode it and then URL decode the message in the receiving file? Or is the solution to send to a redirect file with URL encode added to a URL going to the processing script? ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Newbie question about CF Admin
You can tell the ADMIN not to ask for the password by editing your registry: If you are familiar with REGEDIT go in there and navigate to the following key: HKEY_LOCAL_MACHINE\ALLAIRE\COLD FUSION\CURRENT VERSION\SERVER in here you will see a listing of KEYS on the right, Scroll down untiil you see a key named: "UseAdminPassword" this value should be set to 1 (this means use password), right click the key and go select modify.. Change the value to 0. Close regedit, restart and you can get back into ADMIN. Hope that helps, and if you are not familiar or comfortable in the regsitry don't go in there, you can do some damage! Mike -Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 6:40 PM To: CF-Talk Subject: Newbie question about CF Admin Hey gang, I'm new to learning CF so please bear with my stupid questions. I have installed CF Admin (eval), and CF Studio (eval), and I'm basically following the book by Forte. At first, when following exercises, things were ok, then I ran into a snag trying to set up a record wizard of not being able to login to localhost to set file path and parameters for the wizard to create the file. I went back into Admin and blanked the password, and now I can't get into CF Admin. I'm at the point of pulling and re-installing CF Admin, but I kinda like to figure out these little problems instead of just making them go away...Any ideas? Please email me direct with solutions/sugestions. Thanks, Mike --- --- [EMAIL PROTECTED] --- all the world to me is a stage, and we are merely players FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Client storage woes
Compare the field types in your SQL Server databases on Dev and Production. Your production database field type may need modified. Tony Gruen sfnetworks -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 1:54 PM To: CF-Talk Subject: Client storage woes Our main web server has a registry that is huge because of the CF client storage. So, I decide to store client data in a SQL db. I can get this to work fine on my development server but when I try to do the same thing for the production server I get a SQL error when accessing pages: ODBC Error Code = 22001 (String data right truncation) [Microsoft][ODBC SQL Server Driver][SQL Server]String or binary data would be truncated. I have no idea why this happens on our production server. Both production and test servers are CF5. Thanks, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server <<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product >>> http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm >>> Find out how iMS Stacks up to the competition: http://www.coolfusion.com/imssecomparison.cfm ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Client storage woes
> My production server has 2.5.1 and the dev server has 2.6. > Would you recommend upgrading to 2.6 or 2.7? I didn't even know there was a 2.7, so I'm probably not qualified to give you advice on this. I'd probably stick with 2.6 SP1, since you know that works on the dev server. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Newbie question about CF Admin
Hey gang, I'm new to learning CF so please bear with my stupid questions. I have installed CF Admin (eval), and CF Studio (eval), and I'm basically following the book by Forte. At first, when following exercises, things were ok, then I ran into a snag trying to set up a record wizard of not being able to login to localhost to set file path and parameters for the wizard to create the file. I went back into Admin and blanked the password, and now I can't get into CF Admin. I'm at the point of pulling and re-installing CF Admin, but I kinda like to figure out these little problems instead of just making them go away...Any ideas? Please email me direct with solutions/sugestions. Thanks, Mike --- --- [EMAIL PROTECTED] --- all the world to me is a stage, and we are merely players FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Client storage woes
My production server has 2.5.1 and the dev server has 2.6. Would you recommend upgrading to 2.6 or 2.7? Thanks, Howie - Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 5:50 PM Subject: RE: Client storage woes > > Our main web server has a registry that is huge because of > > the CF client storage. So, I decide to store client data in > > a SQL db. I can get this to work fine on my development server > > but when I try to do the same thing for the production server > > I get a SQL error when accessing pages: > > > > ODBC Error Code = 22001 (String data right truncation) > > [Microsoft][ODBC SQL Server Driver][SQL Server]String or > > binary data would be truncated. > > > > I have no idea why this happens on our production server. > > Both production and test servers are CF5. > > I'd look at these things: > > 1. Is the data schema exactly the same for both development and production > databases for the CDATA and CGLOBAL tables? Unless you created the data > schema manually, this shouldn't be a problem. > > 2. In your ODBC datasource configuration in the CF Administrator on the > production server, did you enable the "Long Text Retrieval Settings" option? > > 3. Do you have different versions of MDAC on your two servers? You can find > out which version you have on each with the MDAC Component Checker, > available at http://www.microsoft.com/data/. > > My money is on number 2. > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ > voice: (202) 797-5496 > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
AW: ALTER TABLE in access
James, I had my problems with that too. You have got to take JET SQL for Access. An excellent article lerning the right commands you can find at: http://www.citilink.com/~jgarrick/vbasic/database/jetsql.html Uwe -Ursprüngliche Nachricht- Von: James Sleeman [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 15. November 2001 07:54 An: CF-Talk Betreff: ALTER TABLE in access Hi all, I have a number of sites in the field running off of some shared code but independent access databases for each. Anyway, I have just realised that one field, in the database schema is slightly smaller than it should be and could cause problems at some stage (not a serious one, but still) namely because it's a primary key UUID which is now being truncated to only 25 characters (why I thought a UUID was 25 characters I don't know). Anyway I don't really want to have to bring down each database and modify the length of this field. All the sites run off of the same code, it would be a trivial matter for me to throw a check in there to see if the database has a correct field length and run a query if it doesn't the next time a site administrator checks their admin area. However it looks like Access can't do this from SQL. Normally (in a real man's database engine :-)) I'd do something like ALTER TABLE ALTER Column PrID VARCHAR(45) but Access doesn't want to play ball. Anybody know a way of doing this ? -- James Sleeman Innovative Media Ltd Phone: (03) 377 6262 http://www.websolutions.co.nz/ CAUTION: The information contained in this email message is confidential and may be legally privileged. If the reader of this message is not the intended recipient you are notified that any use, dissemination, distribution or reproduction of this message is prohibited. If you have received this message in error please notify the sender immediately and destroy the original message and any attachments. Views expressed in this communication may not be those of Innovative Media Ltd. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Client storage woes
- Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 5:50 PM Subject: RE: Client storage woes > > Our main web server has a registry that is huge because of > > the CF client storage. So, I decide to store client data in > > a SQL db. I can get this to work fine on my development server > > but when I try to do the same thing for the production server > > I get a SQL error when accessing pages: > > > > ODBC Error Code = 22001 (String data right truncation) > > [Microsoft][ODBC SQL Server Driver][SQL Server]String or > > binary data would be truncated. > > > > I have no idea why this happens on our production server. > > Both production and test servers are CF5. > > I'd look at these things: > > 1. Is the data schema exactly the same for both development and production > databases for the CDATA and CGLOBAL tables? Unless you created the data > schema manually, this shouldn't be a problem. > I had CF create the tables. > 2. In your ODBC datasource configuration in the CF Administrator on the > production server, did you enable the "Long Text Retrieval Settings" option? > I didn't - I changed the setting but it made no difference. > 3. Do you have different versions of MDAC on your two servers? You can find > out which version you have on each with the MDAC Component Checker, > available at http://www.microsoft.com/data/. > OK, I'll check that. Thanks, Howie > My money is on number 2. > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ > voice: (202) 797-5496 > ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Fusebox - opinions?
Costas Piliotis, IMO, The Fusebox 3.0 methodology Rocks! http://fusebox.org Have you taken the time to read the spec or create any applications? Even when NEO comes out, not everyone will have the means to upgrade. No matter which route CF takes, Fusebox makes a better developer! It will change the way you plan and code your applications even if you don't decide to use the methodology. If you take the time to check it out, I'm sure you will agree! Gyrus, I would encourage you to read the new spec and forget the book and it's reviews. (The book is old and covers Fusebox 1.0) If you want to purchase something to help you with Fusebox check out the 'Conference in a Box' from Hal Helms: http://halhelms.com/ CIAO, Joseph DeVore VeloxWeb Technologies -Original Message- From: Costas Piliotis [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 12:49 PM To: CF-Talk Subject: RE: Fusebox - opinions? Since everyone has put their two pennies in... Fusebox is a nice idea. IMHO though, Cold Fusion was never intended for structured programming in the modern, object oriented terms. New will have cf classes and stuff, so fusebox may or may not be the way to go. Here's the best thing about cold fusion: It allows developers the flexibility to design using the methodology they deem appropriate. There are no "rules" in cold fusion (other than the cf tags and functions). I'd check the specs on neo (cf6) and hold off. Fusebox is a methodology that may not bode well with the stuff in cf6. Just suggesting you be careful. -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Friday, November 16, 2001 6:41 PM To: CF-Talk Subject: Fusebox - opinions? OK, I think I'm on the verge of knuckling down and getting friendly with Fusebox for CF. Glancing through the PPT presentations, it seems pretty cool, and quite close to the systems I've developed anyway, only better organised :) A few questions for everyone out there who uses Fusebox: 1. Pros? Cons? Opinions? I've generally only seen good feedback, but I thought I'd see... 2. Is there any good documentation/literature? I think the PPT presentations should get me going, but I know I'll want something a little meatier. I was going to try out the book but it got so-so reader reviews on Amazon.com. Anyone think the book's worth it? Alternative deeper discussions of Fusebox anywhere? 3. I've not really used PHP or ASP. Does anyone know how the moves to have Fusebox work for these is going? Will knowing Fusebox in CF help me get going quicker with PHP/ASP if/when I delve into them (assuming Fusebox has been adapted for them)? 4. Some clients I have are still hosted with CF 4.0 - does this pose any problems for using Fusebox 3? All comments and feedback most welcome :) - Gyrus ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: uploading a whole folder-- instead of just a file.
> ---how do I upload a FOLDER to the server? -- The short answer is, you don't, with just an HTML interface. If you can get your users to zip the folder into a file, as others have mentioned, you can then upload that file, but HTML forms by themselves don't provide a way to upload an entire folder. I wouldn't be surprised if there are ActiveX controls to allow this, but of course they'd only work on IE. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Client storage woes
I had CF create them. Howie - Original Message - From: "Joseph DeVore" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 5:41 PM Subject: RE: Client storage woes > Did you have ColdFusion create the tables on your production server when > switching to ODBC client storage, or did you import them from the dev box? > > If you didn't have CF create the tables, it's possible you selected an > incorrect datatype. > > > Joseph DeVore > VeloxWeb Technologies > > > > -Original Message- > From: Howie Hamlin [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 18, 2001 1:54 PM > To: CF-Talk > Subject: Client storage woes > > > Our main web server has a registry that is huge because of the CF client > storage. So, I decide to store client data in a SQL db. I > can get this to work fine on my development server but when I try to do the > same thing for the production server I get a SQL error > when accessing pages: > > ODBC Error Code = 22001 (String data right truncation) > [Microsoft][ODBC SQL Server Driver][SQL Server]String or binary data would > be truncated. > > I have no idea why this happens on our production server. Both production > and test servers are CF5. > > Thanks, > > -- > Howie Hamlin - inFusion Project Manager > On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 > inFusion Mail Server (iMS) - The Intelligent Mail Server > <<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product > >>> > http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm > >>> Find out how iMS Stacks up to the competition: > http://www.coolfusion.com/imssecomparison.cfm > > > ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Client storage woes
> Our main web server has a registry that is huge because of > the CF client storage. So, I decide to store client data in > a SQL db. I can get this to work fine on my development server > but when I try to do the same thing for the production server > I get a SQL error when accessing pages: > > ODBC Error Code = 22001 (String data right truncation) > [Microsoft][ODBC SQL Server Driver][SQL Server]String or > binary data would be truncated. > > I have no idea why this happens on our production server. > Both production and test servers are CF5. I'd look at these things: 1. Is the data schema exactly the same for both development and production databases for the CDATA and CGLOBAL tables? Unless you created the data schema manually, this shouldn't be a problem. 2. In your ODBC datasource configuration in the CF Administrator on the production server, did you enable the "Long Text Retrieval Settings" option? 3. Do you have different versions of MDAC on your two servers? You can find out which version you have on each with the MDAC Component Checker, available at http://www.microsoft.com/data/. My money is on number 2. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Client storage woes
Did you have ColdFusion create the tables on your production server when switching to ODBC client storage, or did you import them from the dev box? If you didn't have CF create the tables, it's possible you selected an incorrect datatype. Joseph DeVore VeloxWeb Technologies -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 1:54 PM To: CF-Talk Subject: Client storage woes Our main web server has a registry that is huge because of the CF client storage. So, I decide to store client data in a SQL db. I can get this to work fine on my development server but when I try to do the same thing for the production server I get a SQL error when accessing pages: ODBC Error Code = 22001 (String data right truncation) [Microsoft][ODBC SQL Server Driver][SQL Server]String or binary data would be truncated. I have no idea why this happens on our production server. Both production and test servers are CF5. Thanks, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server <<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product >>> http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm >>> Find out how iMS Stacks up to the competition: http://www.coolfusion.com/imssecomparison.cfm ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Neo/CF6 and Fusebox (was: Fusebox - opinions?)
The houseoffusion mailing group is no longer the active mailing list - join [EMAIL PROTECTED] I think you'll find this mailing list far from dormant. HTH KOla Oyedeji web developer http://www.alexandermark.com -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 10:07 PM To: CF-Talk Subject: Neo/CF6 and Fusebox (was: Fusebox - opinions?) > > Fusebox is a methodology that may not bode > > well with the stuff in cf6. > > Or it may be perfectly suited to it...unless, of course, you are saying that > from a position of detailed knowledge regarding both NEO and Fusebox3. > > Might be well to check with someone who attended the Fusebox conference in > Orlando on Saturday just before the DevCon. Jeremy Allaire was the keynote > speaker and may have addressed that in some regard. Can anyone comment on this, or on Neo/CF6 and structured programming styles in general? I joined the [EMAIL PROTECTED] list but the only post I've had so far is someone saying they'll be away from their office for a while! :( - Gyrus ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Neo/CF6 and Fusebox (was: Fusebox - opinions?)
You will find us (them?) over at [EMAIL PROTECTED] Signup at HalHelms.com > I joined the [EMAIL PROTECTED] list but the only > post I've had so far is someone saying they'll be away from > their office for a while! :( > > - Gyrus > > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Neo/CF6 and Fusebox (was: Fusebox - opinions?)
> > Fusebox is a methodology that may not bode > > well with the stuff in cf6. > > Or it may be perfectly suited to it...unless, of course, you are saying that > from a position of detailed knowledge regarding both NEO and Fusebox3. > > Might be well to check with someone who attended the Fusebox conference in > Orlando on Saturday just before the DevCon. Jeremy Allaire was the keynote > speaker and may have addressed that in some regard. Can anyone comment on this, or on Neo/CF6 and structured programming styles in general? I joined the [EMAIL PROTECTED] list but the only post I've had so far is someone saying they'll be away from their office for a while! :( - Gyrus ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Client storage woes
Our main web server has a registry that is huge because of the CF client storage. So, I decide to store client data in a SQL db. I can get this to work fine on my development server but when I try to do the same thing for the production server I get a SQL error when accessing pages: ODBC Error Code = 22001 (String data right truncation) [Microsoft][ODBC SQL Server Driver][SQL Server]String or binary data would be truncated. I have no idea why this happens on our production server. Both production and test servers are CF5. Thanks, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server <<< Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product >>> http://www.sys-con.com/coldfusion/readerschoice2001/nominationformbpa.cfm >>> Find out how iMS Stacks up to the competition: >http://www.coolfusion.com/imssecomparison.cfm ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Fusebox - opinions?
> Fusebox is a methodology that may not bode > well with the stuff in cf6. Or it may be perfectly suited to it...unless, of course, you are saying that from a position of detailed knowledge regarding both NEO and Fusebox3. Might be well to check with someone who attended the Fusebox conference in Orlando on Saturday just before the DevCon. Jeremy Allaire was the keynote speaker and may have addressed that in some regard. Ken ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Fusebox - opinions?
Since everyone has put their two pennies in... Fusebox is a nice idea. IMHO though, Cold Fusion was never intended for structured programming in the modern, object oriented terms. New will have cf classes and stuff, so fusebox may or may not be the way to go. Here's the best thing about cold fusion: It allows developers the flexibility to design using the methodology they deem appropriate. There are no "rules" in cold fusion (other than the cf tags and functions). I'd check the specs on neo (cf6) and hold off. Fusebox is a methodology that may not bode well with the stuff in cf6. Just suggesting you be careful. -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Friday, November 16, 2001 6:41 PM To: CF-Talk Subject: Fusebox - opinions? OK, I think I'm on the verge of knuckling down and getting friendly with Fusebox for CF. Glancing through the PPT presentations, it seems pretty cool, and quite close to the systems I've developed anyway, only better organised :) A few questions for everyone out there who uses Fusebox: 1. Pros? Cons? Opinions? I've generally only seen good feedback, but I thought I'd see... 2. Is there any good documentation/literature? I think the PPT presentations should get me going, but I know I'll want something a little meatier. I was going to try out the book but it got so-so reader reviews on Amazon.com. Anyone think the book's worth it? Alternative deeper discussions of Fusebox anywhere? 3. I've not really used PHP or ASP. Does anyone know how the moves to have Fusebox work for these is going? Will knowing Fusebox in CF help me get going quicker with PHP/ASP if/when I delve into them (assuming Fusebox has been adapted for them)? 4. Some clients I have are still hosted with CF 4.0 - does this pose any problems for using Fusebox 3? All comments and feedback most welcome :) - Gyrus ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
SOLVED RE: Off Topic
Mike, That worked! Thanks for all the kind help. Thanks to everyone else who responded as well. :-) Mike -Original Message- From: Michael Wilson [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 3:13 PM To: CF-Talk Subject: RE: Off Topic Hi, If I follow you correctly you want to do it onMouseover... The following will work for IE... I think 4.x and up. It doesn't work in NN 4.x, but I don't know about 6.x versions: Watch me get scared! You can use this for NN 4.x, however I haven't tested it in 6.x: My text link here You could do a browser sniff and use to determine which one to show the user, based on their browser. HTH, Mike > -Original Message- > From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 18, 2001 2:13 PM > To: CF-Talk > Subject: Off Topic > > > Sorry for posting this here but I could not find a CSS list > that had people responding on it.. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
Hi, If I follow you correctly you want to do it onMouseover... The following will work for IE... I think 4.x and up. It doesn't work in NN 4.x, but I don't know about 6.x versions: Watch me get scared! You can use this for NN 4.x, however I haven't tested it in 6.x: My text link here You could do a browser sniff and use to determine which one to show the user, based on their browser. HTH, Mike > -Original Message- > From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 18, 2001 2:13 PM > To: CF-Talk > Subject: Off Topic > > > Sorry for posting this here but I could not find a CSS list > that had people responding on it.. ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off Topic
> I thought maybe > TD.nav:hover{..} might work. I think in CSS2, in theory, you should be able to stick ":hover" after any selector and get the style to apply to mouseovers that element. But only IE4+ and NS6 (and Opera) support ":hover", and only for anchor tags at that. You'd have to use JavaScript to change styles with event handlers, or put ":hover" on the link and make sure the padding of the anchor element pushes out to the limits of the cell. - Gyrus ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
Sorry, I didn't read closer enough/catch what you were looking for. Here's a couple of examples you might modify to see if they get you what you're after...two ways of getting to the same place really. Likely won't work with NS4 though... 1) Switch Classes onMouseover: onmouseover="className='NEW_CLASS_NAME'" onmouseout="className='ORIGINAL_CLASS_NAME'" 2) Apply specific style attributes onMouseover: onmouseover="this.style.backgroundColor='#f7f7ce'; this.style.Color='#99'; this.style.cursor='hand'; this.style.border='1px solid Black';" onmouseout="this.style.backgroundColor='#ffcc33'; this.style.Color='#00' this.style.cursor=''; this.style.border='1px solid #FFCC33';" Not sure if either of these gets you what you are after. Let me know if not and I'll take another run at it. Ken -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:45 PM To: CF-Talk Subject: RE: Off Topic Ken, What I have is a table with 5 rows. Each row has a link in it. When you mouseover the link (cell) I am tyring to get the background of the entire cell to change not just the background of the text. What I have defined so far in the style is: TD.nav{font-family:Verdana; font-size:12px; font-weight:bold; text-align:left;} I am new to CSS so I am tyring my darndest to understand them, but its getting a bit frustrating with all the properties and possiblities. I thought maybe TD.nav:hover{..} might work. Does this clear my problem up at all? Thanks for the help Mike -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:39 PM To: CF-Talk Subject: RE: Off Topic The presence of a link in the cell is irrelevant to the cells' BG color. Have you defined a style at the TD level, applied an existing style to that specific TD or defined specific styles at that level? Ken -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:13 PM To: CF-Talk Subject: Off Topic Sorry for posting this here but I could not find a CSS list that had people responding on it.. I signed up at 2 different ones. I am trying to figure out how to change the background color of a cell in a table that has a link in it. I can get the background color of the link itsel to change, but not the entire cell... Anyone know how to do this using CSS? Thanks and again I am sorry for the OT post. Michael T. Tangorre Resident Assistant - Brick Web Applications Developer A.U. Webteam Slave :-) AIM: CrazyFlash4 ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
Ken, What I have is a table with 5 rows. Each row has a link in it. When you mouseover the link (cell) I am tyring to get the background of the entire cell to change not just the background of the text. What I have defined so far in the style is: TD.nav{font-family:Verdana; font-size:12px; font-weight:bold; text-align:left;} I am new to CSS so I am tyring my darndest to understand them, but its getting a bit frustrating with all the properties and possiblities. I thought maybe TD.nav:hover{..} might work. Does this clear my problem up at all? Thanks for the help Mike -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:39 PM To: CF-Talk Subject: RE: Off Topic The presence of a link in the cell is irrelevant to the cells' BG color. Have you defined a style at the TD level, applied an existing style to that specific TD or defined specific styles at that level? Ken -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:13 PM To: CF-Talk Subject: Off Topic Sorry for posting this here but I could not find a CSS list that had people responding on it.. I signed up at 2 different ones. I am trying to figure out how to change the background color of a cell in a table that has a link in it. I can get the background color of the link itsel to change, but not the entire cell... Anyone know how to do this using CSS? Thanks and again I am sorry for the OT post. Michael T. Tangorre Resident Assistant - Brick Web Applications Developer A.U. Webteam Slave :-) AIM: CrazyFlash4 ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: SOLVED RE: CF & Tables and Resolution
No problem. I am glad I could help. Mike > -Original Message- > From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 18, 2001 12:14 PM > To: CF-Talk > Subject: SOLVED RE: CF & Tables and Resolution > > > Thanks Mike, ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
The presence of a link in the cell is irrelevant to the cells' BG color. Have you defined a style at the TD level, applied an existing style to that specific TD or defined specific styles at that level? Ken -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:13 PM To: CF-Talk Subject: Off Topic Sorry for posting this here but I could not find a CSS list that had people responding on it.. I signed up at 2 different ones. I am trying to figure out how to change the background color of a cell in a table that has a link in it. I can get the background color of the link itsel to change, but not the entire cell... Anyone know how to do this using CSS? Thanks and again I am sorry for the OT post. Michael T. Tangorre Resident Assistant - Brick Web Applications Developer A.U. Webteam Slave :-) AIM: CrazyFlash4 ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off Topic
Never mind, I was not reading your post correctly... DB - Original Message - From: "Philip Arnold - ASP" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 11:29 AM Subject: RE: Off Topic > > Sorry for posting this here but I could not find a CSS list that > > had people > > responding on it.. I signed up at 2 different ones. > > I am trying to figure out how to change the background color of a > > cell in a > > table that has a link in it. I can get the background color of the link > > itsel to change, but not the entire cell... Anyone know how to do > > this using CSS? > > Put an onMouseOver on the > > Philip Arnold > Director > Certified ColdFusion Developer > ASP Multimedia Limited > T: +44 (0)20 8680 1133 > > "Websites for the real world" > > ** > This email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed. If you have received this email in error please notify > the system manager. > ** > > > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off Topic
Hello world Just put this in the class file that is in your TD tag background-color : Black; DB - Original Message - From: "Tangorre, Michael T." <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 11:12 AM Subject: Off Topic > Sorry for posting this here but I could not find a CSS list that had people > responding on it.. I signed up at 2 different ones. > I am trying to figure out how to change the background color of a cell in a > table that has a link in it. I can get the background color of the link > itsel to change, but not the entire cell... Anyone know how to do this using > CSS? > > Thanks and again I am sorry for the OT post. > > Michael T. Tangorre > > > Resident Assistant - Brick > Web Applications Developer > A.U. Webteam Slave :-) > AIM: CrazyFlash4 > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
> Sorry for posting this here but I could not find a CSS list that > had people > responding on it.. I signed up at 2 different ones. > I am trying to figure out how to change the background color of a > cell in a > table that has a link in it. I can get the background color of the link > itsel to change, but not the entire cell... Anyone know how to do > this using CSS? Put an onMouseOver on the Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 "Websites for the real world" ** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. ** ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Off Topic
Sorry for posting this here but I could not find a CSS list that had people responding on it.. I signed up at 2 different ones. I am trying to figure out how to change the background color of a cell in a table that has a link in it. I can get the background color of the link itsel to change, but not the entire cell... Anyone know how to do this using CSS? Thanks and again I am sorry for the OT post. Michael T. Tangorre Resident Assistant - Brick Web Applications Developer A.U. Webteam Slave :-) AIM: CrazyFlash4 ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
SOLVED RE: CF & Tables and Resolution
Thanks Mike, I guess I just needed another set of eyes to take a peek at the table layout (which was quite sloppy). I redid the tables, and checked in the resolutions as I went along... Its working good now. The CF content spreads the tables perfectly without distortion. Thanks again for the insight Mike. Mike -Original Message- From: Michael Wilson [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 4:24 AM To: CF-Talk Subject: RE: CF & Tables and Resolution Hi, I would start all over and reconsider your table structure. I don't think your CF code has anything to do with it. 1: you have a nested table in the first table's right column 1st that is 300 pixels wide. 2: You have a nested table in the first table's left column 2nd that is 800 pixels wide. 3: That alone totals 1100 pixels, so shrinking to 800 under any circumstances is out of the question. Your layout has to be flexible enough to allow your tables to shrink and expand when required. Something like this is closer to what you are looking for, but you will have to tweak it... logo my menu would go here my second menu would go here Date here Search This Site GO Advanced Search menu item menu item menu item menu item menu item menu item image image image image image image image image image Highlights Cold FusionTM Fusebox Methodology SQL/Access DB Support Customization Administrative Backend What XFuze Cart can do for you! XFuze Cart can bring your e-commerce website into the next generation of websites. blah blah blah... Online Demo >> footer here Regards, Mike > -Original Message- > From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 18, 2001 2:17 AM > To: CF-Talk > Subject: CF & Tables and Resolution > > > Hi Everyone. > > I am developing a site right now, and am having some layout > issues. ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: RESOLVED:: problem with insert
Yes we do, and I for one sure hate the way we have to learn!!! Only if the world was a better place and query languages gave you real error messages. " You dumb A@$ you forgot the stupid ()" :) DB - Original Message - From: "Peter Tilbrook" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, November 17, 2001 11:31 PM Subject: Re: RESOLVED:: problem with insert > Doh! > > We learn from our mistakes don't we? heh heh! > > It can also be database specific, Oracle / SQL Server / MS SQL can all differ > in syntax if not in logic. > > Quoting "Douglas L. Brown" <[EMAIL PROTECTED]>: > > > Didnt have () around my values to insert. > > > Doug > ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Mystery?!! Variables not being recognized via CFLOCATION
Have you tried prefixing your variable with the URL scope? Joseph DeVore VeloxWeb Technologies -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 17, 2001 7:29 PM To: CF-Talk Subject: Mystery?!! Variables not being recognized via CFLOCATION This is the actual error message even though the variable 'bannerfile' shows as being present in the URL with a value also. I'm totally puzzled by this: Error Occurred While Processing Request Error Diagnostic Information An error occurred while evaluating the expression: bannerfile="#bannerfile#" Error near line 2, column 7. Error resolving parameter BANNERFILE ColdFusion was unable to determine the value of the parameter. This problem is very likely due to the fact that either: 1.You have misspelled the parameter name, or 2.You have not specified a QUERY attribute for a CFOUTPUT, CFMAIL, or CFTABLE tag. The error occurred while processing an element with a general identifier of (CFSET), occupying document position (2:1) to (2:33). ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Mystery?!! Variables not being recognized via CFLOCATION
Pardeep, Are your variables URL encoded? Wrap this function around each string variable. URLEncodedFormat() How's that dynamic image app coming along? Joseph DeVore VeloxWeb Technologies -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 17, 2001 7:17 PM To: CF-Talk Subject: Mystery?!! Variables not being recognized via CFLOCATION I am passing variables to a page that runs some actions, then variables are sent via CFLOCATION to a display page. However, on the display page I keep getting an error message saying that the necessary variables are not present or not recognized. I only have this problem in Netscape and older versions of Explorer. In the new version of explorer everything is fine. This problem is causing a halt in the whole app being developed. Anyone have any idea what it could be? Thanks, Pardeep. ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: CF & Tables and Resolution
Hi, I would start all over and reconsider your table structure. I don't think your CF code has anything to do with it. 1: you have a nested table in the first table's right column 1st that is 300 pixels wide. 2: You have a nested table in the first table's left column 2nd that is 800 pixels wide. 3: That alone totals 1100 pixels, so shrinking to 800 under any circumstances is out of the question. Your layout has to be flexible enough to allow your tables to shrink and expand when required. Something like this is closer to what you are looking for, but you will have to tweak it... logo my menu would go here my second menu would go here Date here Search This Site GO Advanced Search menu item menu item menu item menu item menu item menu item image image image image image image image image image Highlights Cold FusionTM Fusebox Methodology SQL/Access DB Support Customization Administrative Backend What XFuze Cart can do for you! XFuze Cart can bring your e-commerce website into the next generation of websites. blah blah blah... Online Demo >> footer here Regards, Mike > -Original Message- > From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 18, 2001 2:17 AM > To: CF-Talk > Subject: CF & Tables and Resolution > > > Hi Everyone. > > I am developing a site right now, and am having some layout > issues. ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Fusebox - opinions?
Cool toy :-) I tried to create an "egg on toast" recipe but I guess I would need to wiegh the bread and egg first :-) If you have another three months to kill maybe add some default wieghts for "a slice" or "an egg"? My wife is a diabetic so she always runs a similiar program when she whips up something new and cool.(Key Gourmet). Still, very cool app! > Oops! > > Try this URL :) : > > http://www.anzfa.gov.au/mediareleasespublications/nutritionpanelcalculator/i ndex > ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists