RE: Image size

2007-01-23 Thread Chad Gray
It depends on the CFX. You can load CFXs in 4.5 but it does not mean that all CFXs will run on 4.5. -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 1:14 PM To: CF-Talk Subject: RE: Image size Could someone pls clear this up for

application.cfc problems

2007-01-22 Thread Chad Gray
I am new to application.cfc and I am running into problems trying to use the onError function. I think I have narrowed it down to a cfabort in my onRequestStart function. I use it to log in users to the web site. If they don't have a session.UserName defined then I kick them to a login page

application.cfc problems fixed now i hit my real error

2007-01-22 Thread Chad Gray
Thanks Will, that did solve one of my problems. But now I am running into my original problem that I was trying to figure out by simplifying my onError function. On one of my pages when the user is adding a new record I do a pop up window so they can enter the new records information. When

WAS application.cfc problems NOW xml problems

2007-01-22 Thread Chad Gray
. Should I not store my XML as a session variable? Is there a better way of parsing the XML then this: cfif session.prefs.preferences.elementView.ElementStatus.XMLAttributes.view EQ true Chad -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, January 22, 2007 12:11

RE: WAS application.cfc problems NOW xml problems

2007-01-22 Thread Chad Gray
code version and if I refresh the page fast enough it crashes also. Here are the three errors I have seen so far I used cfdump var=#arguments.exception#. http://chadgray.info/misc/cferror.htm -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, January 22, 2007 4

database function

2007-01-18 Thread Chad Gray
Hello, I am new to cfc's, functions etc... I have a query that will be used many times and would like to keep the query code in a single file then just call that function when I need it. So say I do this: CFFUNCTION NAME=getSubPages RETURNTYPE=query CFARGUMENT NAME=pageID TYPE=string

RE: database function

2007-01-18 Thread Chad Gray
... Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Thursday, January 18, 2007 2:25 PM To: CF-Talk Subject: database function

application.cfc onError

2007-01-16 Thread Chad Gray
I have started using application.cfc and sending an email when an error occurs by placing a CFMail tag in the onError function. I have one user that when she is doing an insert on a table and is taken back to the display page I get this error emailed to me. Event Name: Error Info: Message:

CF patch installation problems

2007-01-12 Thread Chad Gray
http://www.adobe.com/support/security/bulletins/apsb07-02.html I shut down all of the services that the instruction say to. CF, IIS, and Windows Management Instrumentation service. I rename the current wsconfig.jar to wsconfig.jar.bu, copy the downloaded jar to the folder and run this command

OT: eclipse HTML GUI plugin

2007-01-08 Thread Chad Gray
Anyone recommend a GUI HTML editor for Eclipse? Kind of like Dreamweaver's Design view. I have a friend who is more designer than programmer and needs something free to edit pages in a graphic kind of way rather then coding HTML. Thanks!

upload excel to update database

2006-12-21 Thread Chad Gray
Anyone have any good ideas on letting a user upload an Excel sheet so they can update a database table? I can see how I could do this with CSV. Just us CFFile to read in the data and loop over it to update/insert into the database table. What about Excel?

RE: upload excel to update database

2006-12-21 Thread Chad Gray
In the server administrator? I don't see a datatype of excel? Nor do I see it in cfquery's dbtype= attribute. I don't understand. I want to do this all in a CF page. I don't want to manually import it into our MS SQL server. -Original Message- From: Claude Schneegans

RE: upload excel to update database

2006-12-21 Thread Chad Gray
Oh I see what you are saying... make the DSN in windows... then hook into that with the Administrator... This works for me and is better then what I tried below. In MS Access do an external link to an Excel file. Now the excel sheet is in Access as a table that I can query with CF. I

RE: upload excel to update database

2006-12-21 Thread Chad Gray
it appears that if you update the excel file and query the datasource again the updated data in the excel file does not appear. I wonder if it is being cached and how to purge it. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Thursday, December 21, 2006 12:30

RE: upload excel to update database

2006-12-21 Thread Chad Gray
:[EMAIL PROTECTED] Sent: Thursday, December 21, 2006 12:44 PM To: CF-Talk Subject: RE: upload excel to update database Use Sheet1$ -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Thursday, December 21, 2006 12:44 PM To: CF-Talk Subject: RE: upload excel to update

RE: upload excel to update database

2006-12-21 Thread Chad Gray
ago said that he was able to set up a generic excel DSN. I'll see if I can dig up that post for you. Chris Chad Gray wrote: That did not work.. maybe I have it setup wrong. [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Excel Driver] Syntax error in FROM clause

RE: upload excel to update database

2006-12-21 Thread Chad Gray
Ya, I ran into this. My work around was to put the excel file on my computer in the exact same path at the web server. The web server happened to store the files on the D drive. My D drive was my CD burner. So I burnt the path with Excel file onto a CD and mapped the Excel into the Access

application.cfc

2006-12-14 Thread Chad Gray
I am starting to use application.cfc and when I placed this function that I use to escape quotes I get an error. I have it in the onRequestStart function. Should I have it elsewhere? !--- escape quotes for javacript messages --- cfscript function escapeQuotes(str) {

RE: application.cfc

2006-12-14 Thread Chad Gray
: application.cfc You could just use jsstringformat() to escape strings in javascript ...:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 11:43 AM To: CF-Talk

RE: special characters in email

2006-12-14 Thread Chad Gray
http://en.wikipedia.org/wiki/Mojibake -Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 2:01 PM To: CF-Talk Subject: Re: special characters in email MOJIBAKE I'm so getting the japanese characters of that word as my first tattoo!

notify when server error occurs

2006-12-13 Thread Chad Gray
What is the best way to have an email sent with error information when a CF web site throws an error? Thanks! Chad ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

RE: notify when server error occurs

2006-12-13 Thread Chad Gray
=/views/footer.cfm /cfoutput HTH, Jon On Dec 13, 2006, at 3:27 PM, Chad Gray wrote: What is the best way to have an email sent with error information when a CF web site throws an error? Thanks! Chad

XML

2006-12-12 Thread Chad Gray
I am kind of new to handling XML in CF. Here is my basic XML data preferences elementView JID view=yes / SKU view=yes / ElementDescription view=yes / ElementType view=yes / TypeOfShot view=yes /

RE: XML

2006-12-12 Thread Chad Gray
Hehehe... you can send it to my email. cgray careyweb com -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 12, 2006 12:10 PM To: CF-Talk Subject: RE: XML The attachment should help you. Teddy Except this list strips all

OT: SQL question

2006-11-30 Thread Chad Gray
I am not a MS SQL guru and this bit of SQL is about as advanced as I get. I am basically doing a query on a table of catalogs and elements inside of the catalog. Each element has a history of status changes (new, in progress, done etc). I want to get the most current status for the element

CF Licensing

2006-11-09 Thread Chad Gray
Does CF licensing allow you to install CF Pro on two machines? One for development and one for production? If I remember right if you don't put a key in on install it goes into development mode, but you can only run one web site or was it you can only run pages with the loop back ip

RE: CF Licensing

2006-11-09 Thread Chad Gray
of IIS on desktop OSes only supports one web site, for example.) Mark -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Thursday, November 09, 2006 10:56 AM To: CF-Talk Subject: CF Licensing Does CF licensing allow you to install CF Pro on two machines

cfloop in a cfoutput

2006-11-07 Thread Chad Gray
I have run into this in the past, but never asked anyone why it occurred or if there is a better way of doing this. If I have a CFLoop inside of a CFoutput and inside the CFLoop I call a variable from the surrounding CFoutput query I get a blank. I have to set the variable as a local variable

RE: cfloop in a cfoutput

2006-11-07 Thread Chad Gray
=getPages form action= select name=Status cfloop query=getPageStatusTypes option cfif getPageStatusTypes.PageStatus EQ getPages.status[getPages.currentRow]SELECTED/cfif/option /cfloop /select /form /cfoutput -Original Message- From: Chad Gray [mailto:[EMAIL

RE: cfloop in a cfoutput

2006-11-07 Thread Chad Gray
I tried that one earlier and it did not work either. I have fixed it that was before also. That did not work. I get the same results. getPages.status is blank. Thanks though! -Original Message- From: Robert Harrison [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 07, 2006

SQL Question

2006-10-22 Thread Chad Gray
Im a little burnt out need some help. If I query a table that tracks the number of times a book was checked out and returned. I want to get the most recent item in the table to find the current status of the book. So I can find out if it is checked in or out. How do I write the SQL to

RE: SQL Question

2006-10-22 Thread Chad Gray
Thanks Kris! That makes sense. -Original Message- From: Kris Jones [mailto:[EMAIL PROTECTED] Sent: Sunday, October 22, 2006 10:12 AM To: CF-Talk Subject: Re: SQL Question select top 1 * from tablename order by datefield desc On 10/22/06, Chad Gray [EMAIL PROTECTED] wrote

find difference between CF errors

2006-10-19 Thread Chad Gray
Hello, I am wondering if there is a way to differentiate between CF Errors. Like I have a database that has a unique key setup so it will not allow two records with the same filename field and date field. If you try the insert you get the below CF error. Error Executing Database Query.

image scraping on ebay

2006-09-22 Thread Chad Gray
Any way to keep people from scraping images off of a web site? A client is having all kinds of problems with ebay people linking to their images. Thanks! ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

RE: image scraping on ebay

2006-09-22 Thread Chad Gray
, 2006 2:42 PM To: CF-Talk Subject: Re: image scraping on ebay is this you chad? if so, whats up, if not, whats up anyway :) make the images flash files, versus images? tw On 9/22/06, Chad Gray [EMAIL PROTECTED] wrote: Any way to keep people from scraping images off of a web site

RE: image scraping on ebay

2006-09-22 Thread Chad Gray
Must be a different Chad Gray... Sorry. Thanks for the flash tip though. I might have uses for that idea. -Original Message- From: Tony [mailto:[EMAIL PROTECTED] Sent: Friday, September 22, 2006 4:58 PM To: CF-Talk Subject: Re: image scraping on ebay new job @ careyweb

OT: scrolling table

2006-09-19 Thread Chad Gray
Anyone have a good solution to have the header row of a table stay where it is and make the data in the table scroll? Kind of like Excel... if you freeze panes you can make the header row with the column descriptions stay on the page, but you can scroll down into the data. I am trying to use

MySQL Front

2006-09-18 Thread Chad Gray
I logged onto http://www.mysqlfront.de/ today to find they are out of business. Anyone have a good MySQL front program? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion

Negative and positive

2006-09-17 Thread Chad Gray
I am working on an inventory system where people put in a number of items that are being taken out of inventory and put into inventory. The users are entering positive numbers. I need to store the number as a negative in the database if inventory is being removed. How do I convert the number

RE: Negative and positive

2006-09-17 Thread Chad Gray
: Chad Gray [mailto:[EMAIL PROTECTED] Sent: 17 September 2006 17:48 To: CF-Talk Subject: Negative and positive I am working on an inventory system where people put in a number of items that are being taken out of inventory and put into inventory. The users are entering positive numbers

OT: log files contain screen resolution

2006-09-13 Thread Chad Gray
Sorry for the off topic, but I cant find an answer so far. Can Apache's log files pick up the users screen resolution? Can any web servers's log files? Or is this something you need to add yourself to track? ~| Introducing

isdefined() error

2006-09-11 Thread Chad Gray
Isdefined is giving me an error when a form variable has a slash character in it. Error: Parameter 1 of function IsDefined, which is now Form.ItemRemove_/XP106, must be a syntactically valid variable name. Code: cfif IsDefined(Form.ItemRemove_ thisItemNum) What is syntactically valid for CF

SOT HTML Select

2006-09-11 Thread Chad Gray
With Windows applications I have seen where select boxes or drop down boxes you can Type information into the field or use the drop down to select a record. Can this be done with the HTML select tag? This way the user could enter information that does not already exist in the select.

inventory

2006-09-08 Thread Chad Gray
Anyone have an application written in CF that can do inventory? We need to track materials that we use. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by

MS security updates and CF MX 6

2006-08-14 Thread Chad Gray
Windows Server 2000 and recent updates do they affect CF 6? After apply windows security patches and updates, CF seems to have stop processing requests. HTML pages are displayed to user, but CFM pages are not. In the logs there are lots of complaints about DSN connections not working.

RE: MS security updates and CF MX 6

2006-08-14 Thread Chad Gray
using MS Access? The best thing would be to go to CF administrator and see if your datasources are still working, and if not find out why. Russ -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, August 14, 2006 11:39 AM To: CF-Talk Subject: MS security

server problems

2006-08-14 Thread Chad Gray
What is up with this? http://careyweb.com/Untitled-2.jpg Anyone see this happen before? Windows security patches were installed an now CF appears hosed. I dont know if this is an IIS thing or CF thing.

OT: CSS

2006-08-14 Thread Chad Gray
Say I want to apply color on text. I need to do it in the html itself. Here is what I ended up with how can I do it better? The p tag I have no control over. It is there to format the paragraphs. Is there a better tag other then a to apply a style to? pthe following text is the color a

RE: CSS

2006-08-14 Thread Chad Gray
://www.quilldesign.com - Original Message - From: Chad Gray [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, August 14, 2006 9:11 PM Subject: OT: CSS Say I want to apply color on text. I need to do it in the html itself. Here is what I ended up with how can I do it better

RE: text file difference

2006-08-13 Thread Chad Gray
/thread.cfm/threadid:34641#174620 It's too long to post, and not in good enough shape for cflib, but I can send it to you; 'specially if you want to clean it up and submit it to cflib. :denny On 8/12/06, Chad Gray [EMAIL PROTECTED] wrote: Does anyone have code to compare two chunks of text

RE: text file difference

2006-08-13 Thread Chad Gray
I am looking for a web based way of doing this. Subversion has a great diff tool and I would like to model it after it. Thanks anyway, I should have been more specific in my post. -Original Message- From: Kris Jones [mailto:[EMAIL PROTECTED] Sent: Sunday, August 13, 2006 9:26 AM To:

text file difference

2006-08-12 Thread Chad Gray
Does anyone have code to compare two chunks of text and highlight the difference between the two? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

SOT: Canvas Wiki

2006-08-09 Thread Chad Gray
I posted this question to Rays forum, but I am impatient and I am sure he is busy. I downloaded ModelGlue 1.1.00 and make it a mapping in CF: /ModelGlue C:\Inetpub\ModelGlue I download CanvasWiki and make it a mapping in CF: /canvasWiKi C:\Inetpub\canvas I go to http://localhost/canvasWiKi/

RE: SOT: Canvas Wiki

2006-08-09 Thread Chad Gray
/06, Chad Gray [EMAIL PROTECTED] wrote: I posted this question to Rays forum, but I am impatient and I am sure he is busy. I downloaded ModelGlue 1.1.00 and make it a mapping in CF: /ModelGlue C:\Inetpub\ModelGlue I download CanvasWiki and make it a mapping in CF: /canvasWiKi C:\Inetpub

RE: SOT: Canvas Wiki

2006-08-09 Thread Chad Gray
remember someone having a small issue with this, so if you have any trouble, just ping me. On 8/9/06, Chad Gray [EMAIL PROTECTED] wrote: So I also need a virtual mapping in IIS called CanvasWiki pointing to C:\Inetpub\canvas ? Ok that makes sense. (Add that to your documentation :)) Can you

OT: Eclsipse and CF help file

2006-08-08 Thread Chad Gray
Has anyone found a way to make ctrl-F1 load the Coldfusion help documentation like dreamweaver does? I am new to eclipse and cant figure out how to re-program the keys. ~| Introducing the Fusion Authority Quarterly Update. 80

RE: CRUD

2006-08-08 Thread Chad Gray
Now these are my kind of solutions! It fits right in with my spaghetti coding that I am so fond of. :) I will admit after playing with reactor it is pretty slick since it builds all of the back end CFCs for you. Thanks for the tips! Chda -Original Message- From: Aaron Rouse

CRUD

2006-08-06 Thread Chad Gray
Let me first start off I am not an OO kind of guy. I like things linear and easy to read. That is why I like CF. I have a few database tables that have hundreds of fields. Making forms and action pages to edit, insert and update the data into the tables is cumbersome and tedious. What tools

RE: CRUD

2006-08-06 Thread Chad Gray
a complete maintenance program. Kevin -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: 06 August 2006 15:47 To: CF-Talk Subject: CRUD Let me first start off I am not an OO kind of guy. I like things linear and easy to read. That is why I like CF. I have a few

CF_Wiki?

2006-08-06 Thread Chad Gray
So is there a CF based Wiki? I only know of php based ones. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a

OT: Eclipse and CSS

2006-08-02 Thread Chad Gray
Now that I have Eclipse running with RDS, CFEclipse and Subversion I need a plugin for CSS that will work with CFEclipse. Any recommendations? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,

RE: Eclipse and CSS

2006-08-02 Thread Chad Gray
:[EMAIL PROTECTED] Sent: Wednesday, August 02, 2006 11:21 AM To: CF-Talk Subject: RE: Eclipse and CSS How about Aptana? Someone blogged about it yesterday. http://www.remotesynthesis.com/blog/index.cfm/2006/7/31/Aptana-EclipseBa sed-Web-IDE -Original Message- From: Chad Gray

CFGrid

2006-08-02 Thread Chad Gray
On CFGrid when you turn on the delete button in edit mode selectmode=edit delete=true. The flash window grows some scroll bars and the delete button you have to scroll down to be able to push it. It does not matter how big you make the flash the scroll bars are always there. Anyway to keep

RE: CFeclipse and RDS

2006-08-01 Thread Chad Gray
they resolve the computer name just a guess. Oh well if anyone else cannot connect they should check out the CF server itself and make sure you can connect with the computer name and IP address of the computer over port 80. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED

RE: Security Cert, transferable?

2006-08-01 Thread Chad Gray
If your SSL cert becomes compromised or if you want to transfer the certificate to another server you can. If the servers are not compatible for what ever reason you can revoke the certificate and renew it by submitting a new CSR and receiving a new response. I have done this with Verisign,

RE: CFeclipse and RDS

2006-07-31 Thread Chad Gray
/blog/index.cfm/2006/7/28/Eclipse-RDS-Support I think it's only compatible with Eclipse 3.1 Mingo. Chad Gray wrote: I can't get Eclipse to connect to our CF server with RDS. I copied the folder: com.adobe.rds.client_0.5.0.0043 To the plugins folder of eclipse and I enter all of our RDS

RE: CFeclipse and RDS

2006-07-31 Thread Chad Gray
(so I can run the CFEclipse Beta), and have the RDS plugins working fine. I wrote a 'first impressions' article on my blog, with clarifying responses from Mike Nimer at Adobe. Cutter __ http://blog.cutterscrossing.com Chad Gray wrote: Thanks Mingo! I was not aware of this. I

OT: CFEclipse and Databases

2006-07-28 Thread Chad Gray
Any database tools for Eclipse that works well with CFEclipse? Need to connect to Microsoft SQL and MySQL. Thanks! ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion

RE: OT: CFEclipse and Databases

2006-07-28 Thread Chad Gray
://blog.cutterscrossing.com Chad Gray wrote: Any database tools for Eclipse that works well with CFEclipse? Need to connect to Microsoft SQL and MySQL. Thanks! ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard

RE: OT: CFEclipse and Databases

2006-07-28 Thread Chad Gray
a question for the Adobe folks. Hey Mike? You listening? Cutter _ http://blog.cutterscrossing.com Chad Gray wrote: Thank cutter I found the link a little earlier to hooking up RDS. I cannot get it to work though. Homesite can connect to the RDS server, but for some reason

SOT: Share Point running on a server with CF

2006-07-14 Thread Chad Gray
I don’t know any thing about MS Share Point. A client of ours is ask if they can install Share Point on a server that has CF installed on it. Are there any conflicts that will occur? Does Share point just run as a web site in IIS? Thanks, Chad

CF training in Akron/Cleveland

2006-06-28 Thread Chad Gray
Anyone know of places in Akron or Cleveland that provide Cold Fusion training? Thanks, Chad ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244988 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4

RE: Image processing

2006-06-27 Thread Chad Gray
ImageCR3 has no limit and it has never crashed our server. I am in the printing industry and I use ImageCR exclusively for our web based image re-purposing needs. I have a web based image approval system for our photography studio that currently has more then 5000 2500px X 2500px master images

SOT: Getting data into a web site

2006-06-13 Thread Chad Gray
Slight rant too let loose of some tension. You know what would be nice is if there was a way for a user sitting in their cubicle to be able to copy data from Excel and paste this data directly into a web page then hit submit to insert it into a database It has to be dummy proof! So

SQL question

2006-06-12 Thread Chad Gray
How would I write the SQL to update a record that has the most recent date? Say I want to change the status field to Approved where the date is the most recent and SKU = 12345 Will the Max function work in the Where section of the SQL or is there another function to use to find the most recent

RE: SQL question -- Thanks!

2006-06-12 Thread Chad Gray
Thanks for the answers... they all appear to do what I need. Thanks again, Chad ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243204 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

RE: FDF and coldfusion

2006-06-07 Thread Chad Gray
What/Where is Labs so I can keep an eye out for it. -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 07, 2006 12:21 PM To: CF-Talk Subject: RE: FDF and coldfusion Bryan, FYI, I plan on posting a tag to Labs soon that allows you to read and write PDF

RE: Best Multipart File Upload Tool? Recommend ation Needed

2006-06-06 Thread Chad Gray
Here is my favorite right now. It works on the Macintosh OSX platform which is important in my industry. http://www.unlimitedftp.ca/products/uupload/webdemo/ They only send to an FTP server. -Original Message- From: Jon Block [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 06, 2006

SOT: Java code to CF

2006-06-06 Thread Chad Gray
This iText stuff has got my interested peeked and I am going trough some of the Java examples on the iText web site. What is this line doing? And how do I rewrite it in CF? BaseFont bf = BaseFont.createFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED); If you want to see it

RE: SOT: Java code to CF

2006-06-06 Thread Chad Gray
Thanks everyone... I got it working! I did run into a problem with this error: Illegal operation 'm' inside a text object http://www.stillhq.com/ctpfaq/2002/03/c1088.html#AEN1425 I was trying to place text where I was placing images in my code and acrobat did not like that. Once I broke the

RE: CF Studio 5

2006-06-02 Thread Chad Gray
There was a tag update for Studio 5.0 when CF 6 came out, but I have not seen them for the latest versions of CF. Of course I have not looked either. I was using CF Studio 4.5 for the longest time then switched to Homesite. If you like Studio then give Homesite a shot. It is really close to

RE: CF Studio 5

2006-06-02 Thread Chad Gray
Ya I really like HS's find/replace. I use it all the time to format lists and data real quick. Search for CR/LF replace with comma and vice-versa love that. Take FORM fields out of the CF debugging and use find/replace to create my update/insert CFQuery structures. -Original

reseting the CF admin password

2006-06-01 Thread Chad Gray
Is there anyway to reset the CF administrator password? I have the development version on my laptop and I forgot the password because I don’t use it that often. Thanks! ~| Message:

OT: Web Based XML Creation

2006-05-31 Thread Chad Gray
Anyone know of any other products similar to this one: http://ektron.com/ewebeditproxml.aspx What I want is when a user fills out the forms the data is collected in an XML structure. I also want the Web based editor so developers don’t have to be involved to create the forms. I suppose I

need ideas

2006-05-27 Thread Chad Gray
We have a cold fusion based application used to create a job ticket that is printed out. This job ticket contains all the information needed to produce a job in our shop. The ticket is passed around in a job bag with job assets inside of the bag. To create a ticket the user basically enters

CFFTP and remove directory

2005-12-22 Thread chad gray
Has anyone written a module, CFC or tag to do a Remove Directory when the directory has folders and/or files in it. With FTP servers you cannot delete a folder unless it is empty. So you have to drill all the way in to the last folder in the directory structure and delete the files inside of

SPAM by forcing data into a form

2005-08-23 Thread chad gray
I have not kept up on the latest forms of spam delivery, but i got a bunch of messages in my inbox this morning where somone was systematically pasting the below code into each field of a form that uses CFMail to send an email. I am wondering if this is a way that spammers send mail? Is

Verity document limitations

2005-08-19 Thread chad gray
We are running CF MX 6.1 Standard and using two Verity collections for a web site. We are using Queries to input the data into the collections. One query has 2568 Records but when you do a #mySearch.recordsSearched# on the collection it only has 2495 records in it. Why did 73 records not get

Re: Verity document limitations

2005-08-19 Thread chad gray
yep.. i just ran the query with DISTINCT on my key and i got the same record count as what is in the verity collection. Thanks guys! Great Catch! ~| Logware (www.logware.us): a new and convenient web-based time tracking

Windows XP Tablet PC

2005-06-10 Thread chad gray
Anyone tried running CF on a Tablet PC OS? I dont know if the OS even has IIS. I would like to purchase a Tablet PC, but if i can't develop web sites on it then i have to go notepad. ~| Logware (www.logware.us): a new and

Re: Windows XP Tablet PC

2005-06-10 Thread chad gray
I am not familiar with Media Centre either. So you can install CF MX on the Tablet PC OS? it'll be like Windows Media Centre - pretty much Windows XP Home under the hood. That can run IIS, ~| Find out how CFTicket can

Verity K2

2005-06-02 Thread chad gray
I am having an aweful time with CF 6.1 installed on Linux. Verity is limited. You cannot do Chinese characters and you cannot index PDFs. Now i have never worked with Verity K2. I dont know it's true purpose and capabilities. If i take my Windows Version of CF 6.1 can i share out it's

RE: Verity K2

2005-06-02 Thread chad gray
Thanks Dave, Do i use the standard CFIndex, CFSearch to tap into the K2 collection once i have it hooked up? I just need to get this thing working now. I promised a client i can index PDFs and double byte characters. Well, i can on my Windows box, then low and behold i get sucker punched

Re: Verity K2

2005-06-02 Thread chad gray
Thanks for the Lucene suggestions. If i had two months to play with it to get it installed and configured i would try it out. It does appear you can do Chinese characters with it, but you need a special Analyzer. You can do PDFs but you need a special parser. I dont have time or patience to

RE: Verity K2

2005-06-02 Thread chad gray
At least they are taking the time to try it. I thought they would just search the docs and give me a guess. I have to double check... you are doing this on LINUX right? Please say yes, please say yes! Macromedia are checking?! Gotta love first line support (or as we call them...Manual

Re: Verity K2

2005-06-02 Thread chad gray
Apparently Solaris and Linux Verity are different. My PDFs have lots of text and index just fine on my windows CF server. If i try to index the PDFs on linux it just flat out ignores them. It did the three Word Docs that were in the folder, but not the PDFs. chad wrote: Verity is

RE: Verity K2

2005-06-02 Thread chad gray
You killing me Neil. You got my hopes up and squashed them like a bug. :) Linux...nah :-) I'm a Bill lover... ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

ColdFusion Forum software

2005-06-02 Thread chad gray
CF Forum is my favorite. http://www.cfcode.com/ ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware

Verity on Linux will not index PDFs

2005-06-01 Thread chad gray
Hello, I am having more troubles with Linux verity. I am using the following to index the files in a folder: cfindex collection=test action=update type=path key=/home/user/www/UserFiles/File/ urlpath=http://somesite/UserFiles/File/; extensions=.pdf, .doc custom1=pdf recurse=yes

Re: Verity and languages

2005-05-27 Thread chad gray
I have run into another problem. Apparently Linux can only do European languages with verity. All of the other OS's can so double byte like Chinese, Korean, Japanese etc... why cant Linux? Does anyone have a workaround or a way to get double byte languages in Linux verity???

<    1   2   3   4   5   6   7   8   9   >