Cookie information apprearing at the top of a page

2002-10-24 Thread Stephen Rojas
Hey all,
I think I have seen reference to this problem before on the list but I
could not find it in the archives. Basically what is happening is that
when I go any CF page running on my production server that sets any
cookies the information for the cookie is displayed at the top of the
page in the following format:

Content-type: text/html Page-Completion-Status: Normal
Page-Completion-Status: Normal Set-Cookie: CFID=192333; expires=Sun,
27-Sep-2037 00:00:00 GMT; path=/; Set-Cookie: CFTOKEN=70022833;
expires=Sun, 27-Sep-2037 00:00:00 GMT; path=/;

A quick search on google shows that this is a common issue, however, I
haven't been able to find a resolution. Any ideas or suggestions?

TIA
Stephen

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



RE: Company Name

2002-09-11 Thread Stephen Rojas

FlashGuyMedia :-)

- Stephen

-Original Message-
From: FlashGuy [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 11, 2002 9:44 AM
To: CF-Talk
Subject: OT: Company Name


Hi,

I'm planning on starting up a company just for extra cash to put food on the
table. I would be doing web development, Publishing print and electronic,
data conversion, font
development etc.

I'm finding it difficult to come up with a company name that has the word
media in it and having the same URL.

somethingMedia.com

Any ideas?



---
FIGJAM
---




__
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



Certification

2002-07-02 Thread Stephen Rojas

Hey all,
Been working with CF for about 2 years now, all manner of projects and
applications, principally using CF 4.5 and CF 5. As of late I have been
thinking of making the jump and get certified and basically just wanted to
get some general recommendations out there from anyone who has gone through
the process. I am aiming for CF 5 certification as I believe that makes the
most sense currently. Are there any resources out there that people found
particularly helpful? Any you thought would be helpful but weren't :-) Any
other tips people may have are a definite plus. Needless to say I have done
the required Amazon.com etc. searches (Noticed Michael Dinowitz's book is
out of print, alas), but I also wanted to pick up some 'real life' advice
before I move forward.

Thanks in advance
-Stephen

__
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: CFOUTPUT Challenge

2001-09-14 Thread Stephen Rojas

what if you use cfloop instead of cfoutput to move through the queries?

just an idea
-Stephen

-Original Message-
From: Janine Jakim [mailto:[EMAIL PROTECTED]]
Sent: Friday, September 14, 2001 8:41 AM
To: CF-Talk
Subject: CFOUTPUT Challenge


I have what I consider an interesting problem.
I need to send the results of 6 queries out to make one form. (report/pdf
style).
My main query- person demographic query works great and opens up the correct
number of reports (1 report per person).  However, the other 5 queries only
give the information for the 1st person. I realize this is because of the
cfoutput of the main query vs subqueries.
For example
CFOUTPUT QUERY=1 GROUP=CustomerID
#NAME#, #ADDRESS#
CFOUTPUT
#Orders.Order1# #Order2#
/CFOUTPUT
/CFOUTPUT

 I don't think qofq is the answer because of the amount of the queries (6)
and the way they are handled. (Some of the queries do not have a direct link
to the 1st query)
I have tried:
-Leaving out the 2nd cfoutput statement- that results in all the customers
having the same orders.
- Adding a CFIF statement for the 2nd output statement-
CFIF 1.CustomerID EQ Orders.CustomerID
CFOUTPUT- this results in only the 1st persons order information showing
up.
-CFLOOP LIST with and without the cfif statement. Same results as above..

I can not change it to:
CFOUTPUT QUERY=1 GROUP=CustomerID
#NAME#, #ADDRESS#
/CFOUTPUT
CFOUTPUT
#Orders.Order1# #Order2#
/CFOUTPUT
This causes only 1 form to show up.
I'm stumped on how to do thisDoes anyone have any ideascertainly I
am not going where no man has ever gone before
Thanks in advance.

~~
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: ASP vs. Cold Fusion

2001-08-17 Thread Stephen Rojas

Michael,
What do the * next to the version number signify?

-Stephen

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 16, 2001 6:57 PM
To: CF-Talk
Subject: RE: ASP vs. Cold Fusion


http://www.houseoffusion.com/index.cfm?body=functions
It's a COMPLETE list.

At 06:51 PM 8/16/01, you wrote:
I guess I didn't know about that built in function :)

Shawn Regan
Applications Developer
Pacific Technology Solutions

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 16, 2001 3:18 PM
To: CF-Talk
Subject: Re: ASP vs. Cold Fusion


Checking that the domain exists is easy using the
CFUSION_VERIFYMAIL(MailServer, SMTPPort, Timeout) function. It'll return a
Boolean true or false id the mail server exists or not. The second part of
finding if the user actually exists on the mail server is harder. Many
(most?) mailservers do not allow this feature as its used by spammers to
gather addresses. You can use CFX_Socket to do a socket call to the mail
server in the same way your doing it with Asp (basically). If I saw the Asp
code you have I could show where what goes.

At 06:10 PM 8/16/01, you wrote:
 Hi all,
 
 I am trying to write a new routine to verify email addresses. I have
already
 written a small routine which validates the address for correct syntax.
 However, I want to take it a few steps further.
 
 I found a routine written for ASP
 (http://CoverYourASP.com/ValidateEmail.asp) which not only checks syntax
but
 goes so far as to check that the domain exists and that the domain can
also
 accept email. The routine also goes one step beyond this and checks the
 mailserver to see if the address actually belongs to any of its
registered
 users.
 
 I am pretty sure that I can do the same thing in Cold Fusion but I am up
 against a wall as to how. Also, I want to try and avoid passing anything
to
 an ASP page then back to a CF page.
 
 Any ideas out there? Any tutorials on the subject?
 
 Thanks in advance,
 
 Nelson
 

~~
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: Opening a new Window

2001-07-27 Thread Stephen Rojas

In your new window function there are three things you set, the URL, the
window name and then the properties, which include window size, position,
scrollbars(yes/no), and so on:

newWindow = window.open([URL of new window], [Window object name],
[Properties])

newWindow = window.open(www.website.com, MyWindow,
top=100,left=200,height=300,width=600)

BTW, this is really Javascript stuff more than CF or even HTML...I am not
nagging, only saying that so you know what resources to use later on :-)

-Stephen

-Original Message-
From: ronmyers [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 27, 2001 12:02 PM
To: CF-Talk
Subject: Opening a new Window


HI I am a newbie at Using CF and HTML in general, But I am having fun
learning. My problem is I am opening a new window. I know how to set the
size How do I set the location where it opens.

Thanks

Ron
~~
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: CFSET error because of character

2001-07-19 Thread Stephen Rojas

This should do it:

cfset dot =tr width='190'tda/td/tr

Just use single instead of double quotes around the tr width.

-Stephen

-Original Message-
From: nyon [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 19, 2001 9:40 AM
To: CF-Talk
Subject: CFSET error because of character 



  Hi,

I get an error when using the following statement.

cfset dot =tr width=190td/td/tr

Only when I remove the character  does it work.

Any solution ?



Nyon
~~
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: Open source content management who wants to join

2001-07-19 Thread Stephen Rojas


I've only been doing CF for about 5 or 6 years,

Only!? 6 years is a little over a third of my lifetime, I would 
suggest that
you could probably help a lot.

;-)

-Stephen


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 19, 2001 9:35 AM
To: CF-Talk
Subject: Re: Open source content management who wants to join


I'd be interested.  I've only been doing CF for about 5 or 6 years, 
but may
be able to help a little.  I've built a couple of micro content 
management
systems, but nothing portable like phpnuke.  It'd be really great to 
see
something open source like.  I built one system using Spectra, only 
to have
the project revamped with Macromedia's announcement of Spectra's 
demise
(we're looking at other options now, including building it in CF).  I 
think
on of the biggest problems in a portable system will be the standard 
use of
a database.  If going with open source, I'd recommend PostreSQL over
something like mySQL.

Randy
~~
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: Open source content management who wants to join

2001-07-19 Thread Stephen Rojas

Sorry, was the first thing that jumped to mind...what can I say, young *and*
inexperienced :-)

-Original Message-
From: Lee Fuller [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 19, 2001 12:57 PM
To: CF-Talk
Subject: RE: Open source content management who wants to join


We REALLY didn't need to hear that .. little over a third of my
lifetime... remark when speaking about 6 years, Stephen.  grin


Lee Fuller
Chief Technical Officer
PrimeDNA Corporation / AAA Web Hosting Corporation
We ARE the net.
http://www.aaawebhosting.com

(Feeling older than before.)

 -Original Message-
 From: Stephen Rojas [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, July 19, 2001 7:10 AM
 To: CF-Talk
 Subject: RE: Open source content management who wants to join



 I've only been doing CF for about 5 or 6 years,

 Only!? 6 years is a little over a third of my lifetime, I would
 suggest that
 you could probably help a lot.

 ;-)

 -Stephen


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, July 19, 2001 9:35 AM
 To: CF-Talk
 Subject: Re: Open source content management who wants to join


 I'd be interested.  I've only been doing CF for about 5 or 6 years,
 but may
 be able to help a little.  I've built a couple of micro content
 management
 systems, but nothing portable like phpnuke.  It'd be really great to
 see
 something open source like.  I built one system using Spectra, only
 to have
 the project revamped with Macromedia's announcement of Spectra's
 demise
 (we're looking at other options now, including building it in CF).  I
 think
 on of the biggest problems in a portable system will be the standard
 use of
 a database.  If going with open source, I'd recommend
 PostreSQL over something like mySQL.

 Randy

~~
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: Open source content management who wants to join

2001-07-18 Thread Stephen Rojas


Your Events link in Arcadia goes to your tips page.

Thought you should know :-)

-Stephen

-Original Message-
From: Zac Belado [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 18, 2001 11:09 AM
To: CF-Talk
Subject: RE: Open source content management who wants to join


 I would be interested in looking at your content management tool.

I have a test version running at

http://www.pixelgeek.com/arcadia/

which is actually a bit of a misnomer as the entire pixelgeek site 
has been
running the software for some time now, but the Arcadia site (the url 
above)
has the message board (very basic) running and integrated.
~~
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: php info

2001-07-13 Thread Stephen Rojas

Try PHP-Talk, you moron.

Just kidding :)

-Original Message-
From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 13, 2001 3:14 PM
To: CF-Talk
Subject: RE: php info


www.php.net

www.amazon.com

-Original Message-
From: Bruce, Rodney [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 13, 2001 11:22 AM
To: CF-Talk
Subject: OT: php info


Anyone have a good place to go to get information on learning php?

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