Re: Flex3 and CF 8 connection problem

2008-05-03 Thread cf-talk
Hi Mike, thanks for your questions. I put the answers down below. Uwe Quick questions. 1. Are you running CF 8.0.0 or 8.0.1 CF 8.0.0 Do you think I should install the updater ? 2. What do you get when you enter that URL in the error message directly into your Web browser. Do you get a blank

Re: Flex3 and CF 8 connection problem

2008-05-03 Thread James Holmes
Can you post the Flex code you're using to connect? On Sat, May 3, 2008 at 4:14 PM, [EMAIL PROTECTED] wrote: Hi Mike, thanks for your questions. I put the answers down below. Uwe Quick questions. 1. Are you running CF 8.0.0 or 8.0.1 CF 8.0.0 Do you think I should install the

Re: Flex3 and CF 8 connection problem

2008-05-03 Thread Mike Chabot
Regarding the version number, no you don't need to upgrade. Someone reported a problem with Flex after upgrading. The source of the problem most likely relates to your answer to the second question. You should see a blank white page in CF 8.0.0. That is what I see. Is that a real URL, or did you

cfgrid, bind and more than 1 table

2008-05-03 Thread Richard White
Hi, we are using a cfgrid and want to bind more than 1 table to one grid but cannot find any examples. for example we have table1, table2, and table3 in our database. tables 2 and tables 3 both have foreign keys from table1 so i expect we will have to do some form of join. we want to use the

Re: CFdirectory under ColdFusion 8 (Standard)

2008-05-03 Thread Don L
On Fri, May 2, 2008 at 3:46 PM, Don L [EMAIL PROTECTED] wrote: cfdirectory directory=e:\blabla\bla2bla2\ action=list name=juiceFile type=file sort=directory DESC the Sort attribute failed (it did not list files in z to a order). 'directory' is only for recursive CFDIRECTORY calls. You

cfgrid, bind and more than 1 table

2008-05-03 Thread Richard White
Hi, we are using a cfgrid and want to bind more than 1 table to one grid but cannot find any examples. for example we have table1, table2, and table3 in our database. tables 2 and tables 3 both have foreign keys from table1 so i expect we will have to do some form of join. we want to use the

Re: insert /delet problem in coldfusion

2008-05-03 Thread Brian Kotek
The problem is that instead of posting these kinds of questions (which are usually just hundreds of lines of code with the request to fix it), Erik needs to read a book on ColdFusion and a book on SQL. I've asked (begged) him to do this so many times that my fingers are numb, but he just refuses

Re: Recommend a Workflow Engine in CF

2008-05-03 Thread P Kaps
Have you found anything in terms of a CF workflow engine? If not I am currently working on an open source workflow engine, I have the core complete and would like to help you out. -chris I'm looking for a state machine workflow engine written in (or easily consumed

Verity and PDF

2008-05-03 Thread Richard Steele
I want a user to search a pdf document (test.pdf) for a term and then go to the page that has that term on it. In Coldfusion 8, what would the cfindex tag look like to index test.pdf to do that? Is the page number returned? In other words, how can I link to that page?

onSessionend never fires

2008-05-03 Thread marc --
The subject says it all- I can't get my onSessionend to execute. For testing, all I do is a call to a log file. The sessionTimeout is 2 secs. I hit the page. Wait 2 secs. Hit the page again. Switch over to the Coldfusion administrator to the logging page. There is no log by the name of

Re: Verity and PDF

2008-05-03 Thread Raymond Camden
Verity determines how to parse the file based on the file type. You don't do anything special for PDF, you just index it like you would any other file or directory of files. I'd read the docs on cfindex and Verity. On Sat, May 3, 2008 at 4:03 PM, Richard Steele [EMAIL PROTECTED] wrote: I want a

Re: onSessionend never fires

2008-05-03 Thread Raymond Camden
Turn off application=true. I think that may be breaking your logging. Remember that in onSessionEnd, you only have indirect access (via arguments) to the session/application scopes. On Sat, May 3, 2008 at 4:39 PM, marc -- [EMAIL PROTECTED] wrote: The subject says it all- I can't get my

CFHTTP resolving URLS?

2008-05-03 Thread Nate Willard
Hello all, Quick question. If I have a URL such as: http://feeds.feedburner.com/~r/Techcrunch/~3/283066435/; Which resolves to: http://www.techcrunch.com/2008/05/03/yahoo-responds/; When I call http://feeds.feedburner.com/~r/Techcrunch/~3/283066435/; in the first CFHTTP, its automatically

Re: CFHTTP resolving URLS?

2008-05-03 Thread Mike Chabot
If you turn off redirection in the cfhttp tag you might be able to pull the new location out of the cfhttp.responseHeader variable, such as cfhttp.responseHeader['location']. You wouldn't end up at your final destination though and would have to call cfhttp again to get the content. If you do a

Split data over multiple mysql tables or leave in 1 table

2008-05-03 Thread Scott Stevens
I'm building an application where the amount of data in a table will be growing fairly quickly. The particular application is a little complicated to explain, so for simplicity, let's say I was building a blog app in the following enviroment. Linux server w/apache MySQL 4.1 Coldfusion 7.02 I