Re: New CF8 vulnerability

2009-07-08 Thread Ryan Stille
A hotfix was just released for this: http://www.adobe.com/support/security/bulletins/apsb09-09.html -Ryan ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists

Re: Restricted access to non cf files using cf

2009-07-06 Thread Ryan Stille
Store them outside of the webroot and use cfcontent to serve them to the browse when necessary. -Ryan Anastassios Hadjicrystallis wrote: I have a question that its answer may be interesting and usefull for many CF developers. Here it is. I have a site, and I have a folder where access is

Re: Coldfusion Sport Software

2009-07-01 Thread Ryan Stille
With Railo gaining more momentum now, I think we'll see some cheaper ColdFusion hosting options. And you get your own administrator! Alurium has Railo hosting starting at $6.75/month (200MB storage, 5GB bandwidth). And a 60 day free trial. http://alurium.com -Ryan Paul Alkema wrote: I

Re: ColdFusion and RSS

2009-06-26 Thread Ryan Stille
XMLFormat() does NOT clean up all invalid XML characters, it still leaves in a lot of bar chars that will mess up XML readers. I think there is a function on cflib that does a better job, I wrote one too a while back: http://www.stillnetstudios.com/2008/09/14/cleaning-up-non-ascii-characters/

Re: captcha

2009-06-18 Thread Ryan Stille
Phillip I haven't followed this whole thread, but can you really not set mappings or do you just not have access to the Administrator? In CF8, Railo and OpenBD you can set mappings in your Application.cfc file. -Ryan Phillip Vector wrote: Ah.. That would explain it. My hosting plan can't

Re: How would you approach this? Shared Calender? Any volunteers?

2009-06-09 Thread Ryan Stille
How about pushing your data in to Google Calendar. They have a nice API, and you can easily embed the calendar with a snippet of html/js. Additionally end users can embed your events into their own personal Google Calendar to easily keep track of events. If you don't want to go that route,

Re: reducing a query result

2009-06-04 Thread Ryan Stille
You can do something similar with SQL Server 2005 http://www.stillnetstudios.com/2008/11/12/pagination-mssql-2005/ -Ryan Andy Matthews wrote: If you're using mySQL, then look into the LIMIT keyword: SELECT [columns] FROM [tableName] LIMIT [totalRecords], [startingRow] This way you ONLY

Re: Generating appopriate transaction IDs

2009-06-04 Thread Ryan Stille
I just fired up Tomcat and tried getTickCount() on all 3 CFML engines within a second or two of each other. OpenBD: 276282Railo: 1244157288529cfusion: 1244157287685 Running date +%s on my linux box gives me 1244157286 so it looks like cfusion and Railo do indeed return milliseconds since the

Re: Generating appopriate transaction IDs

2009-06-04 Thread Ryan Stille
Eh sorry my webmail sucks, lets see if this one comes through formatted better. __ I just fired up Tomcat and tried getTickCount() on all 3 CFML engines within a second or two of each other. OpenBD: 276282 Railo: 1244157288529

Re: New Topic: Custom content based on environment.

2009-04-23 Thread Ryan Stille
I think it would easiest to do this within ColdFusion, like body bgcolor=#DetermineCorrectBGColor()# Or something similar with CSS: body id=#DetermineCorrectBodyID()# That function could then look at the hostname, perhaps compare it to a list of ones that should be displayed specially, and

Re: New Topic: Custom content based on environment.

2009-04-23 Thread Ryan Stille
Another idea - you could override a stylesheet on the staging sites. Put something like this in the those virtual hosts: Alias /path/to/one-of-my-stylesheets.css /special-cfm-stylesheet.cfm Then in special-cfm-stylesheet.cfm you read in the normal stylesheet, append something to that text

Anyone heard of CF_WordCount?

2009-04-20 Thread Ryan Stille
I am working on rebuilding a site for a client whose server crashed. They are missing a tag named CF_wordcount. The only occurrence of this in google is on Adobe's developer exchange: http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailextid=115 But although that

Re: Startup scripts on Linux

2009-04-17 Thread Ryan Stille
I'm not seeing a problem with your script. When I change it to echo out the start up commands instead of running them, this is what I get: The ColdFusion 8 server is starting up and will be available shortly. su cfuser -c nohup /opt/jrun4/bin/jrun -start cfusion -config jvm.config_dev

Re: Looking for a CF drag drop tutorial

2009-04-15 Thread Ryan Stille
Maya MacDonald wrote: Hi, I am looking for a CF tutorial on how to create a drag and drop list to reorder entries. Thanks! You may find this useful: http://www.stillnetstudios.com/2006/12/31/drag-and-drop-sort-order-with-scriptaculous/ It shows how to pass the resorted values back

Re: would you consider this a bug, CF8

2009-04-02 Thread Ryan Stille
Look at the DaysInMonth() function. -Ryan Tony wrote: cfset date1 = '11/30/2008' / cfoutput cfloop from=1 to=6 index = i cfset date2 = dateAdd('m', i, date1) / #dateFormat(date2,'mm/dd/')#br

Re: Javascript question

2009-03-18 Thread Ryan Stille
Do you have ID=registerForm in your opening form tag? Don't forget it is case sensitive, too. -Ryan Jenny Gavin-Wear wrote: I have in the header: script type=text/javascript function submitForm() { document.getElementById(registerForm).submit() } /script and this as the trigger:

Re: MySQL and CF LAST_INSERT_ID()

2009-03-17 Thread Ryan Stille
You actually *can* run multiple statements in a cfquery if you change a setting in the datasource. By default MySQL does not let you, this is a security precaution to protect against SQL injection. This may help: http://www.petefreitag.com/item/357.cfm Also note that you can only use

Re: Dynamic SubDomain Creation / Domain Pointing

2009-03-12 Thread Ryan Stille
The subdomains shouldn't take any time to propagate, they should start working instantly. Its when you setup a brand new 2nd level domain (Foo.com) that it can take a while to propagate. When I did this before we dynamically wrote out zone files for the 2nd level domains, and used a wild

Re: Spam Assassin is assassinating my server!

2009-02-23 Thread Ryan Stille
Spam Assassin has nothing to do with apache. And you wouldn't have to run SA on the local server, either. There is a java implementation of spamc (the SA client), you can use that to run the message through a SA server, wherever it may be. -Ryan Claude Schneegans wrote: Setup a local

Re: Spam Assassin is assassinating my server!

2009-02-23 Thread Ryan Stille
We tried this, and it didn't work very well. The scoring doesn't range much. It could be an issue with what's in our auto-learn database, but I think it has more to do with the missing message headers. We even tacked on basic headers (to, from, subject), but its still missing the headers

Re: Uploading Really Large Files w/CF

2009-01-22 Thread Ryan Stille
We had a very tough time with uploading large files using ColdFusion. It is probably better now in CF8. But it used to always choke after 100MB or so. One reason for NOT using CF to do this is that is each upload is going to tie up one of your CF threads for who knows how long, it could be

re: Controlling the Number of Inputs with a Dropdown

2009-01-16 Thread Ryan Stille
You can do this all with JavaScript, it works really slick. I just did this a few weeks ago and wrote a blog post about it:http://www.stillnetstudios.com/2009/01/05/dynamically-adding-and-removing-form-elements/ Or you can go the route you are heading, where you ask for how many, then submit

Re: cf and asterisk voip

2009-01-12 Thread Ryan Stille
Chad I would start by looking at how the flash panel (from asternic.org) works, I think it has a Perl backend that talks AGI to asterisk. I think AGI works all through pipes, so that will be hard to do with CF. I think you'll need to reach down into Java to do it. -Ryan Chad Gray wrote:

Re: cftoken lost between servers

2009-01-08 Thread Ryan Stille
You might need to turn off setClientCookies and set them manually with cfcookie tags. I've had a similar issue before where when you jump to another server while passing in your own cfid and cftoken, it works for the first request but then the new server hands back NEW cfid/cftoken values and

Re: POI HSSF problem with CFLOOP

2009-01-07 Thread Ryan Stille
http://pastebin.com. Its made for sharing code thats being discussed on mail lists and the like. Works great. -Ryan Adrian Lynch wrote: You can't post attachments to CF-Talk, can you post it somewhere? Adrian -Original Message- From: Craigsell [mailto:craigs...@charter.net]

Re: Anybody out there comtemplating or currently building their own blog?

2009-01-07 Thread Ryan Stille
Rick Faircloth wrote: Thanks for the recommendations, Barney. I've thought about hosting Wordpress. I have my own VPS with Win 2003, CF 8, and MySQL 5, so hosting's not an issue. It's more about how I'd like to spend my time...learning PHP :o/ , which I'll probably never use, or more about

Re: iPhone Development

2009-01-04 Thread Ryan Stille
Bryan Hogan wrote: Can someone point me into the right direction to get started developing iPhone applications with CFML? I would like to develop on Windows if at all possible. You can't develop iPhone applications with CFML. You can build a *web application* thats targeted to mobile

Re: Appending one file to another

2009-01-01 Thread Ryan Stille
Stephens, Larry V wrote: Can I use cffile to append one file to another? cffile action=append output=File2.txt file=File1.txt Doesn't seem to work. (This is assuming File2.txt is too large to store in a variable.) Since you didn't mention a version, I assume you are on the latest?

Re: sharing vars between applications

2008-12-31 Thread Ryan Stille
If the two sites are on the same server, OR they use the same client variables database (and don't use any session variables), you can push the user over to the other site, sending along their cfid cftoken and their session should persist. You will probably need to make a few changes to your

Re: Recheck: File Upload Progress Bar

2008-12-19 Thread Ryan Stille
Robert wrote: Anyone know of a solution for either an upload progress bar (not using flex), or at least to output a message while the file is uploading? You can show an in progress meter using only GIFs and JavaScript. Take a look at this article:

Re: CF-based freelancer time/billing system?

2008-12-18 Thread Ryan Stille
I love Freshbooks. They have time tracking, and then you can generate and send bills from that time data. Clients can login as well and review stuff, but its just billing information - this isn't a project management tool. Its free for you to have up to 3 clients in their system, then its

Re: The infamous back button

2008-12-09 Thread Ryan Stille
Yes, it does make sense, I almost posted the same thing. That way when the user does go back, they are just getting the view page again, not the action page. You can't really disable the back button, but this method is a good way to get around problems the back button sometimes causes.

Re: Use Wordpress or BlogCFC?

2008-12-05 Thread Ryan Stille
Hostmysite has some very cheap wordpress accounts where they setup the wordpress installation for you, then you get all the features, no limitations. Its also pretty easy to run it yourself. MangoBlog also looks interesting. -Ryan Rick Faircloth wrote: I want to start blogging and have been

Re: Apache/CF8 problems

2008-10-27 Thread Ryan Stille
It looks like you are binding your vhosts to 127.0.0.1. Are you sure thats the IP you get when you are browsing to this dev site? For example if you ping localhost on a vista box I think by default it resolves to an IPv6 address. I don't think that will match the virtualhost 127.0.0.1

Re: CF7.02: How to restart mail spooler without restarting the service???

2008-10-20 Thread Ryan Stille
You *can* restart the spooler service without restarting CF. This is unsupported but works in CF7 and 8, and possibly 6. cfset sFactory = CreateObject(java,coldfusion.server.ServiceFactory) cfset MailSpoolService = sFactory.mailSpoolService cfset MailSpoolService.stop() cfset

re: CSV Import - Update with Commas in the Content

2008-10-20 Thread Ryan Stille
I'm not sure I understand. Are you saying they are providing you data that has delimiters within the data, but the data is not quoted? Like: [EMAIL PROTECTED],Joe,Smith,Joe, John Sons Inc. If so there is nothing you can do about that, they need to be properly quoting (with double quotes or

Re: Is it possible to trigger a link on a web page and trigger a download?

2008-10-16 Thread Ryan Stille
You could have an .htaccess file in your downloads directory that adds the content type to do this, for files retrieved from that directory. -Ryan [EMAIL PROTECTED] wrote: Ahh, good tip on the cfheader name=Content-Disposition value=Attachment; filename=#clipname# bit. I have never used that

Re: Streamlining an insert

2008-10-15 Thread Ryan Stille
This is how you'd do it with MySQL: INSERT INTO tablename (x,y,z) SELECT x,y,z FROM othertable If you are using MSSQL, I'm sure its something similar. -Ryan Eric Roberts wrote: I have been trying to come up with a more streamlined way to update the contents of a table with data that is

Re: Streamlining an insert

2008-10-15 Thread Ryan Stille
with a ColdFusion datasource, I think the user you are connect the DSN as would need permission to both databases and it should work. -Ryan Ryan Stille wrote: This is how you'd do it with MySQL: INSERT INTO tablename (x,y,z) SELECT x,y,z FROM othertable If you are using MSSQL, I'm sure its

Re: Firefox redirects to machine's IP address?

2008-09-29 Thread Ryan Stille
Greg Morphis wrote: If I type in http://localhost:8300/ into Firefox it goes to the machine's IP address and I get a Network error.. In IE this works fine.. it takes me to my CF root directory.. What gives? Sounds like a webserver redirect issue. I've run into this before, but I don't

Re: Firefox redirects to machine's IP address?

2008-09-29 Thread Ryan Stille
at 10:39 AM, Ryan Stille [EMAIL PROTECTED] wrote: Greg Morphis wrote: If I type in http://localhost:8300/ into Firefox it goes to the machine's IP address and I get a Network error.. In IE this works fine.. it takes me to my CF root directory.. What gives? Sounds like

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

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: 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: 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: 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: (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: 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: 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,

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

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

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

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

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: 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,

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: 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: 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

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

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

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

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: 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

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: 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

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: 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

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: 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: 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: 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: 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

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: 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

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: 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: 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: 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: 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: 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: 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: 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

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: 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

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: 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

  1   2   >