RE: Im Ashamed But Need Help
Hi Robert, Try logging into your ftp site with ws_ftp and deleting files using ws_ftp. I had done this many years back with unix system that had garbage file names. Good luck. Dharmesh -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Thursday, July 12, 2007 11:24 AM To: CF-Talk Subject: Im Ashamed But Need Help Hello Guys, I've got a bit of an embracing one here, but I left one of my FTP sites open for a couple of days this week (I've now secured it) and some little monkey has been in and created a load of folder with names such as 'oOoOoOoimagesoOoOoOo', no real harm done just a load of empty folders which go on many many folders deep. However I'm not able to delete them when logged into the server as an admin, it just says the file name I've specified is invalid or too long. Any ideas on how I can get rid of this stuff? Thanks, Rob ~| 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:283627 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
RE: cfapplication - change application name
Thanks Barney. The application is exactly how you described it. There would be very little duplication of caching. This was actually a retrofit app and too late to implement some of the design ideas I received here. However this will help immensely in similar future apps. Thanks again, Dharmesh -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, June 24, 2005 7:00 PM To: CF-Talk Subject: Re: cfapplication - change application name It's exactly what you proposed doing originally. The biggest potential issue is that you've got two application scopes for your one app. That means you're double caching everything except your region-specific stuff. If that's all you've got, then no big deal, but if you've got application components and such (particularly ones with internal state), then you're going to run into problems. cheers, barneyb On 6/24/05, Dharmesh Goel <[EMAIL PROTECTED]> wrote: > Hi Isaac and Barney, > > Thanks for your tips. I will keep them in mind. In reference to my original > question, do you see any issues with this code? > > > > > > > > > applicationtimeout="#CreateTimeSpan(0, 5, 0, 0)#" > SESSIONTIMEOUT="#CreateTimeSpan(0, 5, 0, 0)#"> > > Thanks, > > Dharmesh -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 50 invites. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210512 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: cfapplication - change application name
Hi Isaac and Barney, Thanks for your tips. I will keep them in mind. In reference to my original question, do you see any issues with this code? Thanks, Dharmesh -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Thursday, June 23, 2005 6:23 PM To: CF-Talk Subject: Re: cfapplication - change application name Could be heavy to load them both at once... may not necessarily matter, it depends on the traffic and the server... I would recommend if you're going to reference application structures like this that you use a function or a CFC to return the appropriate strings from those structures instead of referencing them flatly ... i.e. instead of this: #application.language[request.language].welcomeMessage# It is probably better to use #application.textManager.getText("welcomeMessage")# This way if you need to make changes to the method or to the CFC internally, you don't later have hundreds of flat references to the structure in your application that would need to be replaced. > How about a single application that loads both XML files, > and stores > them in application.language.french and > application.language.english. > Then based on the URL, set request.language to one of the > two values > application.langauge variables, and use that throughout > your > application for all your lookup tasks. > cheers, > barneyb > On 6/23/05, Dharmesh Goel <[EMAIL PROTECTED]> wrote: >> Hello, >> >> Am trying to find the best approach for this problem. >> >> Application Aim/Need: Display English or French based on >> URL entered. Application is login based and aim is to >> store language specific (as well as some config settings) >> information in Application Scope for an extended period >> of time. This saves us from going to disk, reading xml >> file and parsing on every login or every page or every >> session. >> >> CFMX 7 >> one physical directory: c:\wwwroot\app >> two virtual directories: www.website.com\abc and >> www.website.com\123 >> both virtual directories point to c:\wwwroot\app >> >> Both set of users arrive on login.cfm >> Based on what website address you use, login.cfm will >> parse through one of two xml files. >> www.website.com\abc will pickup english.xml >> www.website.com\123 will pickup french.xml >> >> XML file is parsed through and placed in the Application >> scope. I need to have two distinct application names to >> keep both sets of XML data separate. Any tips on how to >> best accomplish this. I can think of placing a few cfif's >> in the application.cfm and dynamically setting the >> application name. But I am not sure if that is advisable. s. isaac dealey 954.522.6080 new epoch : isn't it time for a change? add features without fixtures with the onTap open source framework http://www.fusiontap.com http://coldfusion.sys-con.com/author/4806Dealey.htm ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210502 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
cfapplication - change application name
Hello, Am trying to find the best approach for this problem. Application Aim/Need: Display English or French based on URL entered. Application is login based and aim is to store language specific (as well as some config settings) information in Application Scope for an extended period of time. This saves us from going to disk, reading xml file and parsing on every login or every page or every session. CFMX 7 one physical directory: c:\wwwroot\app two virtual directories: www.website.com\abc and www.website.com\123 both virtual directories point to c:\wwwroot\app Both set of users arrive on login.cfm Based on what website address you use, login.cfm will parse through one of two xml files. www.website.com\abc will pickup english.xml www.website.com\123 will pickup french.xml XML file is parsed through and placed in the Application scope. I need to have two distinct application names to keep both sets of XML data separate. Any tips on how to best accomplish this. I can think of placing a few cfif's in the application.cfm and dynamically setting the application name. But I am not sure if that is advisable. Thank you, Dharmesh Goel ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210442 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: Dynamic Debug?
Hi Gonz, Thanks for your tip. Was struggling with this. Debugging would show on one website and not another. I tried your tip below and it works beautifully. Dharmesh -Original Message- From: Gonzo Rock [mailto:[EMAIL PROTECTED] Sent: Thursday, July 01, 2004 4:14 PM To: CF-Talk Subject: RE: Dynamic Debug? Ahhh... yes. Thank You. I discovered that one needs to remove all IP addresses from the CFadministrator in order for the showdebutoutput="Yes/No" setting to be effective. Thanks again, Gonz [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]
RE: Blackstone - Toronto CFUG notes
Hi Andy, Some info is available at: http://www.buntel.com/blog/index.cfm Dharmesh -Original Message- From: Andy Peterson [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 2:56 PM To: CF-Talk Subject: Re: Blackstone - Toronto CFUG notes Dharmesh Wrote: > Printing: > - > - create pdf and flash paper + others in future - rtf, excel, doc > - page break, headers, page numbers etc > - font management system using the administrator. Using pdf feature to > embed fonts in pdf documents > - great for most web pages out there currently...i.e., imperfect html > > - > - deliver reports in pdf and flash with all the groupings, sortings, > drill down > - add on component to dreamweaver??? To write reports with all the CF > functionality. This schema is saved as an xslt sheet that is called > upon by the cfreport tag OK, wait a minute! I've been looking for a reliable alternative to Crystal Reports for a long, long time. Am I reading this correctly? I'd like nothing better (in my world of programming) than to never have to deal with Crystal again. Really :-) If I can get a formatted report (with groupings, sortings, page numbers, etc), it would save me days of troubleshooting and issue resolution. I know there are "Create PDFs on the Fly" alternatives out there now, but those that I have tried have left me almost as frustrated as Crystal itself. Any more info on this (screen prints, etc w/o violating NDA) greatly appreciated. Sincerely, &Roo [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]
RE: Blackstone - Toronto CFUG notes
Not much details. Part of the tour is to gauge what the cf community wants. Of course not everything can be done otherwise the product will never ship. He took notes on some of the cfc grievances. I may have misheard but 8 new xml related functions. No other details. Yes, No NDA on all this. We can discuss it freely. In the meeting he requested that there be no audio/video recording. To the benefit of other CFUG presentations, he will be releasing newer functionality as it becomes available in the latest build. By the way, he demoed all these live. Dharmesh -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 01, 2004 2:13 PM To: CF-Talk Subject: Re: Blackstone - Toronto CFUG notes At 01:18 PM 6/1/2004, you wrote: Thanks for taking the time to post this, Dharmesh! Question.what, specifically, did Ben mention about changes to CFCs, and what other XML functions are planned? Thanks again! >Just some notes from Ben's presentation last night at the Toronto CFUG meeting. Please find them in rough notes format. I can try and elaborate on request. By no means every little detail was gathered. I am sure others who attended can fill in the gaps. > > >- Lots more xml functions. - xmlValidate(), xmlparse() > >- changes to CFC -- Alex Sherwood PHS Collection Agency THE COLLECTORS P: 813-283-4579 F: 301.664.6834 W: www.phs-net.com [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]
Blackstone - Toronto CFUG notes
Just some notes from Ben's presentation last night at the Toronto CFUG meeting. Please find them in rough notes format. I can try and elaborate on request. By no means every little detail was gathered. I am sure others who attended can fill in the gaps. 8000 hours of development so far - New Development/features Timelines: Summer 2004 - An updater (or SP) to MX 6.1 - A compilation of mostly older releases - 60 hot fixes, faster db drivers. This is an optional update as per Ben. Fall 2004 - Beta Early 2005 (Nov 2004 to Mar 2005) - Final release Main topics covered and featured so far: - Targeting and helping new users to the CF world. CF is the only easy language to pick up. PHP is too hard. ASP was hard and has been replaced with a harder language from a new user point of view. Target easier development, install and use - Existing Developer - Features that they can really use. - Make your users happy (end user experience) - Improve deployment reliability and options. Date Entry enhancements: - skinnable forms based on Xforms. - using cfforms by applying xsl stylesheets - New cfinput types = password, hidden, file - flash - basic flex type functionality - flex type bindings in flash controls - to group form controls - eg horizontally - has a group by feature - Improved validation. - IsValid() - encapsulates all validation - flash versions of cftree and cfgrid Printing: - - create pdf and flash paper + others in future - rtf, excel, doc - page break, headers, page numbers etc - font management system using the administrator. Using pdf feature to embed fonts in pdf documents - great for most web pages out there currently...i.e., imperfect html - - deliver reports in pdf and flash with all the groupings, sortings, drill down - add on component to dreamweaver??? To write reports with all the CF functionality. This schema is saved as an xslt sheet that is called upon by the cfreport tag Deployment: - sourceless deployment - single java archive that packages the application as well as the CF engine into one WAR or EAR - Simplify multiple instances - administrative interface Enhancements to dreamweaver: - More wizards for new users as well as for quick applications. Eg Login Wizard - Changes to cflogin - NT security / ldap - CF Administrator functionality in dreamweaver - eg., setting datasources and debugging Others: - Embedded images in - to test code run times. Allows nested as well as various display options - Lots more xml functions. - xmlValidate(), xmlparse() - Improved charting - changes to CFC Exposing Admin API: - datasources - change debug settings - create own admin console More and more to be released as each cfug meeting progresses. Enjoy, Dharmesh [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]
CF based Sales Lead Mgmt App
Has anybody come across a sales lead / contact management application. CF based apps would be a preference, but I would like to see what else is available as well. I have tried googling as well as the list archives but am not getting much. I may not be using the right keywords to search. Thanks, Dharmesh Goel For on-line Reservations please go to http://www.discountcar.com OR call 310-CARS [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]
Unable to update the ColdFusion MX ODBC Server Error
Hello Everyone, I am migrating our site to a new server. This is a fresh install of ColdFusion MX 6.1 Standard Edition Windows 2003 Standard Edition IIS 6 I am receiving an error while setting up an access database as a datasource: Unable to update the ColdFusion MX ODBC Server. Timeout period expired without completion of E:\CFusionMX\db\slserver52\admin\swcla.exe No such issues while doing sql datasources. I have scrounged around on the various support sites and tried out a few solutions without success. 1. Had an issue whereby ODBC install portion of CF hung. Followed the guidelines from Macromedia and got it installed. 2. Port 19997 and 19998 are indeed being used by CF ODBC and are available. 3. The "ini" files in cfusionMX/db directory do not point to the merant drivers on C drive as per technote 18800. 4. deleted the partially created datasource in CF Admin and then added through windows odbc manager. Then added it as an ODBC socket from CF Admin. This resulted in the same error as above. 5. Tried step 4 with various combinations of stopping and restarting CF and odbc services with the same result. Any help or suggestions are appreciated. Thank you, Dharmesh Goel For on-line Reservations please go to http://www.discountcar.com OR call 310-CARS [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]
RE: Calendar App
How about this one: http://www.infusiontechnology.com/web/products/handler.cfm?event=ProductViewChanged&product=eday Dharmesh -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 10:43 AM To: CF-Talk Subject: Calendar App Was a link to the source for this app ever posted? ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 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
RE: Calendar App
How about this one: http://www.infusiontechnology.com/web/products/handler.cfm?event=ProductViewChanged&product=eday Dharmesh -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 10:43 AM To: CF-Talk Subject: Calendar App Was a link to the source for this app ever posted? ~| ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. http://www.cfhosting.com
RE: Tutorials
Came across this on the cf community list. http://www.easycfm.com Dharmesh -Original Message- From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] Sent: January 2, 2003 12:48 PM To: CF-Talk Subject: Tutorials I've got a couple of high school kids who dropped by the office the other day. They are taking a class on web development. After speaking with them for a couple of hours they are really jazzed about getting into CF, but all of the tutorials that they have seen up til now are of a more advanced nature. Does anyone know a good "ground-up" tutorial site they could tap into? Cutter ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting.
RE: Solved: CFDump tag error in CF 5.0
Nah...I don't think I want to put the words registry and guessing in the same sentence. :) I copied the values from my workstation registry as the CFDUMP tag worked on my machine. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: October 4, 2002 10:55 AM To: CF-Talk Subject:RE: Solved: CFDump tag error in CF 5.0 wow how'd you figure out the correct string to include in the key? did you guess based on other keys? -mk -Original Message- From: Dharmesh Goel [mailto:[EMAIL PROTECTED]] Sent: Friday, October 04, 2002 9:21 AM To: CF-Talk Subject: Solved: CFDump tag error in CF 5.0 Hi Mark, Actually we are on CF 5.0. After examining my workstation that has 5.0 installed, here is what I did to fix it: The cfdump.cfm tag was present in 'CFUSION\BIN\CFTags' folder on both machines. I noticed that a registry string value was missing on the server giving the error: HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\CFTagMappings\ CFDUMP I added 'CFDUMP' with a value of 'CFML,bin/CFTags/cfdump.cfm,1322' and recycled the CF services and voila it worked. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Get the mailserver that powers this list at http://www.coolfusion.com
Solved: CFDump tag error in CF 5.0
Hi Mark, Actually we are on CF 5.0. After examining my workstation that has 5.0 installed, here is what I did to fix it: The cfdump.cfm tag was present in 'CFUSION\BIN\CFTags' folder on both machines. I noticed that a registry string value was missing on the server giving the error: HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\CFTagMappings\ CFDUMP I added 'CFDUMP' with a value of 'CFML,bin/CFTags/cfdump.cfm,1322' and recycled the CF services and voila it worked. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: October 4, 2002 9:29 AM To: CF-Talk Subject:RE: CFDump tag error in CF 5.0 Check the version you are on. You are on a pre CF 5 version. -mk -Original Message- From: Dharmesh Goel [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 4:00 PM To: CF-Talk Subject: CFDump tag error in CF 5.0 Hello All, I am receiving an error while using the tag. I receive the following error message: ColdFusion cannot determine how to process the tag . The tag name may be misspelled. Our System is Windows 2000 Adv Server w/ CF 5.0 I searched through the Macromedia forums and found a thread that may have a solution, however these seem to have been migrated from the old forums and all code and attachments have been stripped out. http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3&threadid= 209147 <http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3&threadid =209147> Thanks for any pointers. Dharmesh Goel ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting.
CFDump tag error in CF 5.0
Hello All, I am receiving an error while using the tag. I receive the following error message: ColdFusion cannot determine how to process the tag . The tag name may be misspelled. Our System is Windows 2000 Adv Server w/ CF 5.0 I searched through the Macromedia forums and found a thread that may have a solution, however these seem to have been migrated from the old forums and all code and attachments have been stripped out. http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3&threadid= 209147 <http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3&threadid =209147> Thanks for any pointers. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting.
RE: SQL Server Export
Instead of selecting - 'Copy tables and views from source', choose 'copy objects and data'. You will have more control over what objects are to be copied. This way your default values as well as primary key designations will also get copied. Be careful though; with this method, it is quite possible to copy various objects that are not needed and also drop similarly named objects in your destination database. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: September 4, 2002 10:57 AM To: CF-Talk Subject:OT: SQL Server Export Hey guys, whenever i do an export of tables from one DB to another, it never copies the table attributes, such as default value, for example. I have many instances where the default value is needed. Can someone let me know how to do this? maybe i missed a step in the DTS thanx __ 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: Project Management Sites
A nice PM tool from scorpiosoft was demonstrated at the Toronto CFUG sometime back. http://www.scorpiosoft.com/ Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Brad Roberts [mailto:[EMAIL PROTECTED]] Sent: August 5, 2002 1:17 PM To: CF-Talk Subject:OT: Project Management Sites Can anyone recommend a good project management site that allows you to have multiple projects, client logins, etc? -Brad __ 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: Business days from Dates PLEASE HELP!!!!
There is a business days calculator on the cflib.org website as a UDF. --Dharmesh -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 24, 2002 1:53 AM To: CF-Talk Subject: Re: Business days from Dates PLEASE HELP Steven: Given that business days are generally monday thru friday, you can use the code below (where date, daysUntilDue & dueDate would be values from your database). businessDaysUntilDue: #businessDaysUntilDue# NOTE that this does not cover holidays (such as the US holidays: President's Day, Thanksgiving, etc.) To work with this, you could modify the logic as follows: Hope this helps! - Original Message - From: "LANCASTER, STEVEN M. (JSC-OL) (BAR)" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, March 23, 2002 1:56 PM Subject: Business days from Dates PLEASE HELP > I have a Database it has a date in one of the columns. I take that date and > another column in the table which is just an integer an use the DateAdd > function to come up with a second date. > > I have: > > date1, duedate(created from the DateAdd function), days_until_it_is_due > > Now I need to give these people X amount of business days based on > days_until_it_is_due to come up with a proper due date. Can anyone please > help me or tell me where to start.. > > Steven Lancaster > __ 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: Content protection?
Thank you all. This looks like something we can definitely use. Thanks again. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED]] Sent: January 8, 2002 4:13 PM To: CF-Talk Subject:RE: Content protection? If your intranet is ie only, then you can use a modal window which would seem to fit your requirements much better than converting to an image which can be easily printed. Check it out here http://www.webreference.com/js/column90/ DRE -Original Message- From: Dharmesh Goel [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 08, 2002 2:09 PM To: CF-Talk Subject: Content protection? Hello All, We have a need to display some text on our intranet that a user would not be able to print/copy. Would there be any scripts out there anyone can point me to? I guess it will be a script that pops up the html file into a window without any of the menu options with the right click disabled. I want to also stop the user from highlighting the text and copying it using Ctrl+v. Another method I have thought of is displaying the text as an image in a pop up screen with the menu and right click disabled. Has any one come across such a tag that converts text to image on the fly? I understand that there will always be workarounds and it will never be foolproof. Thanks, Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 __ Why Share? Dedicated Win 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=coldfusionc 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
Content protection?
Hello All, We have a need to display some text on our intranet that a user would not be able to print/copy. Would there be any scripts out there anyone can point me to? I guess it will be a script that pops up the html file into a window without any of the menu options with the right click disabled. I want to also stop the user from highlighting the text and copying it using Ctrl+v. Another method I have thought of is displaying the text as an image in a pop up screen with the menu and right click disabled. Has any one come across such a tag that converts text to image on the fly? I understand that there will always be workarounds and it will never be foolproof. Thanks, Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 __ 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: Telephone application
There is one example app bundled in with CF Server called 'New Line Employee Management' http://127.0.0.1/cfdocs/exampleapps/employee/index.cfm I migrated it to SQL and added features and more admin modules. I am sure there are more apps available on Allaire's developer exchange site. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Melissa Fraher [mailto:[EMAIL PROTECTED]] Sent: December 20, 2001 12:20 PM To: CF-Talk Subject:Telephone application Is anyone familiar with a corporate directory application that is written in Cold Fusion? We have found a very sophisticated one written in ASP but are looking for a Cold Fusion solution. Thanks. Melissa __ 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
OT: SQL statements trap/log for application where source code is not available
Hi All, We have an application in VB using SQL server 7.0 as the backend. We want to find out what SQL statements are run from within this application. Is there a logging/capturing utility that can capture statements on the database end? We want to see what happens on the db end when certain actions take place in the VB app. Knowing this we want to make some admin utilities in CF. Unfortunately we do not have access to the source code for the VB app. Thanks, Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 ~~ 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: CF_Forum Source
http://www.forumspot.org/ Open source free forum originally developed by Allaire. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: November 21, 2001 12:15 PM To: CF-Talk Subject:RE: CF_Forum Source www.cfcode.com - forum is great and you can buy the open source. Tony Gruen www.globalassault.com -Original Message- From: Larry Juncker [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 9:09 AM To: CF-Talk Subject: CF_Forum Source I thought that I had seen a thread quite a while ago about an Open Source CF Forum Can anyone tell me where I can get this code or was I seeing things? Thanks In Advance Larry Juncker Senior Cold Fusion Developer Heartland Communications Group, Inc. [EMAIL PROTECTED] ~~ 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: Allaire Alliance Partner Program -> Macromedia Alliance Progr am...
I think they offered a refund on the forums. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Peter Tilbrook [mailto:[EMAIL PROTECTED]] Sent: November 12, 2001 3:14 AM To: CF-Talk Subject:Re: Allaire Alliance Partner Program -> Macromedia Alliance Program... Especially if you also purchased a "subscription". The best I've experience was purchasing Forums at about AUD $760.00 only for Allaire to then make it "open source". Really impressed. Honest. I was REALLY impressed! At 16:02 11/11/01 -0500, you wrote: >New management, new rules. I was surprised to see they continued the >program at all after the merger, but in it's current form it doesn't make >much sense, at least for me personally since I have to buy the server anyway >for hosting my sites. Speaking an author, it was a great program because I >could work with the development software and the servers for my own personal >use for research and screenshots. > >tom > > >"Kevin Langevin" <[EMAIL PROTECTED]> wrote in message >news:[EMAIL PROTECTED]... > > Hmmm...I received Homesite and Studio, even Skillbuilding, with my >original > > entitlement package. I don't see why any of that would make a difference. > > We'll see...I'll post whatever I find out. > > > > > > Kevin Langevin > > Web Guy In Charge > > UsWebGuys > > 954-327-5780 > > > ~~ 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: CF_ThreeSelectsRelated
Yes, this should work. This can be placed in the 'Display' attribute and the unique identifier can be passed in the 'Value' attribute. As to your second question, don't think that functionality was built into it. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: October 1, 2001 2:22 PM To: CF-Talk Subject:RE: CF_ThreeSelectsRelated in your query dao field1 + ' ' + field2 as name and it will put them together. The only bad thing is that when passed it will be passed together. Joshua Tipton -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED]] Sent: Monday, October 01, 2001 1:26 PM To: CF-Talk Subject: RE: CF_ThreeSelectsRelated Hi, The attachment didn't come through the list. (I'm not sure cftalk allows them). Anyways will you send it to me directly. I just posted to the forum some issues I was having with this tag and am wondering if the updated one would help. My problems were: 1. Is there a way to display more then 1 field for the user? Under Display3 I'd like it to be "LastName, FirstName". I've tried a cfset outside and within the tag but I keep getting errors...Has anyone done this successfully? 2. On the 3rd select- if no option is chosen then I get an error (same if I try to do multiple picks even though I have MULTIPLE3="YES"). Is there a way for it to default to all? I want to see everything from select2 if nothing is picked in the 3rd select. Thanks for any help. j -Original Message- From: Dharmesh Goel [mailto:[EMAIL PROTECTED]] Sent: Monday, October 01, 2001 11:20 AM To: CF-Talk Subject: RE: CF_ThreeSelectsRelated Dave, This tag is used in a form. Variables can be extracted easily using the form scope in the posted page. By the way I found some issues with the tag. After searching around, someone had posted their version of corrections to this tag. I have attached the updated tag. The changes are documented in the comments. Use of the tag is as per documentation. Post some code for more detailed help. <> Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Dave Clay [mailto:[EMAIL PROTECTED]] Sent: September 27, 2001 11:38 AM To: CF-Talk Subject:CF_ThreeSelectsRelated If any has used this custom tag,please contact me. I cannot find how to extract the variables from the 3 drop down form boxes. Thank you Dave ~~ 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_ThreeSelectsRelated
Dave, This tag is used in a form. Variables can be extracted easily using the form scope in the posted page. By the way I found some issues with the tag. After searching around, someone had posted their version of corrections to this tag. I have attached the updated tag. The changes are documented in the comments. Use of the tag is as per documentation. Post some code for more detailed help. <> Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Dave Clay [mailto:[EMAIL PROTECTED]] Sent: September 27, 2001 11:38 AM To: CF-Talk Subject:CF_ThreeSelectsRelated If any has used this custom tag,please contact me. I cannot find how to extract the variables from the 3 drop down form boxes. Thank you Dave ~~ 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
Intranet Recommendations
Hi All, We are looking at implementing an Intranet solution here (in house). We have a small list of requirements that most intranets we evaluated do not meet. Would appreciate any suggestions. Key features that are needed: 1. Forums - Allow attachments, subscription (email subscriber that a new message has been posted) 2. Document sharing. 3. Groups based permissions. 4. Ability to add in-house applications that take advantage of the Intranet's group permissions. 5. Contact Manager. CF based intranets would be nice. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 ~~ 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: cfm-resources and default.htm
Delete (or rename) the default.htm file. Upload your index.cfm file and it should automatically get picked. If that does not work, place a meta tag in index.htm to forward you to index.cfm Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Mark Ireland [mailto:[EMAIL PROTECTED]] Sent: August 23, 2001 11:53 PM To: CF-Talk Subject:cfm-resources and default.htm Hi People, Are any other users of the fabulous cfm-resources bronze service finding that default.htm is being served instead of index.cfm on their site? Or is it just me? Pablo? Tito? Thanks Mark Ireland [EMAIL PROTECTED] www.indiemusicdvd.com www.indiemusicdvd.com/index.cfm see what I mean? ~~ 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: Developers Exchange very slow
Oh yeah. Timing out all the time. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Mike Brunt [mailto:[EMAIL PROTECTED]] Sent: August 20, 2001 5:16 PM To: CF-Talk Subject:Developers Exchange very slow It seems like the Allaire Developers Exchange is getting very difficult to use, responses to searches are really slow and a lot of the view example links are broken. Is anyone else having any issues? Kind Regards - Mike Brunt Tel: 562.790.8631 Instant Messaging Handles: - AIM (AOL): MediaEmbee MSN: [EMAIL PROTECTED] Yahoo: MediaEmbeeYH ~~ 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: Win2K File Associations Not Working
Hi John, Try this: IIS5.0 -->Right click on the machine name and choose properties. Under the section titled Master Properties choose WWW service and then lick on edit. Go to the Home directory panel. Click on Configuration. Under App Mappings, there should be an entry for .cfm extension. If not, then add a new mapping. In the executable path, give the path of iscf.dll (search for it). The extension is .cfm Verbs - All verbs. Also check mark the script engine box. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: John McKown [mailto:[EMAIL PROTECTED]] Sent: April 11, 2001 10:19 AM To: CF-Talk Subject:Win2K File Associations Not Working I just installed 4.5.1 SP2 on a Fresh install of Win 2K. Under the file associations in IIS 5, the .cfm file extensions are listed, but they are not being served properly as web site files. When I try to get to the administrator: http://204.253.96.198/cfide/administrator/login.cfm You can see for yourself what happens. John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED] phone: 302-736-5515 fax: 302-736-5945 icq: 1812513 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Web Based SQL Manager
Please send me a copy too! Thanks, Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 - Original Message - From: "Clint Tredway" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, January 12, 2001 10:26 AM Subject: Web Based SQL Manager > Would any of you be interested in a web based SQL Server7 Manager(its free)? > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: access query crashing server...
Hi Deanna, You may need to install Service Pack 2 (right now a RC2) for CF 4.51. I found this in the Release notes: Database The Microsoft Windows 2000 SP1 release caused ColdFusion to become unresponsive if a CFM page executed a CFQUERY against an MS Access data source target with SQL like "Select col1 + ' ' + col2 from table1. This has been fixed. [18607] Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Deanna L. Schneider [mailto:[EMAIL PROTECTED]] Sent: November 1, 2000 3:26 PM To: CF-Talk Subject:access query crashing server... Hi Folks, We have multiple developers running multiple applications on our server. We've been having problems, and yes, we've read all the allaire docs on performance tuning. One of our problems is that we have a number of large-ish access applications. (Ugh, I know.) I may have found a clue today. I found one query that seemed to be crashing the server consistently. The only thing different about this query is that it concantenated two columns into one variable - ie - Select (can_fname & ' ' & can_lname) AS canname When I took this out, and banged on the app again, I had no problems. Has anyone else ever seen this happen or is this merely a fluke? -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103 Extension Bldg 432 N. Lake Street Madison, WI 53706 (608) 265-7923 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED] Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
RE: Multiple row form data submission to database? - completed
Hi Adrian, Warrick and Ralph, Thanks for your help. I completed the application yesterday. Here is part of the code that could be of use to someone else. Page 1 - Form - Page 2 - Process the Form #location# #Rented# #Sitting# #Fleet# #Comments# INSERT INTO Table ( Field1,. ) VALUES (value1,...) Original question: I am trying to make a small data entry screen in ColdFusion. There are five columns in the table. Number of rows is dynamically generated with the first column automatically filled in. Others have to be filled in by a user. When the user submits the form, each row is inserted in a database as a new row. I have not done a form submission until now that updates multiple rows. I hope you can help me with the basic logic involved in this. My guess would be to insert the data from the form into a 2 dimensional Array and then loop over the array while inserting into the database. How do I insert it into an array and proceed from there? CH1 CH2 CH3 CH4 CH5 - Field1 Field2 Field3 Field4 Field5 Field1 Field2 Field3 Field4 Field5 Field1 Field2 Field3 Field4 Field5 Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
RE: CF Installation questions with SP1
You can directly install the SP1 and it will ask you for the serial number. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -Original Message- From: Ryan [mailto:[EMAIL PROTECTED]] Sent: October 18, 2000 11:01 AM To: CF-Talk Subject:CF Installation questions with SP1 Hello. We are going to setup some new CF servers in the next week or two. Do I have to use our 4.5.1 CD, and then install the downloaded SP1, or can I install a downloaded CF 4.5.1 that has SP1 in it, and then somehow enter my CD key so its not an eval version? RPS Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED] Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
Multiple row form data submission to database?
Hello Everyone, I am trying to make a small data entry screen in ColdFusion. There are five columns in the table. Number of rows is dynamically generated with the first column automatically filled in. Others have to be filled in by a user. When the user submits the form, each row is inserted in a database as a new row. I have not done a form submission until now that updates multiple rows. I hope you can help me with the basic logic involved in this. My guess would be to insert the data from the form into a 2 dimensional Array and then loop over the array while inserting into the database. How do I insert it into an array and proceed from there? CH1 CH2 CH3 CH4 CH5 - Field1 Field2 Field3 Field4 Field5 Field1 Field2 Field3 Field4 Field5 Field1 Field2 Field3 Field4 Field5 Field1 Field2 Field3 Field4 Field5 " " " " " " " " " " Field1 is auto populated with a query result. Thank you, Dharmesh Goel Programmer Analyst IT Dept. - Discount Car & Truck Rentals 416-744-0123 x290 -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.