Re: Trouble Ticket Application

2005-10-25 Thread Critter Gewlas
We have been using CFTicket from Cornfeed.com. Not free... but /very/ 
reasonably priced. it has totally saved me in handling support tickets.

Crit

 I've been working on building a system for logging help request calls 
 for our nonprofit organization. It dawned on me that I'm reinventing 
 the wheel and that what we need is a help desk/ticket tracking system 
 that could be adapted to our specific needs. Since this will come out 
 of my hide (time), I'm wondering if there are any free / open source 
 help desk/ticket systems already out there. One that is developed in 
 CF would be better than some other language, but I'm going to be 
 practical and open-minded about it.
 
 Thanks in advance if you know of any such apps that exist.
 
 -- 
 Chris Montgomery
 Airtight Web Services   http://www.airtightweb.com
 Web Development, Web Project Management, Software Sales
 210-490-2415 (office), 210-232-2790 (mobile)

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:222166
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


[OT] Eclispe and Java

2004-12-21 Thread Critter
I am just trying to build a simple class file using eclipse.. but I
keep getting syntax errors..

public class Welcome {

public static void main(String[] args) {
greeting[0] = Welcome;
greeting[1] = howdy;

for (String g : greeting)
System.out.println(g);
}
}

SeverityDescription ResourceIn Folder   Location
Creation Time
2   Syntax error on token ), invalid
AssignmentOperator  Welcome.javaWelcome line 20 December 21, 2004
10:51:12 AM
2   Syntax error on token(s), misplaced
construct(s)Welcome.javaWelcome line 20 December 21, 2004 10:51:12
AM

i am thinking it has to do with maybe eclipse using the wrong jre...
but i am not sure.. I've pointed eclipse to use the newer jdk.. (i
think..) any suggestions?
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Single Dads ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://single-dads.us ]-=

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188372
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [OT] Eclispe and Java

2004-12-21 Thread Critter
it will compile using javac, but it throws an error when i attempt to run it..


On Tue, 21 Dec 2004 11:10:05 -0500 (GMT-05:00), Michael Greenberg
[EMAIL PROTECTED] wrote:
 Did you try just using javac ?
 
 -Original Message-
 From: Critter [EMAIL PROTECTED]
 Sent: Dec 21, 2004 11:05 AM
 To: CF-Talk cf-talk@houseoffusion.com
 Subject: [OT] Eclispe and Java
 
 I am just trying to build a simple class file using eclipse.. but I
 keep getting syntax errors..
 
 public class Welcome {
 
 public static void main(String[] args) {
 greeting[0] = Welcome;
 greeting[1] = howdy;
 
 for (String g : greeting)
 System.out.println(g);
 }
 }
 
 SeverityDescription ResourceIn Folder   Location  
   Creation Time
 2   Syntax error on token ), invalid
 AssignmentOperator  Welcome.javaWelcome line 20 December 21, 2004
 10:51:12 AM
 2   Syntax error on token(s), misplaced
 construct(s)Welcome.javaWelcome line 20 December 21, 2004 10:51:12
 AM
 
 i am thinking it has to do with maybe eclipse using the wrong jre...
 but i am not sure.. I've pointed eclipse to use the newer jdk.. (i
 think..) any suggestions?
 --
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Single Dads ]-=
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://single-dads.us ]-=
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188379
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [OT] Eclispe and Java

2004-12-21 Thread Critter
yeah... i got the greeting thing...

according to the book i have...

for(String g : greeting)
is a new JDK 5.0 feature 

rather than the traditional for(i=0...etc..)


On Tue, 21 Dec 2004 08:40:07 -0800, Spike [EMAIL PROTECTED] wrote:
 You have a couple of problems with the syntax of your code:
 
 1. You need to declare the greeting array as an array of strings before
 using it:
 
 String[] greeting = new String[2]
 
 2. The syntax of your for loop is invalid. I'd do it like this:
 
 
 for (int i=0;igreeting.length ; i++) {
System.out.println(greeting[i]);
 }
 
 So the whole thing would be:
 
 *
 
 public class Welcome {
 
 public static void main(String[] args) {
 String[] greeting = new String[2]
 greeting[0] = Welcome;
 greeting[1] = howdy;
 
 for (int i=0;igreeting.length ; i++)
 System.out.println(greeting[i]);
 }
 }
 
 
 Spike
 
 Critter wrote:
  I am just trying to build a simple class file using eclipse.. but I
  keep getting syntax errors..
 
  public class Welcome {
 
public static void main(String[] args) {
greeting[0] = Welcome;
greeting[1] = howdy;
 
for (String g : greeting)
System.out.println(g);
}
  }
 
  Severity  Description ResourceIn Folder   Location  
Creation Time
  2 Syntax error on token ), invalid
  AssignmentOperatorWelcome.javaWelcome line 20 December 21, 2004
  10:51:12 AM
  2 Syntax error on token(s), misplaced
  construct(s)  Welcome.javaWelcome line 20 December 21, 2004 10:51:12
  AM
 
  i am thinking it has to do with maybe eclipse using the wrong jre...
  but i am not sure.. I've pointed eclipse to use the newer jdk.. (i
  think..) any suggestions?
 
 --
 
 
 Stephen Milligan
 Code poet for hire
 http://www.spike.org.uk
 
 Do you cfeclipse? http://cfeclipse.tigris.org
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188386
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [OT] Eclispe and Java

2004-12-21 Thread Critter
3.01 is what i am using..


On Tue, 21 Dec 2004 09:50:58 -0800, Rob [EMAIL PROTECTED] wrote:
 As far as I know eclipse doesnt support 5.0 syntax yet - even though
 somet of the docs I've read say they do. I have had the whole thing
 crash trying to use the template syntax. Supposedly 3.1 is supposed ot
 fix that. Are you using 3.1?
 
 
 On Tue, 21 Dec 2004 11:56:47 -0500, Critter [EMAIL PROTECTED] wrote:
  yeah... i got the greeting thing...
 
  according to the book i have...
 
  for(String g : greeting)
  is a new JDK 5.0 feature 
 
  rather than the traditional for(i=0...etc..)
 
 
  On Tue, 21 Dec 2004 08:40:07 -0800, Spike [EMAIL PROTECTED] wrote:
   You have a couple of problems with the syntax of your code:
  
   1. You need to declare the greeting array as an array of strings before
   using it:
  
   String[] greeting = new String[2]
  
   2. The syntax of your for loop is invalid. I'd do it like this:
  
  
   for (int i=0;igreeting.length ; i++) {
  System.out.println(greeting[i]);
   }
  
   So the whole thing would be:
  
   *
  
   public class Welcome {
  
   public static void main(String[] args) {
   String[] greeting = new String[2]
   greeting[0] = Welcome;
   greeting[1] = howdy;
  
   for (int i=0;igreeting.length ; i++)
   System.out.println(greeting[i]);
   }
   }
   
  
   Spike
  
   Critter wrote:
I am just trying to build a simple class file using eclipse.. but I
keep getting syntax errors..
   
public class Welcome {
   
  public static void main(String[] args) {
  greeting[0] = Welcome;
  greeting[1] = howdy;
   
  for (String g : greeting)
  System.out.println(g);
  }
}
   
Severity  Description ResourceIn Folder   Location  
  Creation Time
2 Syntax error on token ), invalid
AssignmentOperatorWelcome.javaWelcome line 20 December 21, 2004
10:51:12 AM
2 Syntax error on token(s), misplaced
construct(s)  Welcome.javaWelcome line 20 December 21, 2004 10:51:12
AM
   
i am thinking it has to do with maybe eclipse using the wrong jre...
but i am not sure.. I've pointed eclipse to use the newer jdk.. (i
think..) any suggestions?
  
   --
  
   
   Stephen Milligan
   Code poet for hire
   http://www.spike.org.uk
  
   Do you cfeclipse? http://cfeclipse.tigris.org
  
  
 
 
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188414
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


returning a server 500 error

2004-11-22 Thread Critter
i have an api and want to just return a server 500 error if there is
one.. I tried

cfheader statuscode='500' statusText='there was an error...'

what else do i need?
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Single Dads ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://single-dads.us ]-=

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185007
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


[ot] reading response headers with javascript

2004-11-16 Thread Critter
is this possible?

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Single Dads ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://single-dads.us ]-=

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184377
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [ot] reading response headers with javascript

2004-11-16 Thread Critter
and perhaps.. can you shed a little more light on the process...
perhaps a point in the right direction.. an example.. something that
would be a bit more valuable than your previous answer?


On Tue, 16 Nov 2004 15:31:31 +0100, Micha Schopman
[EMAIL PROTECTED] wrote:
 Yes
 
 Micha Schopman
 Software Engineer
 
 Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
 Tel 033-4535377, Fax 033-4535388
 KvK Amersfoort 39081679, Rabo 39.48.05.380
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184384
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [ot] reading response headers with javascript

2004-11-16 Thread Critter
am using cfheader to add some information to the headers passed back..
was looking for a way to retrieve that information clientside... w/o
having to rely on IE as the browser.. (only examples i have stumbled
upon mention IE 5+)...


On Tue, 16 Nov 2004 14:42:34 +, Stephen Moretti (cfmaster)
[EMAIL PROTECTED] wrote:
 Critter wrote:
 
 and perhaps.. can you shed a little more light on the process...
 perhaps a point in the right direction.. an example.. something that
 would be a bit more valuable than your previous answer?
 
 
 Would you care to expand on exactly what it is that you are after, so
 that a more useful answer can be given?
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184392
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [ot] reading response headers with javascript

2004-11-16 Thread Critter
Server: Microsoft-IIS/5.0
Date: Tue, 16 Nov 2004 16:20:06 GMT
Set-Cookie: CFID=56888;path=/
CFTOKEN=15399655;path=/
gplResponse: -117.769469|33.721224|-117.759359|33.730204|8
Content-Type: image/jpeg
Connection: close

was trying to access the gplResponse variable...


On Tue, 16 Nov 2004 11:13:33 -0500, Dave Watts [EMAIL PROTECTED] wrote:
  am using cfheader to add some information to the headers passed back..
  was looking for a way to retrieve that information
  clientside... w/o having to rely on IE as the browser.. (only
  examples i have stumbled upon mention IE 5+)...
 
 Can you provide a specific example? I don't think you can just arbitrarily
 access HTTP response headers using cross-browser JavaScript.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 phone: 202-797-5496
 fax: 202-797-5444
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184398
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [ot] reading response headers with javascript

2004-11-16 Thread Critter
@ dave it's an api call..
@ stephen.. i'll have a gander. thanks


On Tue, 16 Nov 2004 17:40:13 +, Stephen Moretti (cfmaster)
[EMAIL PROTECTED] wrote:
 Dave Watts wrote:
 
 
 
 Server: Microsoft-IIS/5.0
 Date: Tue, 16 Nov 2004 16:20:06 GMT
 Set-Cookie: CFID=56888;path=/
 CFTOKEN=15399655;path=/
 gplResponse: -117.769469|33.721224|-117.759359|33.730204|8
 Content-Type: image/jpeg
 Connection: close
 
 was trying to access the gplResponse variable...
 
 
 
 I don't think you're going to be able to do that. Why not just have the
 server write this as a cookie?
 
 
 I have to agree.  There are a number of response headers that make it
 into the various javascript DOM, but I don't believe that they are
 generally and universally made available in the client.
 
 Having said that, a number of references to XMLHttpRequest hinted that
 maybe it is possible to access response headers from the client.  Until
 I found this page (http://www.mozilla.org/xmlextras/) I thought it was
 all IE specific (and generally written using some server side code).
 The examples given would need some browser checking to load the
 appropriate XMLHttp... object, but it might do what you need.
 
 Hope that helps.
 
 Stephen
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184418
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


adding information to a response header

2004-11-11 Thread Critter
is this possible? and if so... does anyone have any examples.. or can
point me in the right direction?


crit
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Single Dads ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://single-dads.us ]-=

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183982
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: adding information to a response header

2004-11-11 Thread Critter
thanks... i totally forgot about the cfheader tag.. duh


On Thu, 11 Nov 2004 14:27:51 -0500, Dave Watts [EMAIL PROTECTED] wrote:
  is this possible? and if so... does anyone have any
  examples.. or can point me in the right direction?
 
 You can set HTTP response headers using the CFHEADER tag. In addition, using
 CFCONTENT, CFLOCATION or CFCOOKIE also set HTTP response headers, although
 you don't have full control over the headers they set.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 phone: 202-797-5496
 fax: 202-797-5444
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184076
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


api's, returning an image..

2004-11-08 Thread Critter
i have an api i have to develop.. at this stage, i can only return a
pipe delimited list of information.. one of the things i need to be
able to return is an actual image... someone had mentioned to me about
returning the image in the header... is this possible? anyone have any
examples... suggestions?
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Single Dads ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://single-dads.us ]-=

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183630
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: odbc server timeout?

2004-11-05 Thread Critter
that was me using the cfadmin and choosing the Access option... suggestions?


On Fri, 05 Nov 2004 13:41:49 +0100, Jochem van Dieten
[EMAIL PROTECTED] wrote:
 Critter wrote:
  anyone have any suggestions as .. how to handle this?
 
 Don't use ODBC. Seriously, why would you want to?
 
 Jochem
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183470
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


BlueDragon (issue|question)

2004-11-05 Thread Critter
I have a site that runs fine on cfmx, I attempted to move it over to BD.

One of my includes includes/common/_header.cfm

has this line:

script language=JavaScript src=spiffy/spiffyCal_v2_1.js
type=text/javascript/script

if i comment that line out... the site comes up fine in BD... with
that line uncommented it just sits there... loading loading.
loading...


any ideas, suggestions?



-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Single Dads ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://single-dads.us ]-=

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183472
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlueDragon (issue|question)

2004-11-05 Thread Critter
yes sir. I am. Thanks I'll update it.


On Fri, 5 Nov 2004 09:04:05 -0500, Vince Bonfanti [EMAIL PROTECTED] wrote:
 I assume you're running BD 6.1? If so, apply the latest hotfix:
 
ftp://ftp.newatlanta.com/public/bluedragon/6_1/hotfix/Sept_2004
 
 This is fixed in the BD 6.2 beta, and we're also planning an update to the
 web site soon to put hotfixes on the downloads page.
 
 Vince Bonfanti
 New Atlanta Communications, LLC
 http://www.newatlanta.com
 
 
 
 
  -Original Message-
  From: Critter [mailto:[EMAIL PROTECTED]
  Sent: Friday, November 05, 2004 8:48 AM
  To: CF-Talk
  Subject: BlueDragon (issue|question)
 
  I have a site that runs fine on cfmx, I attempted to move it
  over to BD.
 
  One of my includes includes/common/_header.cfm
 
  has this line:
 
  script language=JavaScript src=spiffy/spiffyCal_v2_1.js
  type=text/javascript/script
 
  if i comment that line out... the site comes up fine in BD...
  with that line uncommented it just sits there... loading loading.
  loading...
 
 
  any ideas, suggestions?
 
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183505
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlueDragon (issue|question)

2004-11-05 Thread Critter
I did the hotfix update...

this line confuses me a tad:
 - edit the StartBlueDragon.bat file, changing the string BlueDragonServer.jar
   to BlueDragonServerJX.jar

only reason i say it confuses me.. is... there is an instance of
ServerJX.jar already in the classpath... along with
...Server.jar

also.. my version number shows correct... but I am still experiencing
the same problem.


On Fri, 5 Nov 2004 09:04:05 -0500, Vince Bonfanti [EMAIL PROTECTED] wrote:
 I assume you're running BD 6.1? If so, apply the latest hotfix:
 
ftp://ftp.newatlanta.com/public/bluedragon/6_1/hotfix/Sept_2004
 
 This is fixed in the BD 6.2 beta, and we're also planning an update to the
 web site soon to put hotfixes on the downloads page.
 
 Vince Bonfanti
 New Atlanta Communications, LLC
 http://www.newatlanta.com
 
 
 
 
  -Original Message-
  From: Critter [mailto:[EMAIL PROTECTED]
  Sent: Friday, November 05, 2004 8:48 AM
  To: CF-Talk
  Subject: BlueDragon (issue|question)
 
  I have a site that runs fine on cfmx, I attempted to move it
  over to BD.
 
  One of my includes includes/common/_header.cfm
 
  has this line:
 
  script language=JavaScript src=spiffy/spiffyCal_v2_1.js
  type=text/javascript/script
 
  if i comment that line out... the site comes up fine in BD...
  with that line uncommented it just sits there... loading loading.
  loading...
 
 
  any ideas, suggestions?
 
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183510
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


odbc server timeout?

2004-11-04 Thread Critter
anyone have any suggestions as .. how to handle this?

 Unable to update the ColdFusion MX ODBC Server.
Timeout period expired without completion of
C:\CFusionMX\db\slserver52\admin\swcla.exe


??
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Single Dads ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://single-dads.us ]-=

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183447
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


parsing Yahoo Store XML

2004-10-21 Thread Critter
i was wondering if anyone has had any experience parsing an xml feed
from a yahoo store.. the xml feed itself looks almost to be in a table
format.. but it seems a bit difficult to distinguish the categories
from the items themselves...
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Single Dads ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://single-dads.us ]-=

~|
Sams Teach Yourself Regular Expressions in 10 Minutes  by Ben Forta 
http://www.houseoffusion.com/banners/view.cfm?bannerid=40

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182299
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Coldfusion Helpdesk

2004-09-16 Thread Critter
We use cfticket for www.terraxsite.com, and I totally love it.. i'd
never be able to keep track of tickets w/o it!

I 3 cfticket

/crit

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=

- Original Message -
From: Cedric Villat [EMAIL PROTECTED]
Date: Thu, 16 Sep 2004 07:49:54 -0700
Subject: Re: Coldfusion Helpdesk
To: CF-Talk [EMAIL PROTECTED]

Brant,

 plug

 We make a ColdFusion help desk called CFTicket. You can find out more about 
 it at www.cornfeed.com. This is the second version we have released and 
 should support most features you can think of. There is a demo on there too 
 so you can play with it and see if it suits your needs. If you have any 
 questions, feel free to email me directly.

 /plug

 Cedric

  Subject: Coldfusion Helpdesk
  From: Brant Winter [EMAIL PROTECTED]
  Date: Thu, 16 Sep 2004 12:13:25 +1000
  Thread: 
  http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=35406forumid=4#178572
 
  Hi - does anyone know of a coldfusion helpdesk app in existence. I need to
  be able to track IT issues in a database, have people log jobs for 
  helpdesk
  staff etc ? I have used a php app called Perldesk in the past, but I would
  like to get things across onto a coldfusion box.
 
 
 
  
  The information transmitted is intended only for the person or entity to 
  which it is addressed and may contain confidential and/or privileged 
  material. Any review, retransmission, dissemination or other use of, or 
  taking of any action in reliance upon, this information by persons or 
  entities other than the intended recipient is prohibited. If you received 
  this in error, please contact the sender and delete the material from any 
  computer. It is the responsibility of the recipient to ensure that the 
  onward transmission, opening or use of this message and any attachments 
  will not adversely affect its systems or data. Please carry out such virus 
  and other checks, as you consider appropriate. To the fullest extent 
  allowed by law, no responsibility is accepted by Haematology  Oncology 
  Clinics of Australasia for any virus damage caused by this
message.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: OT: Fake online orders--how common are they?

2004-08-20 Thread Critter
i think they do it to try and verify if a stolen(?) card has any
credit available.

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Deleting a numbered struct

2004-08-15 Thread Critter
I've got a struct of structs, and have to go through and delete ones
that can fall in the middle. So if i have:

item1
item2
item3
item4

and i need to delete item2. any ideas on how to /bump/ the others up?
so that if i do a loop it won't error on the missing 2 ?

any suggestions?

/crit
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Deleting a numbered struct

2004-08-15 Thread Critter Gewlas
I think you might be confusing arrays with structures. Deleting at one key
won't cause errors when accessing others. If you delete item2 and you loop
through the struct it will loop through the remaining items.

Ade

Actually, no, I do not have them confused. but my structures are:

session.strProducts.item1
session.strProducts.item2
session.strProducts.item3

I loop over the whole of them pulling out information like: session.strProducts[item  i]

so if item2 is missing... etc etc..

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Deleting a numbered struct

2004-08-15 Thread Critter
ah n/m i sorted it by using a list loop: 
list=#structKeyList(session.strProducts)#
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Deleting a numbered struct

2004-08-15 Thread Critter
 You're using that xml parser for CF5 from cfdev aren't you? ...

no, it is an object i've created to hold data.

 Although I'd recommend replacing the structure with an array instead.

 
struct is easiest... i need the named notation of it.


-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Deleting a numbered struct

2004-08-15 Thread Critter
 If the names are all identical except for the number, why then is the
 named notation of the structure important? It seems to me the array
 would be much easier to deal with.

 
session.strProduct.item1.orderno = xxx;
session.strProduct.item1.qty = 2;

session.strProduct.item2.orderno = zzz;
session.strProduct.item2.qty = 3;

etc.

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: (OT) Firewall

2004-08-02 Thread Critter
Anyone know of a god network firewall system? Zonealarm is good for a
single machine, but I think that mothernature.com needs a system wide
firewall. What do you use, what do you suggest?
Thanks

i've used kerio for personal fw.. i /think/ they might have a network
solution...
http://www.kerio.com


-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CFFUN 04 - He3

2004-06-28 Thread Critter
Didnt attend CFFUN... what is He3?

http://www.richpalette.com

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Back Button Issue?

2004-06-17 Thread Critter
you could add 

scriptwindow.history.forward()/script

on your pages...

- Original Message -
From: Asim Manzur [EMAIL PROTECTED]
Date: Thu, 17 Jun 2004 16:12:15 -0400
Subject: Re: Back Button Issue?
To: CF-Talk [EMAIL PROTECTED]

Thanks for appreciation

Now that's interesting. Never thought of that, I like it!

Asim Manzur wrote:

 http://quiz.rr.nu
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re[2]: Securing CF Apps.

2004-03-23 Thread Critter
Hello Michael,

because it creates url safe strings

Tuesday, March 23, 2004, 10:46:13 AM, you wrote:

 Okay, all this talk of encrypting url variables got me 
 paranoid.I looked on cflib and checked out Tim Heald's 
 UrlEncrypt/Decrypt functions.My question is why is 
 cfusion_encrypt used instead of the standard encrypt function?

TM Good question 

TM
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Image Tag

2004-03-23 Thread Critter
Hello Neal,

efflare.com

Tuesday, March 23, 2004, 12:02:37 PM, you wrote:

BN Hello all,

 
BN I lost me link to a site that had a few types of Image manipulation tags.
BN The tags or whatever could crop, resize, sharpen and a ton of other things.
BN I can't seem to Google it either. I was hoping you guys would know. I think
BN the creator is on this list too. The site was dark redish with several
BN examples. 

 
BN Its drive me crazy... I seem to remember it being called farcy, firefly,
BN freakout I dunno it was something like that. 

 
BN Thanks,

 
BN Neal Bailey
BN Internet Marketing Manager
BN E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

BN
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Dots in variable names behaving unexpectedly

2004-03-23 Thread Critter
Hello Jamie,

i believe that adding dot notation to a variable automatically creates
a structure in MX

/crit

Tuesday, March 23, 2004, 1:11:45 PM, you wrote:

JJ Can someone give me the lowdown on why...
JJ registrant.emergencyPhone.Phone.countryCode = 1;
JJ ...is equivalent to...
JJ registrant[emergencyPhone][Phone][countryCode] = 1;

JJ Is this new in CFMX? I used to name variables with dots in them to
JJ sort of give pseudo-scopes to groups of variable. Maybe it's always
JJ behaved this way, but I never had occasion to dump one?

JJ This has very strange consequences when doing something like this
JJ (please try running this form yourself):

JJ form action="" method=post
JJ input type=hidden value=123 name=blah.blee.bloo
JJ input type=submit name=submit value=submit
JJ /form
JJ cfscript
JJ form.blah.blee.bloo = 234234;
JJ /cfscript
JJ cfdump var=#form#

JJ The dump shows both variables in the form scope, but shows the true,
JJ posted form variable as a simple variable (blah.blee.bloo), but the
JJ locally set form variable is a structure of structures.

JJ I guess the lesson is not to have dots as delimiters in form vars
JJ anymore, but can someone explain what's at work here? Also, can I (and
JJ should I) always expect that this dot notation for structures will
JJ work, and can I start using (and relying on) that notation?

JJ Thanks,
JJ Jamie

JJ
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




regex assist

2004-03-22 Thread Critter
Hello cf-talk,

ineedto strip extra carriage returns out of a bit of text... but
/only/iftherearemorethantwoconsecutive,andicould
definitely use a bit of help with it.

/crit

-- 
Critter G

-- 
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Updating an extra sort order column

2004-03-22 Thread Critter
Hello cf-talk,

I'vegotacolumnin a db that handles the sort order, I need to
givethe admins a way to change the order of things... so let's say
they want to change the order of #5 to #7

doesanyone know of any decent way to do this or am I forced to
just keep looping through things..

/crit

-- 
Critter G

-- 
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




cfexecute

2004-03-19 Thread Critter
Hello cf-talk,

will it execute a .vbs? I'm getting weird errors

-- 
Critter G

-- 
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: cfexecute

2004-03-19 Thread Critter
Hello Critter,

n/m think might have found answer:
C:\WINNT\System32\CScript.exe

Friday, March 19, 2004, 11:24:50 AM, you wrote:

C Hello cf-talk,

Cwill it execute a .vbs? I'm getting weird errors

C -- 
C Critter G


-- 
Critter G

-- 
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: date dropdown

2004-03-19 Thread Critter
Hello Robert,

cflib.org

Friday, March 19, 2004, 1:16:39 PM, you wrote:

RO Anyone out there know where I can find a CF or _javascript_
RO date drop down with day, month, year that a user can select from
RO and send to a form?

RO Thanks.

RO Robert O.

RO
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re[2]: form submission

2004-03-19 Thread Critter
Hello Steve,

you can also just change the submit button to a regular button and
have the onclick of the button submit your form.

Friday, March 19, 2004, 2:33:46 PM, you wrote:

SN Try the code below. Although I think it only works in IE.

SN Steve Nelson

SN HTML
SN HEAD
SN SCRIPT LANGUAGE=_javascript_
SN function testForEnter()
SN {
SN 	if (event.keyCode == 13)
SN 	{
SN 		event.cancelBubble = true;
SN 		event.returnValue = false;
SN }
SN }
SN /SCRIPT
SN /HEAD

SN BODY

SN FORM id=FORM1 name=FORM1 method=GET action="">
SN style=background-color:yellow
SN H3Form1: Does not stop form submission when user presses ENTER key./H3
SN INPUT id=text1 name=text1
SN INPUT type=submit value=Submit
SN /FORM

SN FORM id=FORM2 name=FORM2 method=GET action="">
SN style=background-color:lightblue
SN H3Form2: Stops form submission when user presses ENTER key./H3
SN INPUT id=text2 name=text2 >
SN INPUT type=submit value=Submit
SN /FORM

SN /BODY

SN /HTML

SN-Original Message-
SNFrom: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED]
SNSent: Friday, March 19, 2004 2:02 PM
SNTo: CF-Talk
SNSubject: SOT: form submission

SNHow does one keep a form from submitting when a user presses ENTER?
SN(Only want them to submit from the button...)

SNCutter

SN
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Wordperfect automation with cf

2004-03-18 Thread Critter Gewlas
has anyone out there done any of this? i've got some old vb code that i am trying to convert over the scripts are running... but i get no errors, no results.

/crit
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




cfmx mail error

2004-03-09 Thread Critter
Hello CF-Talk,

i keep getting this error, but have /no/ idea what is causing it.

The cause of this exception was: java.io.UnsupportedEncodingException:
unicode-1-1-utf-7.

any ideas?

/crit

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




cfmx mail error

2004-03-08 Thread Critter
oi CF-Talk !!

:Message:coldfusion.tagext.net.PopTag$PopTagException

anybody have /any/ idea what that is about?

/crit

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Dealing With Browser Refresh After New Record Insert

2004-03-07 Thread Critter
oi Bob!!

Sunday, March 7, 2004, 2:41:17 PM, you wrote:

seta session variable at the bottom of the page...or on the action page.. do a check for it on the
form page... if it's there... don't submit

BH Using CF 5 and Access for a member directory application...

BH When the application Administrator adds a new member record, Access
BH gives that record a unique number (auto-increment field). I then use a
BH query of the database to learn what that number is using
BH max(MemberID).I then use whatever MemberID is returned to run
BH another query in order todisplay the details of the just entered
BH record as a confirmation to Administrator.

BH All that occurs within one template and it all works fine. The problem
BH is if the Administrator hits refresh on their browser.The browser
BH refreshes the exact same information to the Administrator BUT it also
BH re-inserts the exact same data with a new MemberID.

BH How do I stop that attempt to re-run the insert query when all that's
BH occurring is a browser refresh?

BH Taking this one step further, I know I can prevent this from occurring
BH by making a record field unique (such as email or username).I can
BH then check to make sure a new record isn't being added which has the
BH same email or username of an existing record and, if it does, return
BH an error message.

BH However, that doesn't really solve the problem fully because when I do
BH that, the template still attempts to re-processes the record insertion
BH but this time returns the error message That email address is already
BH taken.That prevents entries of duplicate records, but the message
BH is confusing to the Administrator.

BH I'd simply like, on browser refresh, to have the data re-displayed
BH without the template attempting to re-insert the record.Is my
BH problem simply that I have the record insert and record display code
BH in the same template?

BH How do others handle this situation?Thanks in advance.

BH -
BH Regards,
BH Bob Haroche
BH O n P o i n tS o l u t i o n s
BH www.OnPointSolutions.com

BH
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




[sot] simple java webservice / cf....

2004-03-06 Thread Critter
oi CF-Talk!!

so if this is a java class file i have.
which works fine.
TempConverter.java
-
public class TempConverter
{
public static void main(String [] args)
{
 double F = Double.parseDouble(args[0]);
 double C = (5.0/9.0) * (F - 32);
 System.out.println(F +  degrees Fahrenheit =  + C +  degrees Celcius);
}
}

this is TempConverter.jws
--
public class TempConverter
{
public double FtoC(String str)
{
 double F = Double.parseDouble(str);
 double C;
 C = (5 / 9) * (F - 32);
 return C;
}
}

but when i run this.
index.cfm
---
cfscript
objTempConverter = createObject(webservice,http://localhost/java_webservice/TempConverter.jws?wsdl);
celsius = objTempConverter.FtoC(32);
writeoutput(celsius);
/cfscript

I get this error
Could not perform web service invocation FtoC because
java.lang.IllegalArgumentException: argument type mismatch

any ideas??

/critz
-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




JRun has closed connection

2004-02-25 Thread Critter
oi CF-Talk,!!

We'verecently moved a couple of our applications from CF5 to MX. We are randomly, yet repeatedly
gettingJRUNerrorsthatsaytherewasaninternalservererror. and JRUN has closed the
connection. A refresh of the page, seems to clear the error sometimes

any ideas / suggestions?

/critz

-- 

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT: from access to mssql

2004-02-20 Thread Critter
oi CF-Talk,!!

wheniamimportingdatafromaccesstomssql,howdo i get it to transfer items such as
autonumber (identity)..etc..

is that possible?

/c


-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: OT: from access to mssql

2004-02-20 Thread Critter
oi cf!!

aye, that would be cool... if it was mysql :) good link though, ta

/c

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Friday, February 20, 2004, 7:29:25 AM, you wrote:

cdc i bought a program from here
cdc http://www.dmsofttech.com/
cdc called access2mysql
cdc worked great!

cdc now if i can just remember to put the right table names in my queries i
cdc will be golden ;)


 oi CF-Talk,!!

wheniamimportingdatafromaccesstomssql,howdo i get
 it to transfer items such as autonumber (identity)..etc..

is that possible?


/c



 --


 =-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=


 ---
 [This E-mail scanned for viruses by Declude Virus]

 
cdc
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




cfhttp and regex...help please

2004-02-13 Thread Critter
oi CF-Talk,!!

I am retrieving a bit of html and want to grab the value of a specific
hidden input in the .filecontent

input type=hidden name=userName value=Critter

any ideas or suggestions as to the best way to grab the value??

ta

/crit

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: cfhttp and regex...help please

2004-02-13 Thread Critter
oi Pascal!!

aye. that'll do it. thanks

/crit

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Friday, February 13, 2004, 9:30:02 AM, you wrote:

PP If you know this is the format of your hidden:

PP regexp = 'input type=hidden name=userName value=([^]*)';
PP stTmp = REFindNoCase(regexp,cfhhtp.filecontent,1,true);
PP if(stTmp.pos[1]){
PP 	val = Mid(cfhhtp.filecontent,stTmp.pos[2],stTmp.len[2]);
PP }
PP else{
PP 	// tag not found
PP } 

PP Pascal
 -Original Message-
 From: Critter [mailto:[EMAIL PROTECTED] 
 Sent: vrijdag 13 februari 2004 15:09
 To: CF-Talk
 Subject: cfhttp and regex...help please
 
 oi CF-Talk,!!
 
I am retrieving a bit of html and want to grab the value of 
 a specific
hidden input in the .filecontent
 
input type=hidden name=userName value=Critter
 
any ideas or suggestions as to the best way to grab the value??
 
ta
 
 
/crit
 
 
 -- 
 
 
 =-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in 
 the US ]-= =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ 
 http://keepmysoninthe.us ]-=
 
 
 ---
 [This E-mail scanned for viruses by Declude Virus]
 
 
PP
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Server time after restart

2004-02-11 Thread Critter
oi Spectrum!!

now() ?

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Wednesday, February 11, 2004, 9:19:51 AM, you wrote:

SW Our app needs to get the time of CF Server to do several tasks. If CF time is lower than 5
SW minutes our scheduler run that tasks. But how to get the CF Server time?


---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: OT: Prevent Refresh

2004-02-11 Thread Critter
oi Robert!!

youcouldsetasession variable at the bottom of the page and do an isdefined for it at the
top if it's there then redirector whatever.

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Wednesday, February 11, 2004, 2:30:45 PM, you wrote:

RO Is there any way to disable the Refresh button or option or prevent a user from refreshing
RO a page? It's causing some problems with our CF coding and sending out multiple emails. Is there
RO a way in _javascript_ or CF?

RO Robert O.
RO HWW
RO
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: OT:Free Mail Clients

2004-02-08 Thread Critter
oi Bruce!!

not freebut definitely worth the price... ritlabs the Bat!

www.ritlabs.com

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Saturday, February 7, 2004, 11:43:27 PM, you wrote:

BS Anyone know of any good free email clients? I tried Eudora and Nutscrape. Eudora croaks
BS when trying to import Outlook Express mailboxes, and Nutscrape will not connect to my outgoing
BS server.

BS Thanks,

BS Bruce
BS
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Webservice to return a struct

2004-02-08 Thread Critter
oi CF-Talk,!!

Ineedto create an api/webservice so that ppl can send us lat/lon's and we can return map image
urlsnormallywheni do my cfc's i always return a struct with error flags in it... querys,
variables.etc..

ifiexposethis as a webservice... how would asp or java or anything else that is grabbing
the webservice interpret the returned struct?

/crit

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




CFMX install errors - says port 51010 is not open

2004-02-06 Thread Critter
oi CF-Talk,!!

ispecificallyhave that port opened on the computer, but the last screen in the install process
says the install was not successful due to the blocking of that port..

any suggestions?

/crit

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CFMX install errors - says port 51010 is not open

2004-02-06 Thread Critter
oi Thomas!!

weirdiopenedall ports installed it fine this time, then allowed only my needed ports
and it's working fine now.

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Friday, February 6, 2004, 9:31:42 AM, you wrote:

TC On Friday 06 Feb 2004 14:02 pm, Critter wrote:
any suggestions?

TC netstat -alpn|grep 51010 to see what's actualy there (it may be the CF you 
TC just installed :-) ) ?

TC But I bet you're on windows. Firewall on ? Services running ?

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: is defined xmlnode....?

2004-02-04 Thread Critter
oi Tiziana!!

aye. this worked:

if(StructKeyExists(bk_details[i],Manufacturer)){

cheers for the point in the right direction..

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Wednesday, February 4, 2004, 1:19:52 AM, you wrote:

bk_details[i].Manufacturer.xmlText

MTeF Try:

MTeF cfif StructKeyExists(bk_details[i].Manufacturer)
MTeF /cfif

MTeF 
MTeF Massimo Foti
MTeF http://www.massimocorner.com

MTeF Co-Author of Dreamweaver MX 2004 Magic:
MTeF http://www.dwmagic.com/

MTeF
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: is defined xmlnode....?

2004-02-04 Thread Critter
oi Massimo!!

my client automatically grabs the name from the from field.

no worries though mate it was a good enough push in the right direction.

thanks

/cri

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Wednesday, February 4, 2004, 5:02:36 AM, you wrote:

 oi Tiziana!!

MF It's Massimo here (Tiziana works in the HR field)

 aye. this worked:
 
 if(StructKeyExists(bk_details[i],Manufacturer)){
 
 cheers for the point in the right direction..
 
MF Yes! I got the arguments list totally wrong... Sorry

MF Anyway, I am glad it put you into the right direction

MF 
MF Massimo Foti
MF http://www.massimocorner.com

MF Co-Author of Dreamweaver MX 2004 Magic:
MF http://www.dwmagic.com/

MF
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




is defined xmlnode....?

2004-02-03 Thread Critter
oi CF-Talk,!!

i've got an xml node that may or may not be there...

bk_details[i].Manufacturer.xmlText

but this is still dying

if(isDefined(bk_details[i].Manufacturer.xmlText)){

}

any suggestions?

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: is defined xmlnode....?

2004-02-03 Thread Critter
oi Critter!!

no worriesi was able to sort it with

try{}
catch{}

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Tuesday, February 3, 2004, 8:24:23 PM, you wrote:

C oi CF-Talk,!!

Ci've got an xml node that may or may not be there...

Cbk_details[i].Manufacturer.xmlText

Cbut this is still dying

Cif(isDefined(bk_details[i].Manufacturer.xmlText)){
C
C}

Cany suggestions?


---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT: Routers for the home business

2004-02-01 Thread Critter
oi CF-Talk,!!

atcurrentihave a cisco router which is controlled by time warner... and inside that i have a
linksysrouterwhichforwards ports to specific computers... but i'd like to be able to forward
port 80 to more than one computer any suggestions?

/crit

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Random Password

2004-02-01 Thread Critter
oi Stuart!!

have a gander at www.cflib.org there are a few results for a password search

/crit

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Sunday, February 1, 2004, 12:44:48 PM, you wrote:

SK Hi guys,

 
SK I'm trying to work out how to come up with a random password of 8
SK alpha-numeric characters.I have done it before but a hell of a long
SK time ago and have checked all my old code but can't find it.

 
SK Would I have to create an array?

 
SK It won't be their permanent password as once they log onto the site they
SK can change it.

 
SK Cheers,

 
SK Stuart

SK
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Random Password

2004-02-01 Thread Critter
oi Stuart!!

just stands for user defined function

-- 
Currently Playing: Simple Plan - God Must Hate Me

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Sunday, February 1, 2004, 2:41:28 PM, you wrote:

SK Oi Oi Critter,

 
SK Thanks old chap, found a nice cfscript there.What I did was put that
SK script into my includes directory and when I need to make a password on
SK a page I am going to include it cfinclude and then set the variable.

 
SK What is a UDF?

 
SK Cheers,

 
SK Stuart

 
SK -Original Message-
SK From: Critter [mailto:[EMAIL PROTECTED] 
SK Sent: 01 February 2004 18:37
SK To: CF-Talk
SK Subject: Re: Random Password

 
SK oi Stuart!!

SK have a gander at www.cflib.org there are a few results for a password
SK search

SK /crit

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT - offsetWidth on a MAC

2004-01-30 Thread Critter
oi CF-Talk,!!

anyone know what would be the equiv to use for macs?

bodyid.offsetWidthworksfine in nutscrape and IE but IE on a MAC returns only a 0 and shags
my app...

ta

/crit

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: OT - offsetWidth on a MAC

2004-01-30 Thread Critter
oi Tony!!

unfortunately.

-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

Friday, January 30, 2004, 3:01:17 PM, you wrote:

TW is this you?

TW the keep my son in the us? 

TW -Original Message-
TW From: Critter [mailto:[EMAIL PROTECTED] 
TW Sent: Friday, January 30, 2004 2:54 PM
TW To: CF-Talk
TW Subject: OT - offsetWidth on a MAC

TW oi CF-Talk,!!

TWanyone know what would be the equiv to use for macs?

TWbodyid.offsetWidthworksfine in nutscrape and IE but IE on a MAC
TW returns only a 0 and shags
TWmy app...

TWta

TW/crit


---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Request/application scope question

2004-01-29 Thread Critter
oi CF-Talk,!!

i'm sure this has been asked many times in the past... i just cannot remember the answer...

using CFMX.

lets say i have four variables that do not change at all.
i can place them in the application scope and it takes up the memory space for 4 variables, no?

butifiduplicate the application scope into the request scope for each page hit... am i using
more memory ?

/crit

-- 
Currently Playing: Ludacris - Rollout (My Business)

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Request/application scope question

2004-01-29 Thread Critter
oi Ubqtous!!

Thursday, January 29, 2004, 12:46:48 PM, you wrote:

U Is there any reason the variables need to be in the application scope
U to begin with? Seems like it would be simpler just to set them in the
U request scope from the get-go...

notreally, was just looking at tweaking little bits of this application i am having to work on
figuredwhy not just chuck them in the app scope and have them only created once as opposed for
each page request.

-- 
Currently Playing: Big Boi - The Way You Move (Feat. Sleepy Brown)

=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CFTicket

2003-12-06 Thread Critter
oi stas!!

We'vebeenusingitsincetheearlyreleasesfor www.terraxsite.com and are getting ready to
implementitfor www.terraserver.com very soon. It works great for us. Any issues that we have run
intohave been quickly resolved by the developers. It saves us a ton of time. It makes me having to
deal with the customer service aspect bearable.

---
Critter Gewlas
Macromedia Certified Advanced ColdFusion Developer
TerraVerge Corporation
---

-- 


Friday, December 5, 2003, 4:38:25 PM, you wrote:

s I am looking for a trouble-ticket/customer service type of application and
s found CFTicket on the Exchange; the developer is at http://www.cornfeed.com/

s Has anyone implemented this solution and have good/bad comments about it?

s Thank you,

s Stas


s
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




clustercats problem

2003-11-10 Thread Critter
oi CF-Talk,!!

We are trying to cluster two servers using CFMX Enterprise and
ClusterCats with WIN2K and IIS 5.We are following the directions
outlined in the Using ClusterCats PDF from the Macromedia website.The
problem we are having is with setting up the Dynamic IP addressing so
the servers will failover in case one goes down.Below are the steps
we have taken:

 
1) Each server was assigned a unique IP for the website and one
for the maintenance address.
2) These IP's were added to the DNS Forward and Reverse lookup
tables, and were confirmed using NSLOOKUP.
3) With all IP's bound to the NICs, ClusterCats was installed on
each server.
4) A cluster was created using the Wizard, and no maintenance
address was specified per the instructions.So far, so good.
5) The website address was removed from each NIC, and each website
in IIS was checked to make sure the website IP was still bound to the
website.
6) Each machine was rebooted.

 
After rebooting the servers, ClusterCats Explorer shows that the second
server (dev2) is unavailable even though the website and all required
services are running.The IP for dev1, which shows as available in
Explorer, is being properly assigned as that server can be browsed.

 
We have tried several variants of the steps taken above, and each time
we find that the second server comes up not available. If we run
ClusterCats Explorer/Cluster Wizard from dev2, the same thing happens
but in reverse (dev2 is available after reboot, but dev1 comes up as
unavailable.)

 
Any ideas would be greatly appreciated!

/crit

-- 

---
[This E-mail scanned for viruses by Declude Virus]

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: PW encryption/decryption

2003-11-05 Thread Critter
oi Tim!!

whynotjust hash the passwords as they go into the db then checkthe hashed entered password
against the db value... why bother with decrypting

-- 


Wednesday, November 5, 2003, 12:24:36 PM, you wrote:

TL Well... I've spent at least 40 hrs on this and even help from Peter
TL Tilbrook and Tony did not solve the dilemma... would anybody be
TL available to look at some code I've set up for a user registration
TL password encryption scenario 
TL (used http://tutorial113.easycfm.com as a basis)

TL I just don't get it... it works sometimes and not others... I'd be
TL willing to send files/database etc... even pay someone at this point ...
TL I've thrown my hands up... I really don't want to put plain text
TL passwords in the DB, but I'm a hair away from doing just that

TL You can see it NOT work at
TL http://www.talbotcounty.org/employ/seekers/seeker_registration2.cfm

TL Tim 

TL 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: PW encryption/decryption

2003-11-05 Thread Critter
oi Tim!!

ah,true. it's a one way operation i would, in that case, just have a reset password module, as
opposed to emailing it to them.. email out a link to reset it..

-- 


Wednesday, November 5, 2003, 1:03:05 PM, you wrote:

TL Hey... thanks for the reply... somewhere I read that hashing doesn't
TL work when you email the password to the registrant... is that true?

TL -Original Message-
TL From: Critter [mailto:[EMAIL PROTECTED] 
TL Sent: Wednesday, November 05, 2003 12:50 PM
TL To: CF-Talk
TL Subject: Re: PW encryption/decryption

TL oi Tim!!

TL whynotjust hash the passwords as they go into the db then check
TL the hashed entered password
TL against the db value... why bother with decrypting


---
[This E-mail scanned for viruses by Declude Virus]

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Striping URL

2003-10-30 Thread Critter
oi Neal!!

do a listlast based on / then do a left(xxx,len(xxx-4)

?

-- 


Thursday, October 30, 2003, 12:16:28 PM, you wrote:

BN Hello folks...

 
BN I am trying to strip part of a url and then take part of the url string and
BN save it as a variable. 

 
BN Example:

 
BN If I have a url like: http://www.mysite.com/bubbagump.htm
BN http://www.mysite.com/bubbagump.htm 

 
BN I want to remove the .htm and save bubbagump as the variable. 

 
BN Currently I have it working if the url string is
BN http://www.mysite.com/bubbagump http://www.mysite.com/bubbagump  I save
BN bubbagump as a variable using the code below. 

 
BN cfset page = ListFirst(CGI.URL,/)

 
BN Somehow I need to do both whether it has .htm at the end or not and store
BN the remanding as the variable. 

 
BN Any ideas...

 
BN Thanks,
BN - Neal

BN 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




sot-Creating a webservice......

2003-10-23 Thread Prince Critter
oi CF-Talk,!!

creatingthe webservice itself is pretty cut/dry, but I have to have users pass their account and
password to us and I need to cover for incase they can only pass it in the browseretc

anyideason what I can give to the clients to encrypt the url coming over and decrypt it on
our end?

users might be using asp and/or CF.

ctz

-- 

---
[This E-mail scanned for viruses by Declude Virus]

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How do I check...

2003-10-20 Thread Prince Critter
oi Cutter!!

isn't there an fileexists() ?

-- 


Monday, October 20, 2003, 9:34:41 PM, you wrote:

CCT How do I check to see if a file exists on the server? I tried to use the 
CCT cffile tag with the readbinary attribute but it gave me a Java error if 
CCT the file didn't exist...

CCT Cutter

CCT 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Antivirus software on web server

2003-10-16 Thread Prince Critter
oi Jochem!!

tlist?

-- 


Thursday, October 16, 2003, 11:45:11 AM, you wrote:

JvD Mark W. Breneman wrote:
 True it probably would show in the task or process lists, but if I were
 to write a worm/Trojan, I would make it show up in the task list as
 SVCHOST.exe, the generic name of a DLL process.

JvD 1. You know how many of those you have on your server.
JvD 2. tlist will show the application names behind svchost.exe

JvD Jochem

JvD 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Antivirus software on web server

2003-10-16 Thread Prince Critter
oi Jochem!!

Ha!

ta

-- 


Thursday, October 16, 2003, 12:08:52 PM, you wrote:

JvD Minion Critter wrote:
 
 tlist?

JvD http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q250/3/20.ASPNoWebContent=1

JvD Jochem

JvD 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Requery of a query in CF 4.5?

2002-11-14 Thread Critter
oi Shawn!!

nope.  5.0  above..


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
Channel=ColdFusion Blog = http://blog.ctzc.com;





Thursday, November 14, 2002, 12:09:08 PM, you wrote:

SR Hello,

SR Can you requery a query in Cf 4.5? I can't seem to find anything in the Docs
SR about it.

SR Any help would be great :)

SR TIA

SR Shawn Regan
SR pacifictechnologysolutions
SR 15530-B Rockfield Blvd. Suite 4 
SR Irvine, CA 92618
SR 949.830.1623
SR w w w . p t s 1 . c o m

SR 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: How secure is encrypt

2002-10-30 Thread Critter
oi Rob!!

uh.  he's  talking  about  the  function  not  the  exe. no? best thing to do is 
hashem or something
similiar


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Wednesday, October 30, 2002, 11:49:20 AM, you wrote:

RR http://www.password-crackers.com/crack/cfdecrypt.html

RR -Original Message-
RR From: John Gedeon [mailto:jgedeon;qualcomm.com]
RR Sent: Wednesday, October 30, 2002 8:42 AM
RR To: CF-Talk
RR Subject: How secure is encrypt


RR how good is the encryption  that the built in cf function use?
RR good enough for cc's or passwords?

RR John

RR  Proverbs 3:5 Trust in the Lord with all your heart and lean not on
RR your own understanding;


RR 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Closing window from inside a frame?

2002-10-28 Thread Critter
oi Greg!!

top.window.close() ?

top.window.opener... ?


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Monday, October 28, 2002, 1:39:53 PM, you wrote:

GL I have a form inside a frameset and after posting the form and processing
GL the data I need to close the window and post back to the opener.
GL I've used this in an action template before after processing a form
GL submission and it works nicely. But I'm trying to do a similar thing inside
GL a frameset and it doesn't want to close the window. :-(  Any ideas?
GL  cfoutput
GL  html
GL  script language=JavaScript
GL   function closeit() {
GL   window.opener.location=index.cfm?fuseaction=members.main;
GL   window.close();
GL   }
GL  /script
GL  /cfoutput
GL  body onload=closeit()/body
GL  /html

GL 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Read in external file for manipulation

2002-10-28 Thread Critter
oi FlashGuy!!

loop the file based on chr(13)chr(10) as the delimiter.. ?


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Monday, October 28, 2002, 2:10:14 PM, you wrote:

F Hi,

F I require the following:

F 1. Read in an external file.
F 2. All lines that contains DATA, FILE, IMAGE are put into a variable which is 
comma-delimited. Everything else that doesn't match the criteria gets thrown out.
F 3. The results of this variable gets stored on the users PC for future reference as 
a comma-deliimited text file (ref.txt)

F cflock timeout=5 name=readfile type=READONLY
F cffile action=read file=C:\file.txt variable=ListLoop
F /cflock

F I'm not sure where to go next? I tried something like below but it lists 
*everything* in the external file being read in.

F cfif ListLoop CONTAINS DATA OR
F ListLoop CONTAINS DATA OR
F ListLoop CONTAINS DATA
F#ListLoop#

F /cfif


F ---
F Colonel Nathan R. Jessop
F Commanding Officer
F Marine Ground Forces
F Guatanamo Bay, Cuba
F ---



F 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Dropdown Value Passing

2002-10-19 Thread Critter
oi Jillian!!

option value=#users.trainerid#../option


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Saturday, October 19, 2002, 8:48:05 PM, you wrote:

JC I have a bit of a problem... and I'm hoping there is an easy way to solve
JC it.

JC I have a dropdown that is populated like this:

JC select name=trainers
JC cfoutput query=trainersoption#users.fname# #users.lname#,
JC #users.city#/option/cfoutput
JC /select

JC So it provides a list of trainers, by name including the city they train in.
JC What I want to do is let my visitor choose from this list, but when it
JC passes the value, I'd like it to pass another variable #users.trainerid#...
JC instead of any of those other fields (fname, lname, city0.

JC How would I do this?

JC --
JC Jillian

JC 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: MX + ArcIMS

2002-10-16 Thread Critter

oi Hugo!!

what  type  of  a hit with processing time do you think you would take if CF does all 
the parsing as
opposed to a dll?



-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Wednesday, October 16, 2002, 2:47:08 AM, you wrote:

HA (As a background for people who don't know what this is about:
HA ArcIMS is a piece of software by a company called ESRI that is basically a
HA web-service for creating maps on-the fly, as well as querying and
HA manipulating those maps. ESRI has supported CF up to 5.0, but the MX
HA support has been slow.)

HA (This message has also been posted on the ESRI CF/ArcIMS discussion board)

HA It sounds good that there will be MX support in the upcoming ArcIMS 4.01.

HA But... Would it be overly tricky for us (the community) to roll our own
HA connector? What is the magic that is done in the CFX/DLLs/SOs etc in the
HA connector?

HA I understand part of what is done is handling the CustomTags and parsing
HA the return AXL's, but that is nothing overly complicated, right?
HA (especially with MX's XML abilities?)

HA Step one would be to create tags/UDF's/CFC's to just send and receive
HA AXL's (wouldn't it just be posting the request AXL to a specified port?)
HA and get the return.

HA Further steps would be to mimic/copy the behaviour of the CF_ARCIMS tag,
HA parse the request (OUT_QUERYTABLE etc) and catch errors.

HA If it is community owned/maintained it could be open source, and we could
HA fix errors and improve the tag-set continously.

HA Any comments?





HA 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



(SOT) FlashMX Remoting *sigh*

2002-10-16 Thread Critter

oi CF-Talk,!!

  Ok, question (my last ditch effort to sort this!!)

  swf is at http://slash.ctzc.com/flash/ but doesn't work because it's on a subdomain. 
If you access
  it  via  http://flash.ctzc.com/slashdot/flash/  it  works.  The  remoting  gateway  
is  set to use
  http://flash.ctzc.. so why won't it make the connection??


  anyone? Is it NOT possible to run swf's off of a subdomain? Hell, I would even be 
happy if I could
  figure out how to map /flashservices/gateway/ to 
slash.ctzc.com/flashservices/gateway.


  any suggestions?



  --
  Critz
   Macromedia Certified Advanced ColdFusion Developer
   CFX_BotMaster Network=Efnet
 Channel=ColdFusion Blog=http://blog.ctzc.com;


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: (SOT) FlashMX Remoting *sigh*

2002-10-16 Thread Critter

oi Mark!!

yeah, i've tried the ip address, and that seems a no go as well. :(


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Wednesday, October 16, 2002, 3:26:00 PM, you wrote:

MAKC Critz,

MAKC Another thing you might try is the IP address (if  they are both virtually
MAKC hosted on the same server it just might work g).

MAKC -mk

MAKC -Original Message-
MAKC From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]]
MAKC Sent: Wednesday, October 16, 2002 2:20 PM
MAKC To: CF-Talk
MAKC Subject: RE: (SOT) FlashMX Remoting *sigh*


MAKC Critz,

MAKC I don't think this will work - in fact It was my understanding that the host
MAKC must match... that you can't serve an SWF file from one server and have it
MAKC access a CFC from another.  I do not remember any discussion of sub-domains.
MAKC However, you should be able to write a simple .cfc on the slash.ctzc.com
MAKC site that acts as a proxy to the cfc on the flash.ctzc.com site - as long as
MAKC the remote cfc has it's access set to remote (or possibly they are on the
MAKC same server?).

MAKC -mk

MAKC -Original Message-
MAKC From: Critter [mailto:[EMAIL PROTECTED]]
MAKC Sent: Wednesday, October 16, 2002 2:09 PM
MAKC To: CF-Talk
MAKC Subject: (SOT) FlashMX Remoting *sigh*


MAKC oi CF-Talk,!!

MAKC   Ok, question (my last ditch effort to sort this!!)

MAKC   swf is at http://slash.ctzc.com/flash/ but doesn't work because it's on a
MAKC subdomain. If you access
MAKC   it  via  http://flash.ctzc.com/slashdot/flash/  it  works.  The  remoting
MAKC gateway  is  set to use
MAKC   http://flash.ctzc.. so why won't it make the connection??


MAKC   anyone? Is it NOT possible to run swf's off of a subdomain? Hell, I would
MAKC even be happy if I could
MAKC   figure out how to map /flashservices/gateway/ to
MAKC slash.ctzc.com/flashservices/gateway.


MAKC   any suggestions?



MAKC   --
MAKC   Critz
MAKCMacromedia Certified Advanced ColdFusion Developer
MAKCCFX_BotMaster Network=Efnet
MAKC  Channel=ColdFusion Blog=http://blog.ctzc.com;




MAKC 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: (SOT) FlashMX Remoting *sigh*

2002-10-16 Thread Critter

oi Chris!!

cheers, I'll have a gander at it!


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Wednesday, October 16, 2002, 5:13:01 PM, you wrote:

CK Critz...

CK You're running up against a security restriction in the Flash player. 

CK What you want to do is possible but you need to use a workaround. There
CK are two options: a server-side proxy and the use of a shim swf. See this
CK technote on how accomplish this:

CK http://www.macromedia.com/support/flash/ts/documents/load_xdomain.htm

CK If you have any questions, feel free to contact me off list and I can
CK help you gets this going.

CK Chris


CK -Original Message-
CK From: Critter [mailto:[EMAIL PROTECTED]] 
CK Sent: Wednesday, October 16, 2002 12:09 PM
CK To: CF-Talk
CK Subject: (SOT) FlashMX Remoting *sigh*

CK oi CF-Talk,!!

CK   Ok, question (my last ditch effort to sort this!!)

CK   swf is at http://slash.ctzc.com/flash/ but doesn't work because it's
CK on a subdomain. If you access
CK   it  via  http://flash.ctzc.com/slashdot/flash/  it  works.  The
CK remoting  gateway  is  set to use
CK   http://flash.ctzc.. so why won't it make the connection??


CK   anyone? Is it NOT possible to run swf's off of a subdomain? Hell, I
CK would even be happy if I could
CK   figure out how to map /flashservices/gateway/ to
CK slash.ctzc.com/flashservices/gateway.


CK   any suggestions?



CK   --
CK   Critz
CKMacromedia Certified Advanced ColdFusion Developer
CKCFX_BotMaster Network=Efnet
CK  Channel=ColdFusion Blog=http://blog.ctzc.com;



CK 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: not another mx boo boo

2002-10-09 Thread Critter

oi Tyler!!

i'll reply on community.


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Wednesday, October 9, 2002, 12:46:54 PM, you wrote:

FT Just because Sean works at MM doesn't mean he can't speak _his_ mind.

FT All his emails come from his personal address, not a MM address.  He's
FT able to say his own thoughts.  He just happens to have access to lots of
FT inside CF information at his work.

FT t

FT **
FT Tyler M. Fitch
FT Certified Advanced ColdFusion 5 Developer
FT http://isitedesign.com
FT **

FT -Original Message-
FT From: Aaron Rouse [mailto:[EMAIL PROTECTED]] 
FT Sent: Wednesday, October 09, 2002 8:09 AM
FT To: CF-Talk
FT Subject: re: not another mx boo boo


From best I can tell it is in fact part of his job.  It is good to see
FT that MM has employees out in these circles to best represent company
FT with such attitudes and at times insulting behavior.  Anyone know who we
FT could contact at MM via smail to compliment such things?

FT Oh, wait, nevermind I am just part of that childish group(Sean The MM
FT hat wearer words).

 Sean, You're not impressing me with your defensive
 attitude. Is all this arguing really part of your  job?

FT --
FT Snipe - CF_BotMaster Network=EFNet Channel=ColdFusion
FT --

FT 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Headers are showing up on pages at random....

2002-10-08 Thread Critter

oi CF-Talk,!!

  is there a workaround for this? Is it a cf|iis|browser bug?


  http://slash.ctzc.com/header.jpg


  --
  Critz
   Macromedia Certified Advanced ColdFusion Developer
   CFX_BotMaster Network=Efnet
 Channel=ColdFusion Blog=http://blog.ctzc.com;


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Headers are showing up on pages at random....

2002-10-08 Thread Critter

oi Gyrus!!

i'll have a gander. thanks


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Tuesday, October 8, 2002, 10:30:02 AM, you wrote:

G - Original Message -
G From: Critter [EMAIL PROTECTED]
   is there a workaround for this? Is it a cf|iis|browser bug?
G ---

G I recall some IE6 issue related to this type of thing (check list archives),
G but I also remember way back becoming totally flummoxed by the appearance of
G HTTP headers in some of my pages... I think the issue in the end was
G something to do with cfsetting enablecfoutputonly=Yes... Maybe double
G check these, make sure they're nested etc.?

G - Gyrus

G 
G - [EMAIL PROTECTED]
G work: http://www.tengai.co.uk
G play: http://www.norlonto.net
G - PGP key available
G 

G 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Headers are showing up on pages at random....[sorted]

2002-10-08 Thread Critter

oi Gyrus!!

this sorted us:

http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threadid=208378highlight_key=ykeyword1=cflocation

last post...


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Tuesday, October 8, 2002, 10:30:02 AM, you wrote:

G - Original Message -
G From: Critter [EMAIL PROTECTED]
   is there a workaround for this? Is it a cf|iis|browser bug?
G ---

G I recall some IE6 issue related to this type of thing (check list archives),
G but I also remember way back becoming totally flummoxed by the appearance of
G HTTP headers in some of my pages... I think the issue in the end was
G something to do with cfsetting enablecfoutputonly=Yes... Maybe double
G check these, make sure they're nested etc.?

G - Gyrus

G 
G - [EMAIL PROTECTED]
G work: http://www.tengai.co.uk
G play: http://www.norlonto.net
G - PGP key available
G 

G 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re[2]: Save form data before submit

2002-10-02 Thread Critter

oi Robert!!

why  couldn't  you  just  convert  the  form scope to a wddx packet, and chuck that 
into a db on the
action page of the form?


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Wednesday, October 2, 2002, 12:06:08 PM, you wrote:

RS To save the information to a database you would need to submit a cfm page.
RS On way to do this is with a hidden frame.  The onChange event from a form
RS field in a visible frame could populate a field in a hidden frame and then
RS submit that page in the hidden frame (which would write the information to a
RS database, a session variable, or whatever).  I've never done this but there
RS is no reason it shouldn't work.

RS -Original Message-
RS From: Ryan Kime [mailto:[EMAIL PROTECTED]] 
RS Sent: Wednesday, October 02, 2002 10:07 AM
RS To: CF-Talk
RS Subject: RE: Save form data before submit


RS Something like this? I am using this in a contact form page.

RS script language=javascript

RS function getperson() {

RS if (document.Form1.Products.value==GI) {
RS document.Form1.sendto.value=[EMAIL PROTECTED] } if
RS (document.Form1.Products.value==HE) {
RS document.Form1.sendto.value=[EMAIL PROTECTED] } if
RS (document.Form1.Products.value==SP) {
RS document.Form1.sendto.value=[EMAIL PROTECTED] } if
RS (document.Form1.Products.value==BP) {
RS document.Form1.sendto.value=[EMAIL PROTECTED] } if
RS (document.Form1.Products.value==MP) {
RS document.Form1.sendto.value=[EMAIL PROTECTED] } if
RS (document.Form1.Products.value==TS) {
RS document.Form1.sendto.value=[EMAIL PROTECTED] } if
RS (document.Form1.Products.value==IR) {
RS document.Form1.sendto.value=[EMAIL PROTECTED] } if
RS (document.Form1.Products.value==HR) {
RS document.Form1.sendto.value=[EMAIL PROTECTED] } if
RS (document.Form1.Products.value==SU) {
RS document.Form1.sendto.value=[EMAIL PROTECTED] }

RS }
RS /script

RS The sendto field is hidden. And the function is called using an OnChange
RS event from a dropbox.


RS -Original Message-
RS From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
RS Sent: Tuesday, October 01, 2002 8:07 PM
RS To: CF-Talk
RS Subject: RE: Save form data before submit


RS oh please oh please.that would rock.

RS i hope someone who knows replies to this...this would
RS be very coolor, what about sending the data
RS to a session variable onBlur :)

RS that would be even nicer!!

RS tw


RS -Original Message-
RS From: Paul Campano [mailto:[EMAIL PROTECTED]] 
RS Sent: Tuesday, October 01, 2002 9:30 PM
RS To: CF-Talk
RS Subject: Save form data before submit


RS Is there a way I can save the data from a form field BEFORE the submit
RS button is pressed?  I thought I saw something awhile back that used
RS javascript to save each line to a db onBlur  ?  Has anyone done this or have
RS an idea on how it can be done?  Thanks.

RS Paul Campano





RS 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Odd extension

2002-10-02 Thread Critter

oi Mark!!

extensions can really be whatever you want them to be... might be a custom one...


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Wednesday, October 2, 2002, 1:54:13 PM, you wrote:

MAKC Folks,

MAKC Does anyone know what the .rs extension is?  I'm on a site that is using doc
MAKC names like index.rs?id=34939.  Any ideas?

MAKC -mk


MAKC 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Save form data before submit

2002-10-01 Thread Critter

oi Paul!!

are you trying to save the information a person has entered into the fields?? to put 
into a database
or something??



-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Tuesday, October 1, 2002, 9:29:55 PM, you wrote:

PC Is there a way I can save the data from a form field BEFORE the submit button is 
pressed?  I thought I saw something awhile back that used javascript to
PC save each line to a db onBlur  ?  Has anyone done this or have an idea on how it 
can be done?  Thanks.

PC Paul Campano


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: changing the default administrator directory

2002-09-30 Thread Critter

oi C.!!

just rename the directory. works for me.



-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Monday, September 30, 2002, 12:28:35 PM, you wrote:

TCD Hello,
 
TCD Could someone tell me what's required to change the default Coldfusion
TCD administrator 4.5/5 location besides changing the directory name.  
 
TCD http://xxx..com/CFIDE/administrator/index.cfm
TCD http://xxx..com/CFIDE/administrator/index.cfm 
 
TCD to something like:
 
TCD http://xxx..com/
TCD http://xxx..com/FJIDE/administrator/index.cfm
TCD FJIDE/administrator/index.cfm
 
TCD Thanks,
TCD Doug
 
TCD Doug Teel - Web Developer
TCD Fulbright  Jaworski L.L.P.
TCD Phone 713-651-5432 
TCD Fax 713-651-5246
 
 
 

TCD 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Critter

oi Rick!!

http://chattyfig.figleaf.com/


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Friday, September 27, 2002, 11:28:54 AM, you wrote:

RF Hi, all.

RF I'm really trying to figure out the Flash MX - CF paradigm,
RF but am struggling.  None of the training materials seem to be
RF on target.

RF I was wondering if there's a Flash MX - CF mailing list like this one
RF for beginning ActionScript / Intermediate CF programmers?

RF Perhaps I can pick more of what I need there...

RF Thanks,

RF Rick


RF 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



cfhtmlhead

2002-09-27 Thread Critter

oi CF-Talk,!!

  I've got a tag that says this:
  cfhtmlhead text='SCRIPT LANGUAGE=JavaScript 
TYPE=text/javascriptwindow.open(../index.cfm,mainApp,width=+parseInt(screen.availWidth
 * .90)+,height=+parseInt(screen.availHeight * 
.90)+,status=yes,top=0,left=0,resizable);/SCRIPT'

  but when the page is processed all that shows is:
  SCRIPT LANGUAGE=JavaScript TYPE=text/javascriptvoid(0);
   
 /SCRIPT


  any ideas?



  --
  Critz
   Macromedia Certified Advanced ColdFusion Developer
   CFX_BotMaster Network=Efnet
 Channel=ColdFusion Blog=http://blog.ctzc.com;


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re[2]: cfhtmlhead

2002-09-27 Thread Critter

oi Kreig!!

cheers, i'll keep those suggestions in mind for future reference.

the magical reboot sorted all


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Friday, September 27, 2002, 12:39:48 PM, you wrote:

KZ And if you don't want to use a custom tag, and have CF 5, you can use 
KZ CFSAVECONTENT to define your header info.

KZ Try:

KZ CFSAVECONTENT VARIABLE=goesinHead
KZ SCRIPT TYPE=text/javascript // LANGUAGE attribute is redundant and has been 
deprecated
KZ window.open(../index.cfm,mainApp,width=+parseInt(screen.availWidth * 
.90)+,height=+parseInt(screen.availHeight *
KZ 90)+,status=yes,top=0,left=0,resizable);
KZ /SCRIPT
KZ /CFSAVECONTENT
KZ CFHTMLHEAD TEXT=#goesinHead#

KZ ..depending on your app design, you may have to include cfoutput tags 
KZ around the SCRIPT in the CFSAVECONTENT area.

KZ John Beynon wrote:

You tried cf_htmlhead instead? I had some issues with quotes etc in the
cfhtmlhead tag and htmlhead solved it...

Pretty sure that allows you do to:
cf_htmlhead
   ...javascript here
/cf_htmlhead

HTH,

John.

-Original Message-
From: Critter [mailto:[EMAIL PROTECTED]] 
Sent: 27 September 2002 17:09
To: CF-Talk
Subject: cfhtmlhead


oi CF-Talk,!!

  I've got a tag that says this:
  cfhtmlhead text='SCRIPT LANGUAGE=JavaScript
TYPE=text/javascriptwindow.open(../index.cfm,mainApp,width=+parseIn
t(screen.availWidth * .90)+,height=+parseInt(screen.availHeight *
90)+,status=yes,top=0,left=0,resizable);/SCRIPT'

  but when the page is processed all that shows is:
  SCRIPT LANGUAGE=JavaScript TYPE=text/javascriptvoid(0);
/SCRIPT


  any ideas?



  --
  Critz
   Macromedia Certified Advanced ColdFusion Developer
   CFX_BotMaster Network=Efnet
 Channel=ColdFusion Blog=http://blog.ctzc.com;




KZ 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: JS within CFscript

2002-09-26 Thread Critter

oi Kris!!

you could writeoutput(...) the javascript necessary for the alert box



-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Thursday, September 26, 2002, 10:25:40 AM, you wrote:

KP Is there anyway to have Cfscript open an JS alert box for me???


KP Kris Pilles
KP Website Manager
KP Western Suffolk BOCES
KP 507 Deer Park Rd., Building C
KP Phone: 631-549-4900 x 267
KP E-mail: [EMAIL PROTECTED]


KP 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re[2]: Line Nibbler Alert!!!

2002-09-26 Thread Critter

oi Michael!!

i use the Bat, and they are missing.


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Thursday, September 26, 2002, 12:05:21 PM, you wrote:

MD The archives have the post with the proper dots. As Howie said, it may be an
MD issue of the mail reader. Anyone using Eudora or another non-outlook reader
MD seeing this?


 It could be getting stripped at your end.

  - here's one

 . .. - two pairs

 - Original Message -
 From: Jerry Johnson [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, September 26, 2002 11:10 AM
 Subject: Line Nibbler Alert!!!


  Line Nibbler Alert
 
  My message was stripped of leading periods.
 
  Any dot/period character in the following email was stripped if it was
MD the first character on a line.
 
  Is this intentional?
 
   - here's one.
 
  . ..  - here are two pairs in a row.
 
  Jerry Johnson
 


 
MD 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How to get the current time...

2002-09-26 Thread Critter

oi Rick!!

drop the createodbcdatetime()


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog=http://blog.ctzc.com;





Thursday, September 26, 2002, 10:56:55 PM, you wrote:

RF This is not working:

RF CFOUTPUT#DateFormat(CreateODBCDateTime(Now()),  d,  h:mm
RF tt)#/CFOUTPUT

RF I get:

RF September 26 h':09 t't

RF How do I need to adjust it?

RF To get September 26, 10:56 pm  ?

RF Rick


RF 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Retrieval of cached query failed

2002-09-25 Thread Critter

oi CF-Talk,!!

  I  keep  gettin the above error on one of my servers all of a sudden, and also 
CFServer is pegging
  the  cpu  at 100% for no apparent reason, and will not settle until restarting the 
service. Anyone
  seen anything like this??? Or know what causes it?



  --
  Critz
   Macromedia Certified Advanced ColdFusion Developer
   CFX_BotMaster Network=Efnet
 Channel=ColdFusion Blog = http://blog.ctzc.com;


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re[2]: Retrieval of cached query failed

2002-09-25 Thread Critter

oi Chip!!

thanks, i'll have a look at it.


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet
   Channel=ColdFusion Blog = http://blog.ctzc.com;





Wednesday, September 25, 2002, 8:17:40 AM, you wrote:

CG I have seen this error message in the past for long-running queries on
CG CF 4.5.  It appeared to me that CF was marking the query as cached when
CG it began to execute, rather than when the results were returned
CG successfully.  If the same query was then executed a second time while
CG the first one was still trying to return results, that error message
CG would appear.

CG I have not seen the same error in CF 5 or CFMX, though that doesn't mean
CG it couldn't still be the case.

CG Chip

CG -Original Message-
CG From: Critter [mailto:[EMAIL PROTECTED]] 
CG Sent: Wednesday, September 25, 2002 6:54 AM
CG To: CF-Talk
CG Subject: Retrieval of cached query failed


CG oi CF-Talk,!!

CG   I  keep  gettin the above error on one of my servers all of a sudden,
CG and also CFServer is pegging
CG   the  cpu  at 100% for no apparent reason, and will not settle until
CG restarting the service. Anyone
CG   seen anything like this??? Or know what causes it?



CG   --
CG   Critz
CGMacromedia Certified Advanced ColdFusion Developer
CGCFX_BotMaster Network=Efnet
CG  Channel=ColdFusion Blog = http://blog.ctzc.com;



CG 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   3   >