FDF creation (PDF)

2003-07-16 Thread Joel Blanchette
Hello All
I have this pdf with form field inside.  I am using the
PDFFormFiller custom tag
(http://www.macromedia.com/cfusion/exchange/index.cfm#loc=en_usview=sn1
31viewName=ColdFusion%20ExtensionextID=1001002)

To implement the values in the pdf.  Now the problem with this tag I
that I need to save the new pdf file on the server then show it to the
user with a redirect.

What do I have to change in the code to make this happen.

CFCONTENT TYPE=application/vnd.fdf

CFOUTPUT%FDF-1.2
1 0 obj 
/FDF 
/Fields
[
/CFOUTPUT

CFLOOP COLLECTION=#VarStruct# ITEM=VarName
CFIF '#VarName#' NEQ 'PDFURL'
CFOUTPUT  /T (#VarName#) /V
(#Evaluate(VarStruct.#VarName#)#) 
/CFOUTPUT
/CFIF
/CFLOOP

CFOUTPUT ] 
/F (#VarStruct.PDFURL#)


endobj
trailer
/Root 1 0 R
%%EOF
/CFOUTPUT

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


~|
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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: FDF creation (PDF)

2003-07-16 Thread Joel Blanchette
Hey Jeff,
I just tried your idea and t is close...When I ran the script it
gave me the pdf with only what was inside the tag...

You can view it here : http://64.42.203.147/forms/test.pdf

Below is the new code



!--- CFCONTENT TYPE=application/vnd.fdf ---
CFSAVECONTENT VARIABLE=Test
CFOUTPUT%FDF-1.2
1 0 obj 
/FDF 
/Fields
[
/CFOUTPUT

CFLOOP COLLECTION=#VarStruct# ITEM=VarName
CFIF '#VarName#' NEQ 'PDFURL'
CFOUTPUT  /T (#VarName#) /V
(#Evaluate(VarStruct.#VarName#)#) 
/CFOUTPUT
/CFIF
/CFLOOP

CFOUTPUT ] 
/F (#VarStruct.PDFURL#)


endobj
trailer
/Root 1 0 R
%%EOF
/CFOUTPUT
/CFSAVECONTENT
CFFILE ACTION=write
FILE=D:\\x\\www\forms\test.pdf
OUTPUT=#Test#
CFLOCATION URL=http://64.42.203.147/forms/test.pdf; ADDTOKEN=NO

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Jeff Garza [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 16, 2003 3:24 PM
To: CF-Talk
Subject: Re: FDF creation (PDF)


Basically, get rid of the CFCONTENT tag and wrap everything with a
CFSAVECONTENT tag instead and pass the variable on to CFFILE.  Then
relocate to the newly created file on the server.

HTH,

Jeff Garza

- Original Message -
From: Joel Blanchette [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, July 16, 2003 12:50 PM
Subject: FDF creation (PDF)


Hello All
I have this pdf with form field inside.  I am using the PDFFormFiller
custom tag
(http://www.macromedia.com/cfusion/exchange/index.cfm#loc=en_usview=sn1
31viewName=ColdFusion%20ExtensionextID=1001002)

To implement the values in the pdf.  Now the problem with this tag I
that I need to save the new pdf file on the server then show it to the
user with a redirect.

What do I have to change in the code to make this happen.

CFCONTENT TYPE=application/vnd.fdf

CFOUTPUT%FDF-1.2
1 0 obj 
/FDF 
/Fields
[
/CFOUTPUT

CFLOOP COLLECTION=#VarStruct# ITEM=VarName
CFIF '#VarName#' NEQ 'PDFURL'
CFOUTPUT  /T (#VarName#) /V (#Evaluate(VarStruct.#VarName#)#)
/CFOUTPUT
/CFIF
/CFLOOP

CFOUTPUT ]
/F (#VarStruct.PDFURL#)


endobj
trailer
/Root 1 0 R
%%EOF
/CFOUTPUT



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==




~|
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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Shopping Cart

2003-06-16 Thread Joel Blanchette
Hello All,  
Does anyone know of a good shopping cart.  Nothing too
elaborate, but something easy to implement.  I don't feel like
re-inventing the wheel.

Thanks
 
Joel


~|
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

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



SQL Question (Distinct)

2003-02-06 Thread Joel Blanchette
I am trying to do a query as follows

SELECT DISTINCT IPAddress from stats0301
WHERE DomainID = '43'
AND SameDayDate = '20030128'


Now I need the IPAddress to be DISTINCT but I need to return all the
columns.  What would I do to accomplish this?

Thanks
 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


~|
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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: SQL Question (Distinct)

2003-02-06 Thread Joel Blanchette
Tried that...I get the following error

You have an error in your SQL syntax near '* from stats0301 where
DomainID = '43' and SameDayDate = '20030128'' at line 1

I am using MySQL

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 06, 2003 12:35 PM
To: CF-Talk
Subject: RE: SQL Question (Distinct)


select distinct IpAddress, * from stats0301
where DomainId = '43'
and SameDayDate = '20030128'

I think

hth

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping  reporting www.navtrak.net
410.548.2337 

-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 06, 2003 1:29 PM
To: CF-Talk
Subject: SQL Question (Distinct)


I am trying to do a query as follows

SELECT DISTINCT IPAddress from stats0301
WHERE DomainID = '43'
AND SameDayDate = '20030128'


Now I need the IPAddress to be DISTINCT but I need to return all the
columns.  What would I do to accomplish this?

Thanks
 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==




~|
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
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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Joel Blanchette
That is the exact problem?

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 06, 2003 1:41 PM
To: CF-Talk
Subject: Anyone? PDB files? (Palm Databases)


OK, I know I posted this question a few days ago, but want to see if I
can catch someone on this list that may be able to help me. I know
someone out there has to know what I should do.

I have some PDB files, a Palm database. I need to get this data into an
access database. I have tried a few of the PDB converters out there
that did not work. I need some help! Anyone?

Thanks!
Robert Bailey
Famous for nothing

---
[This E-mail scanned for viruses]


~|
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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Joel Blanchette
I meant what is the exact problem?

Still to early..:-)

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 06, 2003 2:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


That is the exact problem?

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 06, 2003 1:41 PM
To: CF-Talk
Subject: Anyone? PDB files? (Palm Databases)


OK, I know I posted this question a few days ago, but want to see if I
can catch someone on this list that may be able to help me. I know
someone out there has to know what I should do.

I have some PDB files, a Palm database. I need to get this data into an
access database. I have tried a few of the PDB converters out there
that did not work. I need some help! Anyone?

Thanks!
Robert Bailey
Famous for nothing

---
[This E-mail scanned for viruses]



~|
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
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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Joel Blanchette
Actually you can view it.

http://www.palmgear.com/software/showsoftware.cfm?prodID=5071

You might be able to copy the info with this also.  Never used it
before.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 06, 2003 2:13 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


it is a binary, can not read it at all, only on a palm pilot, but no
longer have the palm, so I am guessing I am stuck?

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: David R. McGraw [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:27 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


Can You read the PDB as a database?
Or only as a file?

David R. McGraw II
Adelphia Communications
Intranet Application Developer
Work Phone : 814.260.3505
Work Email : [EMAIL PROTECTED]
Home Email : [EMAIL PROTECTED]



-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


getting the data out of the databases, on a PC, that I can use in a CF
app. I have tried 3 conversion tools on the web, none of them worked.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:07 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


I meant what is the exact problem?

Still to early..:-)



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 2:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


That is the exact problem?



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 1:41 PM
To: CF-Talk
Subject: Anyone? PDB files? (Palm Databases)


OK, I know I posted this question a few days ago, but want to see if I
can catch someone on this list that may be able to help me. I know
someone out there has to know what I should do.

I have some PDB files, a Palm database. I need to get this data into an
access database. I have tried a few of the PDB converters out there
that did not work. I need some help! Anyone?

Thanks!
Robert Bailey
Famous for nothing

---
[This E-mail scanned for viruses]







~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




WDDX error

2003-02-04 Thread Joel Blanchette
Hello All,
I am having a problem with the xmlparser of cfdev.com.  When I
run the querie I get the following error

Error Diagnostic Information
XML parsing error: not well-formed (error code 4, line 2, column 13680,
buffer offset 15232)


The error occurred while processing an element with a general identifier
of (CFWDDX), occupying document position (25:1) to (25:78) in the
template file C:\CFusion\CustomTags\xmlparser.cfm.


Does anyone know what the problem would be?  It seems that it lie in the
cfwddx tag.

 
Joel


~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CFServer passwords

2003-01-17 Thread Joel Blanchette
For CF 5 Server


CFSET CFKey = 4p0L@r1$

CFREGISTRY ACTION=GET
Branch=HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Se
rver Entry=AdminPassword Variable=AdminPassword

CFOUTPUT
  Registry Password: #CFusion_Decrypt(AdminPassword, CFKey)#
/CFOUTPUT

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Andy Ewings [mailto:[EMAIL PROTECTED]] 
Sent: Friday, January 17, 2003 10:55 AM
To: CF-Talk
Subject: CFServer passwords


Does anyone know where the CF administrator password is stored in the
registry? - my mate has installed the server and rapidly forgotton what
it is

~|
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
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: GoogleBot Robot.txt

2002-11-27 Thread Joel Blanchette
Rick,
I can help you out with this.  I would need to know more info
about your situation.  Email me off list at [EMAIL PROTECTED] and I
will be able to help u out.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: cfhelp [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, November 26, 2002 7:15 PM
To: CF-Talk
Subject: GoogleBot Robot.txt


I have put a robots.txt file in the root of my site to stop it from
accessing subdirectories. But GoogleBot is still accessing all the files
in my root bit some of the files do not run without passing a variable
to them. So my Application Logfile is full of errors.

So I want to know if it is a good idea to put this in my Application.cfm
file?

cfif HTTP_USER_AGENT IS 'Googlebot/2.1
(+http://www.googlebot.com/bot.html)'

html
 head
titleSite Title/title

meta tags

  /head
body

Text from the About page

/body
/html
cfabort
/cfif


This way Google gets to spider all pages and I don't get any errors.

Rick

~|
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
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



SQL Statement

2002-11-05 Thread Joel Blanchette
I have this VB SQL Statement and I need to change it to cf mysql

CFQUERY NAME=SRUpdate DATASOURCE=DomainDefault USERNAME=joel
PASSWORD=klrtl
UPDATE Statistic_Results#YearMonth#
SET Raw_Hits = 1 + Raw_Hits,
Unique_Hits = 1 + Unique_Hits
WHERE Domain_ID = '#DomainNameID#'
AND Daily_Date = '#TodayDate#'
/CFQUERY

The problem lies when I do the column + 1.  Is there an easy way of
doing this without doing a new cfquery?

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==

~|
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
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: SQL Statement

2002-11-05 Thread Joel Blanchette
Tried that and all that happens is that the number stays at 0.  When
that query is initialized, the column Raw_Hits and Unique_Hits already
has a value as Integer in a MYSQL Database.  Is there another way of
doing this?  All I need to do is add one to the columns.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com] 
Sent: Tuesday, November 05, 2002 2:21 PM
To: CF-Talk
Subject: RE: SQL Statement


Joel,

Put the column first in a math operation:


UPDATE Statistic_Results#YearMonth#
SET Raw_Hits =  Raw_Hits + 1,
Unique_Hits = Unique_Hits + 1
WHERE Domain_ID = '#DomainNameID#'
AND Daily_Date = '#TodayDate#'


Assuming they are both int or numeric types - this will work.

-mk



-Original Message-
From: Joel Blanchette [mailto:cftalk;pointofimpact.com]
Sent: Tuesday, November 05, 2002 2:09 PM
To: CF-Talk
Subject: SQL Statement


I have this VB SQL Statement and I need to change it to cf mysql

CFQUERY NAME=SRUpdate DATASOURCE=DomainDefault USERNAME=joel
PASSWORD=klrtl
UPDATE Statistic_Results#YearMonth#
SET Raw_Hits = 1 + Raw_Hits,
Unique_Hits = 1 + Unique_Hits
WHERE Domain_ID = '#DomainNameID#'
AND Daily_Date = '#TodayDate#'
/CFQUERY

The problem lies when I do the column + 1.  Is there an easy way of
doing this without doing a new cfquery?



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==



~|
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: Using CF to interface IIS and Microsoft DNS

2002-11-01 Thread Joel Blanchette
This is possible.  I have created a DNS script that does that.  Email me
off list and I will explain the procedure of how to do it.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Robertson-Ravo, Neil (REC)
[mailto:Neil.Robertson-Ravo;csd.reedexpo.com] 
Sent: Friday, November 01, 2002 9:23 AM
To: CF-Talk
Subject: RE: Using CF to interface IIS and Microsoft DNS


there is probably a set of .vbs scripts which will allow that... I know
you can do a creation of new websites (not on XP) with them

-Original Message-
From: Joshua Miller [mailto:josh;joshuasmiller.com]
Sent: 01 November 2002 15:21
To: CF-Talk
Subject: Using CF to interface IIS and Microsoft DNS


Greetings,
 
I'm writing an application (portal) that allows me to create new sites
from a web based utility. What I'd like to do is when I enter all of the
domain information have IIS automatically create the Web Site entry
and have the DNS information registered in Microsoft DNS.
 
Is this possible or has anyone on the list done this in the past?
 
Thanks,
 
Joshua Miller
[EMAIL PROTECTED]
 



~|
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



I need help

2002-09-09 Thread Joel Blanchette

Hello All,
Well, I did it again...I forgot my admin password.  I used to
have this script that would tell me what the password was...But I don't
seem to find it..  It is ColdFusion 5.

Anyone out there has this script?


Thanks
Joel

__
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: DNS question

2002-08-29 Thread Joel Blanchette

Sure you can.  Not a problem...

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Phoeun Pha [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, August 29, 2002 11:02 AM
To: CF-Talk
Subject: DNS question


Hey guys

I have a site that was registered through Verio (verio.com).  And now I
am going to have ti hosted on a new site, and my host has given me the
IP address for the site.  However, the host doesn't have a DNS service.

What do I do?  Right now, the verio guys are my DNS service.  DO i call
them to tell them to make an update to their DNS information?  can u do
that?

Thanks

__
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



Can this be done?

2002-08-29 Thread Joel Blanchette

Hello All,
Wondering if there is a way to make the html files to using cold
fusion on a windows server 2000 iis5?  I need to map all the html in a
site to cold fusion.  I don't really feel like changing all the html
extensions to cfm.

Thanks.

Joel

__
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



CFObject

2002-08-20 Thread Joel Blanchette

I have a question about using cfobject.

I have this dll that was made for asp.  I want to convert it to
coldfusion since this is what I use.

Here is the code for asp


%
Set ActiveObj = Server.CreateObject(ACTarget.IPGEO)

IP=150.48.244.170

IPFullCountry=ActiveObj.FullLookUp(CStr(IP))

Set ActiveObj=nothing
%

%=IPFullcountry%

How would I do this in coldfusion?

__
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: CF 5 App crashing every 5 minutes...

2002-07-31 Thread Joel Blanchette

Thanks all...It seems to work perfectly nowI will keep an eye out on
it for a few hours.   

Again thanks for all the help.  I love this list!

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Douglas Brown [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, July 31, 2002 2:13 PM
To: CF-Talk
Subject: Re: CF 5 App crashing every 5 minutes...


What version of CF are you using? If you are using 5 then it will be
under settings. As far as the time-out is concerned, I would set it to
30 and then in the templates that you are talking about, you can use
requesttimeout= in your url variable.

IE:

http://www.yourserver.com?requesttimeout=




Douglas Brown
Email: [EMAIL PROTECTED]
- Original Message -
From: Joel Blanchette [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, July 31, 2002 11:40 AM
Subject: RE: CF 5 App crashing every 5 minutes...


 I have 1 cpu intel 850mhz

 I need the timeout high before some of our stats that go off at the 
 middle of the night takes a while to finish.  We are re-vamping the 
 stats system right now.  Hopefully this will be better in a couple of 
 weeks.

 I will change it to 5...

 How to I enable strict attribute validation?



 ==
 Joel Blanchette
 IT and System Specialist
 Point of Impact Technologies Inc.
 Tel: (204) 989-0013
 Email: [EMAIL PROTECTED] ==


 -Original Message-
 From: Douglas Brown [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 31, 2002 1:20 PM
 To: CF-Talk
 Subject: Re: CF 5 App crashing every 5 minutes...


 Limit simultaneous requests to : 10 how many cpu's?
 Timeout requests after : 900 s Kinda high dont ya think? 30 -
60
 maybe
 Restart at   10 unresponsive requests - I would make this like 5
 Restart when requests terminate abnormally : on
 Suppress whitespace by default: on


 I would also enforce strict attribute validation.




 Douglas Brown
 Email: [EMAIL PROTECTED]
 - Original Message -
 From: Joel Blanchette [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, July 31, 2002 11:07 AM
 Subject: RE: CF 5 App crashing every 5 minutes...


  Limit simultaneous requests to : 10
  Timeout requests after : 900 s
  Restart at   10 unresponsive requests
  Restart when requests terminate abnormally : on
  Suppress whitespace by default: on
 
  Template cache size:   1024 kilobytes
 
 
  Anything else?  Let me know where it would be in the menu and I will
  get it..
 
  Thanks for the help
 
 
 
  ==
  Joel Blanchette
  IT and System Specialist
  Point of Impact Technologies Inc.
  Tel: (204) 989-0013
  Email: [EMAIL PROTECTED] ==
 
 
  -Original Message-
  From: Douglas Brown [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, July 31, 2002 12:17 PM
  To: CF-Talk
  Subject: Re: CF 5 App crashing every 5 minutes...
 
 
  What settings do you have in Admin? Max number of threads
 etc...Template
  caching?
 
 
 
 
  Douglas Brown
  Email: [EMAIL PROTECTED]
  - Original Message -
  From: Joel Blanchette [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, July 31, 2002 10:07 AM
  Subject: CF 5 App crashing every 5 minutes...
 
 
   Hello All,
   I need big help.Last night, I saw that our server was going
 down,
   then I noticed that it was not the server but more that the
   cfserver.exe in the task manager was just stopping.  If I restart
 the
   serveice it is all good.  But I need to do this every 5
   minutes...Which is not good...So I wrote a batch file that does it
 for
 
   me.
  
   I need to know why this error is happening.  It seems like when
the
   cfserver.exe gets around 25 megs or memory use it just stops
   responding. The task is still there but it will not respond.  I'm
   using CF Server 5 on a Windows server 2000 SP2.  Is there
something
 in
 
   the threads that I should change?
  
   I can post the lines of the error logs of CF here but I need to
know
   which ones u would need.  I will need help.  I did nothing to the
   server that would just start doing this.  We are getting more
 traffic
   then before.  Would that be the cause?  If yes, there must be a
way
 to
 
   fix this.
  
  
  
   ==
   Joel Blanchette
   IT and System Specialist
   Point of Impact Technologies Inc.
   Tel: (204) 989-0013
   Email: [EMAIL PROTECTED]
==
  
  
 
 

 

__
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



CF 5 App crashing every 5 minutes...

2002-07-31 Thread Joel Blanchette

Hello All,
I need big help.Last night, I saw that our server was going
down, then I noticed that it was not the server but more that the
cfserver.exe in the task manager was just stopping.  If I restart the
serveice it is all good.  But I need to do this every 5 minutes...Which
is not good...So I wrote a batch file that does it for me.

I need to know why this error is happening.  It seems like when the
cfserver.exe gets around 25 megs or memory use it just stops responding.
The task is still there but it will not respond.  I'm using CF Server 5
on a Windows server 2000 SP2.  Is there something in the threads that I
should change?

I can post the lines of the error logs of CF here but I need to know
which ones u would need.  I will need help.  I did nothing to the server
that would just start doing this.  We are getting more traffic then
before.  Would that be the cause?  If yes, there must be a way to fix
this.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==

__
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: CF 5 App crashing every 5 minutes...

2002-07-31 Thread Joel Blanchette

Limit simultaneous requests to : 10
Timeout requests after : 900 s
Restart at   10 unresponsive requests
Restart when requests terminate abnormally : on
Suppress whitespace by default: on

Template cache size:   1024 kilobytes


Anything else?  Let me know where it would be in the menu and I will get
it..

Thanks for the help

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Douglas Brown [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, July 31, 2002 12:17 PM
To: CF-Talk
Subject: Re: CF 5 App crashing every 5 minutes...


What settings do you have in Admin? Max number of threads etc...Template
caching?




Douglas Brown
Email: [EMAIL PROTECTED]
- Original Message -
From: Joel Blanchette [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, July 31, 2002 10:07 AM
Subject: CF 5 App crashing every 5 minutes...


 Hello All,
 I need big help.Last night, I saw that our server was going down, 
 then I noticed that it was not the server but more that the 
 cfserver.exe in the task manager was just stopping.  If I restart the 
 serveice it is all good.  But I need to do this every 5 
 minutes...Which is not good...So I wrote a batch file that does it for

 me.

 I need to know why this error is happening.  It seems like when the 
 cfserver.exe gets around 25 megs or memory use it just stops 
 responding. The task is still there but it will not respond.  I'm 
 using CF Server 5 on a Windows server 2000 SP2.  Is there something in

 the threads that I should change?

 I can post the lines of the error logs of CF here but I need to know 
 which ones u would need.  I will need help.  I did nothing to the 
 server that would just start doing this.  We are getting more traffic 
 then before.  Would that be the cause?  If yes, there must be a way to

 fix this.



 ==
 Joel Blanchette
 IT and System Specialist
 Point of Impact Technologies Inc.
 Tel: (204) 989-0013
 Email: [EMAIL PROTECTED] ==

 

__
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: CF 5 App crashing every 5 minutes...

2002-07-31 Thread Joel Blanchette

Hello,

1. How doI change the temp file...How do I know there is enough??
2. I should have enough disk spaceI will clean a few things up just
in case
3. We are using MySQL  not access...:)

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Paris Lundis [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, July 31, 2002 12:18 PM
To: CF-Talk
Subject: RE: CF 5 App crashing every 5 minutes...


a few things to check that I have seen cause this:

1. Make sure your temp files are big enough for your OS
2. Make sure you have ample free disk available
3. If you have any access databases connected, take them all offline,
compact and repair and then bring them back online.

Those three items are often the route of the evil you are experiencing.

Any yes, more traffic means more caching, which means more swap/temp
file use.

-paris
Paris Lundis
Founder
Areaindex, L.L.C.
http://www.areaindex.com
http://www.pubcrawler.com
(p) 1-212-655-4477
[finding the future in the past, passing the future in the present]
[connecting people, places and things]


-Original Message-
From: Douglas Brown [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 31, 2002 1:17 PM
To: CF-Talk
Subject: Re: CF 5 App crashing every 5 minutes...


What settings do you have in Admin? Max number of threads etc...Template
caching?




Douglas Brown
Email: [EMAIL PROTECTED]
- Original Message -
From: Joel Blanchette [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, July 31, 2002 10:07 AM
Subject: CF 5 App crashing every 5 minutes...


 Hello All,
 I need big help.Last night, I saw that our server was going down, 
 then I noticed that it was not the server but more that the 
 cfserver.exe in the task manager was just stopping.  If I restart the 
 serveice it is all good.  But I need to do this every 5 
 minutes...Which is not good...So I wrote a batch file that does it for

 me.

 I need to know why this error is happening.  It seems like when the 
 cfserver.exe gets around 25 megs or memory use it just stops 
 responding. The task is still there but it will not respond.  I'm 
 using CF Server 5 on a Windows server 2000 SP2.  Is there something in

 the threads that I should change?

 I can post the lines of the error logs of CF here but I need to know 
 which ones u would need.  I will need help.  I did nothing to the 
 server that would just start doing this.  We are getting more traffic 
 then before.  Would that be the cause?  If yes, there must be a way to

 fix this.



 ==
 Joel Blanchette
 IT and System Specialist
 Point of Impact Technologies Inc.
 Tel: (204) 989-0013
 Email: [EMAIL PROTECTED] ==




__
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



RE: CF 5 App crashing every 5 minutes...

2002-07-31 Thread Joel Blanchette

I am also not using any kind of locking.  I did not think that I would
need to since it was very basic code

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Nathaniel Horwitz [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, July 31, 2002 12:38 PM
To: CF-Talk
Subject: RE: CF 5 App crashing every 5 minutes...


I'd be more inclined to agree with him. At my previous company, we had
some problems with increasing memory usage after restarting. It turned
out to be our code- the way we were locking (In our case, not locking at
all) the session variables.

We'd restart the server at least once a day and when we sorted out the
locking problems, it was much less than that.

Nathaniel

-Original Message-
From: Chris Norloff [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 31, 2002 10:21 AM
To: CF-Talk
Subject: Re: CF 5 App crashing every 5 minutes...


That sounds more like freezing than crashing.  I'd check all
shared-scope variables for locking (ANY use of a shared-scope variable
MUST be locked).

I also recommend a MM TechNote called Timeouts and Unresponsive
Requests.

Chris Norloff


- Original Message -
From: Joel Blanchette [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, July 31, 2002 10:07 AM
Subject: CF 5 App crashing every 5 minutes...


 Hello All,
 I need big help.Last night, I saw that our server was going down,

 then I noticed that it was not the server but more that the 
 cfserver.exe in the task manager was just stopping.  If I restart the

 serveice it is all good.  But I need to do this every 5 
 minutes...Which is not good...So I wrote a batch file that does it 
 for me.

 I need to know why this error is happening.  It seems like when the 
 cfserver.exe gets around 25 megs or memory use it just stops 
 responding. The task is still there but it will not respond.  I'm 
 using CF Server 5 on a Windows server 2000 SP2.  Is there something 
 in the threads that I should change?

 I can post the lines of the error logs of CF here but I need to know 
 which ones u would need.  I will need help.  I did nothing to the 
 server that would just start doing this.  We are getting more traffic

 then before.  Would that be the cause?  If yes, there must be a way 
 to fix this.



 ==
 Joel Blanchette
 IT and System Specialist
 Point of Impact Technologies Inc.
 Tel: (204) 989-0013
 Email: [EMAIL PROTECTED] ==





__
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



RE: CF 5 App crashing every 5 minutes...

2002-07-31 Thread Joel Blanchette

The monitors are looking ok to me...

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Paris Lundis [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, July 31, 2002 12:48 PM
To: CF-Talk
Subject: RE: CF 5 App crashing every 5 minutes...


I would point out only that Joel's original message only said the site
started acting up when traffic was applied.. Not that anything had been
changed...

We probably are burying Joel with all our commentary

Please post the log info so we can check out the errors...

Have you ran administrative graphing monitors to see CPU usage, cold
fusion threading, etc? and can you tell us about the volume of traffic
originally and the amount of increase we are talking about?

-paris


-Original Message-
From: Nathaniel Horwitz [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 31, 2002 1:38 PM
To: CF-Talk
Subject: RE: CF 5 App crashing every 5 minutes...


I'd be more inclined to agree with him. At my previous company, we had
some problems with increasing memory usage after restarting. It turned
out to be our code- the way we were locking (In our case, not locking at
all) the session variables.

We'd restart the server at least once a day and when we sorted out the
locking problems, it was much less than that.

Nathaniel

-Original Message-
From: Chris Norloff [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 31, 2002 10:21 AM
To: CF-Talk
Subject: Re: CF 5 App crashing every 5 minutes...


That sounds more like freezing than crashing.  I'd check all
shared-scope variables for locking (ANY use of a shared-scope variable
MUST be locked).

I also recommend a MM TechNote called Timeouts and Unresponsive
Requests.

Chris Norloff


- Original Message -
From: Joel Blanchette [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, July 31, 2002 10:07 AM
Subject: CF 5 App crashing every 5 minutes...


 Hello All,
 I need big help.Last night, I saw that our server was going down,

 then I noticed that it was not the server but more that the 
 cfserver.exe in the task manager was just stopping.  If I restart the

 serveice it is all good.  But I need to do this every 5 
 minutes...Which is not good...So I wrote a batch file that does it 
 for me.

 I need to know why this error is happening.  It seems like when the 
 cfserver.exe gets around 25 megs or memory use it just stops 
 responding. The task is still there but it will not respond.  I'm 
 using CF Server 5 on a Windows server 2000 SP2.  Is there something 
 in the threads that I should change?

 I can post the lines of the error logs of CF here but I need to know 
 which ones u would need.  I will need help.  I did nothing to the 
 server that would just start doing this.  We are getting more traffic

 then before.  Would that be the cause?  If yes, there must be a way 
 to fix this.



 ==
 Joel Blanchette
 IT and System Specialist
 Point of Impact Technologies Inc.
 Tel: (204) 989-0013
 Email: [EMAIL PROTECTED] ==






__
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: CF 5 App crashing every 5 minutes...

2002-07-31 Thread Joel Blanchette

The CFExecute is running.

On your comment you mean when I go to the services and I go to the
propertise and on the tab Rocovery.  I did put them to all restart the
service..But it did nothing to restart the service...it seems like the
service is still running but not accepting anything else...

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Alex Hubner [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, July 31, 2002 12:39 PM
To: CF-Talk
Subject: RE: CF 5 App crashing every 5 minutes...


The CFExecutive service is running? If not enable it to ensure your
CFServer service will be aways up.

This might be interesting also:

ColdFusion Server 4.5.x and 5: When the JVM is Loaded and a User Logs
Off Windows NT, ColdFusion Server Restarts 
http://www.macromedia.com/v1/Handlers/index.cfm?ID=21872Method=Full

Comments: if CFExecutive is not running or the CFServer is not set to
restart after a fail the service will hang forever (untill you start it
manually).

Good luck.
[]'s
Alex


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]] 
Sent: 31/07/2002 2:07 PM
To: CF-Talk
Subject: CF 5 App crashing every 5 minutes...


Hello All,
I need big help.Last night, I saw that our server was going
down, then I noticed that it was not the server but more that the
cfserver.exe in the task manager was just stopping.  If I restart the
serveice it is all good.  But I need to do this every 5 minutes...Which
is not good...So I wrote a batch file that does it for me.

I need to know why this error is happening.  It seems like when the
cfserver.exe gets around 25 megs or memory use it just stops responding.
The task is still there but it will not respond.  I'm using CF Server 5
on a Windows server 2000 SP2.  Is there something in the threads that I
should change?

I can post the lines of the error logs of CF here but I need to know
which ones u would need.  I will need help.  I did nothing to the server
that would just start doing this.  We are getting more traffic then
before.  Would that be the cause?  If yes, there must be a way to fix
this.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==



__
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



RE: CF 5 App crashing every 5 minutes...

2002-07-31 Thread Joel Blanchette

I have 1 cpu intel 850mhz

I need the timeout high before some of our stats that go off at the
middle of the night takes a while to finish.  We are re-vamping the
stats system right now.  Hopefully this will be better in a couple of
weeks.

I will change it to 5...

How to I enable strict attribute validation?

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Douglas Brown [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, July 31, 2002 1:20 PM
To: CF-Talk
Subject: Re: CF 5 App crashing every 5 minutes...


Limit simultaneous requests to : 10 how many cpu's?
Timeout requests after : 900 s Kinda high dont ya think? 30 - 60
maybe
Restart at   10 unresponsive requests - I would make this like 5
Restart when requests terminate abnormally : on
Suppress whitespace by default: on


I would also enforce strict attribute validation.




Douglas Brown
Email: [EMAIL PROTECTED]
- Original Message -
From: Joel Blanchette [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, July 31, 2002 11:07 AM
Subject: RE: CF 5 App crashing every 5 minutes...


 Limit simultaneous requests to : 10
 Timeout requests after : 900 s
 Restart at   10 unresponsive requests
 Restart when requests terminate abnormally : on
 Suppress whitespace by default: on

 Template cache size:   1024 kilobytes


 Anything else?  Let me know where it would be in the menu and I will 
 get it..

 Thanks for the help



 ==
 Joel Blanchette
 IT and System Specialist
 Point of Impact Technologies Inc.
 Tel: (204) 989-0013
 Email: [EMAIL PROTECTED] ==


 -Original Message-
 From: Douglas Brown [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 31, 2002 12:17 PM
 To: CF-Talk
 Subject: Re: CF 5 App crashing every 5 minutes...


 What settings do you have in Admin? Max number of threads
etc...Template
 caching?




 Douglas Brown
 Email: [EMAIL PROTECTED]
 - Original Message -
 From: Joel Blanchette [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, July 31, 2002 10:07 AM
 Subject: CF 5 App crashing every 5 minutes...


  Hello All,
  I need big help.Last night, I saw that our server was going
down,
  then I noticed that it was not the server but more that the
  cfserver.exe in the task manager was just stopping.  If I restart
the
  serveice it is all good.  But I need to do this every 5
  minutes...Which is not good...So I wrote a batch file that does it
for

  me.
 
  I need to know why this error is happening.  It seems like when the
  cfserver.exe gets around 25 megs or memory use it just stops
  responding. The task is still there but it will not respond.  I'm
  using CF Server 5 on a Windows server 2000 SP2.  Is there something
in

  the threads that I should change?
 
  I can post the lines of the error logs of CF here but I need to know
  which ones u would need.  I will need help.  I did nothing to the
  server that would just start doing this.  We are getting more
traffic
  then before.  Would that be the cause?  If yes, there must be a way
to

  fix this.
 
 
 
  ==
  Joel Blanchette
  IT and System Specialist
  Point of Impact Technologies Inc.
  Tel: (204) 989-0013
  Email: [EMAIL PROTECTED] ==
 
 

 

__
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



CFX_Ping

2002-07-30 Thread Joel Blanchette

Hello All,
Last week there was talk about the CFX_Ping custom tag.  I am
trying to download it from Macromedia but I am getting  a The page
cannot be displayed.

I am wondering if anyone here has the tag that would be able to send it
to me or give me a link that works.

Thanks.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==

__
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



CFQUERY

2002-06-27 Thread Joel Blanchette

Hello All,
This might be a stupid question, but I can not figure it out.

The following code

CFSET Time_Start = #Now()#

CFQUERY Name=UserNum Datasource=Source
SELECT User_Name FROM TableName
WHERE (#Time_Start# - User_Data) LT #Active#
/CFQUERY

The problem I am getting is the point of 

WHERE (#Time_Start# - User_Data) LT #Active#

It is telling me that User_Data (which is a column in my access DB) is
not found.  How would I make this work???


__
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: Heavy CF Load

2002-06-21 Thread Joel Blanchette

This should not happen...I get well over 100 000 unique hits a day and
cfserver.exe is only at 3% here and there..I never saw it go higher then
that...And the server is also running other websites with cfm with no
problem.  We would need more information to be able to help you out.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Neil H. [mailto:[EMAIL PROTECTED]] 
Sent: Friday, June 21, 2002 5:00 PM
To: CF-Talk
Subject: Heavy CF Load


I have a customer who is running a site.  It is getting a ton of traffic
and CF is constantly pegged at or about 99%.  I am looking for some
ideas to suggest to the customer and his developer to improve speeds on
the site. His database is just one table with a lot of information about
the people who signed up First Name, Last Name, State and one more flag
in addition to an identity.

The site is www.PatriotDrive.com

Please let me know what you think.

Thanks,

Neil Heuer
[EMAIL PROTECTED]




__
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: Access2000 file size limits?

2002-04-09 Thread Joel Blanchette

I think I saw something about 2 gigs.  400mb..that is nothing...I have a
database that is 908mb!!!

 
 
joel


-Original Message-
From: Jeff Green [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, April 09, 2002 9:57 AM
To: CF-Talk
Subject: RE: Access2000 file size limits?


hehehe,

Your gonna love this then :)

Im using Access for temp storage of some dynamically generated code, Im
approaching 400mb access .mdb file ;)

jeff

-Original Message-
From: Dan Phillips [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 7:36 AM
To: CF-Talk
Subject: RE: Access2000 file size limits?


None that I know of. However, if you are going to use them for web
development, don't go over 20MB, at least IMHO


Dan Phillips
CFXHosting.com

-Original Message-
From: Jeff Green [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 10:38 AM
To: CF-Talk
Subject: Access2000 file size limits?


Was wondering what file size limits Access2000 DB have?

TIA,
Jeff



__
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: IIS 5 WWW-Server and writing of logfiles

2002-03-28 Thread Joel Blanchette

It is impossible to do this.  IIS will always create the directory.
 
Joel


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, March 28, 2002 2:07 PM
To: CF-Talk
Subject: RE: IIS 5 WWW-Server and writing of logfiles


 well, you can change the location of the logs when creating
 the virtual domains.  point them at the same file.  of 
 course, you may run into some SERIOUS concurrency issues with 
 two ISAPI processes writing to the file at the same time.  as 
 far as i've seen (YMMV, of course), the process holds the 
 file open until it hits the rotation point.  i can't predict 
 that good things will happen when you ask two procs to have 
 the same file open.

In the IIS management console, I don't think it's possible to point two
virtual servers to the same file. You can simply point them to a
directory, and they'll then create a subdirectory within that directory
based on the internal virtual service name (W3SVCx).

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444


__
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



SQL Statement question

2002-03-13 Thread Joel Blanchette

Hello all,
I have a question about a sql statement I am trying to do.

I am using the select distinct column1, column2 from table

This is working correctly. The problem is when I want to output the
results I need the ID column.  How would I do this?  I do not want to
distinct that column since some are the same.

Thanks.

Joel


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
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: Spiders and Cold Fusion

2002-03-07 Thread Joel Blanchette

What are you saying that Google is the only search engine that matters.
That shows that you don't kow much about search engines positioning.

 
 
Joel


-Original Message-
From: Joseph DeVore [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, March 07, 2002 4:07 PM
To: CF-Talk
Subject: RE: Spiders and Cold Fusion


IMO, there is only one search engine that matters anymore and it's
Google. They clearly index CF sites since they have 17,600,000 of them
listed when you search for .cfm

http://google.com/search?hl=enq=%2B.cfm

IMO, the people your client hired are idiots and really don't know up
from down.

IMO, Search engine safe URL's are pretty much a thing of the past.
Almost all bots index pages with query strings..

Of course it's not a bad idea to use SES URL's if you can.

In regards to creating a static site, that's more work for you. It
shouldn't be too hard either using CFHTTP and saving the files to disk.

- JD



-Original Message-
From: Chad Gray [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 07, 2002 1:57 PM
To: CF-Talk
Subject: Spiders and Cold Fusion


One of out clients has hired an Internet Marketing company to help get
them more hits.

I just got a call from one of their reps, and they were trying to tell
me Cold Fusion will not work with search engine spiders because the
pages are fused together.

I was ready to laugh in her face.  Does anyone know of problems with CF
and Search Engine spiders?  She wants us to generate an alternative site
that is static.



__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
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: ColdFusion Listserv?

2002-03-06 Thread Joel Blanchette

Try this


http://devex.macromedia.com/developer/gallery/info.cfm?ID=64C4FD5F-1B8F-
11D5-83EE00508B94F85Amethod=Full

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Kahng, Lucius [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, March 06, 2002 12:06 PM
To: CF-Talk
Subject: ColdFusion Listserv?


Does anyone know where I might find an open source ColdFusion mailing
list application. Or at the least, an inexpensive listserv application?
Thanks! 

L u c i u s   K a h n g
1300 North 17th Street, suite 1847

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
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



CFX_XMLParser

2002-03-05 Thread Joel Blanchette

Hello All,
I am trying to get the CFX_XMLParser from cfdevcom working but
I am having problems with the cfloop

Here is what I have

cfset xml=?xml version='10' encoding='windows-1252' ?
result status='OK' records='113' first='1' last='25'
searchRequest='isthisworking' responseTime='78ms'
record
title![CDATA[ Hello all  Have a good day
]]/title
urlhttp://wwwsomewherecom/url
description![CDATA[ This is the description
area ]]/description
/record
record
title![CDATA[ this is the second record
]]/title
urlhttp://wwwhelloallcom/url
description![CDATA[ THis is the second record
description ]]/description
/record
/result


CF_XMLParser xml=#XML# output=obj 

CFSET XMLLength = ListLen(objresultCHILD_LIST)
CFOUTPUTStatus: #objresultstatus# SearchTerm:
#objresultSearchRequest# ResponseTime:
#objresultResponseTime#brbr
CFLOOP INDEX=Index FROM=1 TO=#XMLLength#

#Evaluate(#objresultrecord[#Index#]TitleCDATA_ELEMENT#)#

/CFLOOP
/CFOUTPUT

The error I am getting is 

Just in time compilation error

Invalid parser construct found on line 33 at position 13 ColdFusion was
looking at the following text:

objresultrecord[Invalid expression format The usual cause is an error
in the expression structure
The last successfully parsed CFML construct was static text occupying
document position (31:49) to (33:1)

Does anyone know how to fix this???

Thanks
Joel

__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://wwwpennyhostcom/redirectcfm?adcode=coldfusionb
FAQ: http://wwwthenetprofitscouk/coldfusion/faq
Archives: http://wwwmail-archivecom/cf-talk@houseoffusioncom/
Unsubscribe: http://wwwhouseoffusioncom/indexcfm?sidebar=lists



RE: IIS 5 FTP Security Issue

2002-03-04 Thread Joel Blanchette

I don't think u can set directory security in Professional..Only server.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] 
Sent: Monday, March 04, 2002 2:18 PM
To: CF-Talk
Subject: OT: IIS 5 FTP Security Issue


Hi All,

Sorry for the OT post, but my head is getting sore from banging it
against my wall ;-)

I'm trying to restrict FTP access in IIS to 1 IP address.  Seems easy
right ;-)

Well the whole dang directory security tab is grayed out (disabled) in
IIS which makes it quite difficult to add an IP.

Thanks very very very much for any help anyone can give

BTW it's Win 2K Professional

Cheers

Bryan Stevenson
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
p. 250.920.8830
e. [EMAIL PROTECTED]
-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com

__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
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



Date Function

2002-02-28 Thread Joel Blanchette

Hello All,
Here is a good one  I have been thinking about this for a while
and I can not figure it out!

I am doing a schedule thing and I need to see if let's say at the time
it goes, if we are the 1st of the month to get yesterday's date  So I
cab take that and format it with dateformat

Does anyone know how this would be accomplished?

Thanks,

Joel

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://wwwpennyhostcom/redirectcfm?adcode=coldfusionc
FAQ: http://wwwthenetprofitscouk/coldfusion/faq
Archives: http://wwwmail-archivecom/cf-talk@houseoffusioncom/
Unsubscribe: http://wwwhouseoffusioncom/indexcfm?sidebar=lists



RE: Date Function

2002-02-28 Thread Joel Blanchette

Yeah basically...Like tomorrow when the scheduler execute the script I
need it to say if today is 1st of the month, the day before was...

 
 
Joel


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 28, 2002 2:16 PM
To: CF-Talk
Subject: RE: Date Function


I'm sorry, I'm not sure what you are asking.  Are you asking how to get 
the
previous day's date?

Kathryn Butterly
Web Developer
Washington Mutual Finance
813 632-4490
[EMAIL PROTECTED]


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 28, 2002 3:11 PM
To: CF-Talk
Subject: Date Function


Hello All,
Here is a good one.  I have been thinking about this for a while
and I can not figure it out!

I am doing a schedule thing and I need to see if let's say at the time
it goes, if we are the 1st of the month to get yesterday's date.  So I
cab take that and format it with dateformat

Does anyone know how this would be accomplished?

Thanks,

Joel



__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
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



A couple questions for you guys

2002-02-18 Thread Joel Blanchette

Hello All,
I have a couple questions for you guys.  I am setting up a stats
system for a couple doamins we own. Now the first question:

If I grab the domain name (CGI.Server_Name) I need to put this in all
lower case.  Not a prob;em with Lcase.  But also on the domain we have a
wildcard.  So lets say that the domain is helloall.com.  If someone
types in hgyrtiweowsnm.helloall.com I need coldfusion to rip out the
furst part since I only need the helloall.com.  All of our domains are
going to the same place so I need to see which domain they typed in.  So
how do I parse that?

Second question.  This is for the stat pull of the info.

I have two tables

Domains

ID DomainName
1  helloall.com
2  allhello.com


And the actuall stats

ID  DomainID  HitMeOnIPAddress   URLRef
Browser
11 2002-02-01 15:04:3710.0.0.1www.yahoo.comMSIE
5.5
21 2002-02-01 15:04:3710.0.0.1www.yahoo.comMSIE
5.5
32 2002-02-01 15:04:3710.0.0.1www.yahoo.comMSIE
5.5


So what I need to do is make up a page that will give me the unique hits
for one day.  Per domain.  And sort them in the higher one at the top.

So it would look something like this on the result page

Domain - Helloall.com 1 unique and 2 un-unique
Domain - allhello.com 1 unique and 1 un-unique

What would be the cfquery that I would use to do this???

Thanks for all the help!!

Joel

__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
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



How to make a settimeout?

2001-12-26 Thread Joel Blanchette

Hello Allo,
Ids there a way to make a pause withina script?  I know that in
JavaScript I can use the command settimeout but is there such a time in
ColdFusion?  I was thinking about doing a cfloop over a 1000 steps.  I
just need like 2 second pause.

Thanks,

Joel
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
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



CFLOOP?

2001-12-16 Thread Joel Blanchette

Hello All,
I am trying to figure out what would be the easier way of doing
something.  I am grabbing information from a website and I need to put
the information in variables.

Now, the context is always the same.  Here is a snippet of the code.

  brbrbrbr




nbsp;376736/td
  tdnbsp;a href=http://..comfont face=verdana,sans-serif size=1
color=#00aj test keyword 1/a/td



  brbrbrbr




nbsp;107273/td
  tdnbsp;a href=http://..comfont face=verdana,sans-serif size=1
color=#00iq test/a/td


Now, I need to put the information in variable like Number1 would equal
to 376736 and the variable Word1 would be aj test keyword 1.

Variable Number2 would equal to 107273 and Word2 would be iqtest.

How to I parse the text and the variables??  Do I use a cfloop???  If
yes how?

Thanks for all the help!

Joel
~~
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



RE: Netscape is crashing

2001-12-13 Thread Joel Blanchette

If you can send us the URL we could help you out more.  Netscape is a
bit harder to code for in html since it is really picky about the HTML.
It has to be perfect to work.

Send us the URL and we will be able to help you out better.

Joel

-Original Message-
From: Gonzo Rock [mailto:[EMAIL PROTECTED]] 
Sent: December 13, 2001 11:13 AM
To: CF-Talk
Subject: Re: Netscape is crashing


Hey Dave, 

Thanks for the ideas... have to say though... I'm very confused by the
fact that the viewed source from IE loads into Netscape without
incident. Does Apache feed slightly different code to a Netscape
client?? I would think NOT.

I have been using an incHeader.cfm and a incFooter.cfm file... they are
only three tags;

tabletrtd
and
/td/tr/table

by not including the header the file now loads properly giving clues
that something with nesting is going on.

I will continue looking...
Thanks,
Gonzo

At 05:12 AM 12/13/01 -0800, you wrote:
Look for broken tables or tables nested more than 2 deep?  Also, if 
your page results rely on javascript in any way, you might want to look

there. No other ideas though without seeing the source code / html 
code.

Dave


- Original Message -
From: Gonzo Rock [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, December 13, 2001 12:59 AM
Subject: Netscape is crashing


 I have some code that is crashing Netscape4.07 but not IE 5.5.

 Nothing to earth shattering... a query or two followed by two forms.

 Have spent 6 hours trying to isolate which pieces of code are causing
it... so far without luck.

 One of the things I tried was to view the source in IE... and then 
 save it
to a file called testing.html... I then loaded testing.html into 
Netscape without a problem... So odd!!  I would think that what is 
generated by CF would crash Netscape but...???

 Anyone ever have to chase down a problem like this before? If so, any
clues would be much appreciated.

 laters,
 Gonzo
 


~~
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: Database questions

2001-12-12 Thread Joel Blanchette

I tried this and I get an error...Here is my code

CFQUERY NAME=Browse DATASOURCE=WFG DBTYPE=ODBC
SELECT D.FullName, D.ID, F.FileName, F.DirectorID FROM Directors
D, Film F
WHERE D.ID = F.DirectorID
ORDER BY D.FullName
/CFQUERY



table
tr
thDirector/th
thMovie Titles/th
/tr
CFOUTPUT QUERY=Browse GROUP=FullName
tr
td#FullName#/td
td
CFOUTPUT
#FileName#br
/CFOUTPUT
/td
/tr
/CFOUTPUT
/table

The error I get is the following

Error Diagnostic Information
ODBC Error Code = S1000 (General error)

[Microsoft][ODBC Microsoft Access Driver] Type mismatch in expression.

The error occurred while processing an element with a general identifier
of (CFQUERY), occupying document position (1:1) to (1:54).

Date/Time: 12/12/01 20:21:39
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
Remote Address: 24.66.67.197
HTTP Referrer: http://wfg.kevinglasier.com/index.wfg?FS=2CF=6
Query String: FS=2CF=4

Any Ideas???

Thanks

Joel



-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]] 
Sent: November 11, 2001 5:52 PM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'
Subject: RE: Database questions


 I have a question for you all...I have a database with a table with 
 information on movies.  I am doing a simple browse the movie section 
 and I want the list to be alphabetic. ...
 Now how would I go about this?  The database holds the following 
 info, Movie name, Director.  One way that I am thinking of doing 
 this is by loops...But I would query the database 26 times
 Not good... Since I want this site to go fast.  Any ideas???

I'd recommend that first, you restructure your tables. One of the
central ideas behind relational databases is that you don't have to
duplicate any information. So, rather than list the director for each
movie, you should have a separate table for your directors, and create a
relation between directors and movies. You might have two tables like
this:

Director:
Director_ID INT
First_Name  VARCHAR(30)
Last_Name   VARCHAR(30)

Movie:
Movie_IDINT
NameVARCHAR(50)
Description VARCHAR(255)
Director_ID INT  -- this is used to define the relation to a
directory

Once you've done this, the rest is easy. You'd simply query both tables
to retrieve directors and their movies, and sort on the director name:

cfquery name=qGetMoviesByDirector ...
SELECT  d.Last_Name,
d.First_Name,
m.Name
FROMDirector d,
Movie m
WHERE   d.Director_ID = m.Director_ID
ORDER BYd.Last_Name,
m.Name
/cfquery

Then, within your output, you could use the GROUP attribute of CFOUTPUT
to build your hierarchical display. When you do this, you have nested
CFOUTPUTs
- the outer ones are used for the top level of your hierarchy
(directors, in this case) and the inner ones are used for the lower
level (movies):

table
tr
thDirector/th
thMovie Titles/th
/tr
cfoutput query=qGetMoviesByDirector group=Last_Name
tr
td#Last_Name#, #First_Name#/td
td
cfoutput
#Name#br
/cfoutput
/tr
/cfoutput
/table

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
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: Browser client for upload files?

2001-09-06 Thread Joel Blanchette

Just use the following

input type=file name=UploadFile

That simple.

Joel

-Original Message-
From: Willy Ray [mailto:[EMAIL PROTECTED]] 
Sent: September 5, 2001 11:49 AM
To: CF-Talk
Subject: Browser client for upload files?


Alright, the client needs to upload a PDF file.  How do I let the user
browse their machine for the file to upload? I'd like to use CFTREE,
right?  I'm fuddled.

Willy
~~
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



Re: Running A CF Site Via CD Rom

2000-10-14 Thread Joel Blanchette

I have asked Allaire about this same question.  They told me that they would
get back to me when they haved discussed it with the technology team.

Joel


- Original Message -
From: "Cameron Childress" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Saturday, October 14, 2000 12:33 PM
Subject: RE: Running A CF Site Via CD Rom


  Is it possible to run a cf site from a cd rom?

 No.  The end user would not only have to have IIS/PWS and CF, but they
would
 also have to have them installed onto the machine when they run the
CD-ROM.

 An alternate idea would be having a static HTML presentation, possibly
with
 some mock up of your app o the CD, and have a link in that presentation
 which would lead the user out onto the internet to see the demo remotely
 from your server.  Of course, you then have to make sure they have
internet
 access and all that, but that's not such a problem anymore.  Most people
who
 have a computer have internet access also.

 -Cameron

 
 Cameron Childress
 ElliptIQ Inc.
 p.770.460.7277.232
 f.770.460.0963

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Encrypting CF files

2000-09-13 Thread Joel Blanchette

There should but a file in the directory called cfencrypt.exe.  Just follow
the instruction...

About the cfdecrypt.   I will tell you that it does exist.  and it works
pretty good..But why have it when you can do it yourself...

Joel



- Original Message -
From: "J.Milks" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, September 12, 2000 1:45 PM
Subject: Encrypting CF files


 Hi All,
 I am working on an existing project with encrypted CF templates. My
question
 is twofold:

 1- How do I encrypt templates? I cannot find anything in the help. I
suspect
 it is an exe or something.

 2- I am also told that there is a DECRYPT exe floating around as well. Is
it
 widely available, or is it one of those
 tools nobody admits to having?

 Thanks,

 James





 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFINCLUDE and CFMAIL Variables

2000-09-02 Thread Joel Blanchette

This is a multi-part message in MIME format.

--=_NextPart_000_0007_01C014F9.6073FC00
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hello All,
One simple question.  I want to put an cfinclude tag within a cfmail =
tage that has all the info that will mail tot he user.  Now I have a =
query on the page where my cfmail is and I want to call a variable =
wintin the cfinclude file...So i call it up with the =
#queryname.variable# and in the email I get #queryname.variable# ...Is =
there a way to get the variable to be called???

Thanks



Joel Blanchette=20
Perl/Cold Fusion/Web Designer=20
256-1976=20
Cell. 229-2304=20
[EMAIL PROTECTED]

--=_NextPart_000_0007_01C014F9.6073FC00
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.3018.900" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT size=3D2Hello All,/FONT/DIV
DIVFONT size=3D2nbsp;nbsp;nbsp; One simple question.nbsp; I want =
to put an=20
cfinclude tag within a cfmail tage that has all the info that will mail =
tot he=20
user.nbsp; Now I have a query on the page where my cfmail is and I want =
to call=20
a variable wintin the cfinclude file...So i call it up with the=20
#queryname.variable# and in the email I get #queryname.variable# ...Is =
there a=20
way to get the variable to be called???/FONT/DIV
DIVnbsp;/DIV
DIVFONT size=3D2Thanks/FONT/DIV
DIVnbsp;/DIV
DIVFONT size=3D2/FONTnbsp;/DIV
DIVnbsp;/DIV
DIVFONT size=3D2Joel Blanchette BRPerl/Cold Fusion/Web Designer =
BR256-1976=20
BRCell. 229-2304 BRA=20
href=3D"mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]/A/FONT/DIV/BODY/HT=
ML

--=_NextPart_000_0007_01C014F9.6073FC00--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



IsDefined help

2000-08-29 Thread Joel Blanchette

This is a multi-part message in MIME format.

--=_NextPart_000_0005_01C01200.C3750520
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hello everyoneI am having some stupid problems with a simple =
command.  I am to make a check on a form field and if it is not defined =
to write something.  i tried the following with no success...Hope =
someone can help.

CFIF NOT IsDefined("form.name")
You forgot your name
/CFIF

I also tried

CFIF IsDefined("form.name") EQ "FALSE"
You forgot your name
/CFIF

but still with no success...Hope someone can help me out!!!

Thanks...

Joel

--=_NextPart_000_0005_01C01200.C3750520
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.3018.900" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT size=3D2Hello everyoneI am having some stupid problems =
with a=20
simple command.nbsp; I am to make a check on a form field and if it is =
not=20
defined to write something.nbsp; i tried the following with no =
success...Hope=20
someone can help./FONT/DIV
DIVnbsp;/DIV
DIVFONT size=3D2lt;CFIF NOT IsDefined("form.name")gt;/FONT/DIV
DIVFONT size=3D2nbsp;nbsp;nbsp; You forgot your name/FONT/DIV
DIVFONT size=3D2lt;/CFIFgt;/FONT/DIV
DIVnbsp;/DIV
DIVFONT size=3D2I also tried/FONT/DIV
DIVnbsp;/DIV
DIVFONT size=3D2
DIVFONT size=3D2lt;CFIFnbsp;IsDefined("form.name") EQ=20
"FALSE"gt;/FONT/DIV
DIVFONT size=3D2nbsp;nbsp;nbsp; You forgot your name/FONT/DIV
DIVFONT size=3D2lt;/CFIFgt;/FONT/DIV
DIVnbsp;/DIV
DIVbut still with no success...Hope someone can help me out!!!/DIV
DIVnbsp;/DIV
DIVThanks.../DIV
DIVnbsp;/DIV
DIVJoel/DIV/FONT/DIV/BODY/HTML

--=_NextPart_000_0005_01C01200.C3750520--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Why won't this work?

2000-07-10 Thread Joel Blanchette

How does you cfquery look like

Show us some code...

Joel


- Original Message -
From: "Dick Applebaum" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, June 28, 2000 3:30 AM
Subject: Re: Why won't this work?


 Chris

 I can't even get the initial page to display:


 Error Diagnostic Information

   ODBC Error Code = S1000 (General error)

   [Microsoft][ODBC Microsoft Access Driver] Unrecognized database
 format 'D:\FTP\chrisf\Database\bwpc.mdb'.

   The error occurred while processing an element with a general
 identifier of (CFQUERY), occupying document position
   (1:1) to (1:42).

   Date/Time: 06/28/00 01:28:56
   Browser: Mozilla/4.61 (Macintosh; I; PPC)
   Remote Address: 38.29.181.39
   Template: D:\FTP\chrisf\Htdocs\index.cfm


 HTH

 Dick


 At 9:18 PM -0400 6/27/2000, Chris Farrugia wrote:
 I have a link, it should work, but when you click the link, it just sits
 there and never does anything.  To see this problem, go to
 www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
 button for Calculate Price, and then you'll see the problematic button
"Buy
 Now."  It is just sitting there... I really can not figure out this
problem
 for the life of me.  Thanks in advance for the help.
 
  Sincerely,
  Chris Farrugia
 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: roots

2000-07-10 Thread Joel Blanchette

for the number one..you want to know where the file is...you can use
something like this

CFSET THISFILE = #ExpandPath("*.*")#
CFSET THISFILE = #GetDirectoryFromPath("#THISFILE#")#
CFOUTPUT#THISFILE#/CFOUTPUT

Should work.

Joel


- Original Message -
From: "Stanislav Maximov" [EMAIL PROTECTED]
To: "[EMAIL PROTECTED]" [EMAIL PROTECTED]
Sent: Monday, July 10, 2000 7:37 PM
Subject: roots


 Hello,

 1. Just wondering if there is some variable defined which stores local
root
 of the running application: C:\Inetpub\wwwroot\ for example.

 2. Another thing I can't understand is why the / sign does not address the
 web root folder of the application. Why if I call the module with
 template="/some.cfm" the / sign still addresses current directory? Where's
 the logic?

 TIA,
 stas@

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Macromedia Ultradev

2000-06-26 Thread Joel Blanchette

I downloaded the demo version.  And I have to say thaty it sucked.  I was
expecting way more from Macromedia.  I am not going to bash ultradev yet.  i
will wait for some extension.  If it looked promissing I will write my own
extensions.  We will see what comes out in the next month or two...

Joel


- Original Message -
From: "Paul Ihrig" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, June 26, 2000 12:41 PM
Subject: RE: Macromedia Ultradev


 i am thinking about creating a cf / ud site to guide newbies [like myself]
 into the world of data manipulation then on to bigger  better things
inside
 CF.
 if you think this might be of interest or other coments let me know.

 again this is just an idea.
 the documentation blows.

 -paul

  -Original Message-
  From: Larry C. Lyons [SMTP:[EMAIL PROTECTED]]
  Sent: Tuesday, June 20, 2000 9:13 AM
  To: [EMAIL PROTECTED]
  Subject: Re: Macromedia Ultradev
 
  I just got in my copy of UltraDev and have just started working with it
  for the last couple of days. So far I doubt it will replace CFStudio.
  Rather it will replace the copy of Dreamweaver 3 that's on my machine.
  The real impact of UD is going to be with the 3rd party extensions that
  are just now starting to come out. For instance Massimo Foti is
  developing a set of CF related extensions that look very promising, such
  as a login page, various redirects based on an empty record set, a
  repeated region and a CF OUTPUT. Over the next few months I figure these
  extensions will be getting more and more sophisticated.
 
  I expect UD to improve our overall work flow, not replace Studio.
 
  regards,
 
  larry
 
  --
  Larry C. Lyons
  ColdFusion/Web Developer
  EBStor.com
  8870 Rixlew Lane, Suite 201
  Manassas, Virginia 20109-3795
  tel: (703) 393-7930 x253
  fax: (703) 393-2659
  http://www.ebstor.com
  http://www.pacel.com
  email: [EMAIL PROTECTED]
 
  Chaos, panic, and disorder - my work here is done.
  --
 
  Doug Nottage wrote:
  
   How do you see UltraDev working in your current development
environment?
  
   Where do you prefer it over Studio or other tools?
  
   Is it worth getting and if so for what reasons?
  
   --Doug

 --
  
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
  send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
  the body.
 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT: Re: fwd: [J o k e]

2000-06-25 Thread Joel Blanchette

In outlook expres all you have to do to take out the preview panel is go in
view layout...Then uncheck the preview panel.  Very easy...

Joel


- Original Message -
From: "Birgit Pauli-Haack" [EMAIL PROTECTED]
To: "Stas Maximov" [EMAIL PROTECTED]
Sent: Sunday, June 25, 2000 2:48 PM
Subject: Re: OT: Re: fwd: [J o k e]


How can anybody turn off 'pre-view panel? Or the automatic 'open'
functionality in Outlook? OR Outlook Express?

I need to know, cause, I am not using MS programs but need to tell
friends and clients, too..
don't write to much, URL is enough, Thanks

Birgit





Sunday, June 25, 2000, 2:59:44 PM, you wrote:

 Btw, thing shouldn't run if it has been shown in preview panel, one should
 doubleclick/open it first. Preview panel just shows that there is
attachment
 "Very Funny.vbs". At least with my Outlook 98.

 stas@

 -éÓÈÏÄÎÏÅ ÓÏÏÂÝÅÎÉÅ-
 ïÔ: Stephen Garrett [EMAIL PROTECTED]
 ëÏÍÕ: [EMAIL PROTECTED] [EMAIL PROTECTED]
 äÁÔÁ: ×ÏÓËÒÅÓÅÎØÅ, 25 ÉÀÎÑ 2000 Ç. 21:45
 ôÅÍÁ: Re: fwd: [J o k e]



I love it. Hey MD, thanks for turning off attachments!!!

Actually this was quite instructive in that I usually don't go out of
my way to see what a VBS virus is all about. A few seconds perusal was
interesting to see how easy M$ allowed it to happen.

But alas poor Jim, Some people never learn about attachments.

Of course, maybe poor Jim has the preview panel turned on, so he was
 (almost)
innocent. If this is the case, I bet poor Jim leaves it off from now on...


Steve

At 09:26 AM 6/25/2000 -0700, Jim Taylor wrote:
[snip]
--=_NextPart_000_002F_01BFDE87.80F5B200
Content-Type: application/octet-stream;
 name="Very Funny.vbs"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
 filename="Very Funny.vbs"
[snip]


--
Stephen Garrett
GPS
[EMAIL PROTECTED]   (360) 896-2714
ICQ# 10776767
--
-
 ---
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.


 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Crypt.exe Help

2000-05-12 Thread Joel Blanchette

This is a multi-part message in MIME format.

--=_NextPart_000_002C_01BFBC4C.1948C8C0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hello Everyone,
I need Help!!!  I encrypted my cfm pages and it was my only version. =
 Now all the code i did is gone.  I heard that there is aa way to =
decrypt the files...Anyone know

Thanks,

Joe

--=_NextPart_000_002C_01BFBC4C.1948C8C0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.3013.2600" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3DArial size=3D2Hello Everyone,/FONT/DIV
DIVFONT face=3DArial size=3D2nbsp;nbsp;nbsp; I need Help!!!nbsp; =
I encrypted=20
my cfm pages and it was my only version.nbsp; Now all the code i did is =

gone.nbsp; I heard that there is aa way to decrypt the files...Anyone=20
know/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Thanks,/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Joe/FONT/DIV/BODY/HTML

--=_NextPart_000_002C_01BFBC4C.1948C8C0--

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Crypt.exe Help

2000-05-12 Thread Joel Blanchette

I know but won't Allaire charge me to decrypt itAnd I need this by
Monday morning.

So if Anyone have any ideas...Please help...

Joe



- Original Message -
From: "Chris Evans" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, May 12, 2000 8:35 PM
Subject: RE: Crypt.exe Help


 Contact Allaire.  They can decrypt those pages, and  you don't have to
deal
 with the shady underground of CF developers who have decrypt capabilities
 ;).

 Chris Evans
 [EMAIL PROTECTED]
 http://www.fuseware.com


 -Original Message-----
 From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
 Sent: Friday, May 12, 2000 8:56 PM
 To: [EMAIL PROTECTED]
 Subject: Crypt.exe Help


 This is a multi-part message in MIME format.

 --=_NextPart_000_002C_01BFBC4C.1948C8C0
 Content-Type: text/plain;
 charset="iso-8859-1"
 Content-Transfer-Encoding: quoted-printable

 Hello Everyone,
 I need Help!!!  I encrypted my cfm pages and it was my only version. =
  Now all the code i did is gone.  I heard that there is aa way to =
 decrypt the files...Anyone know

 Thanks,

 Joe

 --=_NextPart_000_002C_01BFBC4C.1948C8C0
 Content-Type: text/html;
 charset="iso-8859-1"
 Content-Transfer-Encoding: quoted-printable

 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
 HTMLHEAD
 META content=3D"text/html; charset=3Diso-8859-1" =
 http-equiv=3DContent-Type
 META content=3D"MSHTML 5.00.3013.2600" name=3DGENERATOR
 STYLE/STYLE
 /HEAD
 BODY bgColor=3D#ff
 DIVFONT face=3DArial size=3D2Hello Everyone,/FONT/DIV
 DIVFONT face=3DArial size=3D2nbsp;nbsp;nbsp; I need Help!!!nbsp; =
 I encrypted=20
 my cfm pages and it was my only version.nbsp; Now all the code i did is =

 gone.nbsp; I heard that there is aa way to decrypt the files...Anyone=20
 know/FONT/DIV
 DIVnbsp;/DIV
 DIVFONT face=3DArial size=3D2Thanks,/FONT/DIV
 DIVnbsp;/DIV
 DIVFONT face=3DArial size=3D2Joe/FONT/DIV/BODY/HTML

 --=_NextPart_000_002C_01BFBC4C.1948C8C0--

 --
--
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.


 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.