(admin) Please test Fusion Authority

2004-10-17 Thread Michael Dinowitz
I've moved Fusion Authority (www.fusionauthority.com) over to Blackstone. I'd appreciate it if people test it out and report any errors to me off list. Once I know FA is 100%, then HoF will be moved over as well. Thanks. -- Michael Dinowitz House of Fusion http://www.houseoffusion.com Finding

RE: (admin) Please test Fusion Authority

2004-10-17 Thread James Holmes
Isn't this another NDA violation? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, 17 October 2004 4:09 To: CF-Talk Subject: (admin) Please test Fusion Authority I've moved Fusion Authority (www.fusionauthority.com) over to Blackstone. I'd appreciate

Re: (admin) Please test Fusion Authority

2004-10-17 Thread Michael Dinowitz
Actually, no. This is a special case where Macromedia has asked certain high traffic sites to use Blackstone in order to make sure the core CF is 100% here now. I do some very special things with my CF code which allows me to find certain issues that may not come out during beta testing. All of my

Re: Icons for Applications...

2004-10-17 Thread Kay Smoljak
On Wed, 06 Oct 2004 11:21:39 -0600, Blaine Korte [EMAIL PROTECTED] wrote: If you guys use icons in your apps, where do you get them from? Just catching up on some messages I missed last week. For icons, check out http://www.glyfx.com - we have a free set of common toolbar icons in xp style, or

Verity indexes - excluding files/directories?

2004-10-17 Thread Reed Powell
I thought that I once read that when you setup the index for a collection (via CF tags, not the administrator, since this is a hosted account and I don't have access to CFADMIN) you could tell it to exclude specific directories from being searched.Now that I'm trying to do it, I cannot find

Re: (admin) Please test Fusion Authority

2004-10-17 Thread Jim McAtee
- Original Message - From: Michael Dinowitz [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, October 17, 2004 3:11 AM Subject: Re: (admin) Please test Fusion Authority I do some very special things with my CF code Don't we all... [Todays Threads] [This Message]

RE: (admin) Please test Fusion Authority

2004-10-17 Thread James Holmes
Just curious. I think that's a fantastic idea - genuine load testing is rarely achievable and this is a great way to do it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, 17 October 2004 5:12 To: CF-Talk Subject: Re: (admin) Please test Fusion

Re: (admin) Please test Fusion Authority

2004-10-17 Thread Michael Dinowitz
But how many of us with high traffic sites are willing to put the site on the line to run a beta product live. That's the whole reason MM asked me; Because I am willing. I've found a number of tiny issues that would never show up in beta testing that would annoy the living daylights out of people

Re: (admin) Please test Fusion Authority

2004-10-17 Thread Michael Dinowitz
It's not load testing till the full HoF site is on BS. The FA install is a pre-load test. Making sure the service is ok, install is 100% and things like SES are adjusted. Looks good to me, but a second set of eyes would be much appreciated. Just curious. I think that's a fantastic idea - genuine

application.cfm and headers

2004-10-17 Thread Phillip Perry
I'm using application.cfm to put the header on all my pages via cfinclude so i dont have to do a cfinclude on every page. But sometimes I dont want a page in that same folder to show the headers. For example a pop up that shows directions on how to use a form. There is no referrer to a pop up so I

Re: application.cfm and headers

2004-10-17 Thread Claude Schneegans
Is there anything else I can do? Put the template in another subdirectory having its own Application.cfm in which you do whatever you want, including NOT showing the headers. -- ___ REUSE CODE! Use custom tags; See

Re: application.cfm and headers

2004-10-17 Thread Barney Boisvert
You could set an extra URL variable on your popup URL that indicates not to include the header (or, more likely, include a 'plain' header). However, using Application.cfm and OnRequestEnd.cfm for anything except application logic is generally a bad idea. A much better route is to either just put

RE: application.cfm and headers

2004-10-17 Thread Phillip Perry
-Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 4:56 PM To: CF-Talk Subject: Re: application.cfm and headers or perhaps use something like Fusebox I downloaded fusebox the other day to see what it was about and my head almost exploded

Problem With Form Processing - Need Help

2004-10-17 Thread Harold Brauer
I am working on this UDF, making an array of structures so that if there is an error on my form it will send the user back, highlight the fields that need to be filled in and display an error message. The problem I am having is that the Array is being set BEFORE the form is processed. The form is

RE: application.cfm and headers

2004-10-17 Thread Ewok
cfif Not FindNoCase(directoryname, cgi.script_name) cfinclude template=header.cfm /cfif Where “directoryname” is the directory you DON’T want the header included in _ From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 4:47 PM To: CF-Talk Subject:

RE: application.cfm and headers

2004-10-17 Thread Matthew Walker
I sometimes use a simple custom tag around each page's content and an associated templates folder, like this: cf_template name=normal title=My page ...my content... /cf_template or cf_template name=popup title=My popup ...my content... /cf_template The templates folder would contain

HTTP_REFERER

2004-10-17 Thread Phillip Perry
Thanks for answering my last question. Too many issues kept coming up so I abandoned using application.cfm for headers and went back to just including templates into each page. Now I have another problem. When I have people log in I want them to go to the page that they wanted to go to right after

database client storage with multiple CFMX instances

2004-10-17 Thread Marcus Whitworth
Hi, I have several CFMX instances running on JRun, and would like to set the Client Variable storage to be a SQL Server datasource. Can all instances use the same database for client variable storage, or will I need to create a separate database for each instance? Thanks in advance, Marcus.

RE: HTTP_REFERER

2004-10-17 Thread Jeff Garza
I use something like this in my application.cfm to check to see if the user is logged in and if not, capture the original URL that they requested and display the login page. CFIF NOT IsDefined(session.loggedIn) CFIF len(cgi.query_string) CFSET initialURL = http://localhost cgi.path_info ?

RE: HTTP_REFERER

2004-10-17 Thread Ewok
I assume you have a page that or snippet that checks for a valid login session, if there isn’t one it redirects to a login form? In this portion of code I usually take everything in the cgi.query_string and append it to the redirect so once they login, the login redirect can put the original url

Re: application.cfm and headers

2004-10-17 Thread Barney Boisvert
That's why Fusebox was option 2.; )Once you get your head around it, lots of things are enormously easier, and layouts are one.But it's definitely not a simple framework to jump into.That being said, I would recommend giving it a chance, because in the long run, anything you can do to make things

RE: database client storage with multiple CFMX instances

2004-10-17 Thread Ewok
You can do it with one DB. I have all of my client variables stored in one database for the entire server. Just create the database, add it in the administrator and then set your Client Variables to use it in the administrator _ From: Marcus Whitworth [mailto:[EMAIL PROTECTED] Sent: Sunday,

RE: HTTP_REFERER

2004-10-17 Thread Ewok
Scoped as url ofcourse ; ) Index.cfm?action=""> _ From: Ewok [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 9:42 PM To: CF-Talk Subject: RE: HTTP_REFERER I assume you have a page that or snippet that checks for a valid login session, if there isn’t one it redirects to a login

Connection Reset By Peer

2004-10-17 Thread Rich Tretola
I have thousands of entries like the following in my default-err.log file, the only difference in the type of error in the top line where I wrote type 10/17 18:19:26 error Error while reading header type java.net.SocketException: Connection reset by peer: socket write error at

Re: Problem With Form Processing - Need Help

2004-10-17 Thread Douglas Knudsen
something seem s odd about ur logic here.For one, ehy wrap the UDF in the form.process check?Maybe try it like below.You had a argument for teh UDF too, but not using it.Is form.process a form control ?If nothing else, this direction below may lead you to something fruitful...HTH CFPARAM

email, pause while looping through list

2004-10-17 Thread mayo
I'm trying to send emails. Because of spam issues the client's hosting provider has put limits on how many emails can be sent at one time. I can send 20 emails/3 minutes. I'm wondering what the best way to do this is? !--- LOOP THROUGH RECORD SET SET COUNTER IF COUNTER EQ PRE-SET NUMBER {

Re: application.cfm and headers

2004-10-17 Thread Russell Patterson
Ha! Ha! Ha!I understand that! Russell - Original Message - From: Phillip Perry To: CF-Talk Sent: Sunday, October 17, 2004 4:02 PM Subject: RE: application.cfm and headers -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 4:56 PM

Does application.cfm run on files within frames?

2004-10-17 Thread Mike Kear
I've got an app, where I'm trying to work out why the login check isnt working on some files.When I call the templates usinglinks and buttons, the login check works.When I call the file using its url typed into the browser, the login check doesnt happen. These files are in the content frame of a

Caching CFC/web services?

2004-10-17 Thread Johnny Le
Is it possible to cache the result of a web service?I created a web service to use in my flash application, but it takes a long time to return the result.Since the result is not going to change often, I wonder if I could cache it. If so, where should I put the cfcache tag?Outside the component

RE: database client storage with multiple CFMX instances

2004-10-17 Thread Dave Watts
I have several CFMX instances running on JRun, and would like to set the Client Variable storage to be a SQL Server datasource. Can all instances use the same database for client variable storage, or will I need to create a separate database for each instance? Yes, you can use a single

RE: Does application.cfm run on files within frames?

2004-10-17 Thread Dave Watts
I understood that application.cfm runs for all templates opened, and doesnt care if they're run to go inside frames, or iframes or popups or anywhere. Yes, that's correct. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 [Todays Threads]

Re: database client storage with multiple CFMX instances

2004-10-17 Thread Mike Kear
Just make sure that your application names are different from each other.The variables are stored in the database table, and you can query them like any other table, but you need to sort out your variables from someone else's. One way is to know the CFID of the variables, but it'soften useful to

Re: CF_ColoredCode

2004-10-17 Thread Brad Roberts
Here's an example: http://www.bradroberts.net/coloredcode/ -Brad - Original Message - From: Ray Champagne To: CF-Talk Sent: Friday, October 15, 2004 4:02 PM Subject: Re: CF_ColoredCode Just curious...what is it? Ray At 03:50 PM 10/15/2004, you wrote: Does anyone have (or know where

Re: Does application.cfm run on files within frames?

2004-10-17 Thread Mike Kear
Thanks, Dave. That's what I thought, but its bad news because the fix is not a simple one in this case.The guy before me who wrote the code I'm trying to fix figured the best way to do logic was to emulate emulate ivy - have it running everywhere and looping around on itself, back and forth.For