RE: Problem with relational tables

2005-11-14 Thread Mark Henderson
The visual wizard is pretty nice if you don't try to get TOO complex. One can drag the tables then drag the fields for the join then drag them for the select in the "Design View". Once you have it all dialed in and returning the data you expect, then just switch to the "SQL View" and see what it

Re: Open source shopping cart

2005-11-14 Thread dave
I see it as making it useful for the mass amount of the users. I don't see how making it 00 for the 10 people who want it 00 over the probably thousands of people who would prefer it not to be. Most people don't have a clue what 00 even is so why force them to use it? because they won't. I know

FW: Open source shopping cart

2005-11-14 Thread Mike | NZSolutions Ltd
Have you heard any further on the cfopen project andy ?? I agree with marty, we are lacking a project manager for this project. Are we all agreed that dave's site cfdeveloper.co.uk is the base site for this project ? mike -Original Message- From: Andy [mailto:[EMAIL PROTECTED] Sent: Thu

RE: cfschedule

2005-11-14 Thread Dawson, Michael
Make sure you have all the updaters installed. M!ke -Original Message- From: Sam Komo_ITS [mailto:[EMAIL PROTECTED] Sent: Monday, November 14, 2005 4:26 PM To: CF-Talk Subject: cfschedule Hi Guys, I have a scheduled job that runs every 8 hrs [7AM, 3PM, 11PM]. The job now runs one hou

RE: cfschedule

2005-11-14 Thread Dawson, Michael
Run the schedule every hour and have the script check the correct time. If the time is correct, then continue processing. Otherwise, abort and wait for later. M!ke -Original Message- From: Sam Komo_ITS [mailto:[EMAIL PROTECTED] Sent: Monday, November 14, 2005 4:26 PM To: CF-Talk Subjec

Re: Open source shopping cart

2005-11-14 Thread Marty Johll
It's my opinion that this project is lacking focus in 2 very import areas and John touches on one of them. First, who is the intended audience of this project? Define that and many questions will start to be answered. Second, what's its purpose? Or said another way, what is its functionality, is

Re: Open Laszlo and CF

2005-11-14 Thread dave
well i remember they were going to post us some code and show us then they dissappeared. WIth the drop in flex's price coming I don't see any reason to even concider laszlo, I mean you could try it nad heres what I would try. Just make a simple "connect to db" app and see what all you will have

Re: Open source shopping cart

2005-11-14 Thread John C. Bland II
Fella's, I have to back out of working on this project (conflict of interest; my company is building an enterprise e-comm project). Sorry. I do want to respond to the OO portion before I completely sign off of this task. <2cents willRespond="only if necessary"> Making it OO will only alienate tho

RE: Open source shopping cart

2005-11-14 Thread Paul
With respect, I couldn't disagree more. There may be no better way to learn OO than by example, and once you grasp some basics you become immediately aware of what you've been missing and how nice it is to have everything in its proper place. Plus if it were done properly in OO, it would get more

RE: Problem with relational tables

2005-11-14 Thread Ian Skinner
Ian, I'd just pulled up SQL Query analyzer to see if I could get this to work as you replied, but now I'll be checking out the visual wizard as per your advice. I knew it had to with joins, but that was it. Your answer works perfectly btw, much appreciated. Mark The visual wizard is pretty n

Re: Open source shopping cart

2005-11-14 Thread dave
Personally, I don't think that it would be good to go 00 at all. After all there are very few people who ACTUALLY use 00 and I see this as a 2 fold project, one to get us a good cart system and two to help get a few people over to cfm and lets be real, probably 95% of the people who would use thi

RE: Problem with relational tables

2005-11-14 Thread Mark Henderson
Thanks Matthieu, I'll have a play with your suggestion also (for educations sake, though it's working now with Ian's reply). Mark ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http:/

cfschedule

2005-11-14 Thread Sam Komo_ITS
Hi Guys, I have a scheduled job that runs every 8 hrs [7AM, 3PM, 11PM]. The job now runs one hour earlier because of the daylight savings time. What can be done to make sure it run at the specified times. Thanks Sam --- [This E-mail scanned for viruses.] ~~~

RE: Problem with relational tables

2005-11-14 Thread Mark Henderson
Ian, I'd just pulled up SQL Query analyzer to see if I could get this to work as you replied, but now I'll be checking out the visual wizard as per your advice. I knew it had to with joins, but that was it. Your answer works perfectly btw, much appreciated. Mark ~~~

Best way to unix crypt() on windows cfmx?

2005-11-14 Thread Jon Block
Whats the best way to use the unix crypt() function on windows cfmx 7? Jon This electronic message transmission contains information from Collegiate Funding Services, LLC or its subsidiaries or affiliates that may be confidential or privileged. The information is intended to be for the

RE: Problem with relational tables

2005-11-14 Thread Cornillon, Matthieu \(Consultant\)
Mark, If I understand you correctly, all you need to do is a join in your query. Rather than having two queries, just have one: SELECTdistrict_plan_documents.COLUMNNAME, district_plan_section_headings.DP_Heading FROM district_plan_section_headings INNER JOIN district_plan_document

RE: Problem with relational tables

2005-11-14 Thread Ian Skinner
This is a basic join problem: SELECT* FROM district_plan_documents ORDER BY DP_catID, Line_Order SELECT* FROM district_plan_section_headings ORDER BY DP_catID SELECT * FROM District_plan_document plan INNER JOIN district_plan_section_headings

Re: Losing session vars

2005-11-14 Thread Alan Rother
Glad I could help =] -- Alan Rother Macromedia Certified Advanced ColdFusion MX 7 Developer ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?

RE: Truncated error

2005-11-14 Thread Mike | NZSolutions Ltd
I have just found the following thread... http://www.knowmysize.com/blog/index.cfm?c=SQL&mode=cat&catid=13C03BEC-7 E9C-B5BD-B8DC464AF6CB114D&dv=bycat -- I have just experienced an issue with CF7/SQL Server with CFQUERYPARAM with a SQL error. I attempted to use the sql type of cf_sql_

Problem with relational tables

2005-11-14 Thread Mark Henderson
Small problem with relational tables and displaying the correct titles. Here's my problem. I have two tables in an access database (yes I know!). One called district_plan_documents, the other district_plan_section_headings. In the documents table there is a field called DP_catID (where 5 entries

Re: Truncated error

2005-11-14 Thread Steve Bryant
Mike, I wouldn't trust the line number of the error. In my experience, ColdFusion often reports a line number equal to one or two lines above . ColdFusion just compiles some SQL and sends it to SQL Server. Since SQL Server doesn't specify which field is causing the problem, ColdFusion doesn't k

RE: Truncated error

2005-11-14 Thread Mike | NZSolutions Ltd
Hmmm, that is weird this is the first time I have seen the error occur - up to today orders have been coming through fine ? mike -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED] Sent: Tuesday, 15 November 2005 9:48 a.m. To: CF-Talk Subject: Re: Truncated error my guess w

Re: Truncated error

2005-11-14 Thread Marlon Moyer
my guess would be that it's trying to pass "true" or "false" as a string and not a 0 or 1. You might try to something like Then use #updates# in your query. On 11/14/05, Mike | NZSolutions Ltd <[EMAIL PROTECTED]> wrote: > (I made this question a bit shorter !!) > > Hi guys, > > I am getting a

cfdocument and footer troubles

2005-11-14 Thread Anthony Prato
I'm working on a document that sometimes requires two pages. This is based on the number of items returned by a query. When two pages are needed I would like both pages to have "page x of 2" on the right footer and something like "See next page" on the center of the footer on the first page only. T

Re: Losing session vars

2005-11-14 Thread Cedric Villat
Thanks for the tip. I ended up using the Web Developer extension to just delete the session/domain cookies, then retried everything and it worked as expected. Thanks! Cedric >Tha should do it. > Any yes, you should be able to just dump the cookies, or if you have >firefox installed you can get

Truncated error

2005-11-14 Thread Mike | NZSolutions Ltd
(I made this question a bit shorter !!) Hi guys, I am getting a strange error, below is a function that adds a cutomers details to a table ... INSERT INTO address_book (... customer_updates) VALUES (

Re: list question

2005-11-14 Thread Qasim Rasheed
I believe you can use something like this HTH Qasim On 11/14/05, Bryan Stevenson <[EMAIL PROTECTED]> wrote: > oops...yep...my bad...thanks for the catch Barney ;-) > > Bryan Stevenson B.Comm. > VP & Director of E-Commerce Development > Electric Edge Systems Group Inc. > phone: 250.480.0642 >

Re: Losing session vars

2005-11-14 Thread Alan Rother
Tha should do it. Any yes, you should be able to just dump the cookies, or if you have firefox installed you can get a really great extension set for it called the Web Developer extension set 0.9.4. It allows you to view the cookies you have set on your browser and it will show you the exact domai

Re: interesting cfqueryparam activity

2005-11-14 Thread Deanna Schneider
What Marlon said - but also the issue could be that your DB is making a plan based on the first version of the prepared statement that's getting sent in - which may not be the most effecient plan for all the possible versions of data that could get sent in the query param. On 11/14/05, Ryan Guill

Re: list question

2005-11-14 Thread Bryan Stevenson
oops...yep...my bad...thanks for the catch Barney ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com ~~

Truncated error

2005-11-14 Thread Mike | NZSolutions Ltd
Hi guys, I am getting a strange error, below is a function that adds a cutomers details to a table INSERT INTO address_book (cu

Re: list question

2005-11-14 Thread Ray Champagne
Hey, thanks again Barney. That was the simplest way to get around my problem. Barney Boisvert wrote: > Because CF ignores 'null' list items. So sequential commas are > treated as a single comma. Easiest solution is to do this: > > > > which will add a space to the end of each list element,

Re: list question

2005-11-14 Thread Charlie Griefer
#myList# ? > > -Original Message- > > From: Ray Champagne [mailto:[EMAIL PROTECTED] > > Sent: Monday, November 14, 2005 2:38 PM > > To: CF-Talk > > Subject: list question > > > > can anyone tell me why this list: > > > > 2,1,250,This transaction has been > > declined,,P,0,,,101.00,,aut

Re: list question

2005-11-14 Thread Barney Boisvert
Because CF ignores 'null' list items. So sequential commas are treated as a single comma. Easiest solution is to do this: which will add a space to the end of each list element, including the 'null' ones, thereby making CF recognize them. Just make sure to strip the trailing space after you g

Re: list question

2005-11-14 Thread Barney Boisvert
If you have this list "a,b,,,e", doing that replace will return "a,b, ,,e", which isn't what you want. You have to do it per-comma (as I proposed), or run it twice. cheers, barneyb On 11/14/05, Bryan Stevenson <[EMAIL PROTECTED]> wrote: > CF ignores empty elementsdoesn't that suck ;-) > > tr

Re: list question

2005-11-14 Thread Ryan Guill
Dov is right, empty list elements are ignored. There is a udf on cflib.org that will turn a list into an array, with elements for empty list items. http://cflib.org/udf.cfm?ID=1022 You could pretty easily write something yourself as well. On 11/14/05, Katz, Dov B (IT) <[EMAIL PROTECTED]> wrote:

Re: list question

2005-11-14 Thread Ray Champagne
Well, I wonder why that is set to be like that. I'll look into using java. Thanks. Katz, Dov B (IT) wrote: > Looks like consecutive delimiters are ignored... > > http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/functb15.htm#wp11 > 07782 > > I wish they had the same option as java.util.St

Re: list question

2005-11-14 Thread Bryan Stevenson
CF ignores empty elementsdoesn't that suck ;-) try doing a replace of ",," with ", ," and then you can check to see if the element is empty using Len(Trim()) HTH Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax:

Re: Open source shopping cart

2005-11-14 Thread Cutter (CF-Talk)
Were I not in the process of transitioning out of one position, relocating, and into a new position, then I would be offering my assistance immediately. However, as I won't have an internet connection for a while (much less the packing, moving, unpacking, etc.) I'll have to wait until I'm settl

Re: list question

2005-11-14 Thread Jerry Johnson
Because the default delimiter for a list is a comma (,), and the example you gave has only 9 values in the list (between commas that are not empty). Remember that CF ignores empty list values when counting (so "a,,b,,,c," is really just "a,b,c") On 11/14/05, Ray Champagne <[EMAIL PROTECTED]> wro

RE: list question

2005-11-14 Thread Katz, Dov B \(IT\)
Looks like consecutive delimiters are ignored... http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/functb15.htm#wp11 07782 I wish they had the same option as java.util.StringTokenizer which can choose to ignore or count empty tokens -dov -Original Message- From: Ray Champagne [

list question

2005-11-14 Thread Ray Champagne
can anyone tell me why this list: 2,1,250,This transaction has been declined,,P,0,,,101.00,,auth_capture,,69804B3D450BEF23DEFA3646C7BBB430 is seen as a 9-item list in CF? I'm trying to loop over the list (which is dynamic, this is just one example), and output the list

Re: big reports, 13k lines

2005-11-14 Thread Tony
yah it is dontcha know tw On 11/14/05, Douglas Knudsen <[EMAIL PROTECTED]> wrote: > I'm not a seequel server person, but I'd imagine a DTS thingy or SP > would be useful for this. In Oracle, I'd say an SP at least. > > 13k rows is a helluva lot of RAM in CF, eh? > > DK > > On 11/14/05, Tony <[EM

Re: big reports, 13k lines

2005-11-14 Thread Douglas Knudsen
I'm not a seequel server person, but I'd imagine a DTS thingy or SP would be useful for this. In Oracle, I'd say an SP at least. 13k rows is a helluva lot of RAM in CF, eh? DK On 11/14/05, Tony <[EMAIL PROTECTED]> wrote: > hola peeps. > > when dealing with a large report, from sql server, how d

Re: Search results help?

2005-11-14 Thread Charlie Hanlon
Les, then, on the item view pages: And then using some list functions you will be able to get the next and previous ids out of the client.srchRsltsIDs variable. hth Charlie Hanlon Web Apps Developer Food Service Enablers, Inc. www.fsenablers.com The People. The Platform. The Pr

RE: Search results help?

2005-11-14 Thread Bobby Hartsfield
You can put the array in the session scope or just open the results in a new window. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Les Irvin [mailto:[EMAIL PROTECTED] Sent: Monday, November 14, 2005 2:09 PM To: CF-Talk Subject: Search re

Re: Search results help?

2005-11-14 Thread Ryan Guill
you could store it in the session... On 11/14/05, Les Irvin <[EMAIL PROTECTED]> wrote: > I have created a search page which may return, for example, 20 records > referenced by ID numbers. I'd like the user to be able to browse through > the result set one at a time - a page for each record in the

Re: problems implementing Ultraseek Java API

2005-11-14 Thread E . Harvey
Seems there was a problem with version 2.20 of the Ultraseek xpasearch.jar file. We installed a previous version of the xpasearch.jar file and it ran without any problems. > We're struggling to use the Verity Ultraseek Java XPA Search API with > CFMX 7 (Windows 2000, IIS, SQL Server 2000). Has

Search results help?

2005-11-14 Thread Les Irvin
I have created a search page which may return, for example, 20 records referenced by ID numbers. I'd like the user to be able to browse through the result set one at a time - a page for each record in the set. How do I maintain and reference that set of ID numbers as the user browses across man

Re: Losing session vars

2005-11-14 Thread Cedric Villat
Alan, I have the setdomaincookies set to Yes, and even restarted the server in hopes it would take affect. Do I need to set this in conjunction with something else? I suppose I can dump the cookie for both www.mysite.com and secure.mysite.com and make sure that the cfid/cftoken are the same.

RE: big reports, 13k lines

2005-11-14 Thread Jim Davis
> -Original Message- > From: Tony [mailto:[EMAIL PROTECTED] > Sent: Monday, November 14, 2005 12:54 PM > To: CF-Talk > Subject: Re: big reports, 13k lines > > h, not sure how to do the one thing you said, > > > SELECT A.Col1 + "," + A.Col2 + "," + A.Col3 AS Row This just selects all

Can client.cfid and client.cftoken not exist?

2005-11-14 Thread Cornillon, Matthieu \(Consultant\)
Hi, everyone. Is it possible for Client.CFID and Client.CFTOKEN to not exist? With the exception of a read immediately following a StructClear or StructDelete statement, it seems to me that this gets set during the transfer of information between the server and the client before any ColdFusion pr

Re: Open Laszlo and CF

2005-11-14 Thread Jerry Johnson
Nope, but if you come up with a good example or solution, I'd love to see it. On 11/14/05, Bryan Stevenson <[EMAIL PROTECTED]> wrote: > Anybody? ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket applicat

Re: Losing session vars

2005-11-14 Thread Alan Rother
Cedric, Make sure you are setting domain level cookies. That is the part of the cfapplication tag setdomaincookies="Yes" If you do not do this then your sessions are only available to the exact domain you specify. HTH =] -- Alan Rother Macromedia Certified Advanced ColdFusion MX 7 Developer

Re: rss feed

2005-11-14 Thread Marlon Moyer
Nope, just insert your processing code as shown below and you should be fine. On 11/14/05, daniel kessler <[EMAIL PROTECTED]> wrote: > Since this is CFContent, I can only have the xml to export on the page, right? > Currently I do other things on that page too and wasn't sure how to handle > it,

Re: Zip Performance?

2005-11-14 Thread John C. Bland II
I use zip cfc on a project and couldn't visually tell a difference between it being used and not being used. Its also terribly easy to implement. I downloaded it originally from the MM exchange: http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131&extID=1026507 and by googling I found

RE: Module Security

2005-11-14 Thread Rich Kroll
Can you give me some more info on your framework (url?). Is this an open source project, as I would love to see how you've developed some of this functionality? Rich Kroll Application Developer -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Monday, November 14, 2005 10:0

Re: Open Laszlo and CF

2005-11-14 Thread Bryan Stevenson
Anybody? Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original Message - From: "Bryan Stevenson" <[EMAIL PROTECTED]> To

Re: rss feed

2005-11-14 Thread daniel kessler
Since this is CFContent, I can only have the xml to export on the page, right? Currently I do other things on that page too and wasn't sure how to handle it, so that's why I looked at CFFile at all. CFContent has worked for me in the past otherwise. >I've used this in the past for exporting o

Zip Performance?

2005-11-14 Thread Emmet McGovern
Out of all the zip tags and functions available does anyone know which is the fastest with the best compression. I have an app that's creating 1gig zip files of directories and I'm not entirely sure how to handle the wait time while the zip is being created. I only have experience with Bens CFX_Z

Re: rss feed

2005-11-14 Thread daniel kessler
Since this is CFContent, I can only have the xml to export on the page, right? Currently I do other things on that page too and wasn't sure how to handle it, so that's why I looked at CFFile at all. CFContent has worked for me in the past otherwise. >I've used this in the past for exporting o

RE: rss feed

2005-11-14 Thread Dawson, Michael
I just use: mailto:[EMAIL PROTECTED] Sent: Monday, November 14, 2005 11:37 AM To: CF-Talk Subject: Re: rss feed I've used this in the past for exporting only the information wanted and no whitespace: writeoutput("stuff you want to output"); On 11/14/05, daniel kessler <[EMAIL PROTECTED]>

Re: big reports, 13k lines

2005-11-14 Thread Tony
h, not sure how to do the one thing you said, > SELECT A.Col1 + "," + A.Col2 + "," + A.Col3 AS Row but, the problem is, the data comes to cf, for some processing, some logic and other stuff, it isnt just a straight dump :( the offline activity is the next idea im trying out, and with the dir

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Claude Schneegans
>>It is a result of intentional design. Ah ok. Then I suppose that CFDUMP var="#cgi# will show only the exitence of usual varables. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Claude Schneegans
>>I believe what it is is that CF 'knows' it gets certain CGI vars, which it puts in the CGI struct. If you ask for something CF doesn't explicitly know about, it will query the web server for that variable, and the web server will return an empty string no matter what you pass it - try dumping 'c

Re: Losing session vars

2005-11-14 Thread Cedric Villat
Tom, How would I go about checking that? Cedric >On Monday 14 November 2005 01:20, Cedric Villat wrote: >> their cart, etc. Short of adding the CFID and CFTOKEN to every link on the >> site, is there a way around this? I already have setDomainCookies set in my >> cfapplication, hoping that would

Re: rss feed

2005-11-14 Thread Marlon Moyer
I've used this in the past for exporting only the information wanted and no whitespace: writeoutput("stuff you want to output"); On 11/14/05, daniel kessler <[EMAIL PROTECTED]> wrote: > I'm creating an RSS feed from our What's New database table. > > I've had problems using CFContent becaus

RE: big reports, 13k lines

2005-11-14 Thread Jim Davis
> -Original Message- > From: Tony [mailto:[EMAIL PROTECTED] > Sent: Monday, November 14, 2005 10:00 AM > To: CF-Talk > Subject: big reports, 13k lines > > hola peeps. > > when dealing with a large report, from sql server, how do you > as a best practice deal with getting it into a CSV fil

RE: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Figy, Kam
I had a similar issue a while ago where I discovered I could access system environment variables (CGI.systemroot, for instance) when using apache. I believe what it is is that CF 'knows' it gets certain CGI vars, which it puts in the CGI struct. If you ask for something CF doesn't explicitly know

RE: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Dave Watts
> So, it IS a flaw, if not a bug. It is arguably a flaw, but certainly not a bug. It is a result of intentional design. It is also documented: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/h tml/wwhelp.htm?context=ColdFusion_Documentation&file=part_dev.htm Dave Watts

rss feed

2005-11-14 Thread daniel kessler
I'm creating an RSS feed from our What's New database table. I've had problems using CFContent because there must not be any other content on the page. What I really want to do is after a SQL UPDATE or INSERT is create the RSS xml file. Should I use CFContent or CFFile in this case? Any tips

RE: Open source shopping cart

2005-11-14 Thread Snake
The forum is setup and people are using it. -Original Message- From: Aldon [mailto:[EMAIL PROTECTED] Sent: 14 November 2005 16:42 To: CF-Talk Subject: RE: Open source shopping cart NEXT MOVE? Or is this closed all over again... -Original Message- From: dave [mailto:[EMAIL PROTE

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Claude Schneegans
>>Notice that there are CGI vars visible to ASP, but not to CF. >>This is all part of the mystery. IMO there is no mystery: cgi variables are HTTP server creatures, no doubt. But as far as CF is able to get the whole list of them, there is no reason it could not say if one belongs to that list

Re: interesting cfqueryparam activity

2005-11-14 Thread Marlon Moyer
I think it has to do with the fact that using queryparam makes CF generate a prepared statement. If you do a profile of what statements actually get sent to the database when using queryparam you'll notice a lot more than just sql in it. On sqlserver what gets passed is actually t-sql where param

Re: Slowing down CFMAIL revisited

2005-11-14 Thread Tony
this is hands down the best, most CERTAIN to get all mails out script i have found, used and implemented perfectly. http://mysecretbase.com/Slowing_Down_CFMail_2004.cfm or http://www.antiwrap.com/?771 hth tony On 11/13/05, Matt Robertson <[EMAIL PROTECTED]> wrote: > Les Mizzell wrote: > > wha

RE: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Dawson, Michael
I don't know if this helps, but look at this ASP CGI dump. http://indyalumni.evansville.edu/ Notice that there are CGI vars visible to ASP, but not to CF. This is all part of the mystery. As far as my comments, I vaguely remember reading a post/article a year or so back that said CGI variables,

RE: Module Security

2005-11-14 Thread Dawson, Michael
Just to be clear, I don't use Windows permissions to control access to the pages. I use Windows groups to let me control access to any particular line of code in my page. In other words, I don't use NTFS security other than just requiring the browser to authenticate the user. M!ke -Original

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Claude Schneegans
>>I suppose what's hapening is that there is no way to ask the HTTP server if some variable is defined or not. No, this is not what's hapening, since the structKeyExists function seems to work well. Also, CFDUMP on cgi scope lists all of them, so CF manages to get the list of all existing cgi v

interesting cfqueryparam activity

2005-11-14 Thread Ryan Guill
Hey guys, This isn't so much a question as a discussion. We are using cfmx 7 with an iseries (v.5r2) as/400 box, through a client access odbc driver. Now, this isn't your run of the mill iseries, its a very beefy box with quad processors and a ton of memory (5gigs I think). We have used cfquery

big reports, 13k lines

2005-11-14 Thread Tony
hola peeps. when dealing with a large report, from sql server, how do you as a best practice deal with getting it into a CSV file, elegantly without the server timing out, and killing resources? i am using query2csv, which is ok, but the query takes nearly four minutes to run, then whatever time

RE: Open source shopping cart

2005-11-14 Thread Aldon
NEXT MOVE? Or is this closed all over again... -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Friday, November 11, 2005 12:16 AM To: CF-Talk Subject: Re: Open source shopping cart is that 2? ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorer

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Claude Schneegans
>>In my experience the cgi variables are related to the webserver you are using, for example you will have different cgi variables with iis than you will with apache. This is right. However CF is able to find them, whatever they are. I suppose what's hapening is that there is no way to ask the H

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Ryan Guill
In my experience the cgi variables are related to the webserver you are using, for example you will have different cgi variables with iis than you will with apache. Could this have something to do with it? What webserver are you using? On 11/14/05, Claude Schneegans <[EMAIL PROTECTED]> wrote: >

RE: CF 7.0 and Verity K2

2005-11-14 Thread Jim Curran
Yeah, Category support is turned off... Oh well. - j -Original Message- From: Jeff Garza [mailto:[EMAIL PROTECTED] Sent: Sunday, November 06, 2005 3:09 PM To: CF-Talk Subject: RE: CF 7.0 and Verity K2 That was noted during the beta... It is part of the trade-off of having much faster

OT RE: We're Okay

2005-11-14 Thread Rick Faircloth
Glad you and Tiff weathered the storm ok, Isaac. I'm sure you're glad to get back some of the basics of life...like electicity...(and Internet connectivity ;o) Everything a llittle more in order now? Rick > -Original Message- > From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] > Sent: Sa

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Claude Schneegans
>>Application servers cannot know what CGI variables are passed to it. I don't see your point, when they are requested to use one of them, they do find it, no? So when I ask CF if it is defined, it shouldn't say yes if it is not. This bug is present in CF5, CF6 and CF7. -- ___

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Claude Schneegans
>>What version of cf are you using claude? I have all of them, well almost: CF5, CF6 and CF7, they all yield the same result. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this addre

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Ryan Guill
What version of cf are you using claude? On 11/14/05, Claude Schneegans <[EMAIL PROTECTED]> wrote: > >>The structKeyExists function seems to work well > > This confirm that the flaw with isdefined is a bug. > > -- > ___ > REUSE CODE! Use custom tags; > See htt

RE: Module Security

2005-11-14 Thread Snake
I have created a roles based security model that is part of my framework. Create a resource. Create permissions for that resource. Create groups. Assign resourecs and permissions to that group. Assigns a user to groups. When a user logs in, all the permissions for the groups they are a member of

Re: Having a mulit-instance service run under a specific service.

2005-11-14 Thread Andy Allan
The user account will need access to /lib/wsconfig/. It will also need access to /logs and it's CFIDE folder. I think there's one other location it needs access to as well - may be easier just to give it modify permission on /servers/ as well as the wsconfig folder. Andy On 08/11/05, Ian Skinner

Re: Losing session vars

2005-11-14 Thread Thomas Chiverton
On Monday 14 November 2005 01:20, Cedric Villat wrote: > their cart, etc. Short of adding the CFID and CFTOKEN to every link on the > site, is there a way around this? I already have setDomainCookies set in my > cfapplication, hoping that would fix it, but no. What is the contents of the actual co

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread Claude Schneegans
>>The structKeyExists function seems to work well This confirm that the flaw with isdefined is a bug. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Th

RE: Module Security

2005-11-14 Thread Rich Kroll
It was mandated that I build in group permissions that could be overridden by specific user permissions, similar to the NT security model. Unfortunately, AD won't work for me because I need to lock down parts of a specific page, while still having the containing page respect different rights. Rich

Re: Error found by CF45 but Not CFMX7?

2005-11-14 Thread C. Hatton Humphrey
> Basically, what you are doing inside the loop is unnecessary, you already > have a cfoutput on the page. Correction, the original author of the tag did that, not me. I have it on my agenda to clean all those out, I was more making reference to the fact that the bug didn't get caught in CFMX 7

Re: OT: Ruby on Rails hey, read this one.

2005-11-14 Thread John Paul Ashenfelter
On 11/11/05, Mark Fuqua <[EMAIL PROTECTED]> wrote: > Good morning, > > Could one of the guys who has done work with RoR work through the tutorials > for PLUM? It seems to me the two have similar features. It would have to be > someone who doesn't mind working on a windows machine (rules out Sean,

Re: Is this a bug,... or an undocumented feature?

2005-11-14 Thread wolf2k5
On 11/14/05, Claude Schneegans <[EMAIL PROTECTED]> wrote: > > CGI.whateverYouPutHere = [#CGI.whateverYouPutHere#] > CGI.whateverYouPutHere not defined > > > Always displays > CGI.whateverYouPutHere = [] Hi, The structKeyExists function seems to work well (tested with ColdFusion MX 6.1 with

RE: Module Security

2005-11-14 Thread Dawson, Michael
Rather than create a hierarchical structure of permissions, I only use Active Directory group membership. If you are in the appropriate AD group, you have access. I can pass in multiple groups if that applies as well. It works quite well for me since our organizational structure is not very deep

Re: OT: Ruby on Rails hey, read this one.

2005-11-14 Thread Ken Ferguson
Oh yeah, don't get me wrong. I looked at it for a couple of weeks and was REALLY impressed. Adam and David have done incredibly strong work. They probably picked the correct databases to support in the beginning too, given the limited resources... If I could change what I use at work to fit aro

Module Security

2005-11-14 Thread Rich Kroll
Hello all, I am in the process of trying to develop a new security model for a project I am working on. I've developed the base model with a hierarchy of permissions to access areas of the application. My problem is that now I need to extend this to control certain modules within a page. These m

RE: OT: Ruby on Rails hey, read this one.

2005-11-14 Thread Mark Fuqua
The latest update concerning supporting additional databases, (and other updates) was a call for interested parties to help with the porting. The plan is to open up further development to the community. I know you are not alone in wanting MYSQL support, but I think, being as it is a freely suppli

  1   2   >