RE: Shanje's broken? Anyone know?

2001-06-19 Thread Will Swain

Don't think you need to send the same thing three times!!!

-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED]]
Sent: 18 June 2001 01:42
To: CF-Talk
Subject: Shanje's broken? Anyone know?


A client of mine has a site at Shanje, and he's written to me telling me
that his site's been down for 24 hours now, and there is no response from
Shiloh Jennings.   I've emailed him too and had no response.

Does anyone else here have a site at Shanje?

Is your site down too?Anyone know anything about their status?

The Shanje's own site, //shanje.com is up and going, and my client's email
and ftp are working, and the ping to the site gives a decent result, its
just that the browser times out getting any page on his site.   Any browser,
from any pc.

Cheers,
Mike Kear
Windsor, NSW, Australia
AFP WebWorks



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Sorry - off topic: any suggestions?

2001-06-19 Thread Tim Grannum

I need good oracle skills + ColdFusion for a 3 month project in the
Midlands.  Anyone interested?

Tim

Tim Grannum
Sentinel I.T. Ltd
Tel: 01892 618555
Fax: 01892 618558
Email: [EMAIL PROTECTED]

For more information and a list of our latest vacancies - visit us at
http://www.sentinelit.com

--
Internet communications are not secure and therefore Sentinel I.T. Ltd does
not accept legal responsibility for the contents of this message. Any views
or opinions presented are solely those of the author and do not necessarily
represent those of Sentinel. 
--
Should the recipient of this email interview a candidate via Sentinel I.T.
Ltd whose details are contained herein and subsequently recruit that
individual, then they thereby agree to employ that individual through
Sentinel I.T. Ltd in accordance with standard Sentinel Terms of Business
--
It is the responsibility of the recipient to ensure that this message and
attachments are virus free and no responsibility is accepted by Sentinel IT
Ltd for any loss or damage arising in any way from its use.


 -Original Message-
 From: Aaron Johnson [SMTP:[EMAIL PROTECTED]]
 Sent: Wednesday, June 21, 2000 04:06
 To:   [EMAIL PROTECTED]
 Subject:  RE: CFCONTENT used to work
 
 Karen,
 
 Check your SP's on the boxes.  SP 6 (and 6a) break CFCONTENT.
 
 Aaron
 
 -Original Message-
 From: Karen Jefferson [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 20, 2000 7:56 PM
 To: [EMAIL PROTECTED]
 Subject: CFCONTENT used to work
 
 
 This is a multi-part message in MIME format.
 
 --=_NextPart_000_00FB_01BFDB0A.A9683D00
 Content-Type: text/plain;
   charset=iso-8859-1
 Content-Transfer-Encoding: quoted-printable
 
 I've got several 4.0 CF servers (NT 4.0), and the same code will run on =
 only some of them.  I'm displaying a table in Excel format using =
 CFCONTENT and application/excel, and cannot figure out why it won't work =
 on all of them. CFCONTENT is enabled on all servers. I searched thru =
 Allaire's KB already but nothing is ringing any bells. Anyone have any =
 clues on this? TIA!!
 
 Karen Jefferson
 [EMAIL PROTECTED]
 
 
 --=_NextPart_000_00FB_01BFDB0A.A9683D00
 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=3Dtext/html; charset=3Diso-8859-1 =
 http-equiv=3DContent-Type
 META content=3DMSHTML 5.00.2614.3500 name=3DGENERATOR
 STYLE/STYLE
 /HEAD
 BODY bgColor=3D#ff
 DIVFONT face=3DArial size=3D2I've got several 4.0 CF servers (NT =
 4.0), and the=20
 same code will run on onlynbsp;some of them.nbsp; I'm displaying a =
 table in=20
 Excel format using CFCONTENT and application/excel, and cannot figure =
 out why it=20
 won't work on all of them. CFCONTENT is enabled on all servers. I =
 searched thru=20
 Allaire's KB already but nothing is ringing any bells. Anyone have any =
 clues on=20
 this? TIA!!/FONT/DIV
 DIVnbsp;/DIV
 DIVFONT face=3DArial size=3D2Karen Jefferson/FONT/DIV
 DIVFONT face=3DArial size=3D2A=20
 href=3Dmailto:[EMAIL PROTECTED];[EMAIL PROTECTED]/A/FONT=
 /DIV
 DIVnbsp;/DIV/BODY/HTML
 
 --=_NextPart_000_00FB_01BFDB0A.A9683D00--
 
 --
 --
 --
 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.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: XML with ColdFusion

2001-06-19 Thread tom dyson

Hi Josh

 The following code opens and outputs an XML file based on an XSL template
 using ASP  I was wondering if there are similar functions in CF or if
 someone could point me in the right direction towards functions or whatnot
 ..

 %
 'Load the XML
 set xml = Server.CreateObject(Microsoft.XMLDOM)
 xml.async = false
 xml.load(Server.MapPath(myfile.xml))
 
 'Load the XSL
 set xsl = Server.CreateObject(Microsoft.XMLDOM)
 xsl.async = false
 xsl.load(Server.MapPath(myfile.xsl))
 
 Response.Write(xml.transformNode(xsl))
 %

Here's the code you need:

cfobject action=create class=MSXML2.DOMDocument name=xml
cfobject action=create class=MSXML2.DOMDocument name=xsl

cffile action=read file=d:\xml\myxmlfile.xml variable=xmlfile
cffile action=read file=d:\xml\myxslfile.xml variable=xslfile

cfscript
xml.load(xmlfile);
xsl.load(xslfile);
transformed = xml.transformNode(xsl);
writeoutput(transformed);
/cfscript

You might also be interested in my new CF/XML mailing list - I've also
written a few XML custom tags which I'll be publishing through the list:

http://torchbox.com/xml

Best wishes

Tom

-+
tom dyson
t: +44 (0)1608 811870
m: +44 (0)7958 752657
[EMAIL PROTECTED]
http://torchbox.com


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



FW: strange errors with form fields not getting passed

2001-06-19 Thread Will Swain

I posted this yesterday, and Raymond said he thought it might be a netscape
6 bug.

Sadly though, it's not, as the client is using IE5. Could there be a problem
with server memory or something like that which would cause this to happen.
It worked fine yesterday, but today the client is having a problem again!!!


Hi all,

I am having some strange errors. I have an application that, amongst other
things, allows a user to upload an image, and some details, about an artist.
I have done this kind of thing hundreds of times before. It has worked just
fine up till now, but over the weekend has started generating some bizzare
errors.

Form fields are not getting passed from one form to another. I have no idea
why, as they are on the form. The fields that are not passed seem to vary
from circumstance to circumstance. What I'm wondering is, is there anything
on the server that might create this kind of problem, some memory issue or
another. I have spoken with my ISP but they say it is nothing to do with
them if code doesn't workwhich is fair enough.

Incidentally, the identical code works locally on my development server.

TIA

Will


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Inset into a date please help..thanks

2001-06-19 Thread roadrunner

Hi all,
I'm a newbie so I apologize if this is too easy. Here is my problem. I'll
show the simple code first:
CFSET today= DateFormat(Now(),   d )
cfquery name=table datasource=hillmartin dbtype=ODBC
INSERT INTO contestdata
(NAME,COMPANY,ADDRESS,CITY,STATE,ZIP,PHONE,EMAIL,COMMENTS, DATE)
VALUES
('#name#','#companyname#','#address#','#city#','#state#','#zip#','#phone#','
#email#','#comments#','#today#')
/cfquery

I am using an Access database. For some reason I get an error everytime I
try to write the date into the DATE column of my record using the variable
today. If I remove the today variable and DATE from the INSERT INTO all
works fine. The DATE column is of type text. Can someone help me here?

Thanks,
Greg


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: XML with ColdFusion

2001-06-19 Thread Larry W. Virden

I've a similar question.  I've a need to communicate with an application
that generates either some generic xml formatted data, or csv.   My
preference would be to go with some sort of xml - perhaps SOAP based,
so that the data is self-described .

However, I'm uncertain where to start.  I've seen older notes from
Allaire mentioning SOAP support was being investigated, but I'm uncertain
whether anyone is using it now or not.

Can anyone comment on this?
-- 
Never apply a Star Trek solution to a Babylon 5 problem.
Larry W. Virden mailto:[EMAIL PROTECTED] URL: http://www.purl.org/NET/lvirden/
Even if explicitly stated to the contrary, nothing in this posting should 
be construed as representing my employer's opinions.
--

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Shanje's broken? Anyone know?

2001-06-19 Thread David Hannum

Folks, I don't think anybody is sending anything three times.  The list
sporadically sends extra copies.  It's been happening for the past few days
.. . .

Dave


- Original Message -
From: Will Swain [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, June 19, 2001 4:53 AM
Subject: RE: Shanje's broken? Anyone know?


 Don't think you need to send the same thing three times!!!

 -Original Message-
 From: Mike Kear [mailto:[EMAIL PROTECTED]]
 Sent: 18 June 2001 01:42
 To: CF-Talk
 Subject: Shanje's broken? Anyone know?


 A client of mine has a site at Shanje, and he's written to me telling me
 that his site's been down for 24 hours now, and there is no response from
 Shiloh Jennings.   I've emailed him too and had no response.

 Does anyone else here have a site at Shanje?

 Is your site down too?Anyone know anything about their status?

 The Shanje's own site, file://shanje.com is up and going, and my client's
email
 and ftp are working, and the ping to the site gives a decent result, its
 just that the browser times out getting any page on his site.   Any
browser,
 from any pc.

 Cheers,
 Mike Kear
 Windsor, NSW, Australia
 AFP WebWorks



 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: XML with ColdFusion

2001-06-19 Thread Michael Bruce

You might want to check out SO_XML from www.siteobjects.com . The tag is
very cool and can do what you want. Teh ASP that you are showing is using
the msxml.dll and you can access that using the cfobject which is what this
tag does. Try it.

Michael Bruce
Fig Leaf Software

-Original Message-
From: JoshMEagle [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 18, 2001 8:37 AM
To: CF-Talk
Subject: XML with ColdFusion


The following code opens and outputs an XML file based on an XSL template
using ASP  I was wondering if there are similar functions in CF or if
someone could point me in the right direction towards functions or whatnot
..

THANKS!

ASP Code Listing (sorry, I know y'all hate ASP):

%
'Load the XML
set xml = Server.CreateObject(Microsoft.XMLDOM)
xml.async = false
xml.load(Server.MapPath(myfile.xml))

'Load the XSL
set xsl = Server.CreateObject(Microsoft.XMLDOM)
xsl.async = false
xsl.load(Server.MapPath(myfile.xsl))

Response.Write(xml.transformNode(xsl))
%

Joshua Miller
Web Development
Eagle Technologies Group
Technology Solutions for the Next Generation
www.eagletgi.com
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: XML with ColdFusion

2001-06-19 Thread tom dyson

Hi Larry

 I've a similar question.  I've a need to communicate with an application
 that generates either some generic xml formatted data, or csv.   My
 preference would be to go with some sort of xml - perhaps SOAP based,
 so that the data is self-described .
 
 However, I'm uncertain where to start.  I've seen older notes from
 Allaire mentioning SOAP support was being investigated, but I'm uncertain
 whether anyone is using it now or not.
 
 Can anyone comment on this?

SOAP is certainly going to be an important standard, judging by the W3C's
approval: read 

www.w3.org/2000/xp/Group/Admin/minutes-oct1100/soap-xp-wg_files/frame.htm

for a useful overview.

However, if you're looking for Cold Fusion-friendly, self-describing XML
data, then WDDX (http://www.openwddx.org) is your answer. If the application
that you need to communicate with won't create valid WDDX packets, but does
speak plain XML, then Cold Fusion supports XML very well through CFOBJECT
and Microsoft's MSXML parser.

My CF_XMLQUERY tag converts a local or remote XML file into a standard query
result set, which you can manipulate or output as usual. Email me off list
or sign up at http://torchbox.com/xml if you think this might be helpful.

Tom

-+
tom dyson
t: 01608 811870
m: 07958 752657
[EMAIL PROTECTED]
http://torchbox.com


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Querying a large database

2001-06-19 Thread Chad McCue

Hey Everyone, 
I have a quick question about querying a database with over 600 thousand entries. 
The user has the ability to search by a name they type in. Now when they click search 
I need to query two fields from this table to find the name. Both fields in SQL are 
indexed. I need some ideas that will not kill our server while someone is performing a 
search. Remember that the user will be able to type in any part of a name, does not 
need to be the whole name. Wildcard characters are used like this %#name#%. 

Thanks


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Surepay and coldfusion

2001-06-19 Thread Larry Juncker

I am currently writing templates for SurePay and ColdFusion
I now have the code written for sending and recieving to/from them.


-Original Message-
From: Neo Fusion [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 18, 2001 10:26 AM
To: CF-Talk
Subject: Surepay and coldfusion


Has anyone had any experience good or bad with trying to use cold fusion and
surepay together??
If so could you point in the direction of some examples.

Thanks in advance
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: JSStringFormat Function

2001-06-19 Thread Larry Juncker

Take off the single quotes around the following line and it works fine in IE

CFSET myVar = 'Law Office(s) / Chamber(S)'

Make it like this:

CFSET myVar = Law Office(s) / Chamber(S)


-Original Message-
From: Aaron Rouse [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 18, 2001 9:31 PM
To: CF-Talk
Subject: JSStringFormat Function


Curious as to why this throws a error and what can be done to avoid it, just
escape out quotes?

cfset myVar = 'Law Office(s) / Chamber(s) Of'
cfoutput
 a href= onmouseover=window.status='#JSStringFormat(myVar)#'; return
true; onmouseout=window.status=''; return true; style=font-family:
Arial, Helvetica, sans-serif; font-size: 10pt; color: Black; text-decoration
: none;Test/a
/cfoutput
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Querying a large database

2001-06-19 Thread mherbene

I would not allow the user to wildcard at the start of the names, and
require at least one letter of each name.  Any good database engine should
do fine with those restrictions.

-Original Message-
From: Chad McCue [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 19, 2001 8:29 AM
To: CF-Talk
Subject: Querying a large database


Hey Everyone, 
I have a quick question about querying a database with over 600 thousand
entries. The user has the ability to search by a name they type in. Now when
they click search I need to query two fields from this table to find the
name. Both fields in SQL are indexed. I need some ideas that will not kill
our server while someone is performing a search. Remember that the user will
be able to type in any part of a name, does not need to be the whole name.
Wildcard characters are used like this %#name#%. 

Thanks
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Detecting if Browser has Cookies Enabled

2001-06-19 Thread Chris Norloff

-- Original Message --
From: Graham Pearson [EMAIL PROTECTED]
I am trying to find a section of code that I can put into my pages to test 
the existence of cookies and if they do not exist, I am wanting to add CFID 
and CFTOKEN to each Link after a user logs in. If the browser has cookies 
enabled, I want to use cookies.

Set a cookie; go to the next cf page and try to read the cookie. If it's there, the 
browser supports cookies.

Chris Norloff

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMAIL problem

2001-06-19 Thread Bill Poff

Hi,

Sorry for the earlier message, my fingers were going faster than my brain...

My experience with mail servers is that they won't send mail without a valid
From address. This is how I take care of that.

!--- Check User's Email Address ---

CF_IsEmail EMAIL=#GetAward.ShipEmail#
  CFIF ISEMAILRESULT
cfset Email = '#GetAward.ShipEmail#'
  CFELSE
cfset Email = '[EMAIL PROTECTED]'
  /cfif

!---  Send Mail ---

cfmail to=[EMAIL PROTECTED]
 from=#Email#
 subject=ORDER - #12345
 bcc=[EMAIL PROTECTED]
 type=HTML

You can get the CF_IsEmail tag from the Developers Exchange.

--Bill

-Original Message-
From: Hamid Hossain [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 17, 2001 2:39 AM
To: CF-Talk
Subject: CFMAIL problem


Hi All,

I am tring to send email with cfmail but I am facing
some problems. Some times it sends and some time it
does not send!

I am sure that all form variables are passed and they
are ok.
I used the following standard code:

cfif IsDefined(SendIt)
  cfmail from=#FORM.sEmail#
 to=[EMAIL PROTECTED]
 subject=#FORM.sSubject#
 type=HTML
#FORM.sBody#
  /cfmail
  bDone/b
/cfif

The word (Done) always appear but sometimes no email
could be received. It is not delay time. it is a real
problem.

any suggestions
Hamid Hossain
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Shanje's broken? Anyone know?

2001-06-19 Thread Dylan Bromby

did the list automatically give his email 3 different subjects? :)

if it were the list, the subjects would all the the same, right?

his subjects (the body of each wasn't identical, but virtually the same)
were:

1) Shanje's broken?   Anyone know?
2) What's happened to Shanje?  Did they go broke?
3) What's happened to Shanje?  Are they out of business?

i don't care about the 3 posts, but i want to delineate what the list is
responsible for and what are actually multiple posts.


-Original Message-
From: David Hannum [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 19, 2001 4:18 AM
To: CF-Talk
Subject: Re: Shanje's broken? Anyone know?


Folks, I don't think anybody is sending anything three times.  The list
sporadically sends extra copies.  It's been happening for the past few days
... . .

Dave


- Original Message -
From: Will Swain [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, June 19, 2001 4:53 AM
Subject: RE: Shanje's broken? Anyone know?


 Don't think you need to send the same thing three times!!!

 -Original Message-
 From: Mike Kear [mailto:[EMAIL PROTECTED]]
 Sent: 18 June 2001 01:42
 To: CF-Talk
 Subject: Shanje's broken? Anyone know?


 A client of mine has a site at Shanje, and he's written to me telling me
 that his site's been down for 24 hours now, and there is no response from
 Shiloh Jennings.   I've emailed him too and had no response.

 Does anyone else here have a site at Shanje?

 Is your site down too?Anyone know anything about their status?

 The Shanje's own site, file://shanje.com is up and going, and my client's
email
 and ftp are working, and the ping to the site gives a decent result, its
 just that the browser times out getting any page on his site.   Any
browser,
 from any pc.

 Cheers,
 Mike Kear
 Windsor, NSW, Australia
 AFP WebWorks



 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMAIL problem

2001-06-19 Thread Dylan Bromby

that's a mail server-dependent feature. not all mail servers automatically
validate the sender.

-Original Message-
From: Bill Poff [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 18, 2001 7:24 AM
To: CF-Talk
Subject: RE: CFMAIL problem


Hi,

Sorry for the earlier message, my fingers were going faster than my brain...

My experience with mail servers is that they won't send mail without a valid
From address. This is how I take care of that.

!--- Check User's Email Address ---

CF_IsEmail EMAIL=#GetAward.ShipEmail#
  CFIF ISEMAILRESULT
cfset Email = '#GetAward.ShipEmail#'
  CFELSE
cfset Email = '[EMAIL PROTECTED]'
  /cfif

!---  Send Mail ---

cfmail to=[EMAIL PROTECTED]
 from=#Email#
 subject=ORDER - #12345
 bcc=[EMAIL PROTECTED]
 type=HTML

You can get the CF_IsEmail tag from the Developers Exchange.

--Bill

-Original Message-
From: Hamid Hossain [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 17, 2001 2:39 AM
To: CF-Talk
Subject: CFMAIL problem


Hi All,

I am tring to send email with cfmail but I am facing
some problems. Some times it sends and some time it
does not send!

I am sure that all form variables are passed and they
are ok.
I used the following standard code:

cfif IsDefined(SendIt)
  cfmail from=#FORM.sEmail#
 to=[EMAIL PROTECTED]
 subject=#FORM.sSubject#
 type=HTML
#FORM.sBody#
  /cfmail
  bDone/b
/cfif

The word (Done) always appear but sometimes no email
could be received. It is not delay time. it is a real
problem.

any suggestions
Hamid Hossain
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF 5 scheduling

2001-06-19 Thread Michael Dinowitz

Has anyone had any problems with the scheduling in CF 5? I've had CF 4.5.2
and earlier scheduled events running like a champ but 5 doesn't seem to want
to budge. Anyone else with this experience?
I built the new HoF server with CF 5 but I may go back to 4.5.2 if this
isn't working right.

Michael Dinowitz
Publisher: Fusion Authority weekly news alert
(www.fusionauthority.com/alert)
Listmaster: CF-Talk, CF-Jobs, Spectra-Talk, Jrun-Talk, etc.
(www.houseoffusion.com)



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMAIL problem

2001-06-19 Thread Dan Phillips

Check your logs to see what the problem may be. You can find this in
/cfusion/logs/mail.log
This will tell you why a message was not able to be sent. Also check the
folder /cfusion/mail/undeliverable and see if any text files are there. If
there aren't any, then CF is sending the mail and you may have SMTP or mail
server issues.


Dan Phillips
www.cfxhosting.com

-Original Message-
From: Bill Poff [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 18, 2001 10:16 AM
To: CF-Talk
Subject: RE: CFMAIL problem




-Original Message-
From: Hamid Hossain [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 17, 2001 2:39 AM
To: CF-Talk
Subject: CFMAIL problem


Hi All,

I am tring to send email with cfmail but I am facing
some problems. Some times it sends and some time it
does not send!

I am sure that all form variables are passed and they
are ok.
I used the following standard code:

cfif IsDefined(SendIt)
  cfmail from=#FORM.sEmail#
 to=[EMAIL PROTECTED]
 subject=#FORM.sSubject#
 type=HTML
#FORM.sBody#
  /cfmail
  bDone/b
/cfif

The word (Done) always appear but sometimes no email
could be received. It is not delay time. it is a real
problem.

any suggestions
Hamid Hossain
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF MS INDEXING Service

2001-06-19 Thread Michael Lugassy


I'm trying to build an efficient search engine with Microsoft Indexing Service (IIS5.0)
Has someone tried to operate CF with this? (i.e - created a search template
and search queries?) any help or opinions on that service from M$ would be great!

Thanks,

Michael Lugassy



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: duplicate logins

2001-06-19 Thread Andrew Scott

And does the word Firewall mean anything, some software allow for
cookies to never be passed back to the server and others hide the
machine name as well as being able to hide where you visited from

Should always once made a connection to pass the ID  Token in the url.


 -Original Message-
 From: David Grabbe [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, 5 June 2001 2:19 AM
 To: CF-Talk
 Subject: duplicate logins
 
 
 Hello All!
 
   I'm running into a problem with session/cookie management, and
am
 hoping
 you folks would be able to point me in the right direction.
 
   It's like this:  we ask user's to sign in with basic information
to
 gain
 access to a certain part of the website.  After they fill out the
form, I
 run a script which writes their information to a database and sets a
 session
 variable to represent that they have already logged in (so they don't
have
 to log back in if they surf to other parts of the site and then come
 back).
 This works fine for probably 85% of the users, but it seems that for
some
 users that session variable isn't getting set (I haven't been able to
 verify
 this; I can't replicate the problem but I've received reports about
it).
 It
 might be an issue of the user turning of cookies -- which I am
attempting
 to
 catch and deal with in the Application.cfm file.
 
   If the user is not accepting cookies, I'm trying to add the CFID
and
 CFTOKEN to the URL so I can still keep track of their session info.
 
   Here's the code I am working with -- do you see anything amiss?
 
 TIA!
 
 Cheers,
 David
 
 
 
 ---Application.cfm
 
 cfapplication name=cgg clientmanagement=Yes
sessionmanagement=Yes
 setclientcookies=Yes sessiontimeout=#CreateTimeSpan(1,0,0,0)#
 applicationtimeout=#createTimeSpan(1,0,0,0)# clientstorage=Cookie
 setdomaincookies=Yes
 
 CFIF NOT ISDEFINED(session.rollCount)
   CFSET SESSION.ROLLCOUNT = 1
   CFCOOKIE NAME=isOn VALUE=testing
   CFSET APPLICATION.ADDTOKEN =
 cfid=#client.cfid#cftoken=#client.cftoken#
 CFELSE
   CFSET APPLICATION.ADDTOKEN = IIF(NOT ISDEFINED(cookie.isOn),
   DE(cfid=#client.cfid#cftoken=#client.cftoken#), DE())
 /CFIF
 
 ---
 
 
 
 
 ---form processing page-
 
 
 
   !--- Insert Query Here ---
   cfquery name=Update_login datasource=dsn maxrows=1
   INSERT INTO

tablename(name,city,state,zip,country,email,num_people,login_date,login_
ti
 me
 ,http_user_agent)
 

VALUES('#name#','#city#','#state#','#zipcode#','#country#','#email#','#n
um
 _p
 eople#','#DateFormat(Now(),MM/DD/)#','#TimeFormat(Now(),
hh:mm:ss
 tt)#','cfoutput#CGI.HTTP_USER_AGENT#/cfoutput')/cfquery
 
 
 
 
 cfoutput
 cfif (ParameterExists(save_info)) AND (#save_info# IS Yes)
   cfcookie name=name value=#name# expires=NEVER
   cfcookie name=city value=#city# expires=NEVER
   cfcookie name=state value=#state# expires=NEVER
   cfcookie name=zipcode value=#zipcode# expires=NEVER
   cfcookie name=country value=#country# expires=NEVER
   cfcookie name=email value=#email# expires=NEVER
 
 cfelse
   cfcookie name=name value=#name# expires=NOW
   cfcookie name=city value=#city# expires=NOW
   cfcookie name=state value=#state# expires=NOW
   cfcookie name=zipcode value=#zipcode# expires=NOW
   cfcookie name=country value=#country# expires=NOW
   cfcookie name=email value=#email# expires=NOW
 
 /cfif
 
 /cfoutput
 
 CFSET SESSION.LOGGED_IN = yes
 
 script
 self.location='newlocation.cfm';
 /script
 
 ---
 
 
 
 
 -newlocation.cfm---
 
 CFIF SESSION.CGG_RA_LIVE_LOGGED_IN IS NOT yes
   cflocation url=login.cfm
addtoken=Yes
 /CFIF
 
 
 --- HTML content here ---
 
 --
 
 
 
 
 
 
 
 
 
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: single user version of 5.0

2001-06-19 Thread Raymond Camden

Guys, I spoke w/ some higher ups at Macromedia and they are _very_ aware
that there is some confusion in this area. I can promise you that a
_definite_ statement will be made to clear this up. This statement will
happen soon, and it will get posted here.

I hope this helps!

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

My ally is the Force, and a powerful ally it is. - Yoda

 -Original Message-
 From: Yvette Ingram [mailto:[EMAIL PROTECTED]]
 Sent: Friday, June 15, 2001 2:48 PM
 To: CF-Talk
 Subject: Re: single user version of 5.0


 Raymond:

 What is the alternative to upgrading from Allaire ColdFusion 4.5 Web
 Application Server Studio For Windows to ColdFusion 5.0 Web Application
 Server Studio For Windows.

 I called a reseller this morning to upgrade and he couldn't
 figure out what
 I should be upgrading to.  I'm still waiting for a call.


 Yvette Ingram
 Brainbench Certified ColdFusion 4.5 Programmer
 Email: [EMAIL PROTECTED] or
 [EMAIL PROTECTED]
 ICQ:  21200397



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF 5 scheduling

2001-06-19 Thread Saidi; Marwan

What type of problems are you having? I had a scheduled verity update
template that ran fine until I upgraded. After the upgrade, the template was
crashing. After investigation, I found that the template took about 45-60
seconds to update (it is a large collection), and the default timeout was
set at 30 seconds. I changed the default, and the task has worked fine
since. However, I am not too excited about having a 75 second timeout as
default. Any ideas? 

Marwan Saidi
Webmaster
CED - Concord IS
[EMAIL PROTECTED]
407.741.8645


-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 18, 2001 8:31 AM
To: CF-Talk
Subject: CF 5 scheduling


Has anyone had any problems with the scheduling in CF 5? I've had CF 4.5.2
and earlier scheduled events running like a champ but 5 doesn't seem to want
to budge. Anyone else with this experience?
I built the new HoF server with CF 5 but I may go back to 4.5.2 if this
isn't working right.

Michael Dinowitz
Publisher: Fusion Authority weekly news alert
(www.fusionauthority.com/alert)
Listmaster: CF-Talk, CF-Jobs, Spectra-Talk, Jrun-Talk, etc.
(www.houseoffusion.com)
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL problem

2001-06-19 Thread Howie Hamlin

Check the log files for errors and see if there are any mails in the UNDELIVR folder.  
These are under:

[directory where cf is installed]\mail\log
[directory where cf is installed]\mail\undelivr

The log file will contain errors in transmission to the mail server and the UNDELIVR 
folder will contain any mail that could not be
delivered.  You can also try moving the undelivered mail back into the spoool folder 
and CF should retry delivery.

HTH,

Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc.
www.CoolFusion.com
631-737-4668 x101
inFusion Mail Server (iMS) - The Intelligent Mail Server

- Original Message -
From: Hamid Hossain [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Sunday, June 17, 2001 2:39 AM
Subject: CFMAIL problem


 Hi All,

 I am tring to send email with cfmail but I am facing
 some problems. Some times it sends and some time it
 does not send!

 I am sure that all form variables are passed and they
 are ok.
 I used the following standard code:

 cfif IsDefined(SendIt)
   cfmail from=#FORM.sEmail#
  to=[EMAIL PROTECTED]
  subject=#FORM.sSubject#
  type=HTML
 #FORM.sBody#
   /cfmail
   bDone/b
 /cfif

 The word (Done) always appear but sometimes no email
 could be received. It is not delay time. it is a real
 problem.

 any suggestions
 Hamid Hossain

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



(admin) test 1

2001-06-19 Thread Michael Dinowitz

test 1

Michael Dinowitz
Publisher: Fusion Authority weekly news alert
(www.fusionauthority.com/alert)
Listmaster: CF-Talk, CF-Jobs, Spectra-Talk, Jrun-Talk, etc.
(www.houseoffusion.com)



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFX_Excel Tag not working with CF 5.0

2001-06-19 Thread Paul Smith

What does the CFX_Excel tag allow you to do?
Does it help you import an Excel spreadsheet into SQL?

best,  paul

At 01:21 AM 6/17/01 -0400, you wrote:
Dave,
That did it!
I deleted the tag and removed the registration.  Downloaded a fresh tag
and installed and registered it.  Restarted CF5.  Cold Fusion is running as
a service logging on LocalSystem account.
I also reinstalled MSoffice on the webserver.

Jim
- Original Message -
From: Dave Watts [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, June 16, 2001 11:05 PM
Subject: RE: CFX_Excel Tag not working with CF 5.0


 
   CFX_Excel v 2.0 Tag by Thomas Frey stopped working right
   after I upgraded to CF5.0. What would break this tag? It
   ran for over a year on 4.5. Any suggestions?
 
  Did you reinstall it after installing CF 5?
 
  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

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



pdfs, fds oh my

2001-06-19 Thread Janine Jakim

This is a repost.  I sent this out Friday afternoon, but it never showed up
again in my mailbox...sorry if you are receiving it for a 2nd time.
I am trying to populate my pdf form using cf/fdf(non ActiveXmethod)-nice
write up on that Max- your directions are superb and easy to follow. (If you
don't know what I'm talking about you can check out this link
http://www.mail-archive.com/cf-talk@houseoffusion.com/msg32040.html )
It works fine until I try to add an array to the equation.  I keep getting
error msgs.  It's the msg that usually means that a variable can't be
found/is misspelled. (Error resolving parameter Currentrow)I assume it
is getting caught up on how the array variable  is set up.  This is what
it's like:
action page:
CFSET GradesForPDF=ArrayNew(2)
CFLOOP QUERY =GetGrades
CFSET GradesForPDF[CurrentRow][1]=GetGrades.GradeForSubject
CFSET GradesForPDF[CurrentRow][2]=GetGrades.GradingPeriod
CFSET GradesForPDF[CurrentRow][3]=GetGrades.SkillID
/CFLOOP

The fdf looks like this
/FDF  /Fields [  /V (#GradesForPDF[CurrentRow][1]#)/T (Grade)  /V
(#LASTNAME#)/T (NAME) 
 /V (#FIRSTNAME#)/T (TchNAME) ] .
The error is the resolving parameter CurrentRow.  

In my query I tried to do another cfset- something like
CFSET GradesForPDF=GradesForPDF[CurrentRow][1]---but of course that doesn't
work/is illegal- is there a way to get this to output correctly
Thanks in advance for ideas/etc...
j


Janine M. Jakim
Database Programmer/Analyst
Albemarle County Public Schools
Department of Technology 
Phone: (804) 975-9443
Fax:   (804) 975-9442


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Thumbnail creation from Quark/Illustrator/Freehand

2001-06-19 Thread Chad Gray

Has anyone see an application that can create a thumbnail from 
Quark/Illustrator/Freehand documents?

I have an application where people upload files, and i can create thumbnail 
images from tif,psd,pcx,jpg,gif,eps, and bmp with CFexecute and 
ImageMagick.  I cant seem to find any application that will make a 
thumbnail from a Quark/Illustrator/Freedhand document though.

Im thinking im going to have to hire a VB programmer, or C programmer to 
make an application...  Any Ideas?

Thanks,
Chad


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMAIL problem

2001-06-19 Thread Philip Arnold - ASP

 I am tring to send email with cfmail but I am facing
 some problems. Some times it sends and some time it
 does not send!

 I am sure that all form variables are passed and they
 are ok.
 I used the following standard code:

 cfif IsDefined(SendIt)
   cfmail from=#FORM.sEmail#
  to=[EMAIL PROTECTED]
  subject=#FORM.sSubject#
  type=HTML
 #FORM.sBody#
   /cfmail
   bDone/b
 /cfif

 The word (Done) always appear but sometimes no email
 could be received. It is not delay time. it is a real
 problem.

Have you looked in the \CFusion\Mail\Undelivr folder? It contains the emails
that couldn't be sent - if the emails aren't in there, then they must have
gone to the SMTP server

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

Websites for the real world

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Unicode ( was OT: Coldfusion vs. ASP)

2001-06-19 Thread Kay Smoljak

On Mon, 18 Jun 2001 02:58:55 +0700, [EMAIL PROTECTED] (Paul Hastings) wrote:
 I've had to learn ASP to compliment my CF skills, mainly for
multi-language
 projects due to CF's lack of unicode support.

not to start any religious wars, but even cf's unicode support, while
not as good as ASP, isn't completely hopeless. workarounds exist
for most stuff  http://www.tei.or.th/misc/unicodeSplit.cfm

Thanks Paul,

That's really interesting. I can't see the Japanese text but I'm assuming
this is because I don't have the appropriate font installed?

I'd be really interested in finding out about these workarounds... are there
any online resources? Anything to keep me away from ASP!

Thanks,
Kay.

__
Kay Smoljak - ColdFusion Developer - PerthWeb Pty Ltd
Internet Solutions for your business!

Level 9/105 St George's Tc - Perth - Western Australia
Ph: (08) 9226 1366 Fax: (08) 9226 1375 Mobile : 0419 949 007
Visit Perth online! : www.perthweb.com.au

Tools for developers: http://developer.perthweb.com.au
-- cfx_pwimageproc: image processing tool
-- cfx_pwcardcrypt: credit card validation and encryption



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE:XML with ColdFusion

2001-06-19 Thread Russell Brown

Hi,
Have a look at siteobjects.com's soxml tag (also available at the allaire
tag gallery) It use cfobject to invoke an instance of the msxml parser and
run the methods, (just like asp!).

I have a version that uses xerces instead of msxml (in case you have
Linux/Solaris CF server) if you want it, mail me off list and I can send it
to you (Its not in tag gallery yet as it is not fully featured yet)


Russell Brown
Internet Application Developer
Freeserve.com Plc, PO Box 452, Leeds LS2 7EY
Telephone: 0113 207 1203


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



IIF vs if,else

2001-06-19 Thread Cameron

Ok, after a bit of testing... can anyone tell me what the advantage of IIF over if 
(cfif or if () {}), else (cfelse or else {}).

I tested a simple block of code using IIF and cfifcfelse/cfif  IIF ran twice as 
slow...

I can't see any major advantage by using it... yeah, it is kinda similar to i = 
(true?1 : 2); in javascript but it's really slow case of the implicit evaluate() on 
each part. Would be better if it was implicit  made explicit, IF NEEDED.

Can anyone give me a decent reason why IIF is better that cfif?

Cameron Junge
Web Developer
Strongnet
[EMAIL PROTECTED]
http://www.strongnet.co.nz
Ph: +64 9 414 2492
Fax: +64 9 414 2960

You play with a Mac until you break it,
You play with a PC until it works.


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Desperate for Hosting URGENT WARNING URGENT

2001-06-19 Thread cf . talk

Dear Heidi:

IF YOU or MICHAEL LUGASSY or ANYONE ELSE ON THIS LIST are customers of 
CIHOST, be afraid, be VERY afraid.

Maybe you've seen CIHOST listed on a Top Hosting Lists website?  If so, 
go back, look again, and see who actually sent in the votes for them to be 
there.  This company has NO idea how to install, operate or support an NT 
webserver, NEVER MIND one running Cold Fusion.  While you're there, also do 
a domain name search on CIHOSTSUCKS and think carefully about why there 
are so many TLD matches.

CIHOSTING's IIS servers crash dozens of times every day, and their CF 
services go down for hours at a time.  Yes, we DO have the actual logs off 
their servers to prove it.  They easily take 2 or 3 days to respond to 
support emails, but only if you're lucky.  We also have a large collection 
of wrongly answered (although mostly just unanswered) support emails.

We can also produce copies of CIHOST transactions where they have rebilled 
the same service(s) multiple times.  Again we have WEEKS of unanswered 
billing emails asking for them to please stop.  Sadly the only way you can 
get them to stop rebilling is by canceling your card, although you will 
continue getting automated reminders about your overdue payments, even 
after your account is closed.

Ours is not an isolated bad experience with CIHOST, although we've not 
exactly new to using virtual hosting (having been using CF since version 
2).  Currently their attorneys are defending a class action by numerous 
CIHOST ex-customers who got wy more screwed then we did.  Finally the 
company president and accountant (his girlfriend) are being investigated 
for credit card fraud, but then of course you didn't pay them with plastic 
did you?

Heidi, whatever choice you make for CF hosting, DO NOT, do not, DO NOT use 
CIHOST.

PS: Please contact us off-list if you or anyone else here needs help with 
problems caused by this bunch of Texas cowboys.



-- Original Message --
Date: Mon, 18 Jun 2001 19:13:11 +0200
From: Michael Lugassy [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Desperate for Hosting

Why not Cihost? (http://www.cihost.com)
Checkout NT Shared Specials (!)
1gb storage, 20gb bandwidth, 200Mb SQL, Access, CF, shared SSL, plus much
much more.
Go for it.
Thanks,
Michael



-- Original Message --
From: Heidi Belal [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 17, 2001 10:13 AM
To: CF-Talk
Subject: Desperate for Hosting

Ok,
I desperately need a cheap and reliable 24 hour support service, hosting!
if anybody could suggest where i can look it would be of great help!
I've checked out a lot of what's on the net, but i'd like some personlized 
views/experince!
Thanks! 


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists