CFMX 9 - Spell Check

2012-10-03 Thread ColdFusion Developer
Does anyone know a means to implement Spell Check functionality into the CFTEXTAREAs toolbar? I don't think CFMX 9 has a SpellCheck engine so I have to find an alternative. ~| Order the Adobe Coldfusion Anthology now!

Multi-Server install *help*

2012-07-03 Thread ColdFusion Developer
Okay, after raking my brain over the last few days, I cannot seem to get this to work. Goal: Run CFMX 7, CF 9 and CF 10 on same Development workstation (not connected to internet). Workstation: Running Windows 7 Exterprise with IIS 7 (*** Cannot use Apache Web Server) Constraints: 1. CFMX 7 is

Re: Multi-Server install *help*

2012-07-03 Thread ColdFusion Developer
I agree. I can have them all running independently at the same time using two stand-alones and one within IIS. Just was unsuccessful at connecting the two stand-alones (CFMX 7 and CF10) to use Windows Authentication. Had everything up and running like that but the two stand-alones would use

Re: Javascript error help!

2012-02-22 Thread ColdFusion Developer
Have you looked at this: http://www.coderanch.com/t/119883/HTML-CSS-JavaScript/move-focus-control-because-it On Wed, Feb 22, 2012 at 1:08 PM, Ken Hammond khamm...@saleminc.com wrote: I am running into this exact problem this guy had and cannot find a fix ANYWHERE.

AutoSave function?

2011-01-06 Thread ColdFusion Developer
Let me start by saying I have to do this using CFMX 7. (CFMX 8 and 9 is not an option right now). I have a form with MANY TEXTAREA elements. Once a user decides to update the text within any of the fields, I want to fire off an autosave type function for the single item. So far it is working

Excel?

2010-10-12 Thread ColdFusion Developer
I am looking to see what other developers are using to read excel files as datasources? Here is the scenarios: User downloads an Excel file Loads it on their tablet PC and walks around filling in questions (Yes/No Comment type questions) -- If yes, no comment required -- If no, comment

Re: Windows File Replication: Suggestions?

2010-07-28 Thread ColdFusion Developer
Just a thought in the way of CF, build the DirectoryListener and then fire off a script when it returns a change. I think Ray has a nice example of how to use one: http://www.coldfusionjedi.com/index.cfm/2007/10/29/DirectoryWatcher-and-ColdFusion-Image-Manipulation-Example On Wed, Jul 28, 2010

Re: annoying table issue...

2010-04-08 Thread ColdFusion Developer
Based on the code snippets you provided, it will add the 1 pixel TD. Do you have conditional logic around the last TD? Can you paste the complete code snippet so it can be reviewed? My initial thought is the conditional logic is not set up right. On Wed, Apr 7, 2010 at 5:13 PM, Eric Roberts

Shopping Cart for subscription based purchases

2010-03-16 Thread coldfusion . developer
I'm looking for a shopping cart that I can use to take order that are subscription based on reoccurring purhases. I've looked at Google's offering which is EXPERIMENTAL and Authorize.net's service. Can anyone recommend a service that easy to manage? Both Google and Authorize.net require

Broken images in CFADMIN

2010-02-13 Thread ColdFusion Developer
I know thatere was a webpage contributed to this issue but not able to find it this round. I know of the one from adobe but that is not the issue. I have Windows 7 Home Premium installed with CF 9 Dev edition running under IIS. When I load up CF Administror the images are broken (Missing). I

Re: Cfloop List Multiple Charecter Delimiters

2010-02-12 Thread ColdFusion Developer
Why not make a duplicate of the list, use RegExp to replace oat with a single delimiter such as a pipe | and then loop though the list. That way you only have to do the loop once. On Fri, Feb 12, 2010 at 9:12 AM, Paul Alkema paulalkemadesi...@gmail.comwrote: Hey guys thank you all for your

Re: SOT: directory protection

2010-02-12 Thread ColdFusion Developer
Why not route the downloads through a single CFM file (download.cfm?f=some identifier) and then use CFCONTENT to serve up the PDF file. On Fri, Feb 12, 2010 at 10:38 AM, Scott Mulholland smulholl...@aimg.comwrote: We have an app with a protected area that just using a basic session check

CF MX 6.1 - zipping files

2009-12-16 Thread coldfusion . developer
I'm stuck with CFMX6.1 for our Intranet and need to zip up a csv file after I created it from a query output. Anyone have any ideas how zip functions were done back in the day? 8-) Thanks D ~| Want to reach the ColdFusion

Two Column Select Box?

2009-12-16 Thread ColdFusion Developer
Anyone develop a selectbox that shows two columns of data but only one value? Example: option value=1XYZ | XYZ Corporation/option option value=1ABCD | AB Corporation of Delaware/option Goal is to still have the two columns aligned as well. TIA!

Re: Two Column Select Box?

2009-12-16 Thread ColdFusion Developer
, Variables.lenMax - len(FirstColValue) / Then output #Variables.myTempFirstCol#|#Variables.mySecondCol# Since the first column will now be a fixed length everything should line up. Steve -Original Message- From: ColdFusion Developer [mailto:cfdev2...@gmail.com] Sent: Wednesday

Re: Two Column Select Box?

2009-12-16 Thread ColdFusion Developer
Thanks! Its ugly looking to use Courier but it works... On Wed, Dec 16, 2009 at 5:08 PM, Charlie Griefer charlie.grie...@gmail.comwrote: You'd need to style the option to use a fixed-width font. On Wed, Dec 16, 2009 at 2:03 PM, ColdFusion Developer cfdev2...@gmail.comwrote: Tried

Available CF Developer / Manage Servers / SEO and more ...

2009-12-16 Thread Coldfusion Developer
I am currently looking for an ongoing relationship with a company that needs 20 hours minimum a week of work. I have been developing in CF since version 3.1 where I picked up CF working at Allaire. I have 2 years experience with managing cloud data centers (GoGrid and Amazon EC2). Highly

Writing query to a csv file

2009-12-09 Thread coldfusion . developer
I have a need to write the output from aquery to a csv file without headers. I've seen many examples where you can write the output from a query to a CSV file. However most of the examples I've seen require that the file be created first with headers and then then ourput from the query is

Switched from CF to Java - need tool recommendations

2009-06-25 Thread coldfusion . developer
All, I'm coming from a Dreamweaver and Enterprise Manager tool set and we've recently moved to Java and MySQL. I would appreciate some tool recommendations, especially for MySQL. Is there a tool out there that's similiar to Enterprise Manager? Thanks D

Re: File upload with cffile errors with Mac OSX

2009-06-22 Thread ColdFusion Developer
She's using Safari version 3.2.3 ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: File upload with cffile errors with Mac OSX

2009-06-22 Thread ColdFusion Developer
Code I'm using for the file upload: cffile action=upload filefield=fileUpload1 destination=#application.absolutePath#assets/images/userPhotos/ nameconflict=makeunique accept=image/* / I guess you could consider it newbyish since it's not in a CFC or custom tag, just a form processing page.

File upload with cffile errors with Mac OSX

2009-06-20 Thread ColdFusion Developer
I have a file upload application that uses cffile. It's used primarily to upload photos to the server. One client who is using a Mac with OSX consistently has issues uploading photos of any size (the tests she sent me are around 3MB). Cffile just craps out and none of the cffile variables are

Moving from CF to Java - redirecting old pages to new ones

2009-06-05 Thread coldfusion . developer
All, We have over 100 cfm pages that we'll need to redirect to a reduced number of new, few jsp pages. Is the best way to do this at the server, IIS level or through the webpage level. I'm thinking, detect all requests globally and if they have a .cfm extension, look up that page in a db

CF7 - Error Trapping CFCs

2009-06-01 Thread ColdFusion Developer
I have a web application utilizing CF7 and within the Application.cfc file, I have a function called onError to handle the error trapping. This works find for the simple errors but if an error occurs in a CFC, it is not trapped. I have the three error types specified as: cferror type=exception

Re: CF7 - Error Trapping CFCs

2009-06-01 Thread ColdFusion Developer
of the error data? On Mon, Jun 1, 2009 at 7:43 AM, Raymond Camden rcam...@gmail.com wrote: What does your onError look like? ** Di On Mon, Jun 1, 2009 at 6:09 AM, ColdFusion Developer cfdev2...@gmail.com wrote: I have a web application utilizing CF7 and within the Application.cfc

Storing SSN ... I know, I know

2009-05-11 Thread ColdFusion Developer
What's a best practice for securely storing a social security number? I've talked myself blue trying to talk my client out of doing this, but the bank he's working with for this project absolutely, positively cannot process his transactions without the SSNs of our users (most of the businesses

Re: Storing SSN ... I know, I know

2009-05-11 Thread ColdFusion Developer
Thanks, Alan. This kind of info is exactly what I was looking for. I've contacted my lawyer already; thank god I have a good one. As for an admin area that lets them print the page -- They need to download and transmit the SSNs to their bank somehow. At first they were talking about doing a

Re: list question

2009-05-01 Thread ColdFusion Developer
If I recall ListFind will return the numeric location of the list (if found). Using that numeric you can do a ListGetAt to get the next and previous. cfset listLoc = ListFind(myList,5) cfset nextItem = listGetAt(myList,listLoc+1) cfset prevItem = listGetAt(myList,listLoc-1) Something like

Re: CFIDE/componentutils Not Found?

2009-04-28 Thread ColdFusion Developer
Yes. it points to: C:\inetpub\wwwroot\cfide Has to be some permissions issue some where On Mon, Apr 27, 2009 at 1:24 PM, Dave Watts dwa...@figleaf.com wrote: IIS Setup for CFAdmin: Directory: d:\web\ IP: 127.0.0.1 Permissions: Intergrated Windows Authentication (anonymous access

CFIDE/componentutils Not Found?

2009-04-27 Thread ColdFusion Developer
IIS Setup for CFAdmin: Directory: d:\web\ IP: 127.0.0.1 Permissions: Intergrated Windows Authentication (anonymous access disabled) IIS Setup for CS (cf application): Directory: d:\web\cs\ IP: 10.11.12.13 (changed for security purposes) Permissions: Intergrated Windows Authentication (anonymous

CF8 Server Monitor Question

2009-04-16 Thread Experienced Coldfusion Developer
Hi folks, I have a situation at work where the following is occurring. We are in a Linux based (websphere) environment running CF 8. When we try to launch the Server Monitor, the initial screen says ‘ColdFusion is not currently running’, but it is. The context is reported as ‘iws’,

Re: expert sql challenge

2009-04-14 Thread ColdFusion Developer
Have you looked into StoredProcs? Push the load off the web server onto the SQL Server (or Oracle whichever) On Tue, Apr 14, 2009 at 3:38 PM, Richard White rich...@j7is.co.uk wrote: Hi we have a relational database and one task is taking far too long but we cannot see any way to improve

Java Training: moving from CF to Java

2009-03-11 Thread coldfusion . developer
1) We're moving our platform form CF to Java and XML and XSL transformations and I need to get some training in the Southern New Hampshire, North Shore or Massachusetts. Can anyone make any recommendations? 2) Also I'm going to Barnes and Noble to find a good book. Does anyone have and

CF Commerce Soltuions needed -buy and sell

2009-02-24 Thread coldfusion . developer
Hi All, A lot like EBay, I have a client that wants to create a niche site where people can list specific used items to be sold. I'm looking for advice on a transaction processing service that will allow my client to process, hold and release funds and transactions. They know they could

Re: Looking for some side work

2009-01-01 Thread Coldfusion Developer
Marc --- I had left this account idle for a month or so, are you still looking for help? On Sat, Oct 25, 2008 at 8:39 AM, Marc Raber m...@prosplay.com wrote: Brian - i am looking for some help. Please send me your resume. thanks. Good Afternoon, Sending out a quick note to anyone on

Re: 127.0.0.1 works, localhost doesn't -- 413 error

2008-12-10 Thread ColdFusion Developer
If I might make a wild guess: you have a header that is too large. Probably deleting some cookies in your browser will fix it. AAAHHH! The gremlins got me ... this fixed it. Thanks Jochem! ~| Adobe® ColdFusion® 8 software 8

127.0.0.1 works, localhost doesn't -- 413 error

2008-12-09 Thread ColdFusion Developer
I was doing some development work on my local machine today, setting up a new install of BlogCFC, and ran across a strange issue. I hit refresh to test some changes and all the sudden got a JRun Servlet Error: 413 Header Length too large I was accessing the local site using

caller.variablename question

2008-11-17 Thread coldfusion . developer
All, I have an include that I want to place a variable in from a main/caller page. The variable will be passed from the main page into the included *.cfm file. Would I do this by setting the variable from the main page and then in the include using the caller.variablename? Thanks D

.Net Training C# for .Net training in New Hampshire or N.Shore of Mass

2008-11-14 Thread coldfusion . developer
Would anyone be able to recommend good company for classroom training for .Net 3.5 and C# for .Net? Thanks. Dan ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

CF to .Net - recommended training?

2008-11-10 Thread coldfusion . developer
My company is switching to .Net. Any specific recomendations about what I should be looking for to get proper training? C Sharp? Visual Basic? Any directions would be appreciated. Thanks D ~| Adobe® ColdFusion® 8 software

Lines of credit or credit account online

2008-10-28 Thread ColdFusion Developer
Hi all, I had an interesting request from a client and I'm not finding much info out there on what the client needs. Without going into too much detail (love those NDAs!), the client wants to offer instant-approval lines of credit to Web site visitors. In essence, the thinking is: visitor

Re: Lines of credit or credit account online

2008-10-28 Thread ColdFusion Developer
Are you looking for an actual credit-check service with an API? or are you looking for the bank that would actually back the credit line? That's a very good question. I'm not sure my client really knows which one is needed and I have absolutely no knowledge of how this process works ... so

Re: Lines of credit or credit account online

2008-10-28 Thread ColdFusion Developer
Wow! All wonderful information, guys, and many different points that I'm sure my client has not considered. I really, really appreciate this. I guess I'm going to have to go back to this client and hash out the exact requirements before I can give the price estimate for this portion. But you

Re: Lines of credit or credit account online

2008-10-28 Thread ColdFusion Developer
The first way I read that line, is this is a company that already deals If they do not do this, then much work and risk is ahead for you and them. ;P Thanks, Ian. Unfortunately, it's the latter. ~| Adobe® ColdFusion® 8

Re: Recommend a Workflow Engine in CF

2008-10-08 Thread Coldfusion Developer
Chris -- Did you ever do anything with your workflow engine? Have you found anything in terms of a CF workflow engine? If not I am currently working on an open source workflow engine, I have the core complete and would like to help you out. -chris I'm looking for a state machine

How do I extract session.id value

2008-09-19 Thread coldfusion . developer
All, The explanation below makes sense, but I'm tryiing to understand how do I grab and extract the jsessionid variable to I can prepend it to my session.cfid session.cftoken in my URL session management. When I create a blank page within a directory that contains session management and try

Ray Camden's Galleon - Forums

2008-09-18 Thread coldfusion . developer
Has anyone had any expereince with Galleon on a Clustered configuration? My problem is successful logins aren't sticking. I read in the documentation that all you need to do is prepend the jsessionid variable to the session variable. I can find a session variable being set. Could use some

Need a Google Analytic like reporting tools for CF Application use history

2008-08-14 Thread coldfusion . developer
I want to analize the historical activies of our applications that Google Analytics can't track. We recently started using GA some there's isn't a lot of history. I’m trying to get a sense of utilization of the various sections of our site, especially those supported by a specialized

Single vs Cluster - Session Variables - session.cfid HELP

2008-07-30 Thread coldfusion . developer
Why is it that I can get a I thought a session.cfid out of a single server config, but not a cluster? From the code below, I get an error on a cluster configuration. Element CFID is undefined in SESSION. The error occurred in D:\Inetpub\wwwroot\website\Application.cfm: line 9 7 : 8 : !---

Sticky Sessions - managing session variables- Any Difference?

2008-07-28 Thread coldfusion . developer
Is there a difference between regular application, session variable managment vs how it should be done using sticky sessions? Does anyone know of any good articles? Thanks D ~| Adobe® ColdFusion® 8 software 8 is the most

Galleon Forum - Ray Camden's Forum project

2008-07-08 Thread coldfusion . developer
I'm getting Data source Galleon not found. Has anyone worked with Ray Camden's Forum software. I can't find where the datasource is set and I've searched through all the related files.No matter what I make adjustments to, the error persists. Thanks D

CF vs .Net or PHP - need arguement help

2008-07-02 Thread coldfusion . developer
Our company, a large nationwide organization is creating an RFP to redo our entire site from scratch for agnecies to review. The marketing folks are asking the agencies to recommend a application platform as a part of the RFP. I know most agencies use ..net or php, but that will be for

Google Analytics - no templates, lots of pages

2008-06-19 Thread coldfusion . developer
All, I've got this site with several hundred pages, multiple directories. Was wondering what the best way to implement Google Analytics. I was going to use onrequestend, but that will insert the code after the /body tag, utilize the application.cfm/cfc file and it loads before the body tag. I do

CFLOOP - why are there duplicates?

2008-06-19 Thread coldfusion . developer
I'm trying to us the output from a query to loop through and insert statement. My original query has 100k for a recordcount. When I run it through the insert statement below, I end up with 200k inserts. Just need another set of eyes. Thanks. CFLOOP query=getmailids CFQUERY

Protecting images

2008-06-11 Thread ColdFusion Developer
Hi all, I have a client interested in protecting images (specifically Powerpoint slides turned into JPGs) from copying, printing, and screen-grabbing. I told her that basically there is no foolproof way to do this, but I also promised I'd research solutions. Her site is on a shared host, so

Re: Protecting images

2008-06-11 Thread ColdFusion Developer
I know ... and I've explained that to her, but I was asked to explore every option ... I personally think if they HAVE to display these images, watermarking then converting to flash is their best option (as well as copyrighting the images so if the images are stolen the client has a bit of

Flex/ActionScript 3 Instructor-led Training

2008-06-09 Thread coldfusion . developer
All, Can anyone recommend training in the Southern New Hampshire, Northeastern Mass area? What are some of the popular discussion forums for Flex and ActionScript 3? Like HOF? Any other good online video training resources I'm not aware of other than TotalTraining.com, tv.adbe.com or

Consumer Video Upload on a budget

2008-05-29 Thread coldfusion . developer
All, Need some advice, opinions. We are presently using Brightcove for our video interface and content delivery. However, any consumer video that is uploaded through their interface is considered Brightcove property. For legal reasons, we need to create an upload mechanism that will allow us

CF Store Locator - almost there - order results

2008-05-18 Thread coldfusion . developer
This the last thing I have to figure out. I've got this CF store finder application that does what it's suppose to do. It takes the zipcode and the radius and returned an order list of zipcodes sorted by the distance from the original zip code entered. The only problem is when I plug this list

Store Locator - Mass Import

2008-05-12 Thread coldfusion . developer
I have a client that wants me to build a *.csv file upload mechanism that will import store location information. They haven't been very good about providing well organixed data and I'm concerned that no matter how well a scrit I write to parse through the data to ensure data integrity, I would

CF Opinions: best AIR developement methods

2008-05-08 Thread coldfusion . developer
All, On the Adobe AIR product page, they ask what type of developer are you? http://www.adobe.com/products/air/ Other than knowing the technologies with each developer type, how does someone that is just starting to learn AIR know the benefits and drawbacks of each approach? Maybe I'm

Store Locator - Exporting Importing data - best methods ???

2008-04-23 Thread coldfusion . developer
Hi All, I've built a store location and an admin tool to maintain the store data. But now the folks in Marketing want to export the data and then import it back into the database. I planned on just exporting the data to a xls file and then import the same xls after it's been updated at a

Parse phone number characters - almost there ...

2008-04-22 Thread coldfusion . developer
I've got different phone number formats due to an csv import. I'm trying to remove phone number formating from the database and just have the numbers. As I parse through my phone numbers from a query, this code is throwing errors. I'm trying to get rid of ')', '(', '.' and '-'

Need to pass multiple value from a CFC - stuck

2008-04-20 Thread coldfusion . developer
All, To see the cfdump, first go to ... http://209.41.164.253/store_finder/application/zip.cfm or see cfdump below I need to pass the zipcodes info from a cfc to another query that looks up stores that contain these zip codes. I need multiple value returned from the CFC that creates this

ZipMonger - Store locator - ARGH! - zip codes retuned - problem

2008-04-18 Thread coldfusion . developer
All, Any familiar with the ZipMonger CFC? I've got this great store finder all setup with GoogleMaps integration and I'm running into a slight problem. In certain instances, surrounding town zip code are not showing up. Tracking down one mising zip code down, showed that it's in my zip code

Strange Behavior - stumped

2008-04-16 Thread coldfusion . developer
On some browser this page shows up fine, on other the page is garbled. Can you see this page ok? http://209.41.164.253/store_finder/storefinder.cfm ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release

CFWindow with forms

2008-03-25 Thread coldfusion . developer
I'm looking for some sample use of cfwindow using a form and closing the cfwindow once the form passes validation and backend processing. I've search and found a few great articles by Ray Camden, but I wanted to see the whole thing put together to grasp the entire concept.

Lookup zipcode by on ip address

2008-03-14 Thread coldfusion . developer
Hi All, Does anyone know of any custom tags or articles that discuss how to do this? Thanks D ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Get a digit out of large number

2008-03-10 Thread coldfusion . developer
Hi All, I'm trying to figure out how to grab a specific digit in a number. For example if I have 34859, I want to grab the third digit from the right or 8 for evaluation. How do I do this? I've got so far ... CFSET digits = len(getdon.recordcount) to get the number The I could use right

Add form fields dynamically

2008-03-04 Thread coldfusion . developer
All, I'm starting to build a basic form where the user can indicate the number of children they have. What I want to do is based on the number of kids value, dynamically generate birthday form fields. Any posts, articles or ideas would be great to get me started. Thanks. form id=form1

cfscript help using cfloop to name function with cf var - argh!

2008-01-28 Thread coldfusion . developer
I've got most of this working. I'm just having a hard time getting the cf variables to parse out when naming the javscript function. Everything works fine except when I try and wrap a cf variable around the function name. Any ideas? Thanks. Also can anyone recommend a good way to troubleshoot

CF App throwing Access access error

2008-01-25 Thread coldfusion . developer
Everyone is logged out, and there's no lock on the access file. This error still persits. Any ideas? I've seen this a long time ago clear when I rebotted the machine the Access file was located on. Any ideas? Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][ODBC

Re: CF8 related cfselects -- empty select

2008-01-24 Thread ColdFusion Developer
Hmmm ... okay, using Firebug I see an error being returned: If the component name is specified as a return type, its possible that a definition file for the component cannot be found or is not accessible. The value returned from the init function is not of type categoryService. I have this

Exception Handling

2008-01-23 Thread coldfusion . developer
What the best approach to controling the error messages that appear when say for example, someone removes an integer from a url scope? For example, the url should pass idss=23 or whatever. If someone were to remove the 23 and get the standard CF error message. How can I prevent that message

Owned by Rootdamages by FasT

2008-01-23 Thread coldfusion . developer
One of the site's I'm working on had a SQL break-in on an old application. The url scope passed an integer and the where statement in the cfquery wasn't protected by cfqueryparam. I've added cferror to this application as well so a hacker can't see the standard cf error message. Is there

CF8 related cfselects -- empty select

2008-01-23 Thread ColdFusion Developer
Hi all ... I'm trying to follow Ben's related selects tutorial using cfselect and ajax. My cfcs are set up and work correctly (i.e., they return data when called manually). However, when I load up the form, both cfselects appear empty. Can someone take a look at what I have and tell me what

Advice Survey or Polling Application

2008-01-07 Thread coldfusion . developer
All, Can anyone recommend a poll and survey application? For the survey application I tried to use Ray Camden's Soundings on our cluster and it requires we use sticky sessions. His application is great to say the least, however when we use sticky sessions another of our large applications

Session Management - sticky sessions

2007-12-19 Thread coldfusion . developer
All, Do I have this correct? If your site is running on a cluster, in order to manage session variables properly, you want to use the Java option within the CFadmin to manage session variables cause the sessions will be foreced to use the server that initiated the session management? Correct?

CFOUTPUT Query to CFXML - error - Illegal character or entity reference syntax

2007-12-13 Thread coldfusion . developer
I keep getting this error. It's trang because I had it work a few days ago. Any ideas? Thanks. -D Error Occurred While Processing Request Illegal character or entity reference syntax. Illegal character or entity reference syntax. The error occurred in

CFXML - strange, dropping the beggining tag upon processing

2007-12-11 Thread coldfusion . developer
When I output a query's results to an XML file, my code which is correct output the XML without the beginning element tag. This seems to happen when there's no data or NULL data for this element. Is it as simnple as inclusing and nbsp; placeholder? So for example ... My code ... address

Coldfusion's founder - Brightcove.com

2007-11-26 Thread coldfusion . developer
All, I love the service that Brightcove.com has put together. However, we're not sure it's within our budget, does anyone know of a similar hosting/solution service with the viral distribution component? Thanks ~| Create

Web hosting specializing in CF

2007-11-16 Thread coldfusion . developer
All, I'm looking for a hosting company that specializes in CF hosting. I've had great experiences with CFDyanmics.com, I was wondering if anyone had a hosting company in mind. I need the following ... * Support that's included in the monthly fees. Doesn't have to be 24/7 just on call * 250GB

CF date values in Access

2007-11-15 Thread coldfusion . developer
Shouldn't this be working? I'm more familiar with SQL Server 2000. CFQUERY name=promomag datasource=con_relations_magxml SELECT * FROM tblPromotionParticipants where promotionalID = 85 AND DateReceived = #dateformat(FORM.start_date, MM/DD/)# AND DateReceived =

Strange XML error with CFXML - XML declaration may only begin entities ?

2007-11-14 Thread coldfusion . developer
I'm getting the following error ... My code is below. Does anyone have any ideas? I've searched on the error and haven' tbeen able to resolve it. Code is below. XML declaration may only begin entities. XML declaration may only begin entities. The error occurred in

CF Dev Edition store local file on Network drive - help

2007-11-09 Thread coldfusion . developer
All, I'm trying to map my Webroot for local dev to a folder on a network drive. When I log into the CFAdmin and try to map the / it doesn't show the network drive. Then I added my account to the CF service so that it would be able to see the drives my accounts allows and then restarted the

Market Dept - Project Management help

2007-11-02 Thread coldfusion . developer
All, Do you work in a Marketing department? Do you have more than a few people giving you requests for projects? I'm not talking about text and images or content managment, but custom applications. Ever work with someone that gives you bits and peices of a project and then make multiple

Insode of CFDocument type = pdf

2007-11-01 Thread coldfusion . developer
Has anyone ever got a Flash movie/object to successfully show up when creating a pdf from using cfdocument? Use any Web page with a Flash move/object on it. Is this just not possible? cfdocument format=pdf src=http://www.youtube.com; /cfdocument Thanks

Anyone ever see this error? CFDocument

2007-10-31 Thread coldfusion . developer
My code works on my dev server, but I get this error on the server. cfdocument format = PDF src=http://www.yobabyyogurt.com/CoverBaby/souvenir.cfm; filename=test.pdf overwrite=yes /cfdocument The web site you are accessing has experienced an unexpected error. Please contact the website

Dynamic Created xml and txt going into Flahs file

2007-10-30 Thread coldfusion . developer
Help, Why is my dyanamic text and png that are being imported into a Flash movie not showing up when printing. The dynamic text and png show up on the Web page, but not when I print. What the fudge? D ~| Download the

CFDocument to make dynamic pdf file - CFADMIN

2007-10-30 Thread coldfusion . developer
What needs to be configured in the MX7 CFAdmin in order to get the cfdocument working? It's not working at my Web hosting company, but when I try it locally it works. Thanks D ~| Download the latest ColdFusion 8 utilities

CFADmin: datasource - connect to Access DB on network drive

2007-10-19 Thread coldfusion . developer
I need to connect to an Access database on a netowkr drive and the drives that show up in the Java file tree are only local drives. Is there another way to connect to an Access DB on a network drive? Thanks Dan ~| Create

IN CF 7 and beying - using smallint instead of bit - true?

2007-10-18 Thread coldfusion . developer
Another CF developer mentioned to me the other day that it's better to store 1,0 values in a smallint compared to using bit value for on of off functionality within an app in CF7 or greater. Thoughts? Thanks D ~| Check out

Moving from CF to .Net - need training advice/direction

2007-10-18 Thread coldfusion . developer
It lookos like we may be making the move away from CF to .Net so the boss has tasked me to get going on .Net training. Can anyone recommend good on site training places near Boston, Southern New Hampshire? Also, what's the best book out there for ASP.Net? Am I going to have to learn C # as

CF WEB HOSTING: Best solution ? For 50,000-100,00 outgoing emails a month?

2007-10-17 Thread coldfusion . developer
All, Does anyone know of a hosting solution that has veyr cheap or unlimited outgoing email? Is there a way to setup your own SMTP server for free? Thanks D ~| ColdFusion 8 - Build next generation apps today, with easy PDF

CPU spiking, possible bad loop or conditional statement

2007-10-15 Thread coldfusion . developer
All, Can anyone recommend a server monitoring tools for a CF MX install that all of a sudden is creating the CPU to spike and the CF server is maxing out? Thanks for any direction. D ~| ColdFusion 8 - Build next generation

Need an active Javascript discussion group

2007-10-08 Thread coldfusion . developer
Does anyone know a good site with activity like here on houseoffusion.com? Thanks D ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now

Passing a variable from a Span ID to CF

2007-10-05 Thread coldfusion . developer
All, I don't know if you can actually do this, but I've been reading that you can. You can pass a variable from say a JavaScript into a span id= and have it parse out on a page? Is this true? If it is, I didn't know that. My realy question comes where I want to take that variable and bring

I'm completely Stumped - All I want to do is ...

2007-10-05 Thread coldfusion . developer
All, Sorry for the repeat post. I've searched all day for a solution and can't find anything. I want to capture the coordinates from this sample and pass them for use in a cf scope. I'm stumped! http://dunnbypaul.net/js_mouse/ If I could only get the x and y coordinates in a form in the

Voting System: Not allowing multiple votes

2007-10-04 Thread coldfusion . developer
All, We all know the scenario, we want to limit the amount of time a person can vote or at least vote within a 24 hour timeline. That's all fine and dandy, but how can we prevent a user from clearing their cookies or closing and restarting the browser to simply come back and vote again with

Trying to understand the CF8 - .Net integration

2007-10-02 Thread coldfusion . developer
All, I'm just starting to learn .Net. I'm trying to grasp the concept of what .Net assemblies are. Would it be fair to say that they are like CFCs? I'm trying to get a comparible CF analogy. I'm assuming you can't access to lines of logic within an .Net Web page, but that these .Net

  1   2   3   4   5   >