PayPal integration

2003-08-27 Thread Ryan Stille
Slightly off topic: I am looking at adding PayPal as a payment option to a ColdFusion shopping cart we wrote. As far as I can tell, you can't integrate it very tightly. I see two ways: 1) Buy Now Button Method: allows a user to jump from a product detail page to the PayPal checkout form.

PayPal integration

2003-08-27 Thread Ryan Stille
Slightly off topic: I am looking at adding PayPal as a payment option to a ColdFusion shopping cart we wrote. As far as I can tell, you can't integrate it very tightly. I see two ways: 1) Buy Now Button Method: allows a user to jump from a product detail page to the PayPal checkout form.

Re: PayPal integration

2003-08-27 Thread Ryan Stille
Matt Robertson wrote: Look into paypal IPN. It still isn't perfect, but its more integrated than the options you describe. Gads... Where was that Paypal/CF IPN tutorial again? And admin [EMAIL PROTECTED] wrote: agreed the talk back from IPN can do just about everything a regular CC system

CFMX scope searching ?

2003-09-15 Thread Ryan Stille
I remember hearing somewhere that CFMX searched scopes differently, like maybe it wouldn't search scopes at all anymore, you always had to use Form.name instead of just using 'name' and letting it find it in the Form scope (I know it's best pratice to scope anyway). Is there any truth to this

CF Studio 5 question

2003-10-08 Thread Ryan Stille
Does CF Studio 5 have a way to match brackets, like in many other text editors? For example is textpad I can highlight any type of bracket ()[]{}, then press Ctrl+M and it highlights the matching bracket.Very useful. Thanks, -Ryan [Todays Threads] [This Message] [Subscription] [Fast

Allow only wanted characters in a string?

2004-01-14 Thread Ryan Stille
What would be an elegant way to strip all but a certain set of characters from a string?I know I want to leave alphanumerics, dashes, underscores and spaces, but anything else I want removed.Would it be best to loop though each character and do a Find to see if that character is in my list of

Re: Access a web site through the coldfusion server?

2004-07-16 Thread Ryan Stille
Not exactly sure what you are asking, but Apache can proxy the request. If foo.com is hosted on apache server A, you can set it up so that when you browse to foo.com, server a fetches content from server B and serves it to the user as if it were coming from A. -Ryan [Todays Threads] [This

Sometimes form or url variables don't exist?

2005-06-16 Thread Ryan Stille
I sometimes get errors from my application where it tries to use a value that should have been on the previous form page, but for some reason doesn't exist. Has anyone else run into this? I am using an older version of Fusebox, so Form.* and URL.* variables all get converted to the Attributes

RE: Sometimes form or url variables don't exist?

2005-06-16 Thread Ryan Stille
I know it's not a search engine because a user forwarded me a screen shot of the error. After looking closer at the log file, I see that he made a GET request to a page that should have been POSTed to. And the variables were not present in the query string. What would cause the browser to do a

new to CFMX, can't default attributes scope variables

2004-09-14 Thread Ryan Stille
I'm new to CFMX, and I'm running into some problems. I used to be able to default a variable like Attributes.myvar to something with this tag: cfparam name=Attributes.myvar default=something But that doesn't work now.The reason I am setting a variable in the attributes scope is because we build

RE: new to CFMX, can't default attributes scope variables

2004-09-14 Thread Ryan Stille
My bad, I had a typo.I had double checked it, too...Sorry! -Ryan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Authorize.net cfc/tag for recurring billing?

2007-07-06 Thread Ryan Stille
Anyone know of a cfc or custom tag to work with Authorize.net's recurring billing API? I know tags/cfcs have been around for their regular payment gateway, but in early 2007 they (finally!) released a recurring billing API. It uses xml, it doesn't look *too* time consuming, but I thought if

Re: Easy-to-develop recurring billing?

2007-08-16 Thread Ryan Stille
This week I uploaded my cfc for dealing with Authorize.Net's recurring billing API. http://AuthorizeNetRecurring.riaforge.org/ -Ryan Josh Nathanson wrote: Authorize.net. There are several tags for it. Are there tags for recurring billing, or just the regular one-time

Re: Easy-to-develop recurring billing?

2007-08-16 Thread Ryan Stille
Josh Nathanson wrote: This week I uploaded my cfc for dealing with Authorize.Net's recurring billing API. http://AuthorizeNetRecurring.riaforge.org/ Crap, I just finished my CFC last week but hadn't posted it yet... I had an issue where the Authnet service returns three junk

Re: Java Script Value to CF Value

2007-09-04 Thread Ryan Stille
You'll need two pages or steps to get this value - one for the form itself, then when you submit that form you can have the value. form action=mypage.cfm input type=hidden name=wide /form script language=JavaScript document.forms[0].wide.value = document.images[0].height;

Re: Cfexecute and restart of apache...

2007-09-26 Thread Ryan Stille
When I needed to do this, I wrote out a restart request file in a certain directory. Then had a job run from crontab every 1 or 5 minutes or whatever, that if it found a restart request file, it would (as root) restart the webserver, and remove the restart request file. I think you may have

Re: CFC to check spam score BEFORE sent...

2007-10-30 Thread Ryan Stille
C. Hatton Humphrey wrote: I would like to install something on our server that will check an emails spam score before we send it out to catch any problems. If you know of one I'd love to hear about it as well. One idea that came to mind - if there were a way to use CFExecute to fire

Re: Posted input array problem

2007-11-12 Thread Ryan Stille
I would store your modified sort order in the form. Instead of just moving them up and down the page, also change the value of the radio button or the value of hidden fields(s). Then when the form is submitted, you can loop through that data and examine what the sort order of each item

Re: sms

2007-11-12 Thread Ryan Stille
Chad Gray wrote: Hello, I would like to make an application that would allow one of our sales reps to use their cell phone to create a new login/password for a CF application. How does the cell phone send the data to the CF Event Gateway for SMS? This must be some kind of service from the

Re: sms

2007-11-14 Thread Ryan Stille
If going the email-to-phone route, you can just send to [EMAIL PROTECTED] and it will get there. No need to figure out what carrier the user is on. -Ryan Ryan Heldt wrote: Don't know if this was mentioned before. Might be helpful: http://www.bennadel.com/index.cfm?dax=blog:692.view Ryan

string concatenation / appending in CF8

2007-11-20 Thread Ryan Stille
Is there a shorter way to append strings in CF8 now? With all the javascript style operators I was hoping there would be something. += or = or .= or whatever. Or do we still need to do: Arguments.myOutputString = Arguments.myOutputString more text all the time? I would love a shorter

Re: string concatenation / appending in CF8

2007-11-20 Thread Ryan Stille
Fraser http://learncf.com -Original Message- From: Ryan Stille [mailto:[EMAIL PROTECTED] Sent: Wednesday, 21 November 2007 11:50 AM To: CF-Talk Subject: string concatenation / appending in CF8 Is there a shorter way to append strings in CF8 now? With all the javascript style

Re: OCR Solutions

2007-12-05 Thread Ryan Stille
Has anyone else been having problems with the list missing emails, or coming through 8+ hours after it was originally posted? I don't have the original message for this thread. The web archive shows it was posted around lunch today. Anyway, I am going to need to implement something like this

Java help - convert -D command line option to CF?

2007-12-07 Thread Ryan Stille
I am converting a little java code into CF8. The sample Java program I am working from is meant to be run with this command line option: -Dcom.java4less.vision.maxarea=90 Without having that set, my results in ColdFusion are not working very well. Anyone know how I can do something

Re: Java help - convert -D command line option to CF?

2007-12-08 Thread Ryan Stille
(com.java4less.vision.maxarea, 9) Hope that helps. Thanks, Hareni -Original Message- From: Ryan Stille [mailto:[EMAIL PROTECTED] Sent: 08 December 2007 04:19 To: CF-Talk Subject: Java help - convert -D command line option to CF? I am converting a little java code into CF8. The sample Java program I

Re: Limit to single user logon with same userid

2007-12-10 Thread Ryan Stille
You can go through all an applications current sessions using the SessionTracker class, but I've found this to be very slow. Instead I switched to keeping a list of logged in users in the application scope. Users get pushed into here when they login, and removed from here when they click

Re: Resizing images Godaddy Linux Coldfusion hosting?

2007-12-17 Thread Ryan Stille
In CF8, all the image functions work the same regardless of the host operating system. If you are not on 8 you could use command line tools if they are installed, but if CreateObject is disabled, I doubt they'll let you use cfexecute. -Ryan Casey Dougall wrote: Hello, Without having this

Sending newsletters - HTML and text emails

2006-10-10 Thread Ryan Stille
I'm looking for some input on sending HTML vs text type emails. Example: a site owner wants a tool to send emails to his website subscribers. Site owner wants to send rich text style email with bold, italics, colors, possibly an image. Do you typically use cfmailpart to send an HTML and text

Re: mySql connector J

2006-10-13 Thread Ryan Stille
I installed 5.0.3 on a client running MX this week and have had no problems yet. -Ryan Doug Brown wrote: Will the new 5.0 connector work with MX? - Original Message - From: Steven Erat [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, October 12, 2006 6:35

Re: cfadmin 404 with apache

2006-10-17 Thread Ryan Stille
Where did the cfide files get installed? You need to move them to the website you are browsing to, or add an apache alias to map to that directory. For example if your CFIDE files are installed in C:\websites\CFIDE, you need to add an alias in your httpd.conf file for the website you are

WiFi available at MAX?

2006-10-18 Thread Ryan Stille
Anyone know if WiFi will be available at the Adobe MAX conference? -Ryan ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door

Errors when adding a verity collection

2006-02-14 Thread Ryan Stille
I've just got CFMX7.1 installed on a fresh RedHat Enterprise 4 setup. When I go to add a verity collection, I get this error: Unable to create collection test. Unable to create collection test. An error occurred while creating the collection: com.verity.api.administration.ConfigurationException:

Re: Converting from SQL to mySql

2006-10-30 Thread Ryan Stille
Doug Brown wrote: I am wondering how difficult it might be to migrate over to mySql from SQL2000? Is this a daunting task? Any assistance would be much appreciated. I would especially love to hear from someone who has done this. I did this a year ago with a very large application. We

Re: Speeding up a Collection / NOW: Running in Background

2006-11-08 Thread Ryan Stille
For that part you can switch on an animated gif, and/or your please wait text message using JavaScript when the user clicks submit. But if your process runs a long time (more than 3 or so minutes I think) your *browser* may time out on you, regardless of what your server timeout is set at. To

Re: CFFILE action=upload

2006-11-10 Thread Ryan Stille
[EMAIL PROTECTED] wrote: All, Does anyone know a way to check a image file's height and width before or after an image has been uploaded? I'm restrictinig the file type for *.jpg only. I want to take the height and width values of the image being uploaded and see if the values fall

Re: Check a CF page

2006-11-14 Thread Ryan Stille
Orlini, Robert wrote: How can I check a CF page to make sure CF is still working. I'm thinking I create a probe and run it with a scheduler. Thanks. Robert O. HWW There are many ways to do this. One would be to use something like http://mon.itor.us/ and point it to a ColdFusion

Re: OT: Email Bounce Handler

2006-11-15 Thread Ryan Stille
Jenny Gavin-Wear wrote: I need something that handles email bounces. It would need to read off a pop3 folder and update a table in ms sql. Any ideas? What I did is set the Return-path of the message to a specific bounce handler address. Replies will not go here, but bounces will.

Re: Indexing Binary Documents

2006-11-15 Thread Ryan Stille
Dave Phillips wrote: Hi, We have binary documents that we want to index (e.g. Word, Excel, Powerpoint, PDF, etc.) and we know we can index them with verity using the cfindex type=file attribute. However, we want to index their content along with other content from our database. So, we

Re: Anyone on a non-supported Linux distro?

2006-11-15 Thread Ryan Stille
Loathe wrote: I've got a box, and I'm setting up a play server. Want to go back to *nix. It's been years, but it was fun :) Anyway, I'm looking at slackware www.slackware.com Anyone running on that? anyone on any non-supported Linux distros? TIA. I have done several installs on

ColdFusion blogging software?

2006-11-16 Thread Ryan Stille
I'm interested in starting a blog, and was wondering what some good options are as far as ColdFusion blogging software. I've played with BlogCFC a bit, and was a little underwhelmed with the administration tools. I've used WordPress (a php package) in the past and I guess I'm kind of spoiled

Re: ColdFusion blogging software?

2006-11-16 Thread Ryan Stille
I just found the thread from last month on this same topic, sorry and never mind. -Ryan ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered

Re: ColdFusion blogging software?

2006-11-16 Thread Ryan Stille
Snake wrote: Whats wrong with blogCFC it does everything you need, its easy to customise and its very simple to use ? Russ Dan Vega wrote: Ryan, Just wondering what about BlogCFC you found overwhelming? I have used BlogCFC for the past 2 years and could not be happier, the product is

Re: Unix Timestamp

2006-11-16 Thread Ryan Stille
Michael Wright wrote: I've googled this but can't find what I'm looking for. I have a MySQL db that has several date fields storing the date as a Unix timestamp and I need to display in CF. The only thing I can think of is: cfset newdate = DateAdd(s, #dbdate#, 01-01-70) And then do a

Re: IIS vs Apache on Win2003 w CF

2006-11-19 Thread Ryan Stille
Tom King wrote: Hi All, Currently, we've got a couple of servers happily running IIS, +Server 2003 +ColdFusion, with some of the sites using access databases, which contrary to some people's experience on here, have been behaving very well. We want to set up a new server, and after

Re: IIS vs Apache on Win2003 w CF

2006-11-19 Thread Ryan Stille
John Paul Ashenfelter wrote: I don't know of any 'gotchas' using MySQL with CF, I've used it for a number of large sites and never had a problem. The first gotcha is probably that the Adobe MySQL driver is still the one that uses the old password hashing, so you'll get login problems

Re: SSL Providers

2006-11-27 Thread Ryan Stille
I've used Thawte in the past and had no problems with them. They are owned by Verisign, and work in pretty much all browsers I think. http://www.thawte.com -Ryan ~| Introducing the Fusion Authority Quarterly Update. 80 pages

Re: CF and URL vars as folders?

2006-11-28 Thread Ryan Stille
Scott Weikert wrote: Is there a way with CF to do what you can do with Apache's mod rewrite - to be able to pass a URL, say http://domain.com/x/y/z/ which would actually call the index.cfm file in the webroot, and then shuffle the x, y, and z values into variables, to mimic the normal

Re: Training Videos For ColdFusion

2006-12-01 Thread Ryan Stille
YouTube video resolution is going to be way to low for any kind of screencast. I imagine google video is the same way. You can make it go full screen, but it looks horrible because its the same low resolution. Also I believe YouTube has a max length of 10 minutes per video. Easycfm.com kind

Re: SPRY and CFAJAX conflict

2006-12-05 Thread Ryan Stille
Are you using the latest version of Spry? I know they had some conflicts with prototype, but I thought they had fixed or minimized that in later releases. -Ryan ~| Create robust enterprise, web RIAs. Upgrade integrate

Re: Jump to an Anchor

2006-12-07 Thread Ryan Stille
Ian Skinner wrote: after a page has been requested. Is there a way to focus a page to an anchor dynamically after a page is requested, when the URL does NOT have an anchor link in it? I have a calendar application and the users would like it to default to the current week at the top

Re: getSessionList.cfm UDF

2006-12-08 Thread Ryan Stille
Are there any CF/Java or server configuration issues that would prevent this from working? I am getting an empty structure, yet I can dump my personal session right below this code. Thanks. ~| Create robust enterprise, web

Re: PGP and CF7 on Linux

2006-12-13 Thread Ryan Stille
Brad Wood wrote: Ok, I already Googled this AND looked through the CF Exchange on Adobe's site and I still can't seem to get any clear direction. I need to use PGP encryption to encrypt a text file on a Linux box. What are my options? I did this using CFEXECUTE. Ended up using gpg

Re: PGP and CF7 on Linux

2006-12-13 Thread Ryan Stille
ignorance, but what is gpg? Also what were you cfexecuting? I hope it wasn't an .exe since I have to get this to work on Linux. -Original Message- From: Ryan Stille [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 13, 2006 2:38 PM Brad Wood wrote: Ok, I already Googled

Re: PGP and CF7 on Linux

2006-12-13 Thread Ryan Stille
. Thanks. ~Brad -Original Message- From: Ryan Stille [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 13, 2006 3:59 PM To: CF-Talk Subject: Re: PGP and CF7 on Linux True and true. -Ryan Jacob Munson wrote: gpg is an open source alternative to pgp that's popular

Re: SOT: JavaScript question.

2006-12-20 Thread Ryan Stille
() differs from getElementsByTagName, but you can call the later on a node. nodes = getElementById('yourdiv').getElementsByTagName('p'); Ryan Stille CF WebTools http://ryan.cfwebtools.com ~| Create robust enterprise, web RIAs. Upgrade

Fusebox plugin for CFEclipse?

2006-12-22 Thread Ryan Stille
Has anyone got the fusebox plugin working with CFEclipse? I extracted it into my plugins directory but I didn't see any changes within CFEclipse. I'd really like to be able to right click on an include tag and be able to edit the referenced template right from there. Don't know if the

Re: 5 days behind

2007-01-02 Thread Ryan Stille
Look at using actual date values. Start with something like DateAdd(d,-5,now()) to set you back 5 days, then loop 5 times, each time adding one day to your value. -Ryan Orlini, Robert wrote: I have an interesting dilemma. I need to populate a Select dropdown field with the past five days.

Re: Forcing a default directory on file download

2007-01-30 Thread Ryan Stille
Not possible with regular web browser technology. May be possible if you used an ActiveX for the download, or Apollo might be able to do something like this too. -Ryan Oğuz Demirkapı wrote: Hi I have a dummy client request that I wonder if there is a solution. We have a data file that

cf.Objective conference registration is now open

2007-02-04 Thread Ryan Stille
FYI, I just noticed the registration for the cf.Objective conference finally opened up. http://www.cfobjective.com/conference/index.cfm?event=page.register -Ryan CF WebTools http://ryan.cfwebtools.com ~| Upgrade to Adobe

Re: Windows Based Load testing?

2007-02-04 Thread Ryan Stille
I've had good luck with OpenSTA. Its free and runs on Windows. You can get it from opensta.org. -Ryan CF WebTools http://ryan.cfwebtools.com ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create

Re: Filenames in CFusionMX7\Mail\Undelivr folder

2007-02-08 Thread Ryan Stille
Andy Matthews wrote: Anyone? Google doesn't tell me whether I can depend on the filenames in the Undelivr folder being 100% unique. Just interested in getting recommendations for how I can be sure I'm checking a file's uniqueness. Andy Matthews Senior

cfchart woes - vertical labels like 3.70333333

2007-02-09 Thread Ryan Stille
I am converting some charts from cf5 (cfgraph) to CFMX7 (cfchart). My simple bar graphs that looked great in CF5 are not looking so good in CF7. My main problem is the y axis grid labels showing up as 3.703, 7.407, etc. Instead of 5,10,15 like they were before. I've been looking

Re: cfchart woes - vertical labels like 3.70333333

2007-02-12 Thread Ryan Stille
, when I was messing around with this, the scale needs to be a multiple of 9 So work out what the max value is and then get the next multipe of 9 so if the max val is 88 - set the top scale to 90 Hope this helps. On 2/10/07, Ryan Stille [EMAIL PROTECTED] wrote: I am converting some

Re: Quick help on a mod rewrite rule

2007-02-12 Thread Ryan Stille
To do this in apache, you don't even need mod_rewrite. RedirectMatch /States/xq/ASP/StateName\.(\w+)/qx/index.htm /States/index.cfm?StateName=$1 Don't know if IIS has something like RedirectMatch or not... -Ryan Russ wrote: Pretty sure it's apache, since he mentioned mod_rewrite... Russ

Issues with cfexecute in cfmx7?

2007-02-12 Thread Ryan Stille
I am converting an app from CF5 to CF7. This application makes use of an external program (htmdoc) to convert html into PDFs. The problem is when I feed it large html documents (200-300kb), it hangs when I cfexecute it. When I run the exact same command at a command prompt, it runs just

Re: Issues with cfexecute in cfmx7?

2007-02-12 Thread Ryan Stille
is to login using the same account that cfmx will run as. (Check the service settings.) Can you see if the htmldoc process is actually running (using CPU, etc) when it hangs, or is the process there but not doing anything (0 cpu)? Mark -Original Message- From: Ryan Stille [mailto

Re: Reading CSV files with the ODBC text driver

2007-02-13 Thread Ryan Stille
I'm surprised you would get a file not found error if the file was there but locked? Are you 100% sure the file exists at C:\test\testfile.csv ? -Ryan It's not the same request, but a subsequent request in the same session - do you think it would still be locked by CF? Is there a way I can

Re: Is this the best approach?

2007-02-20 Thread Ryan Stille
As an alternative to dynamically creating/managing directories and copying code into them, here is what I have done in the past. Each time a sweepstake is added, modified or deleted, we recreated a .htaccess file in the root directory that sets up redirects for each sweepstake. So

Re: Something weird?

2007-02-25 Thread Ryan Stille
Sounds like there is an htaccess file (or similar) in the directory where the image resides. -Ryan Doug Brown wrote: Ok...even weirder. I can switch images and the problem goes away, but if I put the same image back voila there we go again. This is really starting to peeese me off. Doug B.

Re: php equivalent of application.cfc

2007-03-02 Thread Ryan Stille
You don't need to have access to the php.ini file. You can set those directives in an .htaccess file. I done this on shared hosting providers. If you did it in .htaccess the syntax would be: php_value auto_prepend_file Application.php php_value auto_append_file onRequestEnd.php -Ryan

Re: Cfdocument sizes

2007-03-02 Thread Ryan Stille
You could look at HTMLDoc, but I recently had a few problems with it moving from CF5 to CF7. -Ryan E C list wrote: Unfortunately they do not. It's a dymo label writer. I use it to create address labels for new customers (one at a time.)...I wish I could either figure out what's wrong

Re: php equivalent of application.cfc

2007-03-02 Thread Ryan Stille
. -Ryan Rob Wilkerson wrote: Cool. I didn't know that. Theoretically, then, you could have a separate auto_append and auto_prepend file for each web root or even directory within a webroot, right? On 3/2/07, Ryan Stille [EMAIL PROTECTED] wrote: You don't need to have access

Re: Cfdocument sizes

2007-03-02 Thread Ryan Stille
file. Timeout period expired without completion of c:\htmldoc\htmldoc.exe ... I have looked around the web for solutions to this but haven't found any. If you have any ideas of how you fixed the problem on your system, I'd really like to hear them. -Original Message- From: Ryan

Re: Creating HTML Content Wrapper for Email

2007-03-06 Thread Ryan Stille
By inline style I'm assuming you mean using the style tag in the actual element, i.e. p style=color: blue;mytext/p ? I've had good luck in the the past defining the stylesheet at the top and setting my P, TD, etc. to whatever font color and sizes I want. I haven't tried to use classes

Re: upgrade java in CF

2007-03-20 Thread Ryan Stille
Andrew Scott wrote: With all this talk about upgrading the java runtime, what is the process in doing so. Is it just a simple matter of backing up the lib directory and dropping the new libs in there? Andrew Scott I wrote up a HowTo a few weeks ago:

Re: CFHTTP and SSL woes

2007-03-27 Thread Ryan Stille
Have you upgraded the jvm? If so, could you be importing the cert into the wrong keystore? You will need to import it into the keystore under the new JVM installation directory. If you follow any of the cert import instructions on the net, they will probably lead you to install the cert into

Re: SQL question

2007-04-03 Thread Ryan Stille
I wrote a blog post concerning this a while back: http://www.stillnetstudios.com/2007/01/20/comparing-dates-without-times-in-sql-server/ Hope that helps. -Ryan Chad Gray wrote: I am using MS SQL and have a field with data type DateTime. I want to find all records with the day 4/2/2007? If I

Can you rotate a PDF in CF8?

2008-01-08 Thread Ryan Stille
I was sure cfpdf could do it, but now that I'm ready to do it and am looking through the documentation, I don't see how. Anybody done this already? Seems like rotating would be a pretty simple and common thing, I'd be surprised if they left it out. -Ryan

Using cfinput causes form fields to show through?

2008-01-29 Thread Ryan Stille
I have a form with three text fields lined up vertically on top of each other. The first field was a cfinput, so I could use the autosuggest feature. Worked great. Then I changed the other two fields to be cfinputs, and now they show through the autosuggest popup area. Here's a screen shot

Re: File upload - my new posts aren't coming through

2008-02-04 Thread Ryan Stille
I've had problems with occasional messages not coming through for a few weeks now, perhaps months. I always use plain text when posting to this list. -Ryan Bruce Sorge wrote: I use Thunderbird and I make sure to select Text Only when sending to any of your lists 99% of what I originally

Re: File upload

2008-02-04 Thread Ryan Stille
I don't know why Bruce needs it, but I would love to be able to do it because it adds usability. When there are multiple file upload boxes, its easy to get confused as to what files you have selected already. The file input box is usually only about 20 characters wide (and not adjustable in

Re: A little CFEXECUTE help

2008-02-15 Thread Ryan Stille
Log all the paramters when making your cfexecute call, and whether it successfully created the file or not. Then look at both lists (the ones that worked, and the ones that didn't), and I'll bet a pattern will emerge. Spaces or bad characters in a filename perhaps? Surround the filenames

Re: accepting/returning cookies with cfinvoke

2008-02-25 Thread Ryan Stille
Do many web services use cookies? I think authentication is usually controlled by having you send your credentials with each request. Or you send your credentials initially, then are given a token you must pass back in with each request. -Ryan Brad Wood wrote: I didn't get any takers with

Re: cfdocument and load balancing.

2008-02-26 Thread Ryan Stille
Jeremy Rottman wrote: We recently updated our infrastructure to include HW loadbalacing and a linux based firewall. With this new change, came a basket full of issues. One issue that is most pressing, is when attempting to create a pdf via cfdocument that has images with in the pdf,

CF8 autosuggest automatically filters again?

2008-03-01 Thread Ryan Stille
I have a CF8 autosuggest setup for selecting a user on a form. The input tag is: cfinput type=text name=sendto autosuggest=cfc:ajax.getAddressBook({cfautosuggestvalue}) And the query inside the getAddressBook() method looks like this: cfquery name=qryClients datasource=mydsn SELECT first,

re: email encryption

2008-03-01 Thread Ryan Stille
You would have to cfexecute to something like pgp or gpg. But first the end user would need to install software, generate public/private keys and give you the public key. Not a very viable solution. How about instead of generating the password at the time of account creation, leave it NULL,

Re: cfstat checkbox resetting

2008-03-04 Thread Ryan Stille
Vance Whitehouse wrote: Hello, I've been upgrading our web servers from CF 7 to 8 and I'm not able to enable cfstat on them when they are running CF 8. Every time I check the Enable CFSTAT checkbox in the CF administrator, hit submit, and restart CF then log back in and check the

OT: SEO company recommendations ?

2008-03-17 Thread Ryan Stille
I'm looking for a good search engine optimization company to recommend to a client. If you've had a good experience with one, please point me to them. Thanks, -Ryan ~| Adobe® ColdFusion® 8 software 8 is the most important

ColdFusion instances running under other instances?

2008-03-24 Thread Ryan Stille
I'm working on a server with multiple instances of ColdFusion running on a Jrun4 installation. Sometimes this gets weird and I get one of the instances running under another one. This screen shot explains it better: http://tinyurl.com/2l73dy You can see the admin instance is running under

Shopping cart with focus on inventory management? Or just inventory management?

2008-05-05 Thread Ryan Stille
Hi. I'm looking for a ColdFusion shopping cart that also has a good feature set for managing inventory. Really looking for an inventory management system that also has a shopping cart. Or actually it might not even *have* to have a shopping cart, if you know of a good CF inventory

Re: Is it Flex?

2008-06-06 Thread Ryan Stille
Very useful, thanks. The weird thing is, its running the swf, too? I ran pandora.com through it, because I've always wondered about that. Then some music started playing, even though I couldn't see any player. When I closed your site, the music stopped. ??? -Ryan Brad Wood wrote: Ok,

Re: Open source BLOG which run on GoDaddy.

2008-07-24 Thread Ryan Stille
BlogCFC is released under the Apache 2.0 license, you can pretty much do anything you want with it, including redistributing. http://www.apache.org/licenses/LICENSE-2.0 -Ryan Andy Matthews wrote: BlogCFC is editable, yes. When you download it, you have the source code. I don't think you could

Re: (ot) Best FTP Software 4 Windows

2008-07-30 Thread Ryan Stille
Che Vilnonis wrote: Just curious as to what y'all use. In the past I've used Smart FTP, but it has grown into 'bloatware' IMO and I'm looking to find something a bit more lightweight and free to use. Your thoughts? TIA, Che For a client I like the FireFox plugin FireFTP. For a server,

Re: Apache with coldfusion, using seo urls

2008-08-12 Thread Ryan Stille
Stephen Adams wrote: Hi, I'm trying to set up my laptop with Apache and CF, so far I have everything working the only problem is that the site I'm working on uses SEO url's e.g. mysite/myaccount and this will load the index.cfm page of the my account folder. This also means that all the

re: Totally Baffling Extra being added in a plain text email. What the heck?

2008-09-17 Thread Ryan Stille
Try adding a server=some non-existent server attribute to the cfmail tag. This will cause the mail spool file to end up in the Udelivr folder (alternatively you can just try to catch the file in the Spool directory before it gets picked up). Now you can look at the raw email, does the problem

Re: cf 7.0.2 freezes on install

2008-09-18 Thread Ryan Stille
I have no suggestions for your issue, but you may be able to get around it by doing a silent install: http://kb.adobe.com/selfservice/viewContent.do?externalId=87bd20f4 -Ryan Greg Morphis wrote: I left it trying to install all last night and nada.. after 15 hours, still nothing.. I think it

Re: Inserting an image in a PDF?

2008-09-24 Thread Ryan Stille
Aaron C wrote: Is it possible to insert an image (e.g. jpg) into a PDF using ColdFusion 8? Yes, since CF7. cfdocument img src=file:///home/data/whatever/image.jpg /cfdocument Or do you mean into an *existing* PDF? In that case I think you'd do something like above, then use the new

Re: Chrome: Cfinput text area: fckeditor

2008-09-25 Thread Ryan Stille
Paul Ihrig wrote: the fckeditor in cf8 dosnt seem to render in chrome. any ideas? danke -paul I believe it only works in Safari/Chrome when using the latest version of FCKEditor. -Ryan ~| Adobe® ColdFusion® 8

Re: My first attempt to install 64bit CF did not go well...

2008-09-25 Thread Ryan Stille
Check the paths in the connector script and make sure they are correct. This is often an issue on Linux, and it could be the same on Solaris. This may be helpful: http://www.stillnetstudios.com/2007/04/05/problems-installing-the-coldfusion-connector-on-linuxapache/ -Ryan Ian Skinner wrote:

Re: Chrome: Cfinput text area: fckeditor

2008-09-25 Thread Ryan Stille
, 2008 at 10:39 AM, Ryan Stille [EMAIL PROTECTED] wrote: Paul Ihrig wrote: the fckeditor in cf8 dosnt seem to render in chrome. any ideas? danke -paul I believe it only works in Safari/Chrome when using the latest version of FCKEditor. -Ryan

  1   2   >