RE: Coldfusion 8 developer edition installation issue
it's a 32bit and coldfusion-801-win64.exe is what I've been try to install, pulling down the correct version now. We'll see how it goes :) Thanks! -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Friday, September 12, 2008 4:15 AM To: CF-Talk Subject: Re: Coldfusion 8 developer edition installation issue The standard computer properties will tell you what processor you are running, and what version of the OS. RMB on the my computer icon, select properties and you'll see the information you require. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:312414 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: Coldfusion 8 developer edition installation issue
to be honest I don't know, I can tell you it has 4gig ram so from what I've read it's 64bit? Vista is new to me so I'm having to hunt for everything in this new UI. This was so much easier with an XP box. >Is your Vista machine 32 bit or 64 bit? > > > > >-- >mxAjax / CFAjax docs and other useful articles: >http://www.bifrost.com.au/blog/ ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:312409 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Coldfusion 8 developer edition installation issue
I posted something here last week about this but never saw any response to my post. I'm thinking maybe the subject line may have thrown some off so I'm posting the issue again here in hopes I can get this resolved as it's driving me nuts trying to get CF8 installed. This is CF 8 developer edition and I am trying to install it on a new box I have running Vista Ultimate. When I try to run the installation the package makes it to 99% extraction then bombs out with "Windows error 216 occurred while loading the Java VM" and never makes any further. I did google this and found this bit here http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=1&catid=2&threadid=1381512&enterthread=y . According to the couple of posts I found there supposedly installing Java SE was the path they took but they really weren't very specific about which Java SE package was needed. This has me confused as I have the JDK 6 Update 7 w/NetBeans 6.1 installed and NetBeans installed and runs fine. Am I not installing the correct package to get this dog to install? Can anyone out there please enlighten me as to the specific java se package thats needed so I can get on with actually getting some work done. Thanks in advance! Bewildered Bob ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:312406 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Windows error 216 occurred while loading the Java VM
Hoping somebody can shed a little more light on this issue I'm having trying to install CF8 developer edition on Vista Ultimate. I googled it and found a tidbit about it here http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=1&catid=2&threadid=1381512&messid=5037067 and I've tried installing the following packages with no change and no install, only the error message. I don't know if I've just not hit the right Java SE package or what but any help would be greatly appreciated. jre-6u10-rc-windows-i586-p-iftw jdk-6u7-nb-6_1-windows-ml jxpiinstall TIA! Bob ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:312155 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Mail problem
And there's only so much stupidity you can program for :) -Original Message- From: Alan Rother [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2008 4:30 PM To: CF-Talk Subject: Re: Mail problem >>>Can people be this stupid? There is sadly no limit on how stupid people can get... If you need to see it for yourself, go work in retail for a weekend... =] ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:311023 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Need help with restoring from .bak
Thanks for the quick reply Jochem, but after trying to run the following I get an error(see below) RESTORE DATABASE [DCCRegistry] FROM DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL\BACKUP\DCCRegistry_db_200806110200.BAK' WITH FILE = 1, NOUNLOAD, REPLACE, STATS = 10 Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'. The error occurred in D:\WebNew\centers\dump.cfm: line 1 1 : 2 : RESTORE DATABASE [DCCRegistry] 3 : FROM DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL\BACKUP\DCCRegistry_db_200806110200.BAK' Don't know if it makes any difference here but this MSSQL Server 2k and running CF Standard 7,0,2,142559 Any ideas? Bewildered Bob -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2008 2:34 PM To: CF-Talk Subject: Re: Need help with restoring from .bak Imperial, Robert wrote: > Scrambling here trying to restore a db on a ms sql server and cannot > connect with Enterprise Manager (another story). Is there a command line > utility out there anywhere that will let me restore a db from a .bak > file on a windows box? Or is there a way to do this from a CF query? TIA RESTORE DATABASE [database_name] FROM DISK = N'path_to_full_backup_file' WITH FILE = 1, NOUNLOAD, REPLACE, STATS = 10 Make sure you connect to a database that is not the one you are trying to restore. Jochem ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308550 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Error in url parameter
I don't think Gerald meant it as a solution but a step in identifying where there problem might be. You know it's being passed, I would check the db to see what datatype that field is to be sure of what it's expecting? Bob -Original Message- From: Shivhare Yogendra [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2008 3:14 PM To: CF-Talk Subject: Re: Error in url parameter I tried and below is the result so I do have values but error is still there struct FORM_ID 67 IO_MODE 1 KEY_ID 71241 KEY_TYPE VPMO_ID SBCUID dw4694 UIID 86972628 WINSIZE 1000x690 Â ThanksÂYogendra Shivhare Programmer Analyst INFOSYS TECHNOLOGIES Ltd. â?~Life is what happens when youâ?Tre making other plansâ?¦!â?T --- On Wed, 6/4/08, Gerald Guido <[EMAIL PROTECTED]> wrote: > From: Gerald Guido <[EMAIL PROTECTED]> > Subject: Re: Error in url parameter > To: "CF-Talk" > Date: Wednesday, June 4, 2008, 11:09 PM > try this Put this before the cfquery and see if you are > passing the correct > URL vars. > > > > > > On Wed, Jun 4, 2008 at 12:25 PM, Yogendra Shivhare < > [EMAIL PROTECTED]> wrote: > > > I am getting following error in my applicationElement > FORM_ID is undefined > > in URL. > > ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306835 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: digital signatures
Thanks Dave this is exactly the kind of kick-start I need on this as it is all new to me at this point. These utilities are running on windows server 2003 standard w/CF7 standard at the moment. I have full access to the box so this should help speed things along for me I would think. Currently I have 107 users/physicians using these utilities and I don't see that list getting much longer for now. Any suggested reading on this would help out here as well since I am so new to this, so anything you can recommend would be a good thing. Thanks! Bob PDF supports digital signatures to sign and certify documents. Certification prevents the document from being changed; if the document is changed, the certification breaks. Signing simply attests that the user with that certificate did in fact interact with that document at a specific time, providing nonrepudiation, etc. To use digital signatures, each signer will have to have a certificate installed locally. You can either purchase individual certificates for your users, or you can create a certificate infrastructure. Your certificate infrastructure can be completely internal, or it can be based upon a root certificate from a public certificate vendor like Verisign. If your certificate infrastructure doesn't have a public root certificate from a third-party vendor, you will be able to verify signatures within your organization, but when you pass a signed PDF to someone outside your organization the certificate will not verify for those external users - it'll still show the document as signed, but the signature itself will be unverifiable. If you have a Windows server infrastructure (AD, etc), you can add a certificate authority (CA) server to that fairly easily. This will allow you to generate and issue client certificates to all your users very easily. If you have a fairly small number of users, you could simply purchase individual certificates for them to use directly. These are about $20 per user per year. Verisign has a specific certificate product for PDF signing. You can build a server interface for programmatically signing PDFs using the Adobe LiveCycle ES rights management server. This can be integrated with other LiveCycle products to build a workflow process that includes digital signatures. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306189 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: qoq date formating
Will DateFormat() give you what you need? -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 11:59 AM To: CF-Talk Subject: qoq date formating Is there any dateformating functions when doing a query of a query? Like in MS SQL I can use the CONVERT function. SELECT JOBNOTE, CONVERT(varchar, DateCreated, 108) AS DateCreatedAsTime FROM JobNotes ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303105 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: Controlling the font output in a created pdf
Ditto on that, I resorted to wrapping everything in divs then using inline style attributes to set whatever I need for formatting. My 2 cents. Bob >Ian, >I have had formatting problems with cfdocument in the past. I remember >reading somewhere that cfdocument has it's own html/css rendering engine, or >something to that effect. You may want to try wrapping it with something >else like a or a tag or maybe even (shudder) a font tag . > >hth >G > > > > >On Tue, Apr 8, 2008 at 2:14 PM, Ian Skinner <[EMAIL PROTECTED]> wrote: > >> ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302985 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: New To CF
Just responded to the same posting on cf-newbie but will that response in here as well. Bruce, That will get you started with basic CF but to build data driven sites you'll also need some sort of RDMS such as MSSQL, Access, MySQL or some other such product. If you're a visual learner, MS Access is great for getting started as it lends itself to creating visual models or prototyping if you will. As for the "best" way to learn CF really depends on your learning style, if you're more a visual learner then perhaps what is offered at http://lynda.com/ would be a good starting point for you. If you're fine with have printed materials as a guide then I would suggest purchasing a copy of the latest CF WACK http://www.forta.com/books/0321125169/ will work for you. IMHO having a copy of WACK is a tool worth having in your box and well worth the investment. There are a number of sites out there that can help you jump right in a get up a running quickly. One site I used a good bit to start with was easycfm.com http://www.easycfm.com/ with lots of real world examples and tutorials. The short answer to "what is the best way to learn CF" is by doing :) I might add that http://cflearn.com might also provide an opportunity to learn about debugging :) HTH Bob Imperial art design development 6204 Lead Mine Road Raleigh, NC 27612 919-602-3118 www.imperialart.com >>-Original Message- >>From: William Seiter [mailto:[EMAIL PROTECTED] >>Sent: Saturday, March 22, 2008 3:37 PM >>To: CF-Talk >>Subject: RE: New To CF >> >>Welcome to CF. You are on your way and in the right direction. I would >>suggest, before you do any 'major' reading on the subject, that: >>1. First you create a very simple .cfm page and test to verify your >>installation is working. >> Open a text editor, type in "#now()#" and save >>it as index.cfm in the webroot of your local site. >> Open that new page in a browser and verify that you do not see the >>actual text you typed in, but you see the current time in 'timestamp' >>format. >> >>2. Go to a good online tutorial site and follow the steps exactly so that >>you can get a feel for the language. >> I have heard some good things about http://cflearn.com/ >> >>3. If you are an experienced web developer, take a page you have built in >>another language (PHP, .NET, ASP, etc) and translate its functionality >>into >>ColdFusion. >> >>Feel free to ask any questions of us here. This list and the house of >>fusion's CF-Newbie list can be very helpful to you. >> >>Good Luck!! >> >>William >> ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:301801 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Time for another CF hosting site thread...
Mark ... their response times have always been within an hour or so during regular business hours. As I said they're not terribly touchy feely, but I like them. There are 3 principals and all 3 are involved in what they do. They are Coldfusion developers as well as web hosts so they know the product. You won't get any automated responses from them, just answers to your questions toot sweet. My site is running 7,0,2,142559 and all the others I have hosted there. Drop them a line, I think you'll be surprised what they allow. Bob > -Original Message- > From: Mark Mandel [mailto:[EMAIL PROTECTED] > Sent: Monday, July 16, 2007 7:29 PM > To: CF-Talk > Subject: Re: Time for another CF hosting site thread... > > Bob - > > Dantor looks like it might be decent, a few quick questions (I'll > contact them directly too) > > - Does it run cfmx7? it only seems to list 6.1 on the site? > - can you run createObject? I see cfobject is disabled? (can that be > turned on?) > - What is their support response time like? > > Mark ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283832 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Time for another CF hosting site thread...
I have several clients hosted with dantor.com with all the bells and whistles at a fraction of what you'll find elsewhere. They're hosting wholesalers and have a nice reseller matrix. I've used these guys for about 6 years now with very few issues and are always ready to help even though they're wholesalers. Dantor.com not a lot of warm fuzzies on their site design, but I really don't care about glitz and glamour, their service has been such that I haven't even looked elsewhere. Oh, I have about 40 domains hosted there and roughly half are active sites. My two cents ... Bob > -Original Message- > From: Brian Yager [mailto:[EMAIL PROTECTED] > Sent: Monday, July 16, 2007 5:07 PM > To: CF-Talk > Subject: Time for another CF hosting site thread... > > I have a client that wants a fairly simple website. I REALLY want to use > CFdynamics but I am not going to tell him it's $50/month just for CFFILE. > So...If you all can direct me to who you use, I will gladly look at them > and give you the referal. > > > Thanks, > > Brian Yager > > ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283809 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: Can't see the trees for the forest here ...
Resolved .. I have seen the error of my way ... ;) found a single variable nested inside a collapsed if statement that was spelled differently. Bob ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIAâs for your business. Upgrade now http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283449 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: css not working in CF file
Setting the #navBar{ margin: 0 0 0 79%; to 78% allows it room to display at the top of that div, or at least it does locally ;) Bob > I have two different pages: > > http://www.ocbin.org/index.cfm > > And > > http://www.ocbin.org/index.html > > They are EXACTLY the same (checked page source). > > When I run them (.cfm and html) in firefox, they render exactly the > same - no problem. > When I run them in Explorer 7, note that the sidebar is screwed up on > the right in the CFM version, but not in the html version. > > Since the page source is exactly the same, I am at a loss to explain > how this is happenening. > > Any help greatly appreciated. > > Richard Colman ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283216 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: css not working in CF file
Ditto , might even play around with navbar a bit #navBar{ margin: 0 0 0 79%; <<< > -Original Message- > From: Will Tomlinson [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 08, 2007 11:21 PM > To: CF-Talk > Subject: Re: css not working in CF file > > It looks almost as if the width of the left side floated item is too wide > to accomodate the right. So it pushes it down below it. Just for the > heckuvit, shrink the width of the left side to see if it brings the right > back up. > > Will > > ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283215 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: video gallery / audio gallery?
Dwayne, Take a little time to go through the tutorials at the bottom of this page. I'm sure you'll find it worth the time spent as it explains much better than I can how to accomplish what you're after ... I think ;). I could be wrong, but I don't think you'll find a solution for what you want that works right out of the box. You may find that you can build what you want, tailored to your specific needs. http://gotoandlearn.com/download.php HTH Bob > -Original Message- > From: Dwayne Cole [mailto:[EMAIL PROTECTED] > Sent: Friday, June 29, 2007 1:06 PM > To: CF-Talk > Subject: RE: video gallery / audio gallery? > > I'm a newbie, nobie, better yet tried-to-be user of Flash, so are you > saying I should just import the movie file into flash, save it as a .swf > file then configure the xml to pull in the .swf file instead of the .jpg > files? Well what about the play back controlls etc. > > > ---------- Original Message -- > From: "Bob Imperial" <[EMAIL PROTECTED]> > Reply-To: cf-talk@houseoffusion.com > Date: Fri, 29 Jun 2007 11:56:13 -0400 > > > > >You can simply import your video clips into a flash movie clip, then pull > >those into slideshow pro via the xml file? > > > >> -Original Message- > >> From: Dwayne Cole [mailto:[EMAIL PROTECTED] > >> Sent: Friday, June 29, 2007 10:11 AM > >> To: CF-Talk > >> Subject: RE: video gallery / audio gallery? > >> > >> Almost. I use slideShowPro but it's a "photo Gallery" I'm looking for > a > >> video gallery and an audio gallery. > >> > >> > >> -- Original Message -- > >> From: "Imperial, Robert" <[EMAIL PROTECTED]> > >> Reply-To: cf-talk@houseoffusion.com > >> Date: Fri, 29 Jun 2007 09:52:33 -0400 > >> > >> > > >> >Sounds like something you could probably do with SlideShow Pro > >> >http://www.slideshowpro.net/ > >> > > >> > > >> >Bob Imperial > >> >DOM-IS Web Developer > >> >Department of Medicine > >> >125 Macnider Hall, CB 7005 > >> >UNC at Chapel Hill Chapel Hill, NC 27599 > >> >Phone: (919) 843-6151 > >> > >> >-Original Message- > >> >From: Dwayne Cole [mailto:[EMAIL PROTECTED] > >> >Sent: Friday, June 29, 2007 9:41 AM > >> >To: CF-Talk > >> >Subject: video gallery / audio gallery? > >> > > >> >I am working on a site for a small church that would like to broacast > >> >video excerpts of the pastor's sermons and audio excerpts of the churh > >> >chior. > >> > > >> >Does any one know of a "video display gallery" of the likes of > cnn.com, > >> >video.yahoo.com, or youTube. I do not need a full application, I just > >> >need something that I can feed an xml file. > >> > > >> >Likewise I am looking for a similar audio gallery that supports mp3 > >> >files. > >> > > >> >Dwayne > >> > > >> > >> > >> > > > > > > ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282620 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: video gallery / audio gallery?
You can simply import your video clips into a flash movie clip, then pull those into slideshow pro via the xml file? > -Original Message- > From: Dwayne Cole [mailto:[EMAIL PROTECTED] > Sent: Friday, June 29, 2007 10:11 AM > To: CF-Talk > Subject: RE: video gallery / audio gallery? > > Almost. I use slideShowPro but it's a "photo Gallery" I'm looking for a > video gallery and an audio gallery. > > > -- Original Message -- > From: "Imperial, Robert" <[EMAIL PROTECTED]> > Reply-To: cf-talk@houseoffusion.com > Date: Fri, 29 Jun 2007 09:52:33 -0400 > > > > >Sounds like something you could probably do with SlideShow Pro > >http://www.slideshowpro.net/ > > > > > >Bob Imperial > >DOM-IS Web Developer > >Department of Medicine > >125 Macnider Hall, CB 7005 > >UNC at Chapel Hill Chapel Hill, NC 27599 > >Phone: (919) 843-6151 > > >-Original Message- > >From: Dwayne Cole [mailto:[EMAIL PROTECTED] > >Sent: Friday, June 29, 2007 9:41 AM > >To: CF-Talk > >Subject: video gallery / audio gallery? > > > >I am working on a site for a small church that would like to broacast > >video excerpts of the pastor's sermons and audio excerpts of the churh > >chior. > > > >Does any one know of a "video display gallery" of the likes of cnn.com, > >video.yahoo.com, or youTube. I do not need a full application, I just > >need something that I can feed an xml file. > > > >Likewise I am looking for a similar audio gallery that supports mp3 > >files. > > > >Dwayne > > > > > ~| CF 8 â Scorpio beta now available, easily build great internet experiences â Try it now on Labs http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282566 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
retrieve mac address with CF?
Good morning folks ... or at least it's morning here ;) I was just asked if I could retrieve mac addresses via coldfusion and have no idea. Is this possible with cf, if so or if someone knows of a good reference to point me in the direction of, I would appreciate it greatly. Thanks! Bob ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIAâs for your business. Upgrade now http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282033 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: CF training
Aye, been there done that, just thought somebody from the area might be aware of something new available here. Bob > -Original Message- > From: Eric Roberts [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 13, 2007 9:45 PM > To: CF-Talk > Subject: RE: CF training > > Go to the adobe site and they should have a listing of classes... > > Eric > > -----Original Message- > From: Bob Imperial [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 13, 2007 10:06 AM > To: CF-Talk > Subject: CF training > > Does anyone out there know of any instructor led CF courses in the > Raleigh/Durham/Chapel Hill area of NC? > > Bob > > > > ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade & see new features. http://www.adobe.com/products/coldfusion?sdid=RVJR Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:281117 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
CF training
Does anyone out there know of any instructor led CF courses in the Raleigh/Durham/Chapel Hill area of NC? Bob ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:281010 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: need help with updating date field
Thanks all for the quick responses, I've changed the field name from Date to AccessDate, makes more sense too. I used cfqueryparam on my insert and just trying to get this thing to work in the raw first ;). As for using jdbc instead of odbc, I have yet to get cf to register the ds using the SQL driver it offers. I'm not an admin and have very little to go on where configuring cf is concerned since there's not anyone here that has the know how to get it working correctly using jdbc drivers. Thank you all for the help, update statement working now ;) Bob ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279611 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: CF Server connecting to MySQL v5
Yes, though I don't think it's released yet, was on the beta program ;) I can hardly wait, lots of new goodies to play with. > -Original Message- > From: Pete [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 29, 2007 6:33 PM > To: CF-Talk > Subject: RE: CF Server connecting to MySQL v5 > > Coldfusion 8 ??? > > Is that the new release of CF. > > I had CF7 standard running perfectly, just cant get enterprise to talk to > MySQL. Not sure whether I should be including the jar file in the same > place as standard or including it in a similar place in the jrun folder or > both. > > > > -Original Message- > From: Bob Imperial [mailto:[EMAIL PROTECTED] > Sent: Wednesday, 30 May 2007 6:47 AM > To: CF-Talk > Subject: RE: CF Server connecting to MySQL v5 > > I was using 7 standard at the time I found the blog entry on it, though I > am > running 8 at the moment and copied the jar to C:\ColdFusion8\lib and still > works here for the moment, though I hadn't seen anything specifically on > enterprise edition. > > B > > > -Original Message- > > From: Pete [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, May 29, 2007 4:24 PM > > To: CF-Talk > > Subject: RE: CF Server connecting to MySQL v5 > > > > Are you using CF 7 Standard or enterprise. > > > > Where did you copy the jar file to if using Enterprise version? > > > > Regards > > > > > > > > -Original Message- > > From: Bob Imperial [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, 30 May 2007 1:15 AM > > To: CF-Talk > > Subject: RE: CF Server connecting to MySQL v5 > > > > This worked for me ... > > http://www.mikemedia.eu/blog/index.cfm/2006/3/2/MySQL-5-and-CFMX-7 > > > > HTH > > > > Bob > > > > > -Original Message- > > > From: Pete [mailto:[EMAIL PROTECTED] > > > Sent: Tuesday, May 29, 2007 7:17 AM > > > To: CF-Talk > > > Subject: CF Server connecting to MySQL v5 > > > > > > Hi All > > > > > > > > > > > > I have been using CF v7.02 standard for some time and have recently > > > installed CF 7 enterprise. > > > > > > > > > > > > I am unable to connect to a MySQL v5 database. > > > > > > > > > > > > I have added the mysql-connector-java file as I had to in CF v7.02. > But > > I > > > am still however unable to connect to a MySQL datasource. > > > > > > > > > > > > > > > > > > > > ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279531 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: CF Server connecting to MySQL v5
I was using 7 standard at the time I found the blog entry on it, though I am running 8 at the moment and copied the jar to C:\ColdFusion8\lib and still works here for the moment, though I hadn't seen anything specifically on enterprise edition. B > -Original Message- > From: Pete [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 29, 2007 4:24 PM > To: CF-Talk > Subject: RE: CF Server connecting to MySQL v5 > > Are you using CF 7 Standard or enterprise. > > Where did you copy the jar file to if using Enterprise version? > > Regards > > > > -Original Message- > From: Bob Imperial [mailto:[EMAIL PROTECTED] > Sent: Wednesday, 30 May 2007 1:15 AM > To: CF-Talk > Subject: RE: CF Server connecting to MySQL v5 > > This worked for me ... > http://www.mikemedia.eu/blog/index.cfm/2006/3/2/MySQL-5-and-CFMX-7 > > HTH > > Bob > > > -Original Message- > > From: Pete [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, May 29, 2007 7:17 AM > > To: CF-Talk > > Subject: CF Server connecting to MySQL v5 > > > > Hi All > > > > > > > > I have been using CF v7.02 standard for some time and have recently > > installed CF 7 enterprise. > > > > > > > > I am unable to connect to a MySQL v5 database. > > > > > > > > I have added the mysql-connector-java file as I had to in CF v7.02. But > I > > am still however unable to connect to a MySQL datasource. > > > > > > > > > ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279527 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: CF Server connecting to MySQL v5
This worked for me ... http://www.mikemedia.eu/blog/index.cfm/2006/3/2/MySQL-5-and-CFMX-7 HTH Bob > -Original Message- > From: Pete [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 29, 2007 7:17 AM > To: CF-Talk > Subject: CF Server connecting to MySQL v5 > > Hi All > > > > I have been using CF v7.02 standard for some time and have recently > installed CF 7 enterprise. > > > > I am unable to connect to a MySQL v5 database. > > > > I have added the mysql-connector-java file as I had to in CF v7.02. But I > am still however unable to connect to a MySQL datasource. > > ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279466 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: MS SQL 2000 and ntext
I ran into something similar a week or so ago, don't know if this will work for your issue, but instead of SELECT *, try selecting the specific fields you need and put the ntext field as the very last in your select statement. Maybe maybe not Bob >Hi there, > >I'm running CF7 and MS SQL 2000 on this project I'm working on. > >I'm using a simple cfquery to get a row of data. > >SELECT * >FROM datatable >WHERE id = 439 > > >Very, very simple query > >Now, one of these fields is of type ntext. It contains xml data. > >What I'm trying to do is to retrieve the xml data from this field... what >seems to happen, is that the xml isn't returned in it's entirety. >It's cut off at a certain point. > >Any ideas? > >This table is actually used by (and created with) a .NET program my employer >purchased, and the data is used in this program without a problem. > >I know this is slightly vague > >Thanks, > >-- >Yves Arsenault > >"Love is the only force capable of transforming an enemy into a friend". >--Martin Luther King, Jr. ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279256 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: Edit excel on line
Meant to say "My wife uses" ...fat fingers, slow brian ;) > I was hoping to find something with this functionality that could be > installed within a site and administer it myself, though I don't know > if this even exists in the open source community yet. My uses this > functionality via a company called HyperOffice at the moment. They've > not been all that happy with the support thus far so I was really > hoping to find something to work with myself. > > Bob > > > > > > > >I'd take a look at docs.google.com > > > >Depending on what you are trying to do, this works fairly well for > most > >excel functions. ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278903 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: Edit excel on line
I was hoping to find something with this functionality that could be installed within a site and administer it myself, though I don't know if this even exists in the open source community yet. My uses this functionality via a company called HyperOffice at the moment. They've not been all that happy with the support thus far so I was really hoping to find something to work with myself. Bob > > > >I'd take a look at docs.google.com > >Depending on what you are trying to do, this works fairly well for most >excel functions. ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade & see new features. http://www.adobe.com/products/coldfusion?sdid=RVJR Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278902 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: GUI for WebApplications
Don't know that I've ever seen any galleries specific to admin ui stuff, but it seems you could adapt any layout to suit your need. Email me off list about this if you like, not a solicitation for work ;) just help. Bob > -Original Message- > From: Dwayne Cole [mailto:[EMAIL PROTECTED] > Sent: Saturday, May 19, 2007 3:54 AM > To: CF-Talk > Subject: GUI for WebApplications > > I am ready to redesign the user interface for a content management system > that I built about 4 years ago. I looking for some nice layouts. I am > aware of plenty of front end web gallery sites but but I don't know of any > galleries of admin panels. Are there any suggestions? > > ~| Macromedia ColdFusion MX7 Upgrade to MX7 & experience time-saving features, more productivity. http://www.adobe.com/products/coldfusion?sdid=RVJW Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278683 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: query of query - clob error
These settings are found under the advanced setting tab when you register your datasource. Not sure what the default setting is for your buffer, 64k maybe? It's been suggested to me to double that, at any rate mine is set to 128. Hope this helps. CLOB -- Enable long text retrieval (CLOB). BLOB -- Enable binary large object retrieval (BLOB). Long Text Buffer (chr) Blob Buffer(bytes) Bob > -Original Message- > From: daniel kessler [mailto:[EMAIL PROTECTED] > Sent: Friday, May 18, 2007 9:34 AM > To: CF-Talk > Subject: Re: query of query - clob error > > >Just a shot in the dark here, did you enable that setting in the cf > >administrator and have you tried listing the specific fields that are in > >fact CLOB/BLOB last in your query? I ran into a slightly different issue > but > >somewhat similar a week or so ago and doing this solved my issue. > > Yes, I did try listing the two of them last. I also removed one, just for > testing, and the last field is a CLOB and it still fails. > I can ask to have a setting enabled. What setting would that be? > > Any other thoughts? > > thanks so far. ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278646 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: query of query - clob error
Just a shot in the dark here, did you enable that setting in the cf administrator and have you tried listing the specific fields that are in fact CLOB/BLOB last in your query? I ran into a slightly different issue but somewhat similar a week or so ago and doing this solved my issue. HTH Bob > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, May 18, 2007 8:07 AM > To: CF-Talk > Subject: query of query - clob error > > I have a nice little query of query going (brilliant little tool query of > queries are). > > Unfortunately, it seems that if my SELECT specifies a field that's a CLOB, > then I > receive an error. Here's the error: > Query Of Queries runtime error. > Unsupported SQL type "java.sql.Types.CLOB". > > Oddly, If I don't specify a list of fields and only do SELECT * then > everything works > a-okay. Whatup with that? Any help? > > > daniel > > ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278583 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Scorpio to help with "CFMyAdmin"
Ok Rick ;), I was there last night as well and I'm trying to put names with faces, which one were you? LOL Bob > -Original Message- > From: Rick Root [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 15, 2007 7:58 AM > To: CF-Talk > Subject: Scorpio to help with "CFMyAdmin" > > The "new feature" mentioned at the TACFUG/RDAUG user group meeting > last night involved updated database drivers across the board, and a > new tag called which will provide all kinds of database > introspection stuff. > > So whoever was planning to write a CFMyAdmin type utility... it might > be a whole lot easier in CF8! > > Rick > > -- ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIAâs for your business. Upgrade now http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278230 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Blob/clob issue
Well ... looks like there might be an issue with TCP/IP although it is enabled, in fact, I unchecked it a rechecked it, restarted SQL Server. Couldn't connect trying to telnet in using the IP of the box it's on and the standard 1433 on the port ... I'm going to reboot the server in a bit after everyone has left for the day and see what if any effect that might have. Bob > -Original Message- > From: Dave Watts [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 10, 2007 5:08 PM > To: CF-Talk > > Your problem is likely one of these things: > - you don't have the TCP/IP listener enabled on the database server, > - you are specifying the wrong server and/or port in the CF datasource, > - there is a firewall blocking either your application server's outbound > traffic or your database server's inbound traffic on the port in question. > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ user=22382.15322.4 ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277679 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: Blob/clob issue
It is enabled, although I'm definitely not a db admin by a long shot. I know the basics of to get around and work within enterprise manager and such. But I'm always willing to break things ;) Bob > -Original Message- > From: Peterson, Chris [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 10, 2007 3:23 PM > To: CF-Talk > Subject: RE: Blob/clob issue > > Check your SQL server configuration and make sure that TCP/IP access is > enabled (its off by default) > > Chris Peterson ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277665 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Blob/clob issue
Dave this is what I've run into with every attempt so far: Connection verification failed for data source: Faculty_Profile2 java.sql.SQLException: [Macromedia][SQLServer JDBC Driver]Error establishing socket. Connection refused: connect The root cause was that: java.sql.SQLException: [Macromedia][SQLServer JDBC Driver]Error establishing socket. Connection refused: connect > If you're unable to use the DataDirect drivers that come with CF to > connect, > you will likely not be able to use any other JDBC drivers to connect, > either. What error do you get when you try to set up the connection? > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ > > Fig Leaf Software provides the highest caliber vendor-authorized > instruction at our training centers in Washington DC, Atlanta, > Chicago, Baltimore, Northern Virginia, or on-site at your location. > Visit http://training.figleaf.com/ for more information! > > This email has been processed by SmoothZap - www.smoothwall.net > ..com/cf_lists/unsubscribe.cfm?user=28108.19997.4 ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277657 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Blob/clob issue
Unfortunately, I've not been able to successfully register a ds in cf w/ms sql drivers, yet another story ;). So, off to pull down jdbc drivers from ms and see what I can break. Gracias! > -Original Message- > From: Peterson, Chris [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 10, 2007 8:57 AM > To: CF-Talk > Subject: RE: Blob/clob issue > > Bob, > > First I would try the built in MS SQL driver, and if that still fails > give the Microsoft JDBC driver a shot. > > Chris > > -Original Message- > From: Bob Imperial [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 10, 2007 8:56 AM > To: CF-Talk > Subject: Blob/clob issue > ://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=22382.15322.4 ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277612 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Blob/clob issue
Well . it's almost Friday and none to soon for me. I have an issue I've run into I'm hoping someone out there might have a solution for. First off I'm working with CFMX 7, MSSQL 2k on a Win 2003 Web Server and using an ODBC driver. I have an ntext field that's not returning any data to me for display, I've dumped my query and there are actually a couple of ntext fields that just return and empty string. The thing is, this ntext field displays fine in an aspx page within an old site I am rebuilding (or trying to anyway) using ColdFusion. Anyone ever run into this and more importantly, can anyone offer a solution? I've done a google or two on it with no real luck on a solution yet. Oh and the query is as simple as it gets, doing SELECT * Thanks! Tired Bob ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277604 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Debugging?
Sure is, in cfadmin under debugging settings Debugging & Logging > Debugging IP List , add the IP address for debug output. Bob -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Monday, March 19, 2007 10:30 AM To: CF-Talk Subject: Debugging? Is there a way to have Debugging turned OFF for one site but on for everything else? I am building an internal application and would like the Debugging on that site off. Since developers are using the same server for other applications, the debugging (CF Admin settings) is turned on. TIA! ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273002 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
cfhttp/xml help
Hi Folks, I'm just getting started with learning the basics on pulling xml feeds with cfhttp and am in need of some help with an error I get with some feeds I'm playing with. Here's the code block I'm working with and I get the following error on this feed and a couple of others... Content is not allowed in prolog. The error occurred in C:\Inetpub\wwwroot\testing\rss.cfm: line 10 8 : 9 : http://www.nranews.com/rss/rss.xml"; method="GET" resolveurl="No" > 10 : http://www.nranews.com/rss/rss.xml"; method="GET" resolveurl="No" > Title: #MyXML.rss.channel.item[x].title.xmlText# click here #MyXML.rss.channel.item[x].description.xmlText# While this same block of code works fine using the feed from http://www.tfc.edu/radio/podcasting/music.xml I'm confused here, any help in understanding this is appreciated! Bob ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIAâs for your business. Upgrade now http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272912 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: need insert help please
I got it, or at least it did what I've been trying to get it to do ;) May not be elegant but it worked For some reason it didn't like #form.week_of# so I tried this and it worked INSERT INTO current_week (week_of,song_title) VALUES ('#thisWeek#','#item#') Thanks for your patience and feedback Dave! It is much appreciated! Bob -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Saturday, March 10, 2007 8:03 PM To: CF-Talk Subject: RE: need insert help please > > I am passing this to: > > > name="current_week" datasource="#dsdata#" username="myname" > > password="mypwd"> > > INSERT INTO current_week (song_title) VALUES ('#item#') > > > > I'm not seeing where to shoe-horn the week_of value into the above > loop, there may be 5 or 6 song_title(s) just not seeing the syntax for > it.. Is "week_of" a field in the current_week table? If so, you can add it to that INSERT statement. If it's a field in another table, and you want to update the value, put another query outside your CFLOOP to do this. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2. Free Trial http://www.adobe.com/products/coldfusion/flex2/ Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272299 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: need insert help please
This was copied from a separate display page I setup for band members to download their songs from, just hadn't pulled out the link refs yet. This isn't for the public, actually it's for members of a worship band from church...to make It a little easier for folks to get to their material for the coming week. This will be displayed on another page, probably only 5 or 6 as opposed to 150+ on my archive page, so the whole week_of thing comes into play there, displaying songs for that date..yada yada yada. This is a bit off your point, but why do you have links in there? If someone clicks on one of the links, they'll leave your form without finishing it. > I am passing this to: > name="current_week" datasource="#dsdata#" username="myname" > password="mypwd"> > INSERT INTO current_week (song_title) > VALUES ('#item#') > > I'm not seeing where to shoe-horn the week_of value into the above loop, there may be 5 or 6 song_title(s) just not seeing the syntax for it.. Thanks Dave.wellat least I survived the 60s. Which may explain some of my difficulty here ;) I'm not sure what you're doing with "week_of", but it doesn't matter whether the field is inside or outside your loop if you only want it to have one value. In your action page, you'll have "week_of" along with "songTitle". Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIAâs for your business. Upgrade now http://www.adobe.com/products/coldfusion/flex2 Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272297 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: need insert help please
Dave...sorry for the lack of information, after read what I posted I thought I should have given a little more information. My form looks like this: This is generated from doing a read with cfdirectory #name# I am passing this to: INSERT INTO current_week (song_title) VALUES ('#item#') Working with mysql, song_id(pk) week_of, song_title and doc_title are all 3 varchars, I hope this enough information to get a better understanding of what I'm trying to do. In addition to the form above, I also have a second form setup the same way for the accompanying docs, this also built from a cfdirectory read. I guess my main question is, since the week_of field in my form is outside the loop, how do I handle that value? I sure hope this is making sense to someone ;) Thanks ...Bob What exactly do you mean by a group of songs? More information about your form and database schema would be helpful here. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.adobe.com/products/coldfusion Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272291 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
need insert help please
First off...shouldn't you all be out doing something other than working? ;-) Since you're not out somewhere having way too much fun, I could use some enlightenment here. I have a form passing multiple values via some checkboxes, I think I've got the insert down ok for that with the following: I'm working with MySql and the week_of field I have set to unique in the db. INSERT INTO current_week (song_title) VALUES ('#item#') My question comes in with a form field that only needs to be inserted once for each group of songs, this value is also being passed via the form, how would I go about handling this? To muddy this up a tad more, I have a second for that handles song docs that need to be inserted and associated with the week_of insert from the first insert statement. Any help would of course be greatly appreciated! I work alone so my only source for feedback/help/direction is this and a few other lists. Thanks! Bob ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/ Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272284 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: query on cfdirectory
Thanks for the quick response! This will keep me from cleaning out the shed for a while ;) unless of course the wife decides we need to do Bob -Original Message- From: Coldfusion [mailto:[EMAIL PROTECTED] Sent: Saturday, March 10, 2007 11:28 AM To: CF-Talk Subject: RE: query on cfdirectory To see all elements returned in a query structure: You are on track with the form/checkbox option by storing the filename in a db to be displayed later. ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade & see new features. http://www.adobe.com/products/coldfusion Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272270 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
query on cfdirectory
Hi folks, in need of some help with a couple of things here that I'm wanting to do. Not really sure where or how to start ..Firstly, I have a couple of directories (songs,docs) that I do a simple display of with cfdirectory and cfloop query to display names. What I am attempting to do is provide a way for people to select a number of songs/docs from each of these directories to store or write to a file for others to view as a current song type thing. I'm thinking about just doing a simple form/checkbox scenario to flag the items, then store in a db and pulling those for display on the other end? I guess I'm asking what might be the best approach for this? Secondly, my mind is wandering/wondering and trying to get a better understanding of what is returned by a query in this situation, are the only things returned, the elements outlined in livedocs?? I'm needing a somewhat visual between the whole array/query thing and what I've been reading so far seems too vague for my feeble mind to figure out. Any help or direction on any of the above would be greatly appreciated. TIA Bob ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade & see new features. http://www.adobe.com/products/coldfusion Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272267 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: writing xml files
Ben, This isn't something I see being under a constant load with multiple calls, so this may be something for me to explore, if nothing else, it will be an opportunity for me to learn another way to do this. Thanks! Bob -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Friday, February 16, 2007 2:33 PM To: CF-Talk Subject: RE: writing xml files Bob, You could also just have the flash movie call the CFM page directly and have the CFM page return XML data. The downside to that though is that is requires CF processing every time the flash movie loads. The upside is that it cuts out the middle man and you don't have to worry about the XML file being created PRIOR to the flash movie being loaded. Just trying to give you options. ... Ben Nadel ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2. Free Trial http://www.adobe.com/products/coldfusion/flex2/ Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270030 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: writing xml files
Thanks Michael.I'll play around with that and the dataset returned from my query, looks like just what I'm after ;-) Bob -Original Message- From: Michael E. Carluen [mailto:[EMAIL PROTECTED] Sent: Friday, February 16, 2007 1:12 AM To: CF-Talk Subject: RE: writing xml files Bob, It'll be something along these lines... to get you started. ...cfstuff here... Hope that helps. Michael > -Original Message- > From: Bob Imperial [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 15, 2007 10:06 PM > To: CF-Talk > Subject: RE: writing xml files > > Aye...playing around with that nowwas hoping for a tutorial of sorts. > Thanks for the reply ;) > > -Original Message- > From: Michael E. Carluen [mailto:[EMAIL PROTECTED] > Sent: Friday, February 16, 2007 12:56 AM > To: CF-Talk > Subject: RE: writing xml files > > > I want to write the XML file with CF. > > > > cfxml? > > http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/ > html > /w > whelp.htm?context=ColdFusion_Documentation > <http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common > /htm > l/ > wwhelp.htm?context=ColdFusion_Documentation&file=0352.htm> > &file=0352.htm > > > > > > > > > > > -Original Message- > > > From: Bob Imperial [mailto:[EMAIL PROTECTED] > > > Sent: Thursday, February 15, 2007 9:46 PM > > > To: CF-Talk > > > Subject: writing xml files > > > > > > Working on a little flash slideshow here for a client and at > > present, I'm > > > pulling the images and some captions in via an XML file. What I'm > > looking > > > to > > > do is make it easy for them to upload their images and use a text > > field to > > > pass their captions along as well. I want to write the XML file with CF. > > > Has > > > anyone out there done this or something like it that can offer some > > > direction or point me in the direction of some decent tutorials on this? > > > TIA > > > > > > > > > Bob > > > > > > > > > > > > > ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269982 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: writing xml files
Aye...playing around with that nowwas hoping for a tutorial of sorts. Thanks for the reply ;) -Original Message- From: Michael E. Carluen [mailto:[EMAIL PROTECTED] Sent: Friday, February 16, 2007 12:56 AM To: CF-Talk Subject: RE: writing xml files > I want to write the XML file with CF. cfxml? http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/w whelp.htm?context=ColdFusion_Documentation <http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/ wwhelp.htm?context=ColdFusion_Documentation&file=0352.htm> &file=0352.htm > -Original Message- > From: Bob Imperial [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 15, 2007 9:46 PM > To: CF-Talk > Subject: writing xml files > > Working on a little flash slideshow here for a client and at present, > I'm > pulling the images and some captions in via an XML file. What I'm > looking > to > do is make it easy for them to upload their images and use a text > field to > pass their captions along as well. I want to write the XML file with CF. > Has > anyone out there done this or something like it that can offer some > direction or point me in the direction of some decent tutorials on this? > TIA > > > Bob > > > ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269980 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
writing xml files
Working on a little flash slideshow here for a client and at present, I'm pulling the images and some captions in via an XML file. What I'm looking to do is make it easy for them to upload their images and use a text field to pass their captions along as well. I want to write the XML file with CF. Has anyone out there done this or something like it that can offer some direction or point me in the direction of some decent tutorials on this? TIA Bob ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269977 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Need help searching for files in a directory
Ahhh so am I understanding this correctly, it converts it to lower case before it actually sends the request to the db? -Original Message- From: Matt Quackenbush [mailto:[EMAIL PROTECTED] Sent: Sunday, February 11, 2007 12:49 AM To: CF-Talk Subject: Re: Need help searching for files in a directory No need for that. If you look at my example, you'll see that I used lCase() ColdFusion function to make sure that the form value was in lower case as well. So it covers it all. On 2/10/07, Bob Imperial <[EMAIL PROTECTED]> wrote: > > Thanks Matt...this covers the two possibilities of upper and lower case .. > Select * from qryResult Where lower(name) Like '%#form.findThis#%' OR > upper(name) Like '%#form.findThis#%' > > I guess maybe I should address the other possibilities by eliminating > the uploading of mixed case names on the front end via javascript ;-) > > Thanks again!! Bob > ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269445 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: Need help searching for files in a directory
Thanks Matt...this covers the two possibilities of upper and lower case .. Select * from qryResult Where lower(name) Like '%#form.findThis#%' OR upper(name) Like '%#form.findThis#%' I guess maybe I should address the other possibilities by eliminating the uploading of mixed case names on the front end via javascript ;-) Thanks again!! Bob -Original Message- From: Matt Quackenbush [mailto:[EMAIL PROTECTED] Sent: Saturday, February 10, 2007 10:28 PM To: CF-Talk Subject: Re: Need help searching for files in a directory QofQ is case sensitive. So if you search for name LIKE '%Alanis%', it is NOT the same as searching for '%alanis%', or '%aLaNiS%'. The force it to be case-INsensitive, use a couple of functions: SELECT * FROM qryResult WHERE lower(name) LIKE '%#lCase(form.findThis)#%' Hope that helps. On 2/10/07, Bob Imperial <[EMAIL PROTECTED]> wrote: > > Thanks again for the help on this Gert! I've setup my output but I ran > into something I'm not sure of the syntax on how to fix this. When > passing the search criteria via my form variable, it only returns > exact matches in case..here's what I have setup: > > name="qryResult" > filter="#ThisFilter#" recurse="Yes"> > > Select * from qryResult Where name Like '%#form.findThis#%' > > ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269443 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Need help searching for files in a directory
Thanks again for the help on this Gert! I've setup my output but I ran into something I'm not sure of the syntax on how to fix this. When passing the search criteria via my form variable, it only returns exact matches in case..here's what I have setup: Select * from qryResult Where name Like '%#form.findThis#%' I've tried to use ListFindNoCase but it doesn't seem to work, or at least not in the ways I've tried. Is there a way to handle what I'm after with it or is there some other approach I should be taking? Thanks again for all the help! Bob -Original Message- From: Gert Franz [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 4:45 AM To: CF-Talk Subject: Re: Need help searching for files in a directory Well since you qould try to use verity and verity does not index mp3 files for their content, I assume you are just looking for a filename. So what you can do is (assuming you have cfmx7): Select * from qryResult Where name Like '%Alanis%' Greetings / Grüsse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten Sie unserer Mailingliste bei: deutsch: http://de.groups.yahoo.com/group/railo/ english: http://groups.yahoo.com/group/railo_talk/ Bob Imperial schrieb: > I'm trying to figure out how to go about searching through a directory > of > mp3 files I have in a shared hosting environment so no verity. The > search criteria would be passed via a form variable, so, I'm wondering > if it's possible to use cfdirectory list and maybe dump the results > into an array, then do loop through the array using listfindnocase on > it to find the specific file?? Any help or direction would be greatly > appreciated, I've goggled it to death only to run into the verity > avenue, which I can do locally, but alas, not in my shared hosting scenario. > > Thanks!! Bob > > > ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269432 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Need mac users help please
Thanks Tom ;-) I am now not going to work late tonight -Original Message- From: Tom McNeer [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 3:27 PM To: CF-Talk Subject: Re: Need mac users help please Hi Bob, If someone out there on a Mac would be so kind as to check these issues > for me, I would actually take the weekend off ;-) No problems for me, in either Firefox or Safari. I don't have IE for the Mac, so I don't know what would happen there. There's no reason to right-click anything. You just click the link to the file, and the browser/Mac decide what to do. In my particular case, the MP3 files opened and played using Quicktime in a new browser window or tab. For the docs, Firefox opened them in Word, while Safari downloaded and saved them. The different behavior may just be some settings preferences. But in neither case did I have any trouble accessing or using the files. -- Thanks, Tom Tom McNeer MediumCool http://www.mediumcool.com 1735 Johnson Road NE Atlanta, GA 30306 404.589.0560 ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269381 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Need mac users help please
I have some mp3 files and word docs setup and displayed using cfdirectory "list", everything displays fine and the whole "right-click" thing works well on PC, although, I got the following message from a friend who is on a Mac. If someone out there on a Mac would be so kind as to check these issues for me, I would actually take the weekend off ;-) http://lpcband.imperialart.com Thanks!! Bob >>Here's what's going on as far as my mac (I haven't tried it on a PC in the office yet): >>When I click on an MP3 it goes to a "the page could not be found" page.? If I right click the song, I can ask it to open in itunes (my preferred audio player) but it won't play.? It has the title in the >>play box but when I click on the play button it reverts to the last song actually played in my itunes library. >>With the docs, if I click on one it takes me to another "the page could not be found" page.? I can't seem to get it to open even with a right click.? The last time I clicked on a doc it actually went to what >>looks to be a programers page (kind of a form type page that had some script and such). ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269318 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: Problems uploading text file in CF
Sounds like you need set permissions ... Take a peek at: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-p35.htm#wp354009 1 this should get you there. Bob -Original Message- From: hussain shaikh [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 8:04 AM To: CF-Talk Subject: Problems uploading text file in CF I am trying to upload a text file using CF, but I get the following error. "The MIME type of the uploaded file "text/plain" was not accepted by the server." My coldfusion is running on Unix platform. The code which I m usiing is as follows:- #cgi.script_name# name="uploadForm" enctype="multipart/form-data"> Please help!!! Hussain. ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269291 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: Need help searching for files in a directory
Thanks Gert!! I knew it would be something relatively simple, but at 4AM things just don't always fall into place ;-) Now that I've had some sleep, it's off to come up with more things to ponder. Bob -Original Message- From: Gert Franz [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 4:45 AM To: CF-Talk Subject: Re: Need help searching for files in a directory Well since you qould try to use verity and verity does not index mp3 files for their content, I assume you are just looking for a filename. So what you can do is (assuming you have cfmx7): Select * from qryResult Where name Like '%Alanis%' Greetings / Grüsse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten Sie unserer Mailingliste bei: deutsch: http://de.groups.yahoo.com/group/railo/ english: http://groups.yahoo.com/group/railo_talk/ Bob Imperial schrieb: > I'm trying to figure out how to go about searching through a directory > of > mp3 files I have in a shared hosting environment so no verity. The > search criteria would be passed via a form variable, so, I'm wondering > if it's possible to use cfdirectory list and maybe dump the results > into an array, then do loop through the array using listfindnocase on > it to find the specific file?? Any help or direction would be greatly > appreciated, I've goggled it to death only to run into the verity > avenue, which I can do locally, but alas, not in my shared hosting scenario. > > Thanks!! Bob > > > ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269288 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Need help searching for files in a directory
Will be filename...or something like it. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 4:16 AM To: CF-Talk Subject: Re: Need help searching for files in a directory What are your search criteria? Filename, ID3? "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the exclusive use of the intended recipient(s). If you are not the intended recipient(s) please note that any form of distribution, copying or use of this communication or the information in it is strictly prohibited and may be unlawful. If you have received this communication in error please return it to the sender or call our switchboard on +44 (0) 20 89107910. The opinions expressed within this communication are not necessarily those expressed by Reed Exhibitions." Visit our website at http://www.reedexpo.com -Original Message----- From: Bob Imperial To: CF-Talk Sent: Fri Feb 09 08:58:00 2007 Subject: Need help searching for files in a directory I'm trying to figure out how to go about searching through a directory of mp3 files I have in a shared hosting environment so no verity. The search criteria would be passed via a form variable, so, I'm wondering if it's possible to use cfdirectory list and maybe dump the results into an array, then do loop through the array using listfindnocase on it to find the specific file?? Any help or direction would be greatly appreciated, I've goggled it to death only to run into the verity avenue, which I can do locally, but alas, not in my shared hosting scenario. Thanks!! Bob ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269287 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Need help searching for files in a directory
I'm trying to figure out how to go about searching through a directory of mp3 files I have in a shared hosting environment so no verity. The search criteria would be passed via a form variable, so, I'm wondering if it's possible to use cfdirectory list and maybe dump the results into an array, then do loop through the array using listfindnocase on it to find the specific file?? Any help or direction would be greatly appreciated, I've goggled it to death only to run into the verity avenue, which I can do locally, but alas, not in my shared hosting scenario. Thanks!! Bob ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269278 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: cfformgroup styles
Nevermind /blush .. -Original Message- From: Bob Imperial [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 16, 2007 12:58 AM To: CF-Talk Subject: cfformgroup styles Just playing around with flash forms for the first time here ..a kid in a candy store for gui peoples ;-) ...so ...is there a way to set the font color for the label within a cfformgroup tag? Bob ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:23 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
cfformgroup styles
Just playing around with flash forms for the first time here ..a kid in a candy store for gui peoples ;-) ...so ...is there a way to set the font color for the label within a cfformgroup tag? Bob ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:22 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Cf Portal apps
Thanks for the direction James and others, Ill poke around in Ray's blog app and see how badly I can muck it up ;) Don't you love it when gui/graphics people think they can program? ;-) Bob -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Sunday, January 14, 2007 5:00 AM To: CF-Talk Subject: Re: Cf Portal apps It would be pretty straightforward to integrate Ray Camden's apps into a single portal. http://ray.camdenfamily.com/projects/projects.cfm You get a blog (with a basic CMS), forum, polls, surveys, wiki, ads, google calendar and some other bits to help it all along. You just need to do a few mods to tie accounts together between the apps (unless anyone else has done this already). On 1/14/07, Bob Imperial <[EMAIL PROTECTED]> wrote: > Hello folks, > > In need of some information/education/direction on cf portal systems > out there. Seems I've been volunteered to put something together for > my wife's restaurant and her customers (from opt-in list), something > simple with at least some sort form of admin that I can control things > from. Any suggestions on some down and dirty free type packages would > be great, as well as some direction on resources to learn about portals in general... > aside from googling that is, I figured someone out there is in the > know ;-) and might save me some time searching for the "right stuff". TIA!! > > > Bob Imperial > > Imperial art design > 6204 Lead Mine Road ::: Raleigh, NC 27612 ::: Phone: 919-676-7642 > www.imperialart.com <http://www.imperialart.com/> > > > > ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266566 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Cf Portal apps
Hello folks, In need of some information/education/direction on cf portal systems out there. Seems I've been volunteered to put something together for my wife's restaurant and her customers (from opt-in list), something simple with at least some sort form of admin that I can control things from. Any suggestions on some down and dirty free type packages would be great, as well as some direction on resources to learn about portals in general... aside from googling that is, I figured someone out there is in the know ;-) and might save me some time searching for the "right stuff". TIA!! Bob Imperial Imperial art design 6204 Lead Mine Road ::: Raleigh, NC 27612 ::: Phone: 919-676-7642 www.imperialart.com <http://www.imperialart.com/> ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266519 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Beagle for free!!
Oh ...you give me a physical address and this dog will be yours.trust me ;) -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Sunday, November 26, 2006 2:45 AM To: CF-Talk Subject: Re: Beagle for free!! don't forget to upload the beagle. On 11/25/06, Raymond Camden <[EMAIL PROTECTED]> wrote: > You can download it from Ben's site: > > http://www.forta.com/books/0321223675/ > > On 11/25/06, Bob Imperial <[EMAIL PROTECTED]> wrote: > > Hello folks.HELP!! I finally purchased my very own copy of > > CFMX WACK 5th ok so I'm a little slow to jump into things ;) Do > > the OWS files live out there anywhere? To download perhaps? I pulled > > the CD out and laid it on my desk, before I could put in the cdrom > > drive I was sidetracked by a knock at the door ;(. When I came back > > to my desk the disc was nowhere to be found at least not in my > > office ;( it appears that young Beagles like to teeth on hard things > > that go crackle. I found the disc in the dog's crate ... my > > wife's dog that is!!! It was in a few pieces, with a tail wagging as though nothing was wrong > > > > Will trade 1 year old Beagle for the source files for OWS sample app > > ... ;) > > > > Bob > > > > > > > > ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:261680 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Beagle for free!!
Hello folks.HELP!! I finally purchased my very own copy of CFMX WACK 5th ok so I'm a little slow to jump into things ;) Do the OWS files live out there anywhere? To download perhaps? I pulled the CD out and laid it on my desk, before I could put in the cdrom drive I was sidetracked by a knock at the door ;(. When I came back to my desk the disc was nowhere to be found at least not in my office ;( it appears that young Beagles like to teeth on hard things that go crackle. I found the disc in the dog's crate ... my wife's dog that is!!! It was in a few pieces, with a tail wagging as though nothing was wrong Will trade 1 year old Beagle for the source files for OWS sample app ... ;) Bob ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:261671 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: cffile question
Thanks Jon! Using html tags in the output for the read works fine for me, guess I should have thought a little more about the specific tag I was having trouble with. Is it possible to include html tags in the output field for the write? I've tried several ways/locations within the output for the write to no avail. Is what I am trying to do even possible? I am emailing a link to the index page and I'm trying to simply center the output there. TIA Bob > file="#BaseDir#\index.cfm" > output="Website directories were created successfully on > #DateFormat(CreateODBCDate(myDate), " d, hh:mm:ss")#"> > variable="confirmation"> > > #HTMLCodeFormat(confirmation)# > You can put any HTML tags into your output, but you may need to escape any CFML tags in the input by using #chr(60)# for "<" and #chr (62)# for ">" ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260102 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: cffile question
Thank you Rick!! I think the light maybe coming on here lately ;-). I think I've done about all I can do with being self taught for the most part and trying to figure it all out by myself ;-), coming out of the shadows and asking questions here after I've exhausted trying everything my little brain can come up with is definitely helping things to click for me. Bob -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Sunday, November 12, 2006 12:39 PM To: CF-Talk Subject: Re: cffile question Jon Clausen wrote: > On Nov 12, 2006, at 11:57 AM, Bob Imperial wrote: > >> 1.)In outputting my datetime here, how would I go about adding the >> AM/PM designation for output? >> >> >> > file="#BaseDir#\index.cfm" >> output="Website directories were created successfully on >> #DateFormat(CreateODBCDate(myDate), " d, hh:mm:ss")#"> > > #DateFormat(createODBCDateTime(myDate), " dd, ")# #TimeFormat > (createODBCDateTime(myDate),"hh:mm:ss tt")# > > ("tt" does not work in the DateFormat() function ) FYI, there is absolutely no need to use createODBCDateTime() here If "myDate" is already a date, then you can just pass IT to date format. The only purpose of createODBCDateTime() is if you're putting a date time object in a query and you're *NOT* using CFQUERYPARAM. so above, you'd be just fine with: #DateFormat(myDate, " dd, ")# #TimeFormat(myDate,"hh:mm:ss tt")# Rick ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260094 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: cffile question
Thanks Doug! Had to be that simple eh ;-) -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Sunday, November 12, 2006 12:38 PM To: CF-Talk Subject: Re: cffile question Doug - Original Message - From: "Bob Imperial" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Sunday, November 12, 2006 9:57 AM Subject: cffile question > Hi Folks. > > while I realize this a question for the cf_newbie list, the response times > here are always much faster here. First off, thank you Michael D. for your > response on cf_newbie in regards to my question about cfdirectory. I am > still working on the basics with many things cf, another being cffile and > the "write" action and what the limitations are as to what can be put into > the output. I have a bit of code that creates a few directories and then > writes and index page with a short message and datetime stamp. Here's what > I'm using so far after my directories are created. > > > 1.)In outputting my datetime here, how would I go about adding the AM/PM > designation for output? > > > file="#BaseDir#\index.cfm" > output="Website directories were created successfully on > #DateFormat(CreateODBCDate(myDate), " d, hh:mm:ss")#"> > > OK, here's the simpleton question, can I put any html tags in the output > above or into the output below? I'd like to put this in a div centered on > the page. > > > > > #HTMLCodeFormat(confirmation)# > > > TIA ... Bob > > > ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260092 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
cffile question
Hi Folks. while I realize this a question for the cf_newbie list, the response times here are always much faster here. First off, thank you Michael D. for your response on cf_newbie in regards to my question about cfdirectory. I am still working on the basics with many things cf, another being cffile and the "write" action and what the limitations are as to what can be put into the output. I have a bit of code that creates a few directories and then writes and index page with a short message and datetime stamp. Here's what I'm using so far after my directories are created. 1.)In outputting my datetime here, how would I go about adding the AM/PM designation for output? OK, here's the simpleton question, can I put any html tags in the output above or into the output below? I'd like to put this in a div centered on the page. #HTMLCodeFormat(confirmation)# TIA ... Bob ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260083 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
issue with registering a ds in cfadmin
Hi folks .I posted this to the newbie group but response is a little quicker here and like a lot of people, I'm looking for a solution yesterday, but waiting till now to post ;) I'm having a little trouble with getting a sql db registered in cf, anyone run into this? Connection verification failed for data source: newWebStore java.sql.SQLException: [Macromedia][SQLServer JDBC Driver]Could not establish a connection using integrated security: No LoginModules configured for JDBC_DRIVER_01 it's been a while since I've tried to work with anything but access on my local machine with no problem registering those, so I'm a little lost here ;( any ideas to pint me in a direction would be great! Thanks! Bob ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252311 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: Just a quick OT question?
Might shed a little more light for you http://content.websitegear.com/article/subdomain_setup.htm -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Monday, September 04, 2006 7:05 PM To: CF-Talk Subject: Just a quick OT question? I am not much of a server set-up guy and was wondering how places like ebay format their url like this. Any takers? if you go to their home page it is http://www.ebay.com If you click on a category... http://antiques.ebay.com And if you click on a sub category http://antiques.listings.ebay.com ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:251997 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: Just a quick OT question?
Just looks like a standard sub domain setup, I have several setup for my own to handle different areas that I don't necessarily publish to the world. They come in handy and my hosting company doesn't seem to have a limit on the number of subs I can have and I'm in a shared hosting environment. Not sure what your situation is hosting wise, but pretty simple to setup ... ;) even an old guy like me can do it. Bob -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Monday, September 04, 2006 7:05 PM To: CF-Talk Subject: Just a quick OT question? I am not much of a server set-up guy and was wondering how places like ebay format their url like this. Any takers? if you go to their home page it is http://www.ebay.com If you click on a category... http://antiques.ebay.com And if you click on a sub category http://antiques.listings.ebay.com ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:251996 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
allowable file types with cffile
OK all you mac users out there .. Is there a full list of allowable file types out there somewhere for cffile and uploads? I don't necessarily want to allow "ALL" and I have some new file extensions I am not familiar with such as .CR2 files. Bob ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248880 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
testing
test .. please ignore getting quadruple posts now for some odd reason. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248367 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: OT: I'll NEVER switch to dot Net
:) and this coming from someone that used to jump from perfectly good airplanes . From: loathe [mailto:[EMAIL PROTECTED] Sent: Friday, July 28, 2006 10:56 AM Don't be so sure. At one point I was asked "When do I get to stop learning? I started writing CF so I didn't have to study so much anymore." Like most of the languages out there, it's not the language it's the user. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248017 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: shopping cart integration
Thank you Mary Jo That answers my main question about the connecting the financial end and clarifies things for me. Cart>gateway>merchantAcc And thank you all for your responses ... I knew I wasn't the only one working on the weekend ;) Bob -Original Message- From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] Sent: Saturday, July 15, 2006 12:24 PM To: CF-Talk Subject: Re: shopping cart integration >Might someone out there point me (a simpleton) in a direction to gain a >little more understanding about shopping carts and details about >connecting back end code to all the appropriate financial pieces please? In terms of connecting to the bank, you generally use an online payment gateway such as Authorize.Net or Verisign PayFlow which handles the processing of the credit card and then depositing the funds through your merchant account. In terms of how to do this, it varies totally depending on the service that you use. AuthNet is the easiest I am familiar with, you just use a CFHTTP post and then process the return information to see if the transaction failed or was approved. Others like Linkpoint and Verisign require installing components on the server but provide CFX tags to make CF integration easier. Others may be more difficult, such as Cybersource which requires the use of a COM object. And there are those like PayPal and 2Checkout where the customer leaves your site altogether and you have to determine whether to save the order before or after the customer leaves your site and how to deal with uncompleted orders. So you really need to decide which service you are using before looki Mary Jo Sminkey http://www.cfwebstore.com CFWebstore, ColdFusion E-commerce ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:24 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
shopping cart integration
Might someone out there point me (a simpleton) in a direction to gain a little more understanding about shopping carts and details about connecting back end code to all the appropriate financial pieces please? I have spent a little time digging around in the code for a CF cart app or two but am still a little hesitant to try to set one one up from A-Z. While I don't claim to be a cf programmer, I've been knee deep if cf stuff off and on for the last few years, mostly simple stuff, some large scale applications with and without a clear methodology. I would consider myself more a gui guy with aspirations of hacking up perfectly good code ;) I Any direction, thoughts, ideas on where to start with learning how to actually connect the code to the bank would be much appreciated. TIA Bob ... just another old dog trying to learn new tricks. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246658 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
learning flash
Happy Father's day to all you Dad's out there!!! Does anybody out there have any experience with product from learnflash.com? I'm looking at the the product here: http://www.learnflash.com/flash8websites.html and pondering the purchase. I have a little flash experience but am looking to expand my horizons a bit in this area ;) I am a visual person so this sort of thing seems appropriate for me but would like to hear from someone that actually has some firsthand experience with this product and using cf and flash. Thanks! Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244062 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
RE: cfdirectory-recurse
This is sooo much quicker and easier ... and I'm old and lazy so it helps tremendously :) Thanks Josh! -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Saturday, June 17, 2006 11:36 AM To: CF-Talk Subject: Re: cfdirectory-recurse Hi Bob, I think you will want to use #cffile.serverFile#, this will return the name of the file that was just uploaded. You don't have to do any cfdirectory stuff if you don't want to. There is a slew of information that is returned in the cffile struct after an upload, such as file size, time created etc. -- check the livedocs for more info, search under "cffile action=upload". -- Josh - Original Message - From: "Bob Imperial" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Saturday, June 17, 2006 8:01 AM Subject: cfdirectory-recurse > Stepping off the porch a bit here ;) While I post mostly to cf-newbie, > that > list doesn't appear to be quite as big or deep. nor as entertaining :) > I am trying to do something here that I know most of you will find > elementary, but I am yet and old dog still learning new tricks here. I > have > a simple little routine I'm working on here that involves adding some info > to the db; description, price, then I proceed to uploading an image that I > need to associate with an item just entered in the db. I am at a point > where > my initial data is stored, image uploaded and am now trying to snag the > image name of the last image uploaded to run my update and associate the > image with the correct data. I tried to use cfdirectory with recurse set > to > yes to grab this and it's seems to work fine (most of the time), it > occasionally grabs the previously uploaded image instead though. I am > trying > to make this as simple as possible and maybe I am not understanding how > recurse works or can be used, but any enlightenment here would be greatly > appreciated. Or... for that matter, is there a different way to go about > what I am trying to do here? > > Thanks! Bob > > > ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243946 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
RE: cfdirectory-recurse
Excellent! Thank you for the quick responses, still learning my way around cf here and I've always found this list to be extremely helpful. I knew I would find a simpler solution to what I was trying to do here . As well as the entertainment offered with no cover charge :) I'll play a bit with cffile.serverFile and hopefully cut my work time today down in the process. Bob -Original Message- From: Alan Rother [mailto:[EMAIL PROTECTED] Sent: Saturday, June 17, 2006 11:31 AM To: CF-Talk Subject: Re: cfdirectory-recurse Well... First off recursion is about scan through multiple directories located in a parent/child or tree relationship such as this: myParentFolder -myChildFolder1 -myChildFolder2 ---mySecondLevelChildFolder1 Recursion would involve knowing that myParentFolder exists, and wanting to know what files are in it and all of the folders contained within it as well. In CF7, cfdirectory has a recurse option, which will do this automatically. In earlier versions we had to com up with complicated ways to do this. Based on what you said about what you are doing, you do not need recursion and you really shouldn't even need to use cfdirectory. When you upload a file using cffile, it creates a stuct of values about the file operation that you can use afterwards. Here is the address to the live docs on using CFFILE in CFMX7, http://livedocs.macromedia.com/coldfusion/7/htmldocs/0245.htm#1098395 Basically, right after you finish the upload you can just reference this variable to see which file you last uplaoded and what it was named on the server cffile.serverFile Hope that helps. Let me know if you want me to look at a specific example. =] -- Alan Rother Macromedia Certified Advanced ColdFusion MX 7 Developer ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243942 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
cfdirectory-recurse
Stepping off the porch a bit here ;) While I post mostly to cf-newbie, that list doesn't appear to be quite as big or deep. nor as entertaining :) I am trying to do something here that I know most of you will find elementary, but I am yet and old dog still learning new tricks here. I have a simple little routine I'm working on here that involves adding some info to the db; description, price, then I proceed to uploading an image that I need to associate with an item just entered in the db. I am at a point where my initial data is stored, image uploaded and am now trying to snag the image name of the last image uploaded to run my update and associate the image with the correct data. I tried to use cfdirectory with recurse set to yes to grab this and it's seems to work fine (most of the time), it occasionally grabs the previously uploaded image instead though. I am trying to make this as simple as possible and maybe I am not understanding how recurse works or can be used, but any enlightenment here would be greatly appreciated. Or... for that matter, is there a different way to go about what I am trying to do here? Thanks! Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243933 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
RE: Flash Learning
That's somewhat a subjetive thing, depending upon your learning style and what areas of flash are you interested in. For me it was a combiniation of books, tutorials, source code and just playing around in flash work environment. I have a bit of gui design experience so that helped with the visual end of things. As for actionscript, try O'Rielly's ActionScript The Definitive Guide. HTH Bob -Original Message- From: it_temp [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 2:36 PM To: CF-Talk Subject: Flash Learning What is the best tool to learn Flash (i.e. website, book,tutorial)? __ 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 Studio 5
Thanks Mike! If it was a snake . ;) Bob -Original Message- From: Mike Byers [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 2:31 PM To: CF-Talk Subject: RE: CF Studio 5 Look here [HKEY_CURRENT_USER\Software\Macromedia\Studio5\Projects\RecentProjects] You should find what you are looking for. Mike -Original Message- From: Bob Imperial [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 1:26 PM To: CF-Talk Subject: CF Studio 5 Can somebody please tell me how to whack a project from studio 5, the registry entries that were create in 4.5 were easy to find and whack but I can't seem to find them for 5. TIA! Bob Imperial Application Developer School Link Inc. 910.223.2116 x 108 http://www.schoollink.net Providing technology solutions for educators __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.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
CF Studio 5
Can somebody please tell me how to whack a project from studio 5, the registry entries that were create in 4.5 were easy to find and whack but I can't seem to find them for 5. TIA! Bob Imperial Application Developer School Link Inc. 910.223.2116 x 108 http://www.schoollink.net Providing technology solutions for educators __ 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: ntConsoleJava.e Process
In your Component Services Under Adminsitrative Tools, on the right highlight the Services (local)and it should display a list of all the services running on your system. Find ColdFusion Graphing Server, ColdFusion Management Repository Server and ColdFusion Monitoring Server. Right click on each one and select Properties, in the menu you should see a drop down menu and Services Status: Under Status click Stop and then select Disable from the drop down menu. Do this for each of these services and then test your system to see if that resolves the error. -Bob -Original Message- From: Mark M. Kecko [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 12:04 PM To: CF-Talk Subject: ntConsoleJava.e Process Bob, I found the ntConsoleJava.e process running but I don't know what service to turn off in order to stop the process. Please advise. -mark -Original Message- From: Bob Imperial [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 11:26 AM To: CF-Talk Subject: RE: CF Server Logging Questions Billy. check your system processes running, we've had some problems with the graphing engine eating resources. In the the system processes window look for consolejavaNT I think or something to that effect. If it's there it's sure to be hogging resource. We jus went into the services control panel and disabled it, unless of course you're using the graphing features in CF5. Let me know what you find. Bob -Original Message- From: Mark M. Kecko [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 10:45 AM To: CF-Talk Subject: RE: CF Server Logging Questions Billy, I'm not using Access. I'm running SQL Server 7 w/ ODBC? Any body else have any idea what would be causing the log entries included in the below message? Has Macromedia addressed this issue? -mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 5:37 PM To: CF-Talk Subject: RE: CF Server Logging Questions Typically the result of using Access. See: http://www.macromedia.com/v1/handlers/index.cfm?ID=1540&Method=Full --- Billy Cravens -Original Message- From: Mark M. Kecko [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 4:30 PM To: CF-Talk Subject: CF Server Logging Questions Hi, I've got a CF5 Server running on NT4 and it seems as though the CF service is causing the server to crash. Something is causing 100% processor tie-up, which hogs memory and eventually crashes the server. I've looked for endless loops and the such in my apps and haven't been able to find any. These are some entries that I'm concerned about from my SERVER.LOG and WEBSERVER.LOG log files. I don't really know what these errors mean or what's causing them, but I'm hoping that they're related to my problem. If anybody could shed some light on these log entries it would be appreciated, thanks. -mark kecko Server.LOG "Error","461","04/18/02","14:19:31",,"Windows NT error number 232 occurred." "Error","702","04/18/02","14:19:32",,"Error number 232 occurred while attempting to write the reply to the web server." "Error","702","04/18/02","14:19:32",,"Windows NT error number 232 occurred." "Error","702","04/18/02","14:19:32",,"Error number 232 occurred attempting to close connection to web server." "Error","702","04/18/02","14:19:32",,"Windows NT error number 232 occurred." "Error","273","04/18/02","14:19:35",,"Error number 232 occurred attempting to close connection to web server." "Error","273","04/18/02","14:19:35",,"Windows NT error number 232 occurred." "Error","461","04/18/02","14:19:41",,"Error number 232 occurred while attempting to write the reply to the web server." "Error","461","04/18/02","14:19:41",,"Windows NT error number 232 occurred." "Error","461","04/18/02","14:19:41",,"Error number 232 occurred attempting to close connection to web server." "Error","461","04/18/02","14:19:41",,"Windows NT error number 232 occurred." "Error","273","04/18/02","14:20:03",,"Error number 232 occurred attempting to close connection to web server." "Error","273","04/18/02","14:20:03",,"Windows NT error number 232 occurred." WebSERVER.LOG** "Error","626","
RE: CF Server Logging Questions
Billy. check your system processes running, we've had some problems with the graphing engine eating resources. In the the system processes window look for consolejavaNT I think or something to that effect. If it's there it's sure to be hogging resource. We jus went into the services control panel and disabled it, unless of course you're using the graphing features in CF5. Let me know what you find. Bob -Original Message- From: Mark M. Kecko [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 10:45 AM To: CF-Talk Subject: RE: CF Server Logging Questions Billy, I'm not using Access. I'm running SQL Server 7 w/ ODBC? Any body else have any idea what would be causing the log entries included in the below message? Has Macromedia addressed this issue? -mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 5:37 PM To: CF-Talk Subject: RE: CF Server Logging Questions Typically the result of using Access. See: http://www.macromedia.com/v1/handlers/index.cfm?ID=1540&Method=Full --- Billy Cravens -Original Message- From: Mark M. Kecko [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 4:30 PM To: CF-Talk Subject: CF Server Logging Questions Hi, I've got a CF5 Server running on NT4 and it seems as though the CF service is causing the server to crash. Something is causing 100% processor tie-up, which hogs memory and eventually crashes the server. I've looked for endless loops and the such in my apps and haven't been able to find any. These are some entries that I'm concerned about from my SERVER.LOG and WEBSERVER.LOG log files. I don't really know what these errors mean or what's causing them, but I'm hoping that they're related to my problem. If anybody could shed some light on these log entries it would be appreciated, thanks. -mark kecko Server.LOG "Error","461","04/18/02","14:19:31",,"Windows NT error number 232 occurred." "Error","702","04/18/02","14:19:32",,"Error number 232 occurred while attempting to write the reply to the web server." "Error","702","04/18/02","14:19:32",,"Windows NT error number 232 occurred." "Error","702","04/18/02","14:19:32",,"Error number 232 occurred attempting to close connection to web server." "Error","702","04/18/02","14:19:32",,"Windows NT error number 232 occurred." "Error","273","04/18/02","14:19:35",,"Error number 232 occurred attempting to close connection to web server." "Error","273","04/18/02","14:19:35",,"Windows NT error number 232 occurred." "Error","461","04/18/02","14:19:41",,"Error number 232 occurred while attempting to write the reply to the web server." "Error","461","04/18/02","14:19:41",,"Windows NT error number 232 occurred." "Error","461","04/18/02","14:19:41",,"Error number 232 occurred attempting to close connection to web server." "Error","461","04/18/02","14:19:41",,"Windows NT error number 232 occurred." "Error","273","04/18/02","14:20:03",,"Error number 232 occurred attempting to close connection to web server." "Error","273","04/18/02","14:20:03",,"Windows NT error number 232 occurred." WebSERVER.LOG** "Error","626","04/18/02","14:16:34",,"Error attempting to write location redirection to web server (Windows NT error number 16389 occurred)" "Error","563","04/18/02","14:16:35",,"Error attempting to write location redirection to web server (Windows NT error number 16389 occurred)" "Error","593","04/18/02","14:16:44",,"Error attempting to write location redirection to web server (Windows NT error number 16389 occurred)" "Error","607","04/18/02","14:17:17",,"Error attempting to write location redirection to web server (Windows NT error number 16389 occurred)" "Error","548","04/18/02","14:17:17",,"Error attempting to write location redirection to web server (Windows NT error number 16389 occurred)" "Error","659","04/18/02","14:17:17",,"Error attempting to write location redirection to web server (Windows NT error number 16389 occurred)" "Error","396","04/18/02","14:17:17",,"Error attempting to write location redirection to web server (Windows NT error number 16389 occurred)" __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.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: What is this SQL Error?
We've run into this from time to time, it occurs when two or more users thry to access the data at exactly the same time even though SQL is suppose to handle it. Just refreshing it seems to clear up the deadlock. I haven't heard any other solutions for resolving the problem though. Let me know if you do. ******* Bob Imperial Software Development Team Schoollink, Inc. 910-223-2116 ext. 108 *** "Linking Schools to The World .. One Classroom at a Time" -Original Message- From: Houk, Gary [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 3:06 PM To: CF-Talk Subject: What is this SQL Error? First time I've seen this one...what does it mean? Diagnostics: ODBC Error Code = 40001 (Serialization failure) [Microsoft][ODBC SQL Server Driver][SQL Server]Transaction (Process ID 60) was deadlocked on {lock} resources with another process and has been chosen as the deadlock victim. Rerun the transaction. __ 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: LOOP
Use "DISTINCT" in your query Bob -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 10:01 AM To: CF-Talk Subject: Re: LOOP Hi, The below lists all users logged in to the server. If the user has logged in more than once then I get multiple usernames listed. How can I only list one occurrence of all users? #User# The above outputs: Administrator Administrator Administrator Administrator test test user1 user1 user2 user3 user3 I want to display only: Administrator test user1 user2 user3 +--- + Philip Humeniuk [EMAIL PROTECTED] [EMAIL PROTECTED] +--- -+ __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. 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: CFHTTP
Works fine for me and I'm behind a firewall, though it's not truly reliable as someone else has stated. Bob -Original Message- From: Tim Claremont [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 3:53 PM To: CF-Talk Subject: RE: CFHTTP I should have been much more specific, of course. Here is the code... http://www.yahoo.com"; method="GET" resolveurl="true" timeout="90"> #CFHTTP.FileContent# Every time it returns "Connection Failure" If I go sit on the server itself, I can go to http://www.yahoo.com with no problem. -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 3:51 PM To: CF-Talk Subject: Re: CFHTTP Post your cfhttp code? Jerry >>> [EMAIL PROTECTED] 04/15/02 03:43PM >>> Works for me just fine ... It may be a problem with some type of http settings... dunno what it could be though! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > I can go to http://www.yahoo.com > > When I try to do a to http://www.yahoo.com I get a Connection > Failure message. > > Any clues? > > T > > __ 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: CFPOP
Nagara, I am on a T1 behind a FW at the office and on a direct cable connection from my home office. Bob On Sun, 13 Jan 2002 16:26:55 +0530 "nagraj" <[EMAIL PROTECTED]> wrote: > Hi Bob, > > Are you using proxy server or connected directly to > Internet connected > system. > > Rgds > Nagaraj > - Original Message - > From: "Bob Imperial" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Sunday, January 13, 2002 2:24 AM > Subject: CFPOP > > > > Anybody out there have any luck with ? I'm > playing > > around with trying to build a webmail app just for the > > experience ... I keep getting a CF error: > > Connection Failure > > > > > > The error occurred while processing an element with a > > general identifier of (CFPOP), > > > > Here's the tag it craps out on: > > > PASSWORD="#password#"ACTION="GetHeaderOnly" > > NAME="inbox"> > > > > Any help would be appreciated TIA > > > > > __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb 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
CFPOP
Anybody out there have any luck with ? I'm playing around with trying to build a webmail app just for the experience ... I keep getting a CF error: Connection Failure The error occurred while processing an element with a general identifier of (CFPOP), Here's the tag it craps out on: Any help would be appreciated TIA __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona 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: SQL Server Union statement
How about "CREATE VIEW AS SELECT FROM"? "I haven't failed, I've found 10,000 ways that don't work." --Ben Franklin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 5:45 PM To: CF-Talk Subject: OT: SQL Server Union statement Hi all, I have an union statement that puts 2 cust tables together. I want to but I could not save it as a view in SQL Server for other pages.. Is there some other way to save it in SQL ? Thanh 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 This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. 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: "Why aren't there more CF programmers out there?"
I think you have to ask yourself, how important is it to convince somebody that sounds like they have their mind made up (or closed) as to what tool to use for the job. I come from a totally unrelated background and just a few short years ago, I wasn't sure how to turn a computer on, "literally!" I started out learning basic html and from there decided I wanted more (more than I could do with FP)! After following the advise of someone who posted to another UG I was on, decided to try CF. Wow! After learning to use the computer, html, js, perl, sql and Cold Fusion, I am now employed by a software development company that provides a rather long list of web based applications and I love it! This, coming from someone that a few short years ago was in the paint and body business :). Thanks to the advice of another "Old Dog" (no harm intended) Dick Applebaum, I have found a new love. So, you can even teach real old dogs new tricks. As for more CF programmers? http://www.allaire.com/handlers/index.cfm?Id=19865&method=full On Tue, 27 Nov 2001 16:40:18 -0600 Justin Hansen <[EMAIL PROTECTED]> wrote: > A higher up said "If ColdFusion was so easy to learn why > aren't there more > CF programmers out there?" > > So what do I tell him? > > How many CF Developers are there? > How many sites use CF? > > Is there a Macromedia rep in the house? > > He thinks FrontPage is the way to go > > Let the games begin! > > ~~ 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 variables and slow down
Hi Robert, I work for a company that does application development in the education field and we've used client variabes since day 1 which we store in a SQL DB all by itself. Some of the applications we run can be a resource heavy at times and using a DB for all client storage has definitely made a difference over storing them in th registry. Our applications are web enabled and are served up to some 500 or so schools. Bob Imperial Software Developmet Team Schoollink, Inc. On Wed, 21 Nov 2001 15:22:23 -0500 Robert Everland <[EMAIL PROTECTED]> wrote: > How many people out there are using client variables? I > have been > using them for quite a while and never really noticed how > long it takes for > the initial page that has the cfapplication in it to > load. The first time it > loads it can take a few thousand milliseconds. How many > people out there are > using client variables instead of session variables? > > Robert Everland III > Dixon Ticonderoga > ~~ 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: Studio/FB question
Don't know if I'm understanding your question correctly but it seems what you're asking for can be done with snippets?? Just my two cents worth. Bob "I haven't failed, I've found 10,000 ways that don't work." --Ben Franklin -Original Message- From: Bill Killillay [mailto:[EMAIL PROTECTED]] Sent: Monday, November 19, 2001 11:57 AM To: CF-Talk Subject: Studio/FB question I use Fusebox for just about everything and I often find myself reusing a qry, or act files, etc. I was wondering if there was a way to change ColdFusion Studio so that when you drag a file out to a page like fbx_switch that instead of it creating a hyperlink it creates a cfinclude? Can this be done with some scripting? Or is this something that needs to go to Macromedia? Thanks, Bill ~~ 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