Hungarumlaut

2010-05-13 Thread Brian Peddle
Im on CF9 on Windows 2003 and IIS. I have a directory watcher gateway running that reads in a new file and converts it to SWF using a 3rd party tool. The document name is Hungarian: Budapesti__Főiskola;003A00BHK8lIAH.pdf It uses the Hungarumlaut over the o, also known as the double acute

Gateway Instance In/Out

2010-02-17 Thread Brian Peddle
Does anyone know if its problematically possible to retrieve the values of the In and Out for each Gateway Instance? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion

FlashPaper

2009-11-02 Thread Brian Peddle
Does the output of FlashPaper in Coldfusion end up using the Print driver? I need to create a service to accept a word doc or pdf and have it converted to a swf. It needs to be able to handle decent load so trying to figure out if it will create a new thread and handle multiple requests at

Empty File Error Trapping

2009-03-18 Thread Brian Peddle
I am trying to trap an error when someone uploads a file that is 0 length. I get this error now No data was received in the uploaded file foo.txt. Saving empty (zero-length) files is prohibited. Verify that you specified the correct file. I have used cfif IsDefined(FORM.uploadedResume) I

Tomcat / Apache / CF

2009-02-24 Thread Brian Peddle
After a few hours on this I have run into a wall, I think I am close. This is on Windows XP. I have Apache Installed and working, I have Tomcat Version 6.0.18 installed and working. I did a J2EE install of CF8 Developer got the war file and loaded into: C:\xampp\tomcat\webapps\cfusion I can

Re: Semi-OT: SQL question...Select first item for each person for each day

2009-02-24 Thread Brian Peddle
Maybe Select top 1 * from appointment where appointment between (date/time and date/time) order by appointment_date Ben Conner wrote: Hi Judah, I suppose there's more than one way to do this, but this should work... SELECT a.* FROM appointment a INNER JOIN

Re: SVN in Production

2008-08-11 Thread Brian Peddle
Lighten up Andrew. You have been in attack mode from your first response. It is obvious you have strong opinions on the topic, but responding like you have been does nothing to educate the people here who may not have an opinion yet and are trying to learn something from these threads. Andrew

Re: HELP! SQL Injection Attack!

2008-08-08 Thread Brian Peddle
Just curious as I have no seen this on an old asp site months ago and now on CF. Every IP lookup I do goes back to OrgName:Asia Pacific Network Information Centre OrgID: APNIC http://ws.arin.net/whois/?queryinput=O%20%21%20APNIC Address:PO Box 2131 City: Milton StateProv:

Binary File

2008-08-01 Thread Brian Peddle
I have an Adobe Air application that will post a file to a cfc. The cfc accepts the file fine. cfargument name=foo type=binary required=yes and I can process it and actually post to another web service for processing. Doing this in the xml

Time to First Byte

2008-04-08 Thread Brian Peddle
I know without deep details this may be hard to answer but looking for some general thoughts. We have 4 front end web servers all on Coldfusion 7. Java 1.4.1.13. Dell Xeon 4 gigs of Ram, dual quad core Nothing by CF runs on these boxes. All the code lives on NAS on a gigabyte network.

intermedia.net

2008-01-31 Thread Brian Peddle
I currently have 10+ boxes at HostMySite but we are looking to have a small footprint at another facility in case of a major issue there. Does anyone have any feedback on intermedia.net? Thanks ~| Adobe® ColdFusion® 8

JVM

2008-01-14 Thread Brian Peddle
I have a dual quad core, 4 gigs of RAM ... and noticing the heap fills up and stays up. I have seefusion and will empty the GC but that only gets me back a little. Eventually things die on me. I have some older machine that don't suffer from this. I tried to add in –XX:+AggressiveHeap but when

Re: JVM

2008-01-14 Thread Brian Peddle
Sorry --- CF 7.0.2.142559 Java 1.4.2_09-b05 Dave Watts wrote: Subject: JVM What version of CF? What version of the JVM? Dave Watts, CTO, Fig Leaf Software ~| Adobe® ColdFusion® 8 software 8 is the most

CFFEED?

2007-09-16 Thread Brian Peddle
I'm trying to do something pretty basic with CFFEED ... basically from the docs I get this error There is a problem in the column mappings specified in the columnMap structure. The query attribute input does not contain any column by the name of job_title. However it certainly does contain

Coldfusion 5 Download

2007-08-21 Thread Brian Peddle
Would anyone happen to know where I could download an old version of CF 5? ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now

Re: SQL injection hack?

2007-08-06 Thread Brian Peddle
You can't prevent people from trying but you can code to prevent it from messing with your database. Make sure you are using cfqueryparam every place you can or use Stored Procs. Rick King wrote: Hey all, I just received this email that is generated when there is an error on a site I

Re: PGP...

2007-07-25 Thread Brian Peddle
Syntax I us cfset args = +batchmode +force #ftpfile#.pgp -o C:\internet\import\#ftpfilename# -z /putyourkeyhere/ cfexecute name=C:\Program Files\Network Associates\PGPNT\pgp.exe arguments=#args# timeout=20/cfexecute FYI cfset ftpfile = feed.ftp_path feed.ftp_filename / cfset

Re: Help with Query

2007-07-23 Thread Brian Peddle
If all your photos will have prices you won't need to left join you can just join on them. Joel Watson wrote: Joe, First of all I am not sure if you need LEFT JOIN for both comments and prices. My first example was based on the assumption that you could have photos without comments and

CF8 Error

2007-07-21 Thread Brian Peddle
I just installed CF8 to test with an application and received the error below, I've never seen this one before. Component cannot implement component. The com.jobscience.DataStruct ColdFusion component cannot implement the com.jobscience.Interface ColdFusion component. It can only implement

Re: CF8 Error

2007-07-21 Thread Brian Peddle
7 didn't seem to care to I guess the rules tightened up in 8? Raymond Camden wrote: You have a CFC that is implementing another component. You can only implement an interface. On 7/21/07, Brian Peddle [EMAIL PROTECTED] wrote: I just installed CF8 to test with an application and received

Re: CF8 Error

2007-07-21 Thread Brian Peddle
? If so, thats reserved now in CF8. On 7/21/07, Brian Peddle [EMAIL PROTECTED] wrote: 7 didn't seem to care to I guess the rules tightened up in 8? Raymond Camden wrote: You have a CFC that is implementing another component. You can only implement an interface. On 7/21/07, Brian

Re: CF8 Error

2007-07-21 Thread Brian Peddle
I removed implements=com.application.Interface and it got past it. It didnt' like that. Brian Peddle wrote: Yes it was. This is the object that gets the error on the init. cfcomponent name=DataStruct implements=com.application.Interface hint=Data structure

Re: Dreamweaver and Vista

2007-07-01 Thread Brian Peddle
Vista and the new Dreamweaver for me is unusable. There is something very wrong here. I tried everything I could find and had no luck. Jenny what do you use for Virus protection? ~| ColdFusion MX7 by Adobe® Dyncamically

Re: Dreamweaver and Vista

2007-07-01 Thread Brian Peddle
Here is one thing I have done over the past week. Vista came pre-installed on brand new Dell Insp. 9400 with all the usual software I needed to remove. Things performed fair on most applications. I was using Windows OneCare as my virus protection. I had been using it on XP and it was doing

Sql 2005 JDBC 1.1

2007-03-21 Thread Brian Peddle
Has anyone come across this error using the SQL 2005 JDBC 1.1 Driver? The server failed to resume the transaction. If I copy the sql out and into the analyzer it works. Not really sure what is going on. ~| Create robust

Query Oddness

2007-02-13 Thread Brian Peddle
Anyone seen this or have any clues ... Query returns 8 rows. In the debugging it shows 8 rows. If I copy the debugging query into query analyzer is returns 27 like it should be. I am stumped. ~| Upgrade to Adobe ColdFusion MX7

Re: Query Oddness

2007-02-13 Thread Brian Peddle
No login. cfquery name=foo /cfquery cfoutput #foo.recordcount#/cfoutput That equals 8 take the debug query and you get 27 Coldfusion wrote: Check your output logic. Check your IF statements to see if your bypassing some records -Original Message- From: Brian Peddle

Re: Query Oddness

2007-02-13 Thread Brian Peddle
yes Dave Watts wrote: Query returns 8 rows. In the debugging it shows 8 rows. If I copy the debugging query into query analyzer is returns 27 like it should be. Are you using the same login from within Query Analyzer as from within your CF application? Dave Watts, CTO, Fig Leaf

Re: Query Oddness

2007-02-13 Thread Brian Peddle
Im not using cfqueryparam. Maybe I should try to here Bryan Stevenson wrote: I have actually seen CFQUERYPARAM cause odd results like that against Oracle Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264

Memory Usage

2007-01-18 Thread Brian Peddle
We have 2 gigs of Ram per Webserver jrun.exe uses about 629,936 mem usuage when you look at the processer usage When you look at seefusion I can see memory usage at about 85 - 91% consistently. My Maximum JVM heap size is 512 MB And the jvm arguments are: -server

Re: PGP CFEXECUTE

2006-12-08 Thread Brian Peddle
clearing purposes to our bank! Chris Peterson -Original Message- From: Jordan Michaels [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 12:18 PM To: CF-Talk Subject: Re: PGP CFEXECUTE Brian Peddle wrote: I am using PGP 6.5.8 to decrypt a file. I can successfully run

PGP CFEXECUTE

2006-12-07 Thread Brian Peddle
I am using PGP 6.5.8 to decrypt a file. I can successfully run a command line to decrypt but I would like to run inside of a coldfusion process. I currently run it in a .bat file and tried at first to just execute the .bat but got the error: File is encrypted. Secret key is required to read

All Stored Procs in 1 CFC?

2006-10-24 Thread Brian Peddle
I have worked a few companies where they use .NET and know of several other companies who follow this process. They have a generator that reads all the stored procs and creates the needed code in .NET to make the calls to the stored procedures in classes. All this is done automatically and

Performance

2006-10-18 Thread Brian Peddle
Not sure there is much to do be on this question but never know. We use seefusion to keep an eye on threads and lately the site has been getting hit hard, what I see in seefusion though is that the same request person is holding up 20 threads and the requests are within seconds of each other

onRequestStart

2006-10-18 Thread Brian Peddle
In my onRequestStart a variable is set for request.user some processing is done and it never really needs to be updated again. Im trying to do cfif isdefined(request.user) to see if it has been set in the onrequeststart but it is never defined. As I write this I am guessing the request

RE: text file difference

2006-08-13 Thread Brian Peddle
This may help http://www.shlomygantz.com/blog/index.cfm/2005/11/3/Diff-cfc-A-ColdFusion-di ff-component -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Saturday, August 12, 2006 11:35 PM To: CF-Talk Subject: text file difference Does anyone have code to compare two

RE: cf_formurl2attributes_search

2006-08-13 Thread Brian Peddle
http://cfhub.com/taggallery/SES_By_Owen/formurl2attributes.zip -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Sunday, August 13, 2006 12:21 PM To: CF-Talk Subject: ***SPAM*** cf_formurl2attributes_search Does anyone still have this custom tag that they may be able

RE: Premium Hosting suggestions

2006-07-13 Thread Brian Peddle
I have 8 dedicated boxes at HMS. 4 Load Balanced web servers, NAS, FTP Server and 2 SQL Servers and have been very pleased with them. They are very responsive. After we migrated we had some performance issues (these weren't their fault and I knew it but the CEO forced the issue as it was them)

CFDOCUMENT / PDF / IIS Compression

2006-07-12 Thread Brian Peddle
I would like to use IIS Compression and have it working fine for everything accept PDF's in IE. Things work fine in Firefox. But when you use CFDOCUMENT to create the PDF with IIS Compression turned on nothing it generated. I know this isn't a CF issue it is more an IE6 Issue but has anyone

jTDS Drivers

2006-06-23 Thread Brian Peddle
Today I switched over to the jTDS Driver to test them. I am now getting an intermittent error: Error Executing Database Query. I/O Error: Connection reset To setup I copied the jtds-1.2.jar file to the C:\CFusionMX7\lib and restarted CF Server. I then setup a datasource: JDBC URL:

RE: WYSIWYG Editor

2006-06-11 Thread Brian Peddle
TinyMCE is great -- cross browser, good community support in the forums, easy to extend. -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Sunday, June 11, 2006 5:12 PM To: CF-Talk Subject: Re: WYSIWYG Editor You might check out TinyMCE.

Custom Reporting

2006-05-19 Thread Brian Peddle
We currently use a custom tool built in house to create custom reports. We list dropdowns and you pick fields etc, criteria and so on. We are looking for something better, more intuitive, web based preferably and easy to use and configure. Our end users will need this in the existing tool

Sql Server Temp Table

2006-05-09 Thread Brian Peddle
Today I just started to get an error: [Macromedia][SQLServer JDBC Driver][SQLServer]There is already an object named '#temp_reports' in the database. If I take the query from coldfusion and run in analyzer it works as expected, it is just inside CF that I have the issue. I recycled the CF

RE: Sql Server Temp Table

2006-05-09 Thread Brian Peddle
, here, but I thought I remembered that temp tables were maintained until the connection is broken. Do you have Maintain Connections checked in your DS properties, by any chance? Has anything else changed in the environment? On 5/9/06, Brian Peddle [EMAIL PROTECTED] wrote: Today I just

RE: Model-Glue List

2006-04-25 Thread Brian Peddle
I haven't seen a new message since March 13 and I know they are there as I can see them in topica. I have a friend who went weeks without messages as well. -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 10:00 AM To: CF-Talk Subject:

RE: Converting a Query to Stored Procedure

2006-03-19 Thread Brian Peddle
http://www.4guysfromrolla.com/webtech/031004-1.shtml -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: Friday, March 17, 2006 3:17 PM To: CF-Talk Subject: Re: Converting a Query to Stored Procedure Thanks to everyone who posted suggestions. Qasim, the article showed

Object Maze

2006-03-15 Thread Brian Peddle
I am working on some code right now that is a maze of objects. Objects that call Objects that call Objects and that inherit from more objects. To me it looks like spaghetti code only instead of a bunch of includes it is objects. The application isn't rocket science but lets say it a mid-large

Re: CF 7 upgrade BAD!

2006-03-14 Thread Brian Peddle
Bryan -- We have been experiencing the same issues with CF 7. We had one machine 6 and one 7 on windows 2000, we moved to all CF 7 on windows 2003 2gigs ram, dual xeons and experienced a major slow down. We ran seefusion and noticed first time to byte of many files to be very high. Upwards of

RE: OOP, why me?

2006-03-06 Thread Brian Peddle
Mike --- do you have a blog where you go over all your learning? I think you do a great job of talking about things in simple terms. I think a lot of people are in your boat or were in your boat. Wanting to head down this path but don't know where to start. Im the cusp of the AH-HA! ... The

Stack Trace Help?

2006-03-03 Thread Brian Peddle
This is the first time I have gotten into stack traces. I am using Fusion Reactor to grab some traces and this was a very slow one. Im really not sure what to look for - are there any good docs around that explain some of these items? It would guess those two locks below aren't good and would

RE: CF7 100% CPU usage

2006-03-03 Thread Brian Peddle
We had and still have a similar issue. We moved from a mixed CF 6/7 on windows 2000 to all cf 7 on windows 2003 and since the move performance has degraded. -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 1:42 PM To:

ActiveSpell and tinyMCE

2006-02-22 Thread Brian Peddle
Has anyone implemented ActiveSpell and tinyMCE and have tips on doing so? Thanks! ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233080 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Open PDF

2006-02-14 Thread Brian Peddle
Using CF 7 and had written some code to open files that were uploads. Txt, Doc, PDF etc. This all had been working, only difference is we moved code onto new servers when we moved hosting. The process was. Display Page will all documents. Click on link to display document This would open a new

RE: Open PDF

2006-02-14 Thread Brian Peddle
browser because I have set all pdfs to download and then I can open them in the standalone acrobat reader. On 2/14/06, Brian Peddle [EMAIL PROTECTED] wrote: Using CF 7 and had written some code to open files that were uploads. Txt, Doc, PDF etc. This all had been working, only difference is we moved

RE: Open PDF

2006-02-14 Thread Brian Peddle
Found the issue and not sure why its happening. When someone uploads file I capture mime-type, its saving as image/pdf instead of application/pdf. Is there a server setting for this? -Original Message- From: Brian Peddle [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 14, 2006 4:19

RE: Open PDF

2006-02-14 Thread Brian Peddle
:54 PM To: CF-Talk Subject: Re: Open PDF Where are you getting that #documentSelect.mimeType# variable? Is it definitely passing the right mime type? On 2/14/06, Brian Peddle [EMAIL PROTECTED] wrote: Using CF 7 and had written some code to open files that were uploads. Txt, Doc, PDF etc

RE: Open PDF - SOLVED

2006-02-14 Thread Brian Peddle
on and make this work. :) -Original Message- From: Brian Peddle [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 14, 2006 4:19 PM To: CF-Talk Subject: Open PDF Using CF 7 and had written some code to open files that were uploads. Txt, Doc, PDF etc. This all had been working, only difference

RE: SQL Encapsulation?

2006-02-03 Thread Brian Peddle
unmaintainable. But, without knowing more specifics about what he's actually trying to acomplish, we're just tossing out potential solution scenarios. We don't really know the paramaters of the problem we're trying to solve. On 2/2/06, Brian Peddle [EMAIL PROTECTED] wrote: Using this method you

RE: Issue with CSS and doctype

2006-02-03 Thread Brian Peddle
Does it validate as strict? -Original Message- From: Robert Everland III [mailto:[EMAIL PROTECTED] Sent: Friday, February 03, 2006 1:45 PM To: CF-Talk Subject: OT: Issue with CSS and doctype Can anyone help me out. When i change the doctype it completely changes how it looks. I have no

RE: Possible to determine search engine rankings with CF?

2006-02-02 Thread Brian Peddle
the problem... Rick -Original Message- From: Brian Peddle [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 01, 2006 1:59 PM To: CF-Talk Subject: RE: Possible to determine search engine rankings with CF? http://www.webceo.com/ offers a free tool that is really good. -Original

RE: SQL Encapsulation?

2006-02-02 Thread Brian Peddle
I just rewrote a query as a test a few weeks ago that replaced what you have below. The search would query for a count first then grab the 50/100 etc records to be displayed for paging. When someone queried the whole database it was taking upwards of 50 seconds to run both queries. I moved them

RE: SQL Encapsulation?

2006-02-02 Thread Brian Peddle
I don't believe that will get him what he wants. He has query #1 which will get the total records for a query. Query #2 just returns 50 records of the total. So when you display results you see. Total: Records 4530 Displaying Records: 101-150. Instead of one query returning all 4530 records

RE: SQL Encapsulation?

2006-02-02 Thread Brian Peddle
cfset var getit = cfquery name=getit dbtype=query select * from variables.allrows WHERE start = #arguments.start# AND end = #arguments.end# /cfquery cfreturn getit /cffunction /cfcomponent On 2/2/06, Brian Peddle [EMAIL PROTECTED] wrote: I don't believe

RE: Possible to determine search engine rankings with CF?

2006-02-01 Thread Brian Peddle
http://www.webceo.com/ offers a free tool that is really good. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 01, 2006 1:50 PM To: CF-Talk Subject: Possible to determine search engine rankings with CF? Hi, all... Is there a way to use CF to

RE: URL Redirection/ rewrite

2006-01-17 Thread Brian Peddle
http://www.isapirewrite.com/ -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 17, 2006 10:23 AM To: CF-Talk Subject: OT: URL Redirection/ rewrite I have a need to redirect a specific request for a WSDL in coldfusion to a hardcoded WSDL file. ie, I

Performance Question Query

2006-01-16 Thread Brian Peddle
Anyone know if there any performance difference between running a stored proc like this? cfquery datasource=DSN Proc_test value1,value2,value3 /cfquery As opposed to cfstoredproc procedure=Proc_test datasource=DSN /cfstoredproc THANKS!

Performance CF 7.01 / Windows 2003

2006-01-16 Thread Brian Peddle
We recently moved our servers and since the move we have seen performance go down. We had been running 3 servers load balanced. 1 CF 6 and 2 CF 7.01 on Windows 2000. We moved to all CF 7 on Windows 2003. What I notice when using SeeFusion is that queries are running pretty fast. Queries

Data Source

2006-01-13 Thread Brian Peddle
Is there any performance gain using JDBC drivers (other) vs Using the Microsoft SQL Server driver for connecting to SQL Server on CF 7? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229500 Archives:

Moving Servers CFSCHEDULE

2006-01-05 Thread Brian Peddle
Is it possible to migrate CF Scheduled tasks from one server to another? Thanks ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228456 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

RE: Moving Servers CFSCHEDULE

2006-01-05 Thread Brian Peddle
Location in registry? Or multiple locations? Thanks -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Thursday, January 05, 2006 10:21 AM To: CF-Talk Subject: RE: Moving Servers CFSCHEDULE Yes -Original Message- From: Brian Peddle [mailto

Custom Tags Folder

2005-12-07 Thread Brian Peddle
Not sure this is possible. We have a version of an application and we are releasing an updated version. Some of the Custom Tags have been updated along with code. We plan on rolling this out a few clients at a time. Is it possible to set some type of application variable to override the

CFCACHE

2005-12-01 Thread Brian Peddle
If I have a page with 5 includes lets say and I use CFCACHE on one include will it attempt to cache all the stuff below it or just that one include file? To let you know what I am doing in a header file we have to CFHTTP to another site to pull some content that a client is always changing. We

RE: CFCACHE

2005-12-01 Thread Brian Peddle
As an FYI I ended up using this tag http://www.electricsheep.co.nz/products/customtags/view.cfm?name=cf_cache And it has worked perfectly. -Original Message- From: Brian Peddle [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 12:10 PM To: CF-Talk Subject: CFCACHE If I have

java.sql.SQLException

2005-11-30 Thread Brian Peddle
We get this error randomly and usually hitting refresh it goes away. This is datasource for client variable storage. Any thoughts on what the issue could be and why it would just happen on occasion? Error Occurred While Processing Request Operation failed on the data source named

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Brian Peddle
How do you span sessions across ColdFusion servers if you aren't using Enterprise? I've never done this in CF but have in ASP. In the earlier days of the web the mandate for places I worked was never use session variables. So I have always coded without using them. There was always someone

RE: Getting first 10 words from a string.

2005-11-23 Thread Brian Peddle
Try this maybe http://www.cflib.org/udf.cfm?ID=605 Use space for your delimiter maybe. -Original Message- From: Nomad [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 3:23 PM To: CF-Talk Subject: Getting first 10 words from a string. Hello! Need help. How do I get the

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Brian Peddle
Something to read that may help: http://www.horwith.com/index.cfm?mode=entryentry=59710A68-E081-0478-475D659 34BEA80CD ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

RE: Numbers to Words

2005-11-16 Thread Brian Peddle
http://www.cflib.org/udf.cfm?ID=40 -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 16, 2005 6:33 AM To: CF-Talk Subject: Numbers to Words I'm sure I've seen a CFC or UDF before that translates numbers into words, eg; 103 -- One hundred and

RE: Finding top ranked articles

2005-11-03 Thread Brian Peddle
Why does it matter if someone already viewed the article? If you are going to remove historical data anyway, after 14 hours, what does it matter if the person visited 2 hours later or 15 hours later. What about people using proxy servers, you may be blocking out unique views. I think I would

RE: Finding top ranked articles

2005-11-03 Thread Brian Peddle
visited the site so I can pick out the top ranked articles from the previous 12 hours. Thanks, Saturday On 3 Nov 2005, at 14:39, Brian Peddle wrote: Why does it matter if someone already viewed the article? If you are going to remove historical data anyway, after 14 hours, what does

RE: Force PDF Download

2005-11-02 Thread Brian Peddle
What fails? Do you get a message? Is it in IE and Firefox or just IE? -Original Message- From: Aldon Moore [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 02, 2005 11:54 AM To: CF-Talk Subject: Force PDF Download Hello People! I need to force download a pdf file but my code is

RE: Force PDF Download

2005-11-02 Thread Brian Peddle
This may be overkill but I use this for a document library tool I built. Just replace some of my variable names. cfheader name=Content-Type value=application/pdf cfheader name=Content-Disposition value=filename=something.pdf# cfheader name=Content-Location

RE: Find no records

2005-11-02 Thread Brian Peddle
SELECT u.userID, u.firstName, u.lastName, u.emailAddress, u.password FROM tbl_020publicUsers u WHERE not exists (select * from tbl_020eventDetails e where u.userID = e.userID) May perform a bit better than NOT IN -Original Message- From: Charlie

RE: How to recognize robots

2005-10-31 Thread Brian Peddle
http://www.alistapart.com/articles/dropdowns/ Also google accessible css dropdowns there are a ton. Everything in that book is out there. -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Monday, October 31, 2005 5:28 PM To: CF-Talk Subject: Re: How to recognize

RE: How to recognize robots

2005-10-30 Thread Brian Peddle
There are user agent lists out there http://www.psychedelix.com/agents1.html for example. You could run a report later and go against a table of useragents -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Sunday, October 30, 2005 5:15 PM To: CF-Talk Subject:

RE: Philosophy Q: SP's or CFQUERY?

2005-10-30 Thread Brian Peddle
You mention SP's will give greater performance. I think that may be a myth these days. Google around and you will find all sorts of debates on it. I was shocked myself after spending a good bit of day taking some queries from a CF page and dumping them into a shiny new stored proc and things

RE: Philosophy Q: SP's or CFQUERY?

2005-10-30 Thread Brian Peddle
I do agree it depends on situation and I' be curious to see how it performed in ASP or .NET or some other language as opposed to CF. -Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: Sunday, October 30, 2005 6:48 PM To: CF-Talk Subject: RE: Philosophy Q: SP's or

CFMAIL Attachment

2005-10-26 Thread Brian Peddle
I have created a document library, when the user uploads a file a give it truly unique name using a UUID. Users can then email documents to other users etc. The problem is I don't want files name 00E13D334DFFDA1234.doc sent, it would be nice to have a friendly name for the file. Aside from

Scalable?

2001-07-19 Thread Brian Peddle
Could anyone point me to a document which would define what one would consider scalable. e.g. ASP, CF, JSP being scalable. I spent years hearing CF isnt Scalable, I work with ASP some now and now that JSP is catching on I hear ASP isnt scalable and I spend so much time on this silly

RE: SOLUTION: OT - Sniffing Email

2001-04-12 Thread Brian Peddle
Im attempting to post this for the 4th time. I tried to apply the solution below and spent a couple hours on it but I can't seem to get it: Code I am using is below. It has been cut down a bit to make it straight forward. I can sent the code as an attachment if needed as it seems as though

RE: Chinese language

2000-07-11 Thread Brian Peddle
Zac, Your database is handling Double Byte Characters from Asia? I find this hard to believe. CF does not support UNICODE or MBCS. The ISO-8859-1 char set can handle most Western European languages as well as English and default character set in SQL Server along with the use of nvarchar etc

RE: Chinese language

2000-07-11 Thread Brian Peddle
I agree with that portion of it, have you tried using asian characters in it? -- Original Message -- From: Zachary Bedell [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Tue, 11 Jul 2000 14:29:11 -0400 -BEGIN PGP SIGNED MESSAGE- Hash: SHA1

RE: contained in a list

2000-07-07 Thread Brian Peddle
cfif listfindnocase('#mylist#','#mynumber#',',') NEQ 0 Not in list /cfif -Original Message- From: Gilles Ratte [mailto:[EMAIL PROTECTED]] Sent: Friday, July 07, 2000 10:52 AM To: 'cftalk' Subject: contained in a list I need know if a number is one of a list item. let me explain let's

RE: Content management

2000-07-05 Thread Brian Peddle
It looks like this doesnt run on an NT platform??? Is that true? -Original Message- From: Brett Payne-Rhodes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 05, 2000 8:42 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Content management Seth, This might be outside the

RE: Selecting a value in a dropdown.

2000-06-27 Thread Brian Peddle
You can cut that down even more to just use 1 if around the selected: option value="#i# week/year" CFIF Query.DatabaseValue IS iSELECTED/cfif#i#week/year/option -Original Message- From: Roberts, Jesse D [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 27, 2000 11:16 AM To: '[EMAIL

RE: textarea

2000-06-27 Thread Brian Peddle
textarea name="body" cols="50" rows="10"#variables.job_description#/textarea -Original Message- From: Gregg Kachel [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 27, 2000 1:49 PM To: [EMAIL PROTECTED] Subject: textarea Hi, I'm sort of a newbie with Cold fusion, so I'm probably doing

RE: HTML Text Editor

2000-06-26 Thread Brian Peddle
I am hitting that site, seems like no links work -- Original Message -- From: "Parker, Kevin" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Tue, 27 Jun 2000 09:05:32 +0930 Try this - it understands CF, ASP and a stack of other stuff. Looks very

Re: Parsing Data to the same page

2000-06-23 Thread Brian Peddle
What you are attempting to do will not work this way. Cold Fusion processes the page on the server and returns HTML to the client. If someone choices something in select box 1, you cant run a query to get select box two unless you submit the page again. There are 3 options I know of. 1.

Re: Serialization failure

2000-06-20 Thread Brian Peddle
Your query could ber taking a very long time to execute. Do you use any OR statements in it? I ran into this problem for the first time a few weeks ago and altered the query and it has gone away. -- Original Message -- From: "Lincoln Manning" [EMAIL

Funny is a virus

2000-06-19 Thread Brian Peddle
Funny is a virus -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe'

  1   2   >