Leaving my Client...

2006-11-13 Thread Bailey, Neal
Hello Everyone,

 

I am having to leave a client of mine because I will be moving and have
another company that will be requiring my full time attention. 

I wanted to pass this information along to the group here for the folks
that are local to DFW. This would be a good opportunity to pick up a new
client or full time position if interested. The company is a Health 
Beauty company by the name of OLEDA (www.oleda.com
http://www.oleda.com/ ) they are in need of a Creative person who can
both code in ColdFusion and design and maintain a nice looking website. 

The website is one that I built around 5 years ago and has not changed
much. Once I built the site I had to leave and they hired a full time
person to maintain it, since then it has not changed much and I have
recently stepped in to help after their full time person left a few
months ago. Now I have to move on again and want to make sure they end
up with a good web developer. 



If anyone is interested here is there contact info. 



James Haun
Phone:  817-731-1147
Email: [EMAIL PROTECTED] 

Also check Monster.com as they will have a position with more details
posted there soon.

- Neal Bailey

- AMG - Internet Marketing Manager

- Email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260254
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Google Adwords API

2006-01-05 Thread Bailey, Neal
Hi Russ,

Well I have some of it working... I can pull the data from the Adwords
accounts but it a little more difficult adding or changing info to the
Adwords campaigns or ads. The main issue is there is not really any support
or examples for ColdFusion. So I am not real sure how to format the strings
to pass into service to make changes. I know all the commands but it's the
formatting that I'm having an issue with. Maybe between the two of us we can
figure it out. 

- Neal 

-Original Message-
Subject: RE: Google Adwords API

Neal, 

I was wondering if you've figured this out.  I am planning to start doing
some work with the Adwords API soon, and would like to know if there are any
gotcha's. 

Russ

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


Google Adwords API

2006-01-04 Thread Bailey, Neal
Does anyone have any experience with Google Adwords API service? I trying to
figure out some of the sample code provided on the Goggle Groups and in the
Documentation, so far I have not been able to get any of the examples to
work. I can make the connection to the service but beyond that, like
modifying ad settings or adding keywords I can't seem to get anything
working. 
 
If anyone here has any working examples or could provide some info that
would be great. 
 
So far all I have that kind of works but generates an error is this:
 
---
cfset myEMail = [EMAIL PROTECTED] 
cfset myPassword =  
cfset myToken = _xx 
cfset myClient = [EMAIL PROTECTED] 
cfscript 
getGoogleWSDL = 
CreateObject(webservice,https://adwords.google.com/api/adwords/v2/Criteri
onService?wsdl); 
 
addSOAPRequestHeader(getGoogleWSDL,https://adwords.google.com/api/adwords/v
2,email,myEMail); 
 
addSOAPRequestHeader(getGoogleWSDL,https://adwords.google.com/api/adwords/v
2,password,myPassword); 
 
addSOAPRequestHeader(getGoogleWSDL,https://adwords.google.com/api/adwords/v
2,token,myToken); 
 
addSOAPRequestHeader(getGoogleWSDL,https://adwords.google.com/api/adwords/v
2,useragent,ColdFusion AdWords); 
 
addSOAPRequestHeader(getGoogleWSDL,https://adwords.google.com/api/adwords/v
2,clientEmail,myClient); 
 
 
aKeywordRequest = structnew(); 
aKeywordRequest.adGroupId=-- AD_ID goes here --; 
aKeywordRequest.type=broad; 
aKeywordRequest.text=music; 
 
 
xmloutput = getGoogleWSDL.addCriteria(aKeywordRequest); 
/cfscript 
 
 
cfdump var=#xmloutput#
--
 
Neal Bailey
 


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


Query String Dud - issue

2005-12-29 Thread Bailey, Neal
Hey Guys... 
 
It's been a long time since I posted here... 
Well I have an issue and I just can't figure it out I think I have been
staring at it too long now and my Braine is fried. Any help would be
appreciated. Thanks.
 
Ok the issue is... I have the Bit of Code that will strip out most keywords
coming from a referring search engine and then store it in a database. My
problem is when a site links to my site and has an ending ? and no query
string I get an error. Stay with me, here is an example. 
 
http://www.26liter.us/news.html http://www.26liter.us/news.html ?
 
If you visit that site and click on the link on the page that says Texas
Motor Sport Ranch you will get an error on my site. 
 
The error is with this bit of Code. 
cfset referer_queryString =
right(cgi.http_referer,len(cgi.HTTP_REFERER)-strStart)
 
 
 
Here is the whole section of code that I am using:
 
cfif len(cgi.HTTP_REFERER)
cfif find(?, cgi.HTTP_REFERER)
  cfset paramList =
q,p,terms,search,query,Keywords,keyword,Keyword,keywords,qkw,as_epq,searchf
or,prev,qry,terms,term,k,s,ATC
  cfset strStart = find(?, cgi.HTTP_REFERER)
  cfset referer_queryString =
right(cgi.http_referer,len(cgi.HTTP_REFERER)-strStart)
  cfset referer_url = left(cgi.HTTP_REFERER,(strStart-1))
  cfloop list=#referer_queryString# delimiters= index=i
   cfif listfind(paramList,listfirst(i,=))
cfset variables.searchPhrase = listlast(i,=)
cfset variables.searchPhrase = ReplaceList(listlast(i,=),
+,%22,%2C,%20,%2B,%2F,%3A,%28,%29,%2E,%26,  , , , , ,/,:,(,),.,)
   /cfif
  /cfloop
/cfif
/cfif
 
Is there a way to clean an referring url if it does not have actually have a
query string?
 
I have trying a few things but I either fix it and break something else or
just mess it up more. 
 
Any ideas?
 
Thanks. 
Neal Bailey
 
 
 
 


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

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

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


RE: Query String Dud - issue

2005-12-29 Thread Bailey, Neal
Hey are you guys able to see the error...?

If not just go to this site http://www.26liter.us/news.html? And add a ?
to the end of the url then refresh and click the Texas Motor Sport Ranch
link. That should show you the error. 

Neal Bailey


-Original Message-
From: Jim Voris [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 29, 2005 3:05 PM
To: CF-Talk
Subject: Re: Query String Dud - issue

Perhaps you could use cgi.query_string in place of
right(cgi.http_referer,len(cgi.HTTP_REFERER)-strStart)

On 12/29/05, Bailey, Neal [EMAIL PROTECTED] wrote:

 Hey Guys...

 It's been a long time since I posted here...
 Well I have an issue and I just can't figure it out I think I have been
 staring at it too long now and my Braine is fried. Any help would be
 appreciated. Thanks.

 Ok the issue is... I have the Bit of Code that will strip out most
 keywords
 coming from a referring search engine and then store it in a database. My
 problem is when a site links to my site and has an ending ? and no query
 string I get an error. Stay with me, here is an example.

 http://www.26liter.us/news.html http://www.26liter.us/news.html ?

 If you visit that site and click on the link on the page that says Texas
 Motor Sport Ranch you will get an error on my site.

 The error is with this bit of Code.
 cfset referer_queryString =
 right(cgi.http_referer,len(cgi.HTTP_REFERER)-strStart)



 Here is the whole section of code that I am using:

 cfif len(cgi.HTTP_REFERER)
 cfif find(?, cgi.HTTP_REFERER)
   cfset paramList =


q,p,terms,search,query,Keywords,keyword,Keyword,keywords,qkw,as_epq,searchf
 or,prev,qry,terms,term,k,s,ATC
   cfset strStart = find(?, cgi.HTTP_REFERER)
   cfset referer_queryString =
 right(cgi.http_referer,len(cgi.HTTP_REFERER)-strStart)
   cfset referer_url = left(cgi.HTTP_REFERER,(strStart-1))
   cfloop list=#referer_queryString# delimiters= index=i
cfif listfind(paramList,listfirst(i,=))
 cfset variables.searchPhrase = listlast(i,=)
 cfset variables.searchPhrase = ReplaceList(listlast(i,=),
 +,%22,%2C,%20,%2B,%2F,%3A,%28,%29,%2E,%26,  , , , , ,/,:,(,),.,)
/cfif
   /cfloop
 /cfif
 /cfif

 Is there a way to clean an referring url if it does not have actually have
 a
 query string?

 I have trying a few things but I either fix it and break something else or
 just mess it up more.

 Any ideas?

 Thanks.
 Neal Bailey






 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: Query String Dud - issue

2005-12-29 Thread Bailey, Neal
Hey Matthieu,

Not sure I understand what to do with the code snippet you sent. 

It looks like its adding ? to the url when I want to remove it if there is
not a query string available. 

Hope all this makes sense. 
I have been starring at it so long I'm not sure if I can explain it well
enough. 


Neal Bailey


-Original Message-
From: Cornillon, Matthieu (Consultant)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 29, 2005 2:51 PM
To: CF-Talk
Subject: RE: Query String Dud - issue

Neal,

How about this:

CFIF Right(cgi.HTTP_REFERER,1) IS ?
!--- URL ends with ? ---
/CFIF


If this is true, then the URL ends with a ?.  I don't know whether
having multiple ? in the URL will be necessary.  If so, and if this will
even work (I can't remember whether it causes browser error), then you
should use this instead:

CFIF Right(cgi.HTTP_REFERER,1) IS ? AND not
Find(cgi.HTTP_REFERRER,?,Find(cgi.HTTP_REFERRER,?) + 1)
!--- URL ends with ? that does not terminate valid query string
---
/CFIF


HTH,
Matthieu




-Original Message-
From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 29, 2005 3:44 PM
To: CF-Talk
Subject: Query String Dud - issue


Hey Guys... 
 
It's been a long time since I posted here... 
Well I have an issue and I just can't figure it out I think I have been
staring at it too long now and my Braine is fried. Any help would be
appreciated. Thanks.
 
Ok the issue is... I have the Bit of Code that will strip out most
keywords coming from a referring search engine and then store it in a
database. My problem is when a site links to my site and has an ending
? and no query string I get an error. Stay with me, here is an
example. 
 
http://www.26liter.us/news.html http://www.26liter.us/news.html ?
 
If you visit that site and click on the link on the page that says
Texas Motor Sport Ranch you will get an error on my site. 
 
The error is with this bit of Code. 
cfset referer_queryString =
right(cgi.http_referer,len(cgi.HTTP_REFERER)-strStart)
 
 
 
Here is the whole section of code that I am using:
 
cfif len(cgi.HTTP_REFERER)
cfif find(?, cgi.HTTP_REFERER)
  cfset paramList =
q,p,terms,search,query,Keywords,keyword,Keyword,keywords,qkw,as_epq,sea
rchf
or,prev,qry,terms,term,k,s,ATC
  cfset strStart = find(?, cgi.HTTP_REFERER)
  cfset referer_queryString =
right(cgi.http_referer,len(cgi.HTTP_REFERER)-strStart)
  cfset referer_url = left(cgi.HTTP_REFERER,(strStart-1))
  cfloop list=#referer_queryString# delimiters= index=i
   cfif listfind(paramList,listfirst(i,=))
cfset variables.searchPhrase = listlast(i,=)
cfset variables.searchPhrase = ReplaceList(listlast(i,=),
+,%22,%2C,%20,%2B,%2F,%3A,%28,%29,%2E,%26,  , , , , ,/,:,(,),.,)
   /cfif
  /cfloop
/cfif
/cfif
 
Is there a way to clean an referring url if it does not have actually
have a query string?
 
I have trying a few things but I either fix it and break something else
or just mess it up more. 
 
Any ideas?
 
Thanks. 
Neal Bailey
 
 
 
 






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: Query String Dud - issue

2005-12-29 Thread Bailey, Neal
Hey Matthieu,

Not sure I understand what to do with the code snippet you sent. 

It looks like its adding ? to the url when I want to remove it if there is
not a query string available. 

Hope all this makes sense. 
I have been starring at it so long I'm not sure if I can explain it well
enough. 


Neal Bailey


-Original Message-
From: Cornillon, Matthieu (Consultant)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 29, 2005 2:51 PM
To: CF-Talk
Subject: RE: Query String Dud - issue

Neal,

How about this:

CFIF Right(cgi.HTTP_REFERER,1) IS ?
!--- URL ends with ? ---
/CFIF


If this is true, then the URL ends with a ?.  I don't know whether
having multiple ? in the URL will be necessary.  If so, and if this will
even work (I can't remember whether it causes browser error), then you
should use this instead:

CFIF Right(cgi.HTTP_REFERER,1) IS ? AND not
Find(cgi.HTTP_REFERRER,?,Find(cgi.HTTP_REFERRER,?) + 1)
!--- URL ends with ? that does not terminate valid query string
---
/CFIF


HTH,
Matthieu

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: Query String Dud - issue

2005-12-29 Thread Bailey, Neal
OK I got working, I think... Thanks for the help guys. 

- Neal

-Original Message-
From: Cornillon, Matthieu (Consultant)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 29, 2005 3:28 PM
To: CF-Talk
Subject: RE: Query String Dud - issue

What I meant for you to do is to use that code to test whether the ? at
the end of the URL was a bad query string example.  So, where this
might be valid:

http://www.26liter.us/news.html?qVal1=34qVal2=apple

.this is not:

http://www.26liter.us/news.html?

The snippet I sent will test to see if the URL follows the bad format
above.  In that case, you do what you would do if the user loaded the
page with no query string at all.  The more complicated snippet I sent
you lets a value like this pass through (presuming that ? within the
query string are okay):

http://www.26liter.us/news.html?qVal1=34qVal2=appleqVal3=Who?

HTH,
Matthieu

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
Thanks Brian,

But I am still having problems figuring this out... I would things that if
ASP could store complex data types in a Cookie then shouldn't CF be able to
also. It seems more like an array of data that I need to store as a cookie. 

I am not a Cookie Master unless we are talking about Nestlé so could
someone give me an example of inserting multiple names and variables in a
cookie? 

The data that is being inserted into the cookie is coming from our DB and
its just simple login info for when they enter our Portal site. Since our
site has to continue using some of the ASP and .Net pages we need a way of
using the Cookies to maintain their Login Abilities and a few other details.


So my main problem is getting CF to write the Cookie the same way as ASP and
..Net did so they can all share the info without having to change all of or
asp pages. 

Well I hope all this makes sense. I have been looking everywhere on the net
that could help me figure this out... but have had no luck. Maybe it just
cant be done. 

AS for converting to a WDDX packet... I have no idea how to do that... maybe
this is the way. Could anyone give an example? Thank again for all the help.


Neal Bailey
Internet Marketing Manager

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
OK guys... I think I have my Cookie kind of figured out now... 

It seems ASP does not actually store the cookie as complex variables but
instead it's more of a comma delimited format using  as the delimiter. 

Anyway now that I figure out that problem I have another... 

I am storing the values in the cookie like this: 
-
cfset Cookie_Value =
NeedUpdate=0Recognition=SupportEntityID=09AgentName=Neal+Bailey
Region=Rank=80AgentNumber=%40%4009+
cfcookie name=Rsagent2 value=#Cookie_Value#
--


But when I look at the cookie value it looks like this:
--
NeedUpdate%3D0%26Recognition%3DSupport%26EntityID%3D09%26AgentName%3
DNeal%2BBailey%26Region%3D%26Rank%3D80%26AgentNumber%3D%2540%254009%2B
--

For some reason its converting the =,,+ and % characters to another format.
Any idea how I can fix this?

Man what a mess... 

Thanks again..  

Neal Bailey
Internet Marketing Manager

-Original Message-
From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 28, 2005 10:46 AM
To: CF-Talk
Subject: RE: CF Cookie  ASP Cookie?

Neal:

ASP supports something it calls a Cookie Dictionaries.  This is,
essentially an associative array (or structure) of values all referenced by
the same variable name.  So, just like with ColdFusion structures you can do
something like:

myStructure.myKey

in ASP, you can do something like:

Response.Cookies(myStructure)(myKey)

In order to support this, ASP creates a cookie named myStructure (or
whatever you specify as the name) and sets the cookie value to something
like:

key1=value1key2=value2

So, to duplicate your ASP code in ColdFusion, you'll need code like the
following:

CFSET Value = 
CFSET Value = Value  AgentNumber=#AgentNumber#
CFSET Value = Value  AgentName=#AgentFirst# #AgentLast#
CFSET Value = Value  Rank=#CurrentRank#
CFSET Value = Value  EntityID=#EntityID#
CFCOOKIE NAME=RSHold VALUE=#Value# PATH=/ EXPIRES=Never

Note that when you retrieve this Cookie via CF, you'll have to parse the
string and break it up into its original pieces.  You could use code like
the following:

CFSET RSHold = StructNew()
CFLOOP LIST=#COOKIE.RSHold# DELIMITERS= INDEX=Ele
CFSET Key = ListGetAt(Ele, 1, =)
CFSET Value = ListGetAt(Ele, 2, =)
CFSET RSHold[Key] = Value
/CFLOOP

And then access each piece via code like:

RSHold[AgentNumber]

Note, none of this code is tested so there might be some minor issues.  But
the logic should be pretty sound.

HTH

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 942-5378
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


 -Original Message-
 From: Bailey, Neal [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, September 27, 2005 5:43 PM
 To: CF-Talk
 Subject: CF Cookie  ASP Cookie?


 Hey Guys I have been searching everywhere on this and I can't
 seem to figure
 this out. I am only familiar with using CF Cookies in the
 standard way but I
 have this asp site that I am having to port over to CF and I need to write
 cookies in CF much the same way we did using ASP. But it seems
 that with ASP
 you can give the Cookie a general name to refer to it by. But I
 am having a
 hard time figuring this out in CF or if it's even possible.

 Here is an example of our ASP Cookie...

   Response.Cookies(RSHold)(AgentNumber) = RSAgent(AgentNumber)
   Response.Cookies(RSHold)(AgentName) =
 RTrim(RSAgent(AgentFirst))+ 
  + RTrim(RSAgent(AgentLast))
   Response.Cookies(RSHold)(Rank) = RSAgent(CurrentRank)
   Response.Cookies(RSHold)(EntityID) = RSAgent(EntityID)
   Response.Cookies(RSHold).Path=/

 I need to build this same Cookie using CF but cant figure it out. Am I
 missing something?

 This is what I have so far for CF but it's not the same...

 cfcookie name=AgentNumber value=#AgentNumber# expires=now path=/
 cfcookie name=AgentName value=#AgentFirst# #AgentLast# expires=now
 path=/
 cfcookie name=Rank value=#CurrentRank# expires=#EntityID#
 path=/

 Any help on this would be grateful thanks.

 Neal Bailey
 Internet Marketing Manager



 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


Recall: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
Bailey, Neal would like to recall the message, CF Cookie  ASP Cookie?.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
OK guys... I think I have my Cookie kind of figured out now... 

It seems ASP does not actually store the cookie as complex variables but
instead it's more of a comma delimited format using  as the delimiter. 

Anyway now that I figure out that problem I have another... 

I am storing the values in the cookie like this: 
-
cfset Cookie_Value =
NeedUpdate=0Recognition=SupportEntityID=09AgentName=Neal+Bailey
Region=Rank=80AgentNumber=%40%4009+
cfcookie name=Rsagent2 value=#Cookie_Value#
--


But when I look at the cookie value it looks like this:
--
NeedUpdate%3D0%26Recognition%3DSupport%26EntityID%3D09%26AgentName%3
DNeal%2BBailey%26Region%3D%26Rank%3D80%26AgentNumber%3D%2540%254009%2B
--

For some reason its converting the =,,+ and % characters to another format.
Any idea how I can fix this?

Man what a mess... 

Thanks again..  

Neal Bailey
Internet Marketing Manager

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
Yeah I recalled the file because it said it was too long... was not sure
what to do. 

Anyway... yes I know it gets decoded correctly if I dump it using CFDump... 

But I need ASP and .Net to be able to read this same cookie. The problem is
that ASP when inserting the Cookie does not encode the URl string like CF
does. So when ASP tries to read the Cookie it gets all confused because it's
looking for the  as the delimiter but instead gets hung up on all the
encoded values. 

Hope this makes sense... I was hoping I could find a UDF or some how have it
not encode the string when save to the cookie. 

Neal Bailey
Internet Marketing Manager

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 28, 2005 12:34 PM
To: CF-Talk
Subject: Re: CF Cookie  ASP Cookie?

Oh yeah...and when you say look at the cookie value I assume you have 
actually opened the cookie file??  Try cfdump var=#COOKIE.Rsagent2# and 
see if all the encoding goes away ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
Yeah I wish that was an option... but it would require changing too many
pages. 

Neal Bailey
Internet Marketing Manager

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 28, 2005 1:04 PM
To: CF-Talk
Subject: Re: CF Cookie  ASP Cookie?

So look on the ASP side for a function to decode the cookie value  ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


CF Cookie ASP Cookie?

2005-09-27 Thread Bailey, Neal
Hey Guys I have been searching everywhere on this and I can't seem to figure
this out. I am only familiar with using CF Cookies in the standard way but I
have this asp site that I am having to port over to CF and I need to write
cookies in CF much the same way we did using ASP. But it seems that with ASP
you can give the Cookie a general name to refer to it by. But I am having a
hard time figuring this out in CF or if it's even possible. 
 
Here is an example of our ASP Cookie... 
 
  Response.Cookies(RSHold)(AgentNumber) = RSAgent(AgentNumber) 
  Response.Cookies(RSHold)(AgentName) = RTrim(RSAgent(AgentFirst))+ 
 + RTrim(RSAgent(AgentLast)) 
  Response.Cookies(RSHold)(Rank) = RSAgent(CurrentRank) 
  Response.Cookies(RSHold)(EntityID) = RSAgent(EntityID) 
  Response.Cookies(RSHold).Path=/ 
 
I need to build this same Cookie using CF but cant figure it out. Am I
missing something?
 
This is what I have so far for CF but it's not the same... 
 
cfcookie name=AgentNumber value=#AgentNumber# expires=now path=/
cfcookie name=AgentName value=#AgentFirst# #AgentLast# expires=now
path=/
cfcookie name=Rank value=#CurrentRank# expires=#EntityID#  path=/
 
Any help on this would be grateful thanks. 
 
Neal Bailey
Internet Marketing Manager
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


Search Issues...

2005-09-26 Thread Bailey, Neal
Hey Guys... 
 
It's been a long time since I have posted here... 
 
I was wondering if anyone could help steer me in the right direction. I am
currently redesigning our internal Intranet which is basically ASP and .Net.
I am converting it to CF and I need to add a Search function. I no this is
easy to do using Verity or some other search engine but what I am having
problem with is that our Intranet has different levels of security based on
what we call a user rank. So if you are rank 10 then you only see rank 10
pages if you are a rank 80 then you can see just about everything. I am
trying to figure out a way to search our site but I want the search results
to be restricted to the users rank. So if they are a rank 10 then they only
see pages and info based on their rank. 
 
Any ideas.. 
 
Hope all this made sense... 
 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: Search Issues...

2005-09-26 Thread Bailey, Neal
Hey Steve ok I think I understand and that's kind of what I was thinking,
but I'm just not familiar enough with Verity yet. Are there any good
resources for setting this up using spiders to collect the data? 

Also another issue is that half the site will still continue to use .Net
apps. I'm not sure if there is way to run .Net in ColdFusion, so for not we
just simply open them in another window. This Site is somewhat of a mess of
different languages and its time to clean it up. 

Neal Bailey
Internet Marketing Manager
UGA-Association Field Services


-Original Message-
From: Steve Bryant [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 26, 2005 3:29 PM
To: CF-Talk
Subject: Re: Search Issues... 

Neal,

I would recommend taking advantage of on of the Custom fields
(Custom1,Custom2 etc) in Verity and including the required rank in that
field. Then after you run the search, you can filter out results based on
comparing the users user rank to that field.

blatant_plug
You could use easily extend my Searcher component (which is free but
requires my free DataMgr component to work) to do that.

The Searcher component encapsulates common search functionality and keeps
track of what users search for and what they choose from their searches.

That is, if you have a predelection for using CFCs.

http://www.bryantwebconsulting.com/cfcs/
blatant_plug


Hope that helps!

Steve

Steve Bryant.
Bryant Web Consulting LLC
http://www.BryantWebConsulting.com/
http://steve.coldfusionjournal.com/ 
Hey Guys... 
 
It's been a long time since I have posted here... 
 
I was wondering if anyone could help steer me in the right direction. I am
currently redesigning our internal Intranet which is basically ASP and
..Net.
I am converting it to CF and I need to add a Search function. I no this is
easy to do using Verity or some other search engine but what I am having
problem with is that our Intranet has different levels of security based on
what we call a user rank. So if you are rank 10 then you only see rank 10
pages if you are a rank 80 then you can see just about everything. I am
trying to figure out a way to search our site but I want the search results
to be restricted to the users rank. So if they are a rank 10 then they only
see pages and info based on their rank. 
 
Any ideas.. 
 
Hope all this made sense... 
 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services



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

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

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


efflare - CFX_gfont

2005-04-04 Thread Bailey, Neal
Hey guys,
 
Anyone out there using the CFX_gfont extension by efflare.com with
ColdFusion 7 on Window Server 2003? I been using this for the past year and
it works great, but since I have upgraded to CF7 I cant seem to get it to
create the font images anymore. Would any one have any ideas on this? I
tried sending an email to efflare.com but have not heard any thing back. 
 
Thanks... 
 
Neal Bailey
 


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

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

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


CGI.URL in IIS6 Problem

2005-03-21 Thread Bailey, Neal
Hey guys... I just migrated some sites over to a Win 2003 server running
IIS6 and Coldfusion 7. I am running into a problem with a simple CGI
variable CGI.URL that's not working like it does on IIS5. It used to show
me what's in the URL of the Browser and now it's displaying the file name.
For example I have been using this CGI variable in a 404 redirect for some
time. I used to be able to call a page like this. 
 
http://www.mysite.com/bobjones http://www.mysite.com/bobjones 
 
Now there is not a folder or page called bobjones and so this would send
me to a custom 404 page, once redirected to the custom 404 page I would
strip the bobjones from the url and do a lookup in a database to find
bobjones and then redirect to a special page for him. 
 
Now when I do this same technique in IIS6 instead of getting bobjones as
my CGI.URL variable I instead get user_redirect.cfm as my variable which
is the filename of the actual 404 redirect page. 
 
This is what I use to get the variable which work in IIS5.
 
cfset user = ListFirst(CGI.URL,/)
 
Anyone have any ideas on this or maybe a different way of ding this. 
 
Thanks,
 
Neal Bailey
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


UDP COM Object for Game Server?

2005-01-20 Thread Bailey, Neal
Hey guys... 
 
I hope this makes sense... I am building a CF app that will pull Server Info
from a Game server via sending info to the UDP port. I am doing this for the
new Half-Life 2 Source engine. I have a few dedicated servers that I run for
people and I want to post the info on the website. I have seen many apps
that do this in PHP or ASP or whatever but cant seems to find much with CF
so therefore I am doing it my self with the help of an old COM object found
on the net. 
 
I have the COM object working and I'm able to pull some info from the
servers like player info and a few other things. But I can't seem to get all
the variables. And I think it's because I don't know what's in the string
that is returned. So my question is this... Can I dump everything that an
obj string returns? I know I can CFDUMP var=#obj# but that just give me
the structure of the object and its properties. I need to display the raw
string so I can see what I'm missing. 
 
Any ideas on how I can do this... I'm new to working with COM Objects so I'm
not sure what to type. 
 
Thanks.. 
 
Neal Bailey
 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

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


RE: UDP COM Object for Game Server?

2005-01-20 Thread Bailey, Neal
Ok I'm resending this a sit seems it did not make it through... 

Hi Martin,

Ok well I have no clue about WDDX... I tried to mess with it a while back
using a shopping cart by Quildesign.com but just could not figure it out.
I'm more of the Design Guy... I only know CF from forced exposure... (Gun to
head) though I do love it now and can't wait till Blackstone is avaliable.
So anyway my knowledge is limited on certain areas of CF. Any help would be
great... 

I have attached a zip file hoping it will make it through the list. It was
design by another guy at http://www.intrafoundation.com/coldfusion.html but
his site only works half the time for some reason, and it seems he as
stopped working on the project.

Here is the file if it does not make it:
http://www.xtremeoz.com/hlsm/UDPClient.zip

And anyone else that wants to help feel free...

One note: the Key Values to send to the UDP port are 

!--- Use the Tree letters to retrieve the info for HL2 Source ---

T = (serverinfo)
  U = (players)
  V = (rules)

 ---

Here is another source for doing this... 
http://dev.kquery.com/

Thanks
Neal Bailey

-Original Message-
From: Martin Parry [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 20, 2005 12:14 PM
To: CF-Talk
Subject: RE: UDP COM Object for Game Server?

If I'm pulling stuff back from COM objects (in particular one that
interrogates IIS for all it's sites) I use the WDDX API and serialize my
own WDDX object in VB by populating it with all the known values, arrays
etc.

You can then dump that in CF after doing a CFDDX to convert it back..
I'd be interested in helping you as I'm a keen HL and C/S player.

Martin Parry
Macromedia Certified Developer
http://www.BeetrootStreet.co.uk

-Original Message-
From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: 20 January 2005 17:28
To: CF-Talk
Subject: UDP COM Object for Game Server?

Hey guys... 
 
I hope this makes sense... I am building a CF app that will pull Server
Info
from a Game server via sending info to the UDP port. I am doing this for
the
new Half-Life 2 Source engine. I have a few dedicated servers that I run
for
people and I want to post the info on the website. I have seen many apps
that do this in PHP or ASP or whatever but cant seems to find much with
CF
so therefore I am doing it my self with the help of an old COM object
found
on the net. 
 
I have the COM object working and I'm able to pull some info from the
servers like player info and a few other things. But I can't seem to get
all
the variables. And I think it's because I don't know what's in the
string
that is returned. So my question is this... Can I dump everything that
an
obj string returns? I know I can CFDUMP var=#obj# but that just give
me
the structure of the object and its properties. I need to display the
raw
string so I can see what I'm missing. 
 
Any ideas on how I can do this... I'm new to working with COM Objects so
I'm
not sure what to type. 
 
Thanks.. 
 
Neal Bailey
 






~|
Logware: a new and convenient web-based time tracking application. Start 
tracking and documenting hours spent on a project or with a client with Logware 
today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: UDP COM Object for Game Server?

2005-01-20 Thread Bailey, Neal
Ok I'm resending this as it seems the body text was too long... 

Hi Martin,

Ok well I have no clue about WDDX... I tried to mess with it a while back
using a shopping cart by Quildesign.com but just could not figure it out.
I'm more of the Design Guy... I only know CF from forced exposure... (Gun to
head) though I do love it now and can't wait till Blackstone is avaliable.
So anyway my knowledge is limited on certain areas of CF. Any help would be
great... 

I have attached a zip file hoping it will make it through the list. It was
design by another guy at http://www.intrafoundation.com/coldfusion.html but
his site only works half the time for some reason, and it seems he as
stopped working on the project.

Here is the file if it does not make it:
http://www.xtremeoz.com/hlsm/UDPClient.zip

And anyone else that wants to help feel free...

One note: the Key Values to send to the UDP port are 

!--- Use the Tree letters to retrieve the info for HL2 Source ---

T = (serverinfo)
  U = (players)
  V = (rules)

 ---

Here is another source for doing this... 
http://dev.kquery.com/

Thanks
Neal Bailey

-Original Message-
From: Martin Parry [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 20, 2005 12:14 PM
To: CF-Talk
Subject: RE: UDP COM Object for Game Server?

If I'm pulling stuff back from COM objects (in particular one that
interrogates IIS for all it's sites) I use the WDDX API and serialize my
own WDDX object in VB by populating it with all the known values, arrays
etc.

You can then dump that in CF after doing a CFDDX to convert it back..
I'd be interested in helping you as I'm a keen HL and C/S player.

Martin Parry
Macromedia Certified Developer
http://www.BeetrootStreet.co.uk

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

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

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


All Loopy over Loops - Need Help

2004-11-17 Thread Bailey, Neal
Hey guys... 
 
Man I am stuck in a loop... 
 
I have this query that I need to loop through and then somehow pull data out
of the query and append it to another comma delimited list. Any ideas on how
I would go about this. Its got my all loopy. 
 
Here is kind of an example of what I am trying to do:


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

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


cookie issues...

2004-11-12 Thread Bailey, Neal
Hey guys... 
 
I am having Cookie issues... I have a cookie that's written using ASP to
store some info in kind of an array. I am trying to read that same cookie
using Coldfusion but I can't seem to get it to output the way I need it. I
can read the cookie but it's all strung together with = and s. I need a
way to parse the cookie and save it as a session variable.  
 
When I do a regular cookie request my string looks like this:
NeedUpdate=0Recognition=SupportEntityID=01AgentName=Neal
BaileyRank=100AgentNumber=
 
Any suggestions how I can read the cookie and restructure it in a way that I
can use? Thanks. 
 
 
Here is the code that makes the cookie in ASP. 
 
' Response.Clear
  agUser = RSAgent(AgentNumber)
  Response.Cookies(RSAgent)(AgentNumber) = RSAgent(AgentNumber)
  Response.Cookies(RSAgent)(AgentName) =
RTrim(RSAgent(AgentFirst))+
 +RTrim(RSAgent(AgentLast))
  Response.Cookies(RSAgent)(Rank) = RSAgent(CurrentRank)
  Response.Cookies(RSAgent)(Recognition) =
RTrim(RSAgent(Recognition))
  Response.Cookies(RSAgent)(EntityID) = RSAgent(EntityID)
  Response.Cookies(RSAgent)(NeedUpdate) = RSAgent(NeedUpdate)
  Response.Cookies(RSAgent).Path=/
 
 
 
Thanks... 
Neal Bailey
 


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

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


Parsing RSS/RDF Help...

2004-11-08 Thread Bailey, Neal
Hey Guys... 
 
How the heck do you parse RSS/RDF feeds with the content:encoded tag?
-
- content:encoded
- ![CDATA[ 
 
My Formatted Text goes here.

  ]] 
  /content:encoded
--
 
Here is my code... I am trying to parse an xml feed from the Steam network,
with all the new Half-Life2 News for my Game site. I can parse any other
type of RSS feed or XML feed but this one is tripping me up. 
-Start Code---
cfset feedUrl = http://steampowered.com/rss.xml;
cfhttp url=#feedUrl# method=get /
cfset rss = XMLParse(cfhttp.filecontent)
 
!--- get an array of items ---
cfset items = XMLSearch(rss, //:item) 
!---cfdump var=#items#--- 
cfset rssItems = QueryNew(title,content,link)
 
!--- loop through the array of items --- 
cfloop from=1 to=#ArrayLen(items)# index=i
  cfset row = QueryAddRow(rssItems)
  cfset title = XMLSearch(rss, //:item[#i#]/:title)
  cfif ArrayLen(title)
cfset title = title[1].xmlText
  cfelse
cfset title=
  /cfif
  cfset content = XMLSearch(items[i], //:item[#i#]/:content)
  cfif ArrayLen(content)
cfset content = content[1].xmlText
  cfelse
cfset content=
  /cfif
  cfset link = XMLSearch(items[i], //:item[#i#]/:link)
  cfif ArrayLen(link)
cfset link = link[1].xmlText
  cfelse
cfset link=
  /cfif
  !--- add to query ---
  cfset QuerySetCell(rssItems, title, title, row)
  cfset QuerySetCell(rssItems, content, content, row)
  cfset QuerySetCell(rssItems, link, link, row) 
/cfloop
 
ul
cfoutput query=rssItems
  lia href=#rssItems.link##rssItems.title#/a -
#rssItems.content#/li 
/cfoutput 
/ul
--END---
 
Thanks for any help you can spare...
- Neal Bailey
 


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

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


RE: Parsing RSS/RDF Help...

2004-11-08 Thread Bailey, Neal
RRGGG!

...Dog Crap!... 

I new it had to be something so simple. 

Thank you very much. Now my brain can rest. 

Neal Bailey


-Original Message-
From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 08, 2004 2:24 PM
To: CF-Talk
Subject: Re: Parsing RSS/RDF Help... 

   cfset content = XMLSearch(items[i], //:item[#i#]/:content)

Try:

cfset content = XMLSearch(items[i], //:item[#i#]/content:encoded)

Hope it will help


Massimo Foti
DW tools: http://www.massimocorner.com
CF tools:  http://www.olimpo.ch/tmt/


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

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


Still hunting for Newsletter system...

2004-11-02 Thread Bailey, Neal
Hello all...
 
Well I am still on the Hunt for a good eNewsletter Application. I have found
several that will do the job but the one big problem I keep running into is
the pricing and reporting. We have over 1.7 million emails and growing and
we need to port from our current newsletter system to a better one. It seems
most good systems want to charge you by how many email records you have
stored in the database. So the cost gets pretty high and so far it seems for
a million records it would cost between $8K to $14K.
 
The big things I need to have the system do are:
 
1) Handle Multipart message, Html/text or mixed mode. 
2) Large email storage on MSSQL
3) I don't care what language it's in
4) The most important thing is reporting. We need to know click through
rate, what links were clicked the most, how many bounces etc. 
 
I am looking at the 2simplifi, E-mail Contact Pro system and it seems ok. It
does not have a lot of reporting but it may work. I was wondering if anyone
here has used this before or could recommend something better.
 
Even though we have over a million records we only send about 10,000 to
20,000 emails at a time. So if the email system has a limit on how many
messages it will send at once rather then how many are stored this would
work for us. 
 
Thanks... 
 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:  mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 


~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=38

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


Newsletter system...

2004-10-26 Thread Bailey, Neal
Hello everyone,
 
I am looking for a good newsletter system with full stats and reporting.
Something with double opt-in features and runs on MSSQL with the ability to
import and export our current MSSQL database. 
 
We had been using http://www.enewsletterpro.com/
http://www.enewsletterpro.com/  but they want too much to upgrade to their
new system. We have well over a 1,000,000 entry's and need something that
can handle this many records. Though keep in mind we never send a million at
one time only about 20,000. 
 
Thanks.. 
 
Neal Bailey
 


~|
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.houseoffusion.com/banners/view.cfm?bannerid=11

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


RE: Newsletter system...

2004-10-26 Thread Bailey, Neal
Thanks Dave,

But I have already played around with that one. It works ok as an email
system but I need more of the reporting and stats like open rate, click
rate, conversions and things like this. 

Neal Bailey

-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 26, 2004 4:35 PM
To: CF-Talk
Subject: Re: Newsletter system...

www.usps.com ;) hahaha

actually i think it is devnet 7 that has a system called intouch in it, that
is very good!


-- Original Message --
From: Bailey, Neal [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Date:  Tue, 26 Oct 2004 16:24:21 -0500

Hello everyone,
 
I am looking for a good newsletter system with full stats and reporting.
Something with double opt-in features and runs on MSSQL with the ability to
import and export our current MSSQL database. 
 
We had been using http://www.enewsletterpro.com/
http://www.enewsletterpro.com/  but they want too much to upgrade to
their
new system. We have well over a 1,000,000 entry's and need something that
can handle this many records. Though keep in mind we never send a million
at
one time only about 20,000. 
 
Thanks.. 
 
Neal Bailey
 






~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=38

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


Great Job opportunity... DFW Area

2004-08-13 Thread Bailey, Neal
Hello fellow CFers... 

 
The company I work for is looking to fill a CF  .NET fulltime position with
benefits and all the good stuff. We need someone who is local to the Dallas
/ Fort Worth area.

 
The requirements are:

 
Advanced Skills in ColdFusion MX 6.1. 
Advanced Skills in .NET
Microsoft SQL Query skills

 
Skills in XML, CSS and _javascript_ are a plus but not required. 

 
Good Skills with Dreamweaver 2004 or Studio. 

 
Need a Creative thinker, able to create and design applications from
beginning to end. 

 
The company is called UGA Association Field Services and is a Division of
The MEGA Life and Health Insurance Company who falls under UICI... Stock
symbol is UIC if you're interested. 

 
UGA is basically responsible for a sales force of over 5000 agents selling
MEGA Life and Health insurance to the Self Employed and Small Business
owners. 

 
It's a great company with a relaxed atmosphere. 

 
If you are interested please send resumes and if possible examples of
websites with a description of what part of the site you worked on. 

 
I am not the one hiring, but will be interviewing you. I know we have some
great CF guys on this list and figured I would start here as feel like I
know a lot of you already. 

 
And really this place is a great place to work... it's like no other company
I have every worked for. 

 
Thanks guys...
Thanks guys if you have any questions let me know, and past this around if
you know of anyone outside this list that may be interested. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

 
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 are not the named addressee you should not disseminate, distribute or
copy this e-mail.Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your
system.If you are not the intended recipient you are hereby notified that
disclosing, copying, distributing or taking any action in reliance on the
contents of this information is strictly prohibited.Thank you.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Convert .swf to .exe w/CF?

2004-08-11 Thread Bailey, Neal
Hey guys... 

 
I was wondering if any one could give me some advice...

 
On our internal intranet we have about 10 gigs of PowerPoint presentations
that we want to convert to flash. So far we are either going to use the new
FlashPaper 2 that was release recently or a different program called
PowerConverter.Either way we will have these presentations available on
our intranet to view in a flash format. The problem I am trying to solve is
that we also want to allow the user to download the presentation as an
executable file so they can view when not logged into our internet. So I am
wondering if there is a way to use ColdFusion to dynamically and
automatically convert the .swf file to a Flash.exe file when the user
chooses to download the presentation. I was hoping not to have two copies of
the same file, one as .swf and the other as .exe. I want to keep this as
simple as possible because these files are updated monthly, and I think it
would be a nightmare to have the people who are updating the files to have
to save it in two formats and keep track of them. So the ideal solution is
to have one format and have ColdFusion convert it to the other format on the
fly when requested. 

 
So... anyone have any ideas on this. Can this be done?

Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Convert .swf to .exe w/CF?

2004-08-11 Thread Bailey, Neal
Yeah that would be nice... but a lot of these people will not have Flash
player installed, only the browser plug-in, and unless the swf format is
associated with IE it will not open automatically. But truly the biggest
problem is this is for our average users, when you say something like right
click and save as, you have already lost them and then they are calling our
support line. So I really need this to be as simple as possible for them. 

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

From: Damien McKenna [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 11, 2004 8:32 AM
To: CF-Talk
Subject: Re: Convert .swf to .exe w/CF?

 
On Aug 11, 2004, at 10:25 AM, Bailey, Neal wrote:
 So I am wondering if there is a way to use ColdFusion to dynamically 
 and
 automatically convert the .swf file to a Flash.exe file when the user
 chooses to download the presentation.

The easier way, just have a link to the actual SWF with instructions to 
right-click and hit Save As rather than left-clicking.Then they just 
have to double-click on the file to open it up in their default SWF 
viewer (usually a web browser or the Flash Player).
-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
Nothing endures but change. - Heraclitus
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Convert .swf to .exe w/CF?

2004-08-11 Thread Bailey, Neal
Thanks Barney,

 
I will look into the flash projector command line util... That sounds like
what I need. 

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

From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 11, 2004 8:33 AM
To: CF-Talk
Subject: Re: Convert .swf to .exe w/CF?

 
Does Flash (the dev tool) come with a standalone command-line
projector creator tool?If it does, you can drop that on the server,
and then use CFEXECUTE to convert from SWF to EXE on the fly, using a
temp file, and then serve that temp file with CFCONTENT.

However, I'm not 100% sure that's necessary.If you install the flash
plugin, when you double-click a SWF it'll fire up just dandy.The
advantage of using a standalone projector is that you don't have to
have flash installed (it's included in the EXE), but if you're viewers
are going to be using flash for their online viewing, and the offline
viewing will only be supplemental, it shouldn't matter.

cheers,
barneyb

On Wed, 11 Aug 2004 09:25:13 -0500, Bailey, Neal [EMAIL PROTECTED] wrote:
 Hey guys...
 
 I was wondering if any one could give me some advice...
 
 On our internal intranet we have about 10 gigs of PowerPoint presentations
 that we want to convert to flash. So far we are either going to use the
new
 FlashPaper 2 that was release recently or a different program called
 PowerConverter.Either way we will have these presentations available on
 our intranet to view in a flash format. The problem I am trying to solve
is
 that we also want to allow the user to download the presentation as an
 executable file so they can view when not logged into our internet. So I
am
 wondering if there is a way to use ColdFusion to dynamically and
 automatically convert the .swf file to a Flash.exe file when the user
 chooses to download the presentation. I was hoping not to have two copies
of
 the same file, one as .swf and the other as .exe. I want to keep this as
 simple as possible because these files are updated monthly, and I think it
 would be a nightmare to have the people who are updating the files to have
 to save it in two formats and keep track of them. So the ideal solution is
 to have one format and have ColdFusion convert it to the other format on
the
 fly when requested.
 
 So... anyone have any ideas on this. Can this be done?
 
 Neal Bailey
 Internet Marketing Manager

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Stock Charts...

2004-07-27 Thread Bailey, Neal
Does anyone know where I could find a nice stock ticker or quote/chart feed.
We currently have one but its cost is way too high and its just plain ugly.
I would like to find one that I could customize the colors and fonts. Any
ideas?

 
Thanks...

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Stock Charts...

2004-07-27 Thread Bailey, Neal
OK that's sounds fine... does anyone know of a good service to uses. I have
gotten several to work based on what Joe has helped me with. But none are
for commercial uses and this service would get hit a lot. I tried looking at
what Yahoo and MSN use but I think that's way over what we need. Real a
simple stock chart for our own symbol is all we need. 

 
Thanks for the help...

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

From: Dick Applebaum [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 27, 2004 1:42 PM
To: CF-Talk
Subject: Re: Stock Charts...

 
Neal

AFAIK, you have to get real-time stock quotes from a service or a 
brokerage that subscribes to a service.

DICK

On Jul 27, 2004, at 11:00 AM, Neal Bailey wrote:

 Thanks Joe...

I looked over the site but could not find anything that was what I'm 
 after. Maybe I'm missing it. Basically all I want to do is show our 
 current stock prices for our company on the intranet website. Like I 
 said we have one but they charge I think $250 a month for a simple 
 feed. And really it's not even a feed it's just a link to a graphic 
 that is updated every 15 minutes. The problem is since it's a graphic 
 it can't be altered or changes to fit within our design.

So I am looking for something that would provide an xml feed or 
 something I could use with CF.

---Here is something that is unrelated. I am not receiving my 
 messages that I send to the list. I seem to get everyone else's but 
 they are several hours late. And when I send a response I never see 
 it, I have to go to the websites and look in the daily topics and then 
 reply from there. Does anyone know what's up with my account or 
 system?

Thanks,
- Neal

Hi Neal,

If you go to xMethods.com, you'll see a variety of web services for
looking up stock quotes.Some are free, some aren't, but I guess it
all depends on what you need them for.

By using a web service instead of an html feed, you just get the
data back, then you can do whatever you'd like as far as colors and
fonts.

Cheers,

Joe

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Service Patch2 and ColdFusion?

2004-07-01 Thread Bailey, Neal
Hey guys... 

 
Has anyone downloaded and installed the New Service patch 2 for Win XP? 

 
Can be found here:
http://v5.windowsupdate.microsoft.com/en/default.asp
http://v5.windowsupdate.microsoft.com/en/default.asp 

 
I have installed it on a test system and have found several issues with its
new security features it seems to have strict Active Content filtering now.
I was wondering if there are any issues with ColdFusion or anything else
that you guys may have run into.I'm trying to make sure our Intranet site
stay working when this thing is released. 

 
Does anyone know of a site or list that address all the various issues? 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




filtering keywords in table...

2004-06-30 Thread Bailey, Neal
Hey guys... I am trying filter a specific table I have that is collecting
every hit to my website, its storing the jsessionID , referring url, and
any keywords if there were any on the referring string. 

 
I want to filter all the keywords/phrases used for this month and give me a
list of number one keywords/phrases used to find my site. 

 
The table is huge and I am having an issue trying to group all the like
keywords/phrases and have it give me an accurate count. There are a lot of
blank keyword fields too. So I need to filter the blank fields out and group
all like keywords and phrases. 

 
Can someone help me figure this out? It's driving me nuts... I have web
trends reporting but have noticed how inaccurate it is with referring urls
from affiliate search engines. So I figured I would store every hit from my
site in a table. 

 
I think my main issue is with the SQL statement, (I really suck at SQL) I
have been goggling for the past few days trying to get this working.I
thought it was easy but I guess not... Here is how my table is set up. 

 
Table name: SiteStats
Fields are:

 
SequenceID
SessionID
Referer
Keywords. 

 
There are a few other fields but these are the ones I need to use. 

 
Thanks for any help on this... 

Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: E-mail Marketing/Tracking Software

2004-06-30 Thread Bailey, Neal
Hey there,

 
I have been looking for different CF solutions for this also... seems like
there are not too many out there at the moment. 

 
Currently I use a system called eNewsletter Pro... its available in ASP or
.NET but it works well on all my CF sites. The .Net version is really great.
It's also a little pricy but not too bad. I have used the asp version to
send about 50,000 emails an hour both html/plain/aol. I just upgraded to the
.NET version and it seems to be a lot faster along with a ton of
improvements. 

 
Here is the website... 
http://www.enewsletterpro.com http://www.enewsletterpro.com/ 

 
HTH

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

From: Butch Zaccheo [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 30, 2004 11:21 AM
To: CF-Talk
Subject: Re: E-mail Marketing/Tracking Software

 
Thanx for the help everyone... IÂąve received some interesting leads... IÂąll
post to this thread when I finally pick a solution

BZaccheo

On 6/30/04 6:26 AM, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:

 We are about to code something like this...its usually done with a JS /
 Image style call.may not work on new versions of Outlook though as
 people have suggested
 
 
 
 _
 
 From: Burns, John D [mailto:[EMAIL PROTECTED]
 Sent: 30 June 2004 14:19
 To: CF-Talk
 Subject: RE: E-mail Marketing/Tracking Software
 
 Right, but the original request included the need for has the email been
 opened which would suggest a push.That is what my response was to.
 Obviously there are other things you can do with passing a unique id to a
 page and checking which email address that unique id is associated with.
 
 John 
 
 -Original Message-
 From: Jordan Michaels [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, June 29, 2004 6:18 PM
 To: CF-Talk
 Subject: Re: E-mail Marketing/Tracking Software
 
 There are interesting things in the marketing world - although I
personally
 know very little about it (not being a marketing major or anything). First
 off, there is such a thing called Push marketing and another thing
called
 Pull Marketing. The kind of marketing where you see a message that say
 something like Click here for more information on a product that could
help
 you do such and such. - that would be pull marketing. If you see a
 message that has all or most of the sales pitch right in front of you (eg:
 your HTML email example), that would be known as push marketing.
 
 Clearly, push marketing is typically more effective because it requires
less
 action on the part of the customer - so that's what spammers have
typically
 gone for. There are email systems out there that use pull marketing
methods
 - and work well (under their given conditions) for outlook users in the
 situation you describe. They're out there. You just have to look. =)
 
 --
 Warm regards,
 Jordan Michaels
 Vivio Technologies
 http://www.viviotech.net/
 [EMAIL PROTECTED]
 
 Burns, John D wrote:
 
  Won't be very successfuly if it is written.Outlook now won't load
  images by default unless the user specifically asks for it and that
  would be the only way to track how many have been opened.This is a
  great thing to be able to do, but, thanks to SPAMmers, we have lost
  some of that ability.Good luck finding what you need, but be
  forewarned that it's not going to be able to give you everything you
  want completely.
 
 
  John
 
  
 
  From: Butch Zaccheo [mailto:[EMAIL PROTECTED]
  Sent: Tue 6/29/2004 5:55 PM
  To: CF-Talk
  Subject: E-mail Marketing/Tracking Software
 
  IÂąm looking for pre-written application to start a permission based
e-mail
  campaign. Is there anything that already exists written in coldfusion?
I
  need to be able to track email after itÂąs been sent (has e-mail been
  opened,
  how many times viewed, etc.).
 
  Any suggestions would be much appreciated
 
  BZaccheo
 
 
 _
 

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: E-mail Marketing/Tracking Software

2004-06-30 Thread Bailey, Neal
I have been looking for different CF solutions for this also... seems like
there are not too many out there at the moment. 

 
Currently I use a system called eNewsletter Pro... its available in ASP or
.NET but it works well on all my CF sites. The .Net version is really great.
It's also a little pricy but not too bad. I have used the asp version to
send about 50,000 emails an hour both html/plain/aol. I just upgraded to the
.NET version and it seems to be a lot faster along with a ton of
improvements. 

 
Here is the website... 
http://www.enewsletterpro.com http://www.enewsletterpro.com/ 

 
HTH

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

From: Butch Zaccheo [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 30, 2004 11:21 AM
To: CF-Talk
Subject: Re: E-mail Marketing/Tracking Software

 
Thanx for the help everyone... IÂąve received some interesting leads... IÂąll
post to this thread when I finally pick a solution

BZaccheo
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: GMAIL Invite - First request gets it

2004-06-30 Thread Bailey, Neal
Hey guys... I also have a bunch of Gmail accounts to give out... send me an
email off list and I will hook ya up. 

 
Though for some reason I can't get Gmail to work right now it just hangs
forever. But when it comes online I will send out the requests.

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

From: Burns, John D [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 30, 2004 12:13 PM
To: CF-Talk
Subject: RE: GMAIL Invite - First request gets it

 
Anyone wanting to just give one up can give one to me.Just email me
off list if I can have one.Thanks.

John 

-Original Message-
From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 30, 2004 2:11 PM
To: CF-Talk
Subject: Re: GMAIL Invite - First request gets it

I have one invitiation available as well... first person to email me at
[EMAIL PROTECTED] gets it!

Hatton
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: GMAIL Invite - First request gets it

2004-06-30 Thread Bailey, Neal
OK folks... I'm all out of invites... I should have more tomorrow or the
next day... I seem to get 3 to 9 invites every other day... so I will keep
you in my list for those that did not get one from me yet. 

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

From: Stacy Young [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 30, 2004 12:34 PM
To: CF-Talk
Subject: RE: GMAIL Invite - First request gets it

 
Mine was hanging too until I allowed pop-ups...weird considering there
weren't any...

Stace
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: filtering keywords in table... [Solved]

2004-06-30 Thread Bailey, Neal
Never mind... I finally got this $hittt figured out... I had to convert my
ntext fields to allow grouping.Damn it's always something simple... 

 
Query looks like this... 
--
select 
ltrim(rtrim(convert(nvarchar(4000), keywords))) KeyWords, 
count(*) records
from sitestats
where ltrim(rtrim(convert(nvarchar(4000), keywords))) ''
group by ltrim(rtrim(convert(nvarchar(4000), keywords)))
order by records desc
--

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

From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 30, 2004 11:29 AM
To: CF-Talk
Subject: filtering keywords in table... 

 
Hey guys... I am trying filter a specific table I have that is collecting
every hit to my website, its storing the jsessionID , referring url, and
any keywords if there were any on the referring string. 

I want to filter all the keywords/phrases used for this month and give me a
list of number one keywords/phrases used to find my site. 

The table is huge and I am having an issue trying to group all the like
keywords/phrases and have it give me an accurate count. There are a lot of
blank keyword fields too. So I need to filter the blank fields out and group
all like keywords and phrases. 

Can someone help me figure this out? It's driving me nuts... I have web
trends reporting but have noticed how inaccurate it is with referring urls
from affiliate search engines. So I figured I would store every hit from my
site in a table. 

I think my main issue is with the SQL statement, (I really suck at SQL) I
have been goggling for the past few days trying to get this working.I
thought it was easy but I guess not... Here is how my table is set up. 

Table name: SiteStats
Fields are:

SequenceID
SessionID
Referer
Keywords. 

There are a few other fields but these are the ones I need to use. 

Thanks for any help on this... 

Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




rotate images..

2004-06-23 Thread Bailey, Neal
Hey Guys...

 
What's the easiest way to rotate a set of images on a site? I have a
testimonial section that has an image with a few words and I want it to
rotate through the images either by page load or by session... 

 
Is there an udf out there for this or a little script? I Google but could
not find anything that I could use. 

 
Thanks... 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: rotate images..

2004-06-23 Thread Bailey, Neal
Ahhh funny guys, funny guys... 

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

From: Joe Rinehart [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 23, 2004 3:31 PM
To: CF-Talk
Subject: Re: rotate images..

 
You could also tilt the monitor onto its side - this would be
persistent across sessions and sites!

- Original Message -
From: Adrocknaphobia [EMAIL PROTECTED]
Date: Wed, 23 Jun 2004 16:46:50 -0400
Subject: Re: rotate images..
To: CF-Talk [EMAIL PROTECTED]

Tilting you head would be the easiet way to rotate the images. That it
would.

-Adam

- Original Message -

From: Bailey, Neal [EMAIL PROTECTED]

Date: Wed, 23 Jun 2004 15:18:01 -0500

Subject: rotate images.. 

To: CF-Talk [EMAIL PROTECTED]

Hey Guys...

What's the easiest way to rotate a set of images on a site? I have a

testimonial section that has an image with a few words and I want it to

rotate through the images either by page load or by session... 

Is there an udf out there for this or a little script? I Google but could

not find anything that I could use. 

Thanks... 

Neal Bailey

Internet Marketing Manager

E-mail:mailto:[EMAIL PROTECTED]

[EMAIL PROTECTED]
__
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




cookie issues...

2004-06-18 Thread Bailey, Neal
Hey guys,

 
I am having Cookie issues... I don't use them very much so I may be a little
lost here. 

 
I have a cookie called rsAgent that is created using ASP.

 
I am trying to pull the values out of this cookie using ColdFusion on the
same domain.

 
When I cfdump the cookie rsAgent I get this:
NeedUpdate=1Recognition=SupportEntityID=09AgentName=Neal
BaileyRank=80AgentNumber=@@09

 
I then want to set the EntityID as a Session variable. But my problem is I
can't figure out how to grab just the EntityID. 

 
I guess I need to convert it to a list using  as a delimiter or something. 

 
Any ideas here?... I thought there was an easer way to do this when a cookie
had multiple values. 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: cookie issues...

2004-06-18 Thread Bailey, Neal
Well I almost have this working but its giving more than I need and I can't
figure out how to strip out the rest. 

 
All I need is the number for the EntityID, this is all I am trying to get
returned. 

 
Thanks for any help with this... I thought sharing cookies between different
code languages was simple.

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

From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 18, 2004 11:11 AM
To: CF-Talk
Subject: Re: cookie issues...

 
Bailey, Neal wrote:
 When I cfdump the cookie rsAgent I get this:
 NeedUpdate=1Recognition=SupportEntityID=09AgentName=Neal
 BaileyRank=80AgentNumber=@@09
 
 I then want to set the EntityID as a Session variable. But my problem is I
 can't figure out how to grab just the EntityID.
 
 I guess I need to convert it to a list using  as a delimiter or
something.

That would be one alternative... but I suspect you could get it out of 
there with a regular _expression_...

This code ALMOST works except the regex is greedy, and it wouldn't work 
if EntityID was the last field...

CFSET FOO = 
NeedUpdate=1Recognition=SupportEntityID=09AgentName=Neal 
BaileyRank=80AgentNumber=@@09
CFSET retval = REFindNoCase(EntityID=.*,FOO,1,TRUE)
CFDUMP VAR=#retVal#
PRE
12345678901234567890123456789012345678901234567890
CFOUTPUT#Mid(FOO,retVal.POS[1],retVal.LEN[1])#/CFOUTPUT
/PRE

- Rick
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: cookie issues... [Resolved]

2004-06-18 Thread Bailey, Neal
Thanks guys I finally got this working... 

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

 
_

From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 18, 2004 1:07 PM
To: CF-Talk
Subject: RE: cookie issues...

 
Well I almost have this working but its giving more than I need and I can't
figure out how to strip out the rest. 

All I need is the number for the EntityID, this is all I am trying to get
returned. 

Thanks for any help with this... I thought sharing cookies between different
code languages was simple.

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

From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 18, 2004 11:11 AM
To: CF-Talk
Subject: Re: cookie issues...

Bailey, Neal wrote:
 When I cfdump the cookie rsAgent I get this:
 NeedUpdate=1Recognition=SupportEntityID=09AgentName=Neal
 BaileyRank=80AgentNumber=@@09
 
 I then want to set the EntityID as a Session variable. But my problem is I
 can't figure out how to grab just the EntityID.
 
 I guess I need to convert it to a list using  as a delimiter or
something.

That would be one alternative... but I suspect you could get it out of 
there with a regular _expression_...

This code ALMOST works except the regex is greedy, and it wouldn't work 
if EntityID was the last field...

CFSET FOO = 
NeedUpdate=1Recognition=SupportEntityID=09AgentName=Neal 
BaileyRank=80AgentNumber=@@09
CFSET retval = REFindNoCase(EntityID=.*,FOO,1,TRUE)
CFDUMP VAR=#retVal#
PRE
12345678901234567890123456789012345678901234567890
CFOUTPUT#Mid(FOO,retVal.POS[1],retVal.LEN[1])#/CFOUTPUT
/PRE

- Rick
_
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Daily Tip help...

2004-05-18 Thread Bailey, Neal
Thanks Tony,

 
I have it working good now... here is The Tip Of The Day code incase anyone
is wants to do the same.

 
I set up the scheduler to run this once a day. I may set it every hour. 

 
-Code--
!--- reset all tips to inactive ---
cfquery name=clear_active datasource=myDSN
UPDATE Tips
SET active = 0
/cfquery

 
!--- Lets Count the Records ---
cfquery name=CountRecords datasource=myDSN
SELECT COUNT(Tips.Tip_ID) AS maxrecords 
FROM Tips 
/cfquery

 
!--- Set the random record ---
cfset RandomCount = randRange(1, #CountRecords.maxrecords#)

 
!--- Now set the new tip as active ---
cfquery name=set_new datasource=myDSN
UPDATE Tips
SET active = 1
WHERE tip_id = #RandomCount#
/cfquery
--END-

Then all I do is output the active tip.

 
Thanks for the help 

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

From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 17, 2004 8:52 PM
To: CF-Talk
Subject: RE: Daily Tip help...

 
or, actually...

cfquery name=set_new datasource=myDSN
UPDATE tips
SET active_tip = 1
WHERE tip_id = #randRange(1-100) --if you have 100, or whatever
your total is 
/cfquery

since you probably will not have a 0 :)

also, your integer mismatch was most likely on the new() creating a uuid
there, and not an INT
which that column seems to be.

tony

Tony Weeg
sr. web applications architect
navtrak, inc.
[EMAIL PROTECTED]
410.548.2337
www.navtrak.net
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Daily Tip help...

2004-05-17 Thread Bailey, Neal
Hello All...

I am having an issue with trying to build a rotating daily tips script. All
I want to do is have a database full of tips and everyday have a new tip
display on the front page. I thought it was easy but for some reason I
cannot get it to work. I have about 40 tips so all it needs to do is select
the next record everyday. Can someone point me in the right direction... I
have looked all over the net for examples but oddly enough there are not any
that do such a simple thing, at least that I could find. 

Thanks for any help on this I'm sure its simple, but for some reason I cant
figure it out. 

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




RE: Daily Tip help...

2004-05-17 Thread Bailey, Neal
Well this is kind of what I am trying to do... 

 
I want to automate it though so that all I have to do is keep adding tips
and the system will just continue to rotate through them either randomly or
in order either is ok with me. Over time I will be adding more tips so this
database could have hundreds as time goes on. 

 
The code below is what I am trying to do but I keep getting an Integer
mismatch error. 

 
All I want is a simple Tip of the day thing just like Ben Forta has on his
site or Like Sitepoint. Thanks for the help...

!--- Sets Scheduler in cfadmin to run this once a day ---
!--- reset all tips to inactive ---
cfquery name=clear_active datasource=myDSN
UPDATE tips
SET active_tip = 0
/cfquery

 
cfquery name=set_new datasource=myDSN
UPDATE tips
SET active_tip = 1
WHERE tip_id = newID()
/cfquery
-

 
!--- Dipslay Tip on page ---
cfquery name=get_tip datasource=myDSN
SELECT daily_tip
FROM tips
WHERE active_tip = 1
/cfquery

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

 
_

From: Greg Luce [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 17, 2004 8:18 PM
To: CF-Talk
Subject: RE: Daily Tip help...

 
How about flag the tip record with a bit field called 'live'. Then you can
see the tip that's live, and then take the next tip in whatever order you
have them.

Greg

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 17, 2004 10:11 PM
To: CF-Talk
Subject: RE: Daily Tip help...

why not put them in a database, with asort order, and whatever day of
the month it is, show that based on the sort order numbered from 1-28 or
something like that? or just do it randomly.where each page refresh
would show a new one?

tony

Tony Weeg
sr. web applications architect
navtrak, inc.
[EMAIL PROTECTED]
410.548.2337
www.navtrak.net 

-Original Message-
From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 17, 2004 9:51 PM
To: CF-Talk
Subject: Daily Tip help...

Hello All...

I am having an issue with trying to build a rotating daily tips script.
All I want to do is have a database full of tips and everyday have a new
tip display on the front page. I thought it was easy but for some reason
I cannot get it to work. I have about 40 tips so all it needs to do is
select the next record everyday. Can someone point me in the right
direction... I have looked all over the net for examples but oddly
enough there are not any that do such a simple thing, at least that I
could find. 

Thanks for any help on this I'm sure its simple, but for some reason I
cant figure it out. 

- Neal
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Search solution.

2004-05-10 Thread Bailey, Neal
Hey guys 

 
I want to set up a search on my personal site for my products. I have tried
to use the verity collection but it just does not seem to do what I want. I
need something that can simply spider my site and collect the information
and links to the products. The site is very dynamic and it uses SES urls. Is
there something that can do this already or can this be done with Verity? My
site uses a lot of templates and includes files and this seems to mess up
the verity search. 

 
Thanks for any ideas... 

 
Neal Bailey
 http://www.blissfulessence.com/ www.blissfulessence.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




URL Path ?

2004-05-05 Thread Bailey, Neal
Hey guys... 

 
I am trying to find a better way to grab the landing page URLTo be more
specific I have a bot/spider tracker I built a long time ago and I want to
update the way it tracks the pages it hits. 

 
Currently I use this:

 
http://#CGI.server_name##CGI.script_name#/#cleanpathinfo#

 
I am also using the SEO safe urls app fromwww.fusium.com

 
I need to be able to log the entire url with variable strings and all. 

 
It works for the most part but sometimes it shows likes like
www.mysite.com/index.cfm/index.cfm and things like this. 

 
Is there an easer better way to grab the url path shown in the browser at
the time the bot/spider hits the page. 

 
Thanks. 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: WYSIWYG HTML Editors...

2004-04-22 Thread Bailey, Neal
Hey guys... thanks for all the replies to this... I finally chose HTMLArea
v3 and had it installed it in about two minutes. I have used this one before
but back when it was in beta v1. I do have a question though does anyone
here know how to make it not submit the htmlHeadBody tags. I don't
need these as I'm using it for a content system and will be outputting to a
page with these tags already in place. Its still seems to work with the
duplicated tags but I just want to keep the DB clean and prevent any other
issues that may come. I was wondering if there was a way to turn this off in
the _javascript_ or if I need to strip it out before I insert it in the DB
using a ColdFusion udf. I looked though their support forums but did not
find anything. 

 
Thanks for the help... 

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

 
_

From: Geoff Bowers [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 21, 2004 5:43 PM
To: CF-Talk
Subject: Re: WYSIWYG HTML Editors...

 
You might consider HTMLArea v3 -- which is currently at release 
candidate.It's open source, bsd-style license, and works on more 
browsers than just IE:
http://dynarch.com/mishoo/htmlarea.epl

We're looking at introducing it to FarCry CMS as another supported rich 
text editor.We may even promote it to being the default editor once it 
goes beyond release candidate.

-- geoff
http://farcry.daemon.com.au/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: WYSIWYG HTML Editors...

2004-04-22 Thread Bailey, Neal
Well $h:T!!! never freaking mind... no wonder it could not find the
answer to this, it was posted in plain sight on the very front page. Man I
guess they should have a Morons Please Click here link so I don't miss
anything. 

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

 
_

From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 22, 2004 1:35 PM
To: CF-Talk
Subject: RE: WYSIWYG HTML Editors...

 
Hey guys... thanks for all the replies to this... I finally chose HTMLArea
v3 and had it installed it in about two minutes. I have used this one before
but back when it was in beta v1. I do have a question though does anyone
here know how to make it not submit the htmlHeadBody tags. I don't
need these as I'm using it for a content system and will be outputting to a
page with these tags already in place. Its still seems to work with the
duplicated tags but I just want to keep the DB clean and prevent any other
issues that may come. I was wondering if there was a way to turn this off in
the _javascript_ or if I need to strip it out before I insert it in the DB
using a ColdFusion udf. I looked though their support forums but did not
find anything. 

Thanks for the help... 

Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




WYSIWYG HTML Editors...

2004-04-21 Thread Bailey, Neal
Hello... all

 
I am looking for a good open source WYSIWYG HTML form field editor control
thingy. Something like SPAW or FCKeditor, I guess a better question is which
one of these is better or more stable. I need to implement one pretty fast
but don't have a lot of time to research them all, so I thought I would
consult the great collective wisdom of this list to help me decide on the
right one to use. 

 
Let me know what you think of if there are any better, newer or more stable
ones outthere. 

 
Thanks.

 
Neal Bailey
Internet Marketing Manager
E-mail:II mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




striping url again...

2004-04-14 Thread Bailey, Neal
Hello all...

 
I am trying to strip a url up into sections... for example:

 
If a have a url like http://www.mysite.com/ http://www.mysite.com/

 
I want to take just the mysite part a store as a variable and then store
the .com part as another variable then remove all the http:// and www parts.

So far I have come up with this... but it only partially works.

 
cfset SESSION.NavInfo.SiteRoot = http://#cgi.http_host#/

 
cfset SiteName = ListFirst(SESSION.NavInfo.SiteRoot,.)

Thanks for any help on this... 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Stay in Domain...?

2004-04-13 Thread Bailey, Neal
Ok I have one for you...

 
I have this site that I am working on... http://65.218.34.47
http://65.218.34.47/and it is going to be somewhat template based for
our users. Basically we have Division leaders that will get one of these
sites to help with recruiting new people. Each site will be personalized for
the Division things like menus, schedules, testimonials and a few other
things will be dynamic information. What I would like to do also is have it
to where if the recruiting division has their own domain name like
www.recruitme.com http://www.recruitme.com/and I have the domain
pointing to our servers, how can I make the site stay in the domain when the
main site is www.ugaonline.com http://www.ugaonline.com/ . Does this make
sense?...

 
We will have about 130 recruiting divisions that will all have their own
domain name. But we have only one website. I would like anyone with the
domain name to stay in their domain when someone is referred from their site
instead of being redirected like I have done in the past. 

 
Is there a way to do this... I was planning on reading the host header and
using ColdFusion to determine the incoming site and display the recruiting
districts information dynamically using the domain name as unique variable. 

 
Any ideas... thanks.. 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




jsessionID... ?

2004-04-01 Thread Bailey, Neal
Hello everyone... 

 
Does anyone know just how long the JSessionID gets? I see that it jumps in
length a digit or two. 

 
Also it's my understanding that the Jsession is always a unique number, is
this right?

 
I know the CF session ID is not unique, but can it be made to be unique or
would it be better to use the jsessionID?

 
I'm not sure I understand the advantages of either one. I have read the info
on MM site but could not really find any info that state why one is better
than the other beside security and unique IDs. 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: LinkPoint ORder ID using QuickEstore

2004-03-30 Thread Bailey, Neal
Randy,

 
Yes I also have the same problem with the OID... I simply gave up and
stopped trying to set my own OID and instead let their system set the OID
automatically. I then store their OID in my Order table along with the OID
from my shopping cart. I wish I did not have to do it that way; the tech
support guys did not seem to know why. I am also having issues with it not
being able to resolve the host which causes the checkout page to error out. 

 
Are you using the API or the linkpoint wrappers?

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

From: Randy Messer [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 30, 2004 3:32 PM
To: CF-Talk
Subject: LinkPoint ORder ID using QuickEstore

 
Is anyone else having a problem with LinkPoint in regards to setting the
Order ID
(ORDEROID).

Can't set the Order ID and can't output the returned Order ID variable. 

End result, can't synch Order ID's between shop cart DB and LinkPoint
Report.

Have been trying to resolve off and on for a year. LinkPoint Support has
been responsive but
ineffective.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Image Tag

2004-03-23 Thread Bailey, Neal
Hello all,

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

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

 
Thanks,

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Linkpoint API Host not responding problem.

2004-03-23 Thread Bailey, Neal
Thanks Ian,

 
I will try this... I still have yet to get an answer from LinkPoint. Gosh
the sad thing is I have heard they are supposed to be pretty good. If that
true I can't imagine what others are like. I guess since they no longer
support ColdFusion it's not going to be easy to get help from them. 

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

 
_

From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 23, 2004 8:53 AM
To: CF-Talk
Subject: RE: Linkpoint API Host not responding problem. 

 
Here is an example from the documentation.I'm not sure exactly where you
would put this in our code, quite possibly you would put it in multiple
locations of your code.

blockquote
* You can nest cftry blocks. For example, the following structure is valid:
cftry

code that may cause an exception

cfcatch ...

cftry

First level of exeption handling code

cfcatch ...

Second level of exception handling code

/cfcatch

/cftry

/cfcatch

/cftry

If an exception occurs in the first level of exception-handling code, the
inner cfcatch block can catch and handle it. (An exception in a cfcatch
block cannot be handled by cfcatch blocks at the same level as that block.)

/blockquote

This shows the concept of putting nested try-catch blocks inside the the
catch block of other try-catch blocks. (That is not an awkward sentence!)
Anyway, you can use something like this to try a piece of code as many times
as you like, then still have an out of none of the trays work.

What I would probably do is put the code I'm trying in some kind of included
source (cfinclude, custom tag, UDF or CFC) then I could call the code in
multiple locations of the nested try-catch blocks without having to re-code
it every time.

HTH

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

C code. C code run. Run code run. Please!
- Cynthia Dunning
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Image Tag

2004-03-23 Thread Bailey, Neal
Hey thanks Critter,

 
That's the site I was looking for... 

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

 
_

From: Critter [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 23, 2004 11:19 AM
To: CF-Talk
Subject: Re: Image Tag

 
Hello Neal,

efflare.com

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

BN Hello all,

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

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

BN Thanks,

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

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




Linkpoint API Host not responding problem.

2004-03-22 Thread Bailey, Neal
Hello cfersall/cfers,

 
I am having an issue with my credit card merchant gateway, I used the
Linkpoint API and I have it working great except one little problem. About
30 percent of the time I seem to get a cannot resolve host error. This
will happen the instance someone places an order or I run a post order
authentication against the order number. If you go back and run the order
again it will go through with no problems. It seems like the
secure.linkpoint.com sites does not respond quickly enough or is just not
available. 

 
I was wondering if there is a way to make my processing code re-run if the
Host is not responding. I was thinking of some type code that would loop
through for maybe 5 times before it gave an error. 

 
Or maybe this is an issue with the merchant and they need to fix it... I'm
not sure what to do or how to make it re-run the card if the host is not
responding. What do you guys think I should do? I would think that the
com object that it uses would already check for this. 

 
Thanks,

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Linkpoint API Host not responding problem.

2004-03-22 Thread Bailey, Neal
Yeah I am using their custom tag/dlls to connect to their system. I also
thought that it should loop a few times before it errors out. I think the
problem is with the creation of the com object or something, I'm not sure
though. It seems to respond way to fast like it did not even try. Like I
said before if I backup and try to process the order again it will work. It
seem to happen way too often... 2 out of 5 orders will show a Cannot
resolve Host error. 

 
Here is the code that I think is responsible... it pull our store number,
host and port number from another file. 

 
!--- CONNECT TO THE COM OR CREATE IT IF NO CONNECTION EXISTS---

 
CFTRY
CFOBJECT 
ACTION="" 
CLASS=LpiCom_6_0.LinkPointTxn 
NAME=LPI_CFX_COM 
TYPE=COM

!--- ELSE CREATE THE OBJECT ---

 
CFCATCH
 CFOBJECT 
ACTION="" 
CLASS=LpiCom_6_0.LinkPointTxn 
NAME=LPI_CFX_COM 
TYPE=COM 
/CFCATCH
/CFTRY

 
!--- SEND THE TRANSACTION USING THE COM ---
cfset resp = LPI_CFX_COM.send(keyfile,host,port,outXML) 

 
!--- RETRIEVE THE RESPONSE XML, CREATE A DOC ROOT ---

 
!--- SET THE STANDARD RESPONSE FOR TELECHECK ---
cfif listcontainsnocase(outxml, telecheck, )

 
!--- RESPONSE CONTAINS WHITE SPACE WHICH CAUSES AN ERROR SO TRIM IT ---
CFSET resp = #trim(resp)#

 
!--- CREDIT CARD RESPONSES NEED A DOC ROOT, WRAP RESPONSE ---
cfelse
CFSET resp = 'response#resp#/response'
/cfif

 
!--- SET THE XML DOC IN A VARIABLE ---
CFSET XMLResp = XmlParse(resp) 

 
!--- SET THE DOC ROOT TO A VARIABLE ---
CFSET rootResp = XMLResp.XmlRoot 

!--- USED TO SEE THE XML DOCUMENT STRUCTURE (NOT FOR LIVE SITE) ---
!--- cfdump var=#XMLResp# ---

 
!--- LOOP THROUGH THE RETURN ELEMENTS ---
CFLOOP FROM=1 TO=#arrayLen(rootResp)# index=i

 
!--- CHECK IF THE SPECIFIED ELEMENT EXISTS. SET IT'S VALUE ---
cfif isDefined('rootResp.r_error')Cfset r_error =
#rootResp[i].r_error.xmltext#cfelsecfset r_error = /cfif
cfif isDefined('rootResp.r_approved')Cfset r_approved =
#rootResp[i].r_approved.xmltext#cfelsecfset r_approved = /cfif
cfif isDefined('rootResp.r_ordernum')Cfset r_ordernum =
#rootResp[i].r_ordernum.xmltext#cfelsecfset r_ordernum = /cfif
cfif isDefined('rootResp.r_code')Cfset r_code =
#rootResp[i].r_code.xmltext#cfelsecfset r_code = /cfif
cfif isDefined('rootResp.r_tdate')Cfset r_tdate =
#rootResp[i].r_tdate.xmltext#cfelsecfset r_tdate = /cfif
cfif isDefined('rootResp.r_time')cfset r_time =
#rootResp[i].r_time.xmltext#cfelsecfset r_time = /cfif
cfif isDefined('rootResp.r_ref')cfset r_ref =
#rootResp[i].r_ref.xmltext#cfelsecfset r_ref=/cfif
cfif isDefined('rootResp.r_authresponse')cfset r_authresponse =
#rootResp[i].r_authresponse.xmltext#cfelsecfset r_authresponse =
/cfif
cfif isDefined('rootResp.r_message')cfset r_message =
#rootResp[i].r_message.xmltext#cfelsecfset r_message = /cfif
cfif isDefined('rootResp.r_avs')cfset r_avs =
#rootResp[i].r_avs.xmltext#cfelsecfset r_avs = /cfif
cfif isDefined('rootResp.r_csp')cfset r_csp =
#rootResp[i].r_csp.xmltext#cfelsecfset r_csp = /cfif
cfif isDefined('rootResp.r_vpasresponse')cfset r_vpasresponse=
#rootResp[i].r_vpasresponse.xmltext#cfelsecfset r_vpasresponse =
/cfif
cfif isDefined('rootResp.r_score')cfset r_score =
#rootResp[i].r_score.r_providerone.xmltext#cfelsecfset r_score =
/cfif
cfif isDefined('rootResp.r_shipping')cfset r_shipping =
#rootResp[i].r_shipping.xmltext#cfelsecfset r_shipping = /cfif
cfif isDefined('apiversion')cfset r_apiversion =
#apiversion#cfelsecfset apiversion = /cfif
!--- END THE LOOP ---
/cfloop

Any ideas on what I could do to make it retry again?...

 
Thnaks,
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_

From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 22, 2004 12:19 PM
To: CF-Talk
Subject: Re: Linkpoint API Host not responding problem. 

 
Oh yadoesn't LinkPoint have a custom tag already built for you?I would
think that it would return an error code which you could use to inform the
customer that the payment server is down (not ideal but at least you could
handle it).That said there is no way a p[ayment gateway should be down 30
percent of the time (if they want to stay in business).I know LinkPoint is
merging with SharePay and YourPaybut it is associated with Chase
Manhattan and I would expect top notch service (although I've chatted with
them and didn't get said service).

my 2 cents

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Bailey, Neal 
To: CF-Talk 
Sent: Monday, March 22, 2004 10:06 AM
Subject: Linkpoint API Host not responding problem. 

Hello cfersall/cfers,

I am having an issue with my credit card merchant gateway, I used the

RE: Linkpoint API Host not responding problem.

2004-03-22 Thread Bailey, Neal
Yeah I was thinking of adding more try-catch to my file but I'm not sure
where I would put this as I don't really know were the problem is happing. I
think the com object is having the problem and it already has a try
statement around it. 

 
Linkpoint had me copy two .dll files to my system32 dir. I wonder if I need
to register these? The instructions to this are all messed up as I have
three versions that our completely different. I think I am using the most
current code though. 

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

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 are not the named addressee you should not disseminate, distribute or
copy this e-mail.Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your
system.If you are not the intended recipient you are hereby notified that
disclosing, copying, distributing or taking any action in reliance on the
contents of this information is strictly prohibited.Thank you.
_

From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 22, 2004 1:23 PM
To: CF-Talk
Subject: RE: Linkpoint API Host not responding problem. 

 
Sounds like and ideal situation for a try-catch block.You can build just
such a try catch system, that retries x number of times than if no luck,
displays a friendly type message that hopefully encourages the user to try
their purchase again in the near future.
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Linkpoint API Host not responding problem.

2004-03-22 Thread Bailey, Neal
Yeah I already have two phone calls into there support, but I have been
waiting for their ColdFusion expert to call me back. They actually stop
supporting ColdFusion at the beginning of this year for some insane reason.
Don't they know ColdFusion is going to take over the world as the preferred
language? Knuckle Heads...

 
Anyway its driving me crazy... they said their gateway is working fine, it's
supposedly the same gateway for everyone. I have another friend using them
with an asp site and he has reported no errors but he does not do much
business over the web. 

 
I will try to make some type of loop I guess... 

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

From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 22, 2004 4:57 PM
To: CF-Talk
Subject: Re: Linkpoint API Host not responding problem. 

 
I would think you could put all that code inside a CFLOOP that loops say 5
times.

-if you get a success cfbreak out of the loop
-if it fails the first time it tries 4 more times or until successful

That said...2 out of 5 times is totally unacceptable and I'd be riding
someones hiney over at LinkPoint ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Bailey, Neal 
To: CF-Talk 
Sent: Monday, March 22, 2004 2:49 PM
Subject: RE: Linkpoint API Host not responding problem. 

Yeah I am using their custom tag/dlls to connect to their system. I also
thought that it should loop a few times before it errors out. I think the
problem is with the creation of the com object or something, I'm not sure
though. It seems to respond way to fast like it did not even try. Like I
said before if I backup and try to process the order again it will work.
It
seem to happen way too often... 2 out of 5 orders will show a Cannot
resolve Host error. 

Here is the code that I think is responsible... it pull our store number,
host and port number from another file. 

!--- CONNECT TO THE COM OR CREATE IT IF NO CONNECTION EXISTS---

CFTRY
 CFOBJECT 
 ACTION="" 
 CLASS=LpiCom_6_0.LinkPointTxn 
 NAME=LPI_CFX_COM 
 TYPE=COM

!--- ELSE CREATE THE OBJECT ---

CFCATCH
CFOBJECT 
 ACTION="" 
 CLASS=LpiCom_6_0.LinkPointTxn 
 NAME=LPI_CFX_COM 
 TYPE=COM 
/CFCATCH
/CFTRY

!--- SEND THE TRANSACTION USING THE COM ---
cfset resp = LPI_CFX_COM.send(keyfile,host,port,outXML) 

!--- RETRIEVE THE RESPONSE XML, CREATE A DOC ROOT ---

!--- SET THE STANDARD RESPONSE FOR TELECHECK ---
cfif listcontainsnocase(outxml, telecheck, )

!--- RESPONSE CONTAINS WHITE SPACE WHICH CAUSES AN ERROR SO TRIM IT ---
CFSET resp = #trim(resp)#

!--- CREDIT CARD RESPONSES NEED A DOC ROOT, WRAP RESPONSE ---
cfelse
CFSET resp = 'response#resp#/response'
/cfif

!--- SET THE XML DOC IN A VARIABLE ---
CFSET XMLResp = XmlParse(resp) 

!--- SET THE DOC ROOT TO A VARIABLE ---
CFSET rootResp = XMLResp.XmlRoot 

!--- USED TO SEE THE XML DOCUMENT STRUCTURE (NOT FOR LIVE SITE) ---
!--- cfdump var=#XMLResp# ---

!--- LOOP THROUGH THE RETURN ELEMENTS ---
CFLOOP FROM=1 TO=#arrayLen(rootResp)# index=i

!--- CHECK IF THE SPECIFIED ELEMENT EXISTS. SET IT'S VALUE ---
cfif isDefined('rootResp.r_error')Cfset r_error =
#rootResp[i].r_error.xmltext#cfelsecfset r_error = /cfif
cfif isDefined('rootResp.r_approved')Cfset r_approved =
#rootResp[i].r_approved.xmltext#cfelsecfset r_approved = /cfif
cfif isDefined('rootResp.r_ordernum')Cfset r_ordernum =
#rootResp[i].r_ordernum.xmltext#cfelsecfset r_ordernum = /cfif
cfif isDefined('rootResp.r_code')Cfset r_code =
#rootResp[i].r_code.xmltext#cfelsecfset r_code = /cfif
cfif isDefined('rootResp.r_tdate')Cfset r_tdate =
#rootResp[i].r_tdate.xmltext#cfelsecfset r_tdate = /cfif
cfif isDefined('rootResp.r_time')cfset r_time =
#rootResp[i].r_time.xmltext#cfelsecfset r_time = /cfif
cfif isDefined('rootResp.r_ref')cfset r_ref =
#rootResp[i].r_ref.xmltext#cfelsecfset r_ref=/cfif
cfif isDefined('rootResp.r_authresponse')cfset r_authresponse =
#rootResp[i].r_authresponse.xmltext#cfelsecfset r_authresponse =
/cfif
cfif isDefined('rootResp.r_message')cfset r_message =
#rootResp[i].r_message.xmltext#cfelsecfset r_message = /cfif
cfif isDefined('rootResp.r_avs')cfset r_avs =
#rootResp[i].r_avs.xmltext#cfelsecfset r_avs = /cfif
cfif isDefined('rootResp.r_csp')cfset r_csp =
#rootResp[i].r_csp.xmltext#cfelsecfset r_csp = /cfif
cfif isDefined('rootResp.r_vpasresponse')cfset r_vpasresponse=
#rootResp[i].r_vpasresponse.xmltext#cfelsecfset r_vpasresponse =
/cfif
cfif isDefined('rootResp.r_score')cfset r_score =
#rootResp[i].r_score.r_providerone.xmltext#cfelsecfset r_score =
/cfif
cfif isDefined('rootResp.r_shippi

RE: 20 meg updater for DWMX 2004

2004-03-12 Thread Bailey, Neal
Hey what's the name of the extension that you're referring too? I would like
to check it out but I can't seem to find it. 

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

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 12, 2004 5:16 PM
To: CF-Talk
Subject: RE: 20 meg updater for DWMX 2004

 
there is an extention 4 it also things like hard-coder tools
and im dl'ing a new extention right now for cf tools
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Marketing / Design ???

2004-03-11 Thread Bailey, Neal
Kevin,

 
Looks good to me. Satisfies the did it do it?, did it do it right?, and
what do I do next? questions quite nicely.

- Great thanks... I want to make this very user friendly to the customers. 

Just a couple little things I noticed though:
1. On the customer registration page, the asterisk on the zip isn't red.

- Thanks it's fixed now. 

2. You could possibly streamline the address information. There's a
customer
address, ship to address, and billing address. You ask if the ship to is
the
same as the customer addy, but don't ask the same for the billing.

- Hmmm not sure what you mean here. Are you talking about making a same as
billing button or the credit card form?

3. After placing the order with the fake cc, I got a page saying If you
receive an error message or email from us stating that your credit card has
listed as invalid, it has most likely listed as invalid for one of the
following reasons:I'd suggest putting a header on that page saying,
Credit card problem. or something. Looking at the If that starts the
page, I don't know if it's saying the order probably went through but maybe
didn't, or if it's saying there was actually a problem.

-Yeah that error page is work in progress. I just stuck something there for
now. I am working on displaying the message that comes from the merchant.
And I will make the page more appealing with directions on what to do
depending on the message code that I comes back. In your case the expiration
was not valid. 

 
Well thanks for looking site over... we are getting pretty excited on the
re-opening next month. 

Neal Bailey
 http://www.blissfulessence.com/ www.BlissfulEssence.com
 mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Marketing / Design ???

2004-03-11 Thread Bailey, Neal
Kevin,

 
OK I understand now... Yeah actually I do have the billing information auto
insert on the credit card form. I just have it disable for testing right
now. 

 
And yes we will have a much larger selection of unscented candles once the
site goes live. The current products you see will be replaced with new
designs and styles; we will also have a Home dcor section with cool
lighting and the likes.

 
Neal Bailey
www.BlissfulEssence.com
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_

From: Kevin Graeme [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 11, 2004 12:37 PM
To: CF-Talk
Subject: Re: Marketing / Design ???

 
 2. You could possibly streamline the address information. There's a
 customer
 address, ship to address, and billing address. You ask if the ship to is
 the
 same as the customer addy, but don't ask the same for the billing.


 - Hmmm not sure what you mean here. Are you talking about making a same
as
 billing button or the credit card form?

Well most sites have just two addresses, a customer billing address and a
shipping address. You have 3: a customer address, a shipping address, and a
billing address. I'm not sure why you need the customer address, but if you
do I was suggesting that when you get to the billing address question, you
could have it default to the customer address and only have them fill it in
if it's different.

 Well thanks for looking site over... we are getting pretty excited on the
 re-opening next month.

Good luck! It does look really nice. Now if you only had more unscented
candles. Smelly candles are nasty. ;-)

-Kevin
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Marketing / Design ???

2004-03-11 Thread Bailey, Neal
Matt I understand your point... And when I first had this site live last
year I actually had the ordering process like this, but I kept getting
emails from people wanting to know where they could see there order status.
So in order to do this I needed to have the customer login where the
customer could check order status and change billing or shipping
information. 

 
One of the advantages of users registering is I was able to incorporate a
system where the customer could login and view past orders and then also
reorder that item or items without having to look for it again. This was a
gold mine when I implemented this... People really liked this feature
because they could never seem to remember what they ordered the last time
but knew they liked it and wanted to order it again. 

 
Thanks for looking over the site and commenting. I may try to add the
ability to skip the registration and just place the order. 

Neal Bailey
www.BlissfulEssence.com
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_

From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 11, 2004 1:12 PM
To: CF-Talk
Subject: RE: Marketing / Design ???

 
I just went to that site and it sure does look very nice.However, I
saw something that has always been a pet peeve of mine with regard to
ecommerce sites.

Lets say you walk into a store.Any brick/mortar one will do.You then
browse for merchandise, pick a few things up and walk up to your
register... money in hand.

However, before the clerk takes the money you are holding out to them...
s/he asks for your username and password so they can log you in.Sure
hope you remember it otherwise you'll have to go to the customer service
desk and ... 

This has always struck me as a critical error in online store design.
You have a customer standing, waiting to hand you money, yet you (not
just you, personally) do something that impedes that critical flow of
money from their wallet to yours, and potentially could torpedo the sale
if they forget their login or somesuch and decide the login retrieval
routine isn't worth their time.

I have never understood this.On my stores when a user clicks
'checkout' they go straight to the secure checkout form, which contains
all address and credit card info needed to complete the transaction.
Step 1 of 1, if you will.

Further, on that checkout form the user is given the option to 'remember
me' so they don't have to fill out the form next time they visit (it
remembers via cookie values, and doesn't store cc info of course).

If I need to collect info on my customer base, I do it some other way
than making them set up an account.In other words I make it my problem
and transparent to customers.

Like I said, pet peeve.Ecommerce is a tough row to hoe as it is and I
think you have to work extra hard to make it super easy.My suggestion
is: decide whether you *really* need a login, and ask yourself how you
can make checkout a literal breeze to get thru.Rip it down to its
barest components to be sure that, once you get a customer to the point
of buying, there are no roadblocks in the way.


Matt Robertson [EMAIL PROTECTED] 
MSB Designs, Inc.http://mysecretbase.com

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




RE: Marketing / Design ???

2004-03-11 Thread Bailey, Neal
Thanks Erika,

 
I did miss that...Thanks, though I new I needed to fix it. Its working as it
should now and will send the customer to the last item he or she added to
the cart. 

 
Neal Bailey
www.BlissFulEssence.com
E-mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
_

From: Erika L Walker-Arnold [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 11, 2004 6:12 PM
To: CF-Talk
Subject: FW: Marketing / Design ???

 
Neal did you see this:
-
From: Erika L Walker-Arnold [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 10, 2004 11:37 PM
To: CF-Talk
Subject: RE: Marketing / Design ???

snip

BUT ... your continue shopping button is not really usable ... you use a
_javascript_ GoBack ... and when I pushed it the first itme, I looked at
my cart in the upper right hand corner and it said $0. I was like Wha?
then I refreshed, and there it was.

You should likely pass along either the last item they were looking at
and get them back to a new view of that page, or send them back to the
front of the site .. this will at least refresh the page they were on,
and update the status of their cart immediately.
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Marketing / Design ???

2004-03-11 Thread Bailey, Neal
Matt thanks for the ideas... 

 
I am revisiting these ideas now that I am redesigning the backend to be more
user friendly for me and my wife as she is the one that's going to be
running this creation of mine. 

 
Neal Bailey
_

From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Hi Neal,

What I've done for that in the past -- letting users query back for info --
is give them a link in their thank-you-for-paying-us email that then lets
them view order history, status etc.

When they use that link *then* they go thru a username and password picking
routine, which is only necessary when they fire up order history/tracking
and not used when they order.

One thing I've also done is assign a customer acct ID and give them a small
discount for inputting that ID on their order form.This helps build
loyalty and also keeps things straight in case a cookie malfunctions and the
system can't figure out who the returning buyer is.That only works if you
have the margins to spare.

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




RE: Credit Cards - Best Practices

2004-03-09 Thread Bailey, Neal
Thanks Matt,

 
My response is mixed in below... 

 
*Assuming* you are shipping product immediately, or you are selling
something intangible like memberships that needs no shipping delay, then
you can settle immediately as well.Otherwise I'm pretty sure you are
bound ethically -- and probably legally in at least some areas -- to
auth at time of sale and settle at time of shipment.

Yeah this is what I thought, just wanted to ask the question though as I
know others are collecting up front and shipping weeks later. 

Think of what you personally would do to a merchant who charged your
card and then shipped a week later...And think of all the merchants
who swear they would never do this to a customer.By settling and not
shipping you jump to the other side of this fence.

 
...Agreed

Storing the cc info in the db is Bad News no matter how you slice it.
If you absolutely must you can store the data in a field that uses
public/private key encryption at reasonable (i.e. 1024 bit) strength,
assuming you follow the practices necessary to do that job right.In
other words sacrifice convenience and force people to enter the private
key... Don't leave it on the server (!!!)Any lesser level of
encryption shouldn't even be considered.My personal favorite
encryption tool is cfx_textcrypt.For US$40 or thereabouts you can't
beat it.

 
Thanks I will check out the Tag, but most likely with this new version I
will not be storing the CC numbers anymore. 

As for storing the cards in a db and downloading the info daily, I get
shivers just thinking about it.If you are encrypting the data as
described aboveI suppose that would be as safe as such a thing can be.
However if you are storing them in the clear, and/or not transferring
the file over secure ftp... Holy failure to perform due diligence,
Batman!

 
When I download the data, it was through SSL connection. I always knew it
was a bad idea no mater how I sliced it... but I had to do something. It
seems at that my Co Located servers were less secures than my home systems.
Now my Servers are behind a nice hardware Firewall and the SQL server is
connected directly to the web server through a second net card. 

Lastly, you can opt to do it the safest way possible:Don't store the
cc numbers at all.Collect them on your secure form, send them to the
card processing gateway and DON'T store them.There are many who will
say this is the best way, and I think it is.It limits the customer's
liability and, perhaps as importantly, your own.

Yeah I agree, and this is how I will be doing it now that I have configured
and setup a custom API to my merchant. 

 
Well thanks for all the great feedback, pretty much confirmed what I was
thinking. Well if you want to check out the cart and run it through its
paces for security issue or functionality let me know I will post the link
if any one is interested. 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Credit Cards - Best Practices

2004-03-09 Thread Bailey, Neal
Thanks Mary Jo,

 
Yeah I am still trying to figure out all that can be done through my
merchants API and Online system. Looks like I can do all of what you
mentioned. 

 
Yeah I have some clients that insist on storing there credit card info on
the web server and it really scares me. I have warned them many times that
they need to develop a better system. Oh well, don't have to worry about
anymore as I am my on client now. 

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

From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 08, 2004 8:52 PM
To: CF-Talk
Subject: Re: Credit Cards - Best Practices 

 
Lastly, you can opt to do it the safest way possible:Don't store the
cc numbers at all.Collect them on your secure form, send them to the
card processing gateway and DON'T store them.There are many who will
say this is the best way, and I think it is.It limits the customer's
liability and, perhaps as importantly, your own.

Just wanted to add my agreement to Matt's post here...and add that you can
still do authorize at the time of sale and then capture later, at least with
most processors I have worked with. Most will return a transaction ID when
they run the authorization which you can later use to then capture the
funds. You can do returns as well, either through your application or using
their online system, so there really is no need to have the credit card
number at all. Of course, convincing clients of that is another problem
altogether!
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Website hijacking

2004-03-09 Thread Bailey, Neal
Yeah that sounds like spy-ware to me... 

 
Try Ad-aware I found that it's pretty good and free. 

 
http://lavasoft.element5.com/default.shtml.en
http://lavasoft.element5.com/default.shtml.en 

Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Marketing / Design ???

2004-03-09 Thread Bailey, Neal
I have a question...

 
>From a marketing standpoint and or shopping cart design, which is better?

 
(1.) Customer selects a product and presses the buy button and is then
directed to the checkout page where they can update their cart, checkout or
press the continue shopping button which will take them back to the product
page. 

 
Or 

 
(2.) The customer presses the buy button and the item is added to the cart
and the customer stays on the page instead of being redirected to the
checkout page, of course the item will appear on a little box as being added
with a display of the current total.

 
I have seen it both ways on many shopping carts, but personally I prefer
number 2 as this is how I do it on mine. I was wondering if there is any
reason as far as marketing goes to doing it the other way. I guess it
depends on what the products is but I still would think redirecting them to
the checkout page is almost like rushing them though a nice dinner so you
can get your tip. 

 
Any comments?

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Marketing / Design ???

2004-03-09 Thread Bailey, Neal
Good points everyone... I am still having a hard time to whether I should
change the way I am currently handling a customer when the select a product.
I think I have it pretty straight forward but who knows it's hard to see is
from the customer's point when you are the developer. 

 
Here check it out and let me know if you think should change it to direct to
the checkout page or just leave it a lone with maybe a few adjustments. Feel
free to run test orders and try to break the system use a test card number
if you want, 4111.I am trying to workout all the bugs and make
sure it functions properly. 

 
http://www.BlissfulEssence.com http://www.blissfulessence.com/ 

 
Any other comments are welcome... 

 
Thanks,

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Marketing / Design ???

2004-03-09 Thread Bailey, Neal
Hmmm interesting... This could possibly be a solution. But I wonder if it's
too much. My customer base is about 85% women (Don't take this the wrong
way) and I wonder if this could be too much and distract or cause
frustration. I have found over the years of working on a Beauty website that
women shopping for these types of products like to have clear direction and
with out a lot of decision. (Please don't beat me up). Mainly this is when
dealing with an older age group from 45 to 70 years of age.

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

 
_

From: Dick Applebaum [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 09, 2004 4:16 PM
To: CF-Talk
Subject: Re: Marketing / Design ???

 
I have implement it both ways -- but I like a third way that is a combo 
of the 2:

1) When the 1st item is added to the cart, display the cart with its 
single line item content -- have buttons for checkout and continue 
shopping.But, also display a checked checkbox that says Display cart 
when each item is added to cart.

Then the user can choose if he wants to see the cart displayed or not.

The shopping and Checkout pages would also contain a Display cart 
button.

HTH

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




Credit Cards - Best Practices

2004-03-08 Thread Bailey, Neal
Hello CFers... 

 
I was wondering what are the best practices for credit card processing over
the web. Should you pre-authorize a customer's card during check out and
then run a batch transaction at the end of the day? Or should you run the
card as a final sale and gather the funds immediately.Just as I have heard
people doing it both ways and I am in the process of converting my cart over
to an automatic Card processor API. 

 
What are the pros and cons of both... 

 
Also I have noticed that many shopping carts store their Credit card info in
the database. I have a little utility (MS Access) that transfers the
customer's info to my system at home and then deletes all credit card info.
This usually runs twice a day. Is there a better way to keep the card info
secure? 

 
Thanks 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: LinkPoint CFX Tag?

2004-03-03 Thread Bailey, Neal
Hey guys... does anyone have any ideas on my question I posed last night. 

 
Thanks,
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_

From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 02, 2004 5:55 PM
To: CF-Talk
Subject: LinkPoint CFX Tag?

 
Hey guys... 

I currently have a merchant account with Card Services Intl. and I use Link
Point Central to process my orders manually. Our volume has always been
pretty low so manual processing was never a big deal but now we need to
automate. I saw a while back that they had a CFX tag that I could used but
now as I'm looking on their site is says ColdFusion is no longer supported
(What's with that?). At any rate I was looking at their API solution but it
seems like its missing something in the install instruction for Coldfusion,
they mention that I need to use the OpenSSL and cURL of which none of these
are supported under windows server as far as I could tell.I tried calling
the support team and the guy I talked to did not have a clue and said
someone will call me back. 

Is anyone using a CFX customer tag for LinkPoint and if so is there one I
can download or use? I guess my other option is the HTML/XML wrappers but
I'm not sure if that's the best way to go. 

Any advice would be greatly appreciated... 

Thanks,
Neal Bailey
Internet Marketing Manager
E-mail:[EMAIL PROTECTED]
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: LinkPoint CFX Tag?

2004-03-03 Thread Bailey, Neal
Humm strange... I guess that's good to know. You would think they would let
their customers know of this. Well I am on the phone now as I am writhing
this e-mail and the automated message is talking about www.yourpay.com
http://www.yourpay.com/ . Oh well... hopefully one day someone will
answer... (me grits teeth) 

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

From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 03, 2004 11:47 AM
To: CF-Talk
Subject: Re: LinkPoint CFX Tag?

 
LinkPoint is also YourPay and SharePaynot sure which is the parent
company, but it's all merging into YourPay I beleivethat may help you
find the appropriate tech support folks etc.

HTH

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




LinkPoint CFX Tag?

2004-03-02 Thread Bailey, Neal
Hey guys... 

 
I currently have a merchant account with Card Services Intl. and I use Link
Point Central to process my orders manually. Our volume has always been
pretty low so manual processing was never a big deal but now we need to
automate. I saw a while back that they had a CFX tag that I could used but
now as I'm looking on their site is says ColdFusion is no longer supported
(What's with that?). At any rate I was looking at their API solution but it
seems like its missing something in the install instruction for Coldfusion,
they mention that I need to use the OpenSSL and cURL of which none of these
are supported under windows server as far as I could tell.I tried calling
the support team and the guy I talked to did not have a clue and said
someone will call me back. 

 
Is anyone using a CFX customer tag for LinkPoint and if so is there one I
can download or use? I guess my other option is the HTML/XML wrappers but
I'm not sure if that's the best way to go. 

 
Any advice would be greatly appreciated... 

 
Thanks,
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Strip HTML from String

2004-03-02 Thread Bailey, Neal
Yeah I found Isaac's on cflib.com and that's what I'm using now, Thanks for
the info...

- Neal



_

From: Shawn Grover [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 01, 2004 11:57 AM
To: CF-Talk
Subject: RE: Strip HTML from String

There are functions for this at www.cflib.org

-Original Message-
From: Bailey, Neal [mailto:[EMAIL PROTECTED]
Sent: Monday, March 01, 2004 10:40 AM
To: CF-Talk
Subject: Strip HTML from String

Hello everyone...

I saw a while back that someone either posted a snippet or a link to a tag
somewhere that would strip out HTML tags from a string. I tried looking
though my e-mail but cant seem to find it, also tried looking on a few
exchanges but they did not do what I needed. 

Basically if I have a string that looks like this: 

code to strip
body
Here is some font face=Arial, Helvetica, sans-serifsample/font test
with a a href="">
/body
end

output of striped code
Here is some sample test with a link.
end

Thanks for any help... 

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

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




Strip HTML from String

2004-03-01 Thread Bailey, Neal
Hello everyone...

 
I saw a while back that someone either posted a snippet or a link to a tag
somewhere that would strip out HTML tags from a string. I tried looking
though my e-mail but cant seem to find it, also tried looking on a few
exchanges but they did not do what I needed. 

 
Basically if I have a string that looks like this: 

 
code to strip
body
Here is some font face=Arial, Helvetica, sans-serifsample/font test
with a a href="">
/body
end

 
output of striped code
Here is some sample test with a link.
end

 
Thanks for any help... 

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Strip HTML from String

2004-03-01 Thread Bailey, Neal
Thanks guys... 

 
Yeah I just happen to find it on CFLib right when Ben posted. I knew there
was something out there. Thanks Isaac, Ben this is what I was looking for. 

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

From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 01, 2004 1:23 PM
To: CF-Talk
Subject: Re: Strip HTML from String

 
Thanks for the ringing endorsement Ben. :)

Ben doesn't use my functions because he's too good with regex to need
them. heh :)

 That should work if you want to remove all HTML.If you
 want to be more
 selective, there's a UDF called StripTags by S. Isaac
 Dealey at
 http://www.cflib.org
 that is supposed to be pretty good.

 --Ben Doom
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




CF Portal...

2004-02-19 Thread Bailey, Neal
Hello all... 

 
I'm looking for a decent ColdFusion Portal system that is open source,
something like phpNuke. What does everyone recommend?

 
Thanks,

 
Neal Bailey
Internet Marketing Manager
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CF Portal...

2004-02-19 Thread Bailey, Neal
Hey Great thanks... I am downloading now.

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

From: Charlie Griefer [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 19, 2004 11:53 AM
To: CF-Talk
Subject: Re: CF Portal... 

 
Neal:

There have been a few folks working on a version 'CF_Nuke'.
You can check it out at http://www.pixeljunkie.org/
http://www.pixeljunkie.org/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CF Portal...

2004-02-19 Thread Bailey, Neal
Thanks Nathan,

 
Yeah FarCry is great. I have been looking at it for a while now. I was just
curious to know if there were any CF sites like phpNuke. I wanted something
with easy setup and administration. This is for a few friends that need
simple quick sites. FarCry is way too advanced for them. 

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

From: Nathan Mische [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 19, 2004 11:56 AM
To: CF-Talk
Subject: RE: CF Portal... 

 
You may want to look into FarCry.

http://farcry.daemon.com.au http://farcry.daemon.com.au 

Also, Macromedia's Spectra has gone open-source.

http://spectrasource.macromedia.com/active/
http://spectrasource.macromedia.com/active/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Far Cry

2004-02-03 Thread Bailey, Neal
OK all of this FarCry talk is getting me interested in trying it. I'm on the
site now but I'm confused to which file to download to get started. Is it
the Full install, the Aura, or Core? Or do I need all three. I'm sure the
full install would be the one to get first but I'm not sure if I need the
others. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_

From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 03, 2004 5:52 AM
To: CF-Talk
Subject: RE: Far Cry

 
Yes, I have heard of this - mainly from people in the US?I will ping them
and see whats up.I know there is a problem with one developer in FLA.

N

_

From: Tim Laureska [mailto:[EMAIL PROTECTED] 
Sent: 03 February 2004 12:00
To: CF-Talk
Subject: RE: Far Cry

I just tried to get to their web site and it appears down ??

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 03, 2004 6:22 AM
To: CF-Talk
Subject: RE: Far Cry

Its very good.It takes a little getting used to; but the underlying
core
code is sound and allows you to build very nice looking sites in very
little
time.

and its free :-)We have all seen or worked on (and some even built)
CMS
tools which are the dogs etc... but this really has got to be one of the
best I have worked with in the open source market..

Its based loosely on Spectra methodologies of Types, Objects and
Handlers
etc..but where Spectra lacked , FarCry pulls it all together!

N

_

From: Simon Horwith [mailto:[EMAIL PROTECTED] 
Sent: 03 February 2004 11:03
To: CF-Talk
Subject: RE: Far Cry

I don't use it, but Lucas Sherwood (Macromedia) built the London CFUG
site
with it (http://www.ukcfug.org) along with the CFUG Manager (Niklas) and
he
seems to like it.

~Simon
Simon Horwith
CTO, Etrilogy Ltd.
Member of Team Macromedia
Macromedia Certified Instructor
Certified Advanced ColdFusion MX Developer
Certified Flash MX Developer
CFDJList - List Administrator
http://www.how2cf.com/ http://www.how2cf.com/http://www.how2cf.com/
http://www.how2cf.com/ 

-Original Message-
From: Michael Wolfe [mailto:[EMAIL PROTECTED]
Sent: 03 February 2004 05:05
To: CF-Talk
Subject: RE: Far Cry

Lots of features. Difficult to manage.

I've been playing with it for a few weeks, and while I like the
content
management functions, I don't like the fact that you need to dig into
the
code in order to create new templates. It seems much too complex for
its
target audience.

--

Michael Wolfe
[EMAIL PROTECTED]

 _

From: Sparrow-Hood, Walter [mailto:[EMAIL PROTECTED]
Sent: Monday, February 02, 2004 3:34 PM
To: CF-Talk
Subject: Far Cry

Is anybody using FarCry?What has been your experience?We're
thinking
about using it to manage about 12+ global sites.

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




RE: Far Cry

2004-02-03 Thread Bailey, Neal
Thanks Neil,

 
I figured as much... Now all I need to do is figure out how to install it. 

 
PS. The site is working good from in Dallas Texas but it's terribly slow. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_

From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 03, 2004 8:46 AM
To: CF-Talk
Subject: RE: Far Cry

 
Hey Neal,

If its a first time install you need the FULL install.The Core is what it
says...the Core components which drive and run the system (Admin site)
Aura is the sample site build using CSS and a limited amount of FarCry
features for use.FourQ is the COAPI (Content Object Application
Programming Interface)

HTH

N

_

From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: 03 February 2004 14:42
To: CF-Talk
Subject: RE: Far Cry

OK all of this FarCry talk is getting me interested in trying it. I'm on the
site now but I'm confused to which file to download to get started. Is it
the Full install, the Aura, or Core? Or do I need all three. I'm sure the
full install would be the one to get first but I'm not sure if I need the
others. 

Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
_

From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 03, 2004 5:52 AM
To: CF-Talk
Subject: RE: Far Cry

Yes, I have heard of this - mainly from people in the US?I will ping them
and see whats up.I know there is a problem with one developer in FLA.

N

_

From: Tim Laureska [mailto:[EMAIL PROTECTED] 
Sent: 03 February 2004 12:00
To: CF-Talk
Subject: RE: Far Cry

I just tried to get to their web site and it appears down ??

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 03, 2004 6:22 AM
To: CF-Talk
Subject: RE: Far Cry

Its very good.It takes a little getting used to; but the underlying
core
code is sound and allows you to build very nice looking sites in very
little
time.

and its free :-)We have all seen or worked on (and some even built)
CMS
tools which are the dogs etc... but this really has got to be one of the
best I have worked with in the open source market..

Its based loosely on Spectra methodologies of Types, Objects and
Handlers
etc..but where Spectra lacked , FarCry pulls it all together!

N

_

From: Simon Horwith [mailto:[EMAIL PROTECTED] 
Sent: 03 February 2004 11:03
To: CF-Talk
Subject: RE: Far Cry

I don't use it, but Lucas Sherwood (Macromedia) built the London CFUG
site
with it (http://www.ukcfug.org) along with the CFUG Manager (Niklas) and
he
seems to like it.

~Simon
Simon Horwith
CTO, Etrilogy Ltd.
Member of Team Macromedia
Macromedia Certified Instructor
Certified Advanced ColdFusion MX Developer
Certified Flash MX Developer
CFDJList - List Administrator
http://www.how2cf.com/ http://www.how2cf.com/http://www.how2cf.com/
http://www.how2cf.com/
http://www.how2cf.com/
http://www.how2cf.com/ 

-Original Message-
From: Michael Wolfe [mailto:[EMAIL PROTECTED]
Sent: 03 February 2004 05:05
To: CF-Talk
Subject: RE: Far Cry

Lots of features. Difficult to manage.

I've been playing with it for a few weeks, and while I like the
content
management functions, I don't like the fact that you need to dig into
the
code in order to create new templates. It seems much too complex for
its
target audience.

--

Michael Wolfe
[EMAIL PROTECTED]

 _

From: Sparrow-Hood, Walter [mailto:[EMAIL PROTECTED]
Sent: Monday, February 02, 2004 3:34 PM
To: CF-Talk
Subject: Far Cry

Is anybody using FarCry?What has been your experience?We're
thinking
about using it to manage about 12+ global sites.

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




Form Name as Variable?

2004-01-29 Thread Bailey, Neal
Hello all,

 
This seems simple... but I can't figure it out... 

 
I need to set a Form Name as a variable. 

 
Example: if I have a form that generates a list like:

 
stateForm1 = TX,CA,MI,UT,FL
stateForm2 = TX,UT,FL
stateForm3 = TX,WA

 
How can I set stateForm1 as its own variable?

 
Hope this makes sense.

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Keyword Tracking?

2004-01-15 Thread Bailey, Neal
Thanks Geoff,

 
I had already found this his site. Parsing the keywords from one type of
search engine is the easy part but what I am trying to do is collect the
referrer keywords used on all SEs or at least the most popular ones. I kind
of have something working but, I run into issue with Overture and its
affiliates. Overture is using the Inktomi technology and for some reason
they do not refer directly to the sites they list in the results instead it
looks like they pass it to some type of redirect page first therefore losing
refer. I'm sure this has something to do with their pay for placement
system. 

 
Thanks for the link though... its going to the bookmarks. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

 
_

From: Geoff Bowers [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 14, 2004 10:17 PM
To: CF-Talk
Subject: Re: Keyword Tracking?

 
Bailey, Neal wrote:
 Google Search String
 http://www.google.com/search?sourceid=navclient
http://www.google.com/search?sourceid=navclient 

http://www.google.com/search?sourceid=navclientie=UTF-8oe=UTF-8q=My+Keyw
 ords ie=UTF-8oe=UTF-8q=My+Keywords

Brandon Purcell posted something about tracking Google keywords (are 
there any others worth knowing about ;) on his blog:
http://www.bpurcell.org/googlesearches.cfm
http://www.bpurcell.org/googlesearches.cfm 

-- geoff
http://www.daemon.com.au/ http://www.daemon.com.au/ 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Keyword Tracking?

2004-01-15 Thread Bailey, Neal
Hey thanks Graig,

 
This works great... seems a lot more simple than what I had started. I
tested on many SEs and it worked great. I did notice that it did not work on
Overture and their affiliates. This is an issue I had with my code also. Do
you have any thoughts on this? Also do you have a list of Search Engines
your code has trouble with? I will try to expand on it and will send you
what ever I come up with... Hopefully it will be useful to all, should be
good to see what keywords are delivering traffic to your sites. 

 
Thanks again. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

 
_

From: Craig Dudley [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 15, 2004 6:16 AM
To: CF-Talk
Subject: RE: Keyword Tracking?

 
I had a go at somehting like this a while back, it's 90% there, but not
quite right for a few obscure search engines, feel free to modify this
is it helps. The 'paramList' and the order of it are the important
factors.

(Just stick this is your application file)

cfif len(cgi.HTTP_REFERER)
cfif find(?, cgi.HTTP_REFERER)
cfset paramList = q,p,terms,search,query,qkw
cfset strStart = find(?, cgi.HTTP_REFERER)
cfset referer_queryString =
right(cgi.http_referer,len(cgi.HTTP_REFERER)-strStart)
cfset referer_url = left(cgi.HTTP_REFERER,(strStart-1))
cfloop list=#referer_queryString# delimiters= index=i
cfif listfind(paramList,listfirst(i,=))
 cfset variables.searchPhrase = listlast(i,=)
/cfif
/cfloop
/cfif
/cfif
cfif isdefined(variables.searchPhrase)
do something with the phrase
/cfif

Good luck,

Craig.

-Original Message-
From: Geoff Bowers [mailto:[EMAIL PROTECTED] 
Sent: 15 January 2004 04:17
To: CF-Talk
Subject: Re: Keyword Tracking?

Bailey, Neal wrote:
 Google Search String
 http://www.google.com/search?sourceid=navclient
http://www.google.com/search?sourceid=navclient 

http://www.google.com/search?sourceid=navclientie=UTF-8oe=UTF-8q=My+
Keyw
 ords ie=UTF-8oe=UTF-8q=My+Keywords

Brandon Purcell posted something about tracking Google keywords
(are 
there any others worth knowing about ;) on his blog:
 http://www.bpurcell.org/googlesearches.cfm
http://www.bpurcell.org/googlesearches.cfm 

-- geoff
http://www.daemon.com.au/ http://www.daemon.com.au/
_
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Keyword Tracking?

2004-01-13 Thread Bailey, Neal
Not sure if anyone saw this as I did not receive any responses. I think also
I might have screwed the email up as I posted it to another list at the same
time, Sorry about that. 

 
Is it possible to extract the keywords from a referring URL coming from a
search engine? The biggest problem I see is that every search engines
referring string is different. I guess I could try to detect which SE it's
coming from and then run a specific procedure to strip out the key words.
Not sure how efficient this would be though as I think SEs are always
changing the way they output their search string. Any ideas on this... could
I maybe use the log files in some way. Any ideas... 

 
Below is how I see the referring links from the particular SE. Thanks for
any advice on this. 

 
MSN Search String
http://search.msn.com/pass/results.asp?RS=CHECKED
http://search.msn.com/pass/results.asp?RS=CHECKEDFORM=MSNHM1v=1q=q=My+K
eywordscp=1252 FORM=MSNHM1v=1q=q=My+Keywordscp=1252

 
Google Search String
http://www.google.com/search?sourceid=navclient
http://www.google.com/search?sourceid=navclientie=UTF-8oe=UTF-8q=My+Keyw
ords ie=UTF-8oe=UTF-8q=My+Keywords

 
Yahoo Search String
http://search.yahoo.com/search?p=Key+Words
http://search.yahoo.com/search?p=Key+Wordsei=UTF-8fr=fp-tab-web-tcop=mss
tab ei=UTF-8fr=fp-tab-web-tcop=msstab=

 
Overture Search String
http://www.overture.com/d/search/?type=home
http://www.overture.com/d/search/?type=homemkt=usKeywords=Key+Words
mkt=usKeywords=Key+Words

Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

-Original Message-
From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 12, 2004 11:34 AM
To: '[EMAIL PROTECTED]'; CF-Talk
Subject: Keyword Tracking?

 
Hello folks...

 
I am about to start up a new project that includes building a site statistic
application for our websites. I know you are probable thinking why not use
the many that exist already like Webtrends. 

 
The main issue I am faced with is that we have 15 thousand websites that are
actually all the same site. What we have are 15 thousand agents that have
custom configured websites, they basically go into a studio area and
configure all their settings from layout/design, color, content, links, and
a few other things they can add on the fly, then their website is created
for them once the finish the setup. 

 
So what I would like to do is store all the referrer links coming to each
site and build a chart for each agent that will tell them where their
traffic is coming from and what keywords people are using to find their
sites. 

 
So I am looking for some insight on where to start with this. I need a way
to strip out all the key words from a URL and then store them in a db for
reporting. I have found something on CFLib.org but it only gives me keywords
Google referrers. Does anyone have any ideas on code that will tell me the
keywords coming from all search engines? 

 
Thanks for any input. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Keyword Tracking?

2004-01-13 Thread Bailey, Neal
Raymond,

 
I can't seem to find any thing there that helps with what I am tying to do. 

 
Though thanks for the link, it's in my Favs now. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

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 are not the named addressee you should not disseminate, distribute or
copy this e-mail.Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your
system.If you are not the intended recipient you are hereby notified that
disclosing, copying, distributing or taking any action in reliance on the
contents of this information is strictly prohibited.Thank you.
-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 9:51 AM
To: CF-Talk
Subject: RE: Keyword Tracking?

 
I'm pretty sure Samual Neff designed some code for this. Check his blog at
http://www.rewindlife.com/ http://www.rewindlife.com/ 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Count Orders by Month - Help

2004-01-05 Thread Bailey, Neal
Hey guys, 

 
I need a little direction... 

 
I am trying to count orders placed for each month. I have an EnteredDate
field and all I am trying to do is display/count how many orders were placed
for each particular month. For some reason I cannot get this to work. I am
using SQL and MX 6.1. 

 
Can someone show me a snippet of code to start with... 

 
Once I get the values, I want to cfchart it. This I can do... but I always
have problem with dates and SQL.

 
Also since it's obvious I suck at SQL, is there some type of program that
can help me write SQL statements. I usually can figure it out but my biggest
problem is remembering how to format everything (I waste so much on this).
It would be great if there was something like Dreamweaver where it has a
drop down list of options to choose from as you start to type. Well I guess
I will stick with my 1200 page Sams book. 

 
Thanks,
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Space between images

2003-12-31 Thread Bailey, Neal
Also try adding (hspace=0 vspace=0) to the image tags. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

 
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 are not the named addressee you should not disseminate, distribute or
copy this e-mail.Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your
system.If you are not the intended recipient you are hereby notified that
disclosing, copying, distributing or taking any action in reliance on the
contents of this information is strictly prohibited.Thank you.

 
-Original Message-
From: Charlie Griefer [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 31, 2003 10:27 AM
To: CF-Talk
Subject: Re: Space between images

 
remove line breaks in the code.makes it harder to read, i know, but should
resolve the space issue.

- Original Message - 
From: Shahzad.Butt 
To: CF-Talk 
Sent: Wednesday, December 31, 2003 9:22 AM
Subject: Space between images

Folowing is code to show buttons (each button is an image) in my page

table cellpadding=0 cellpadding=0width=100%
tr
 td
 CFOutput query=GetAllUnitPromotionTypeName
cfswitch
_expression_=#GetAllUnitPromotionTypeName.PK_UnitPromotionType_ID#
CFCase value=1
 A
href="">
.PK_UnitPromotionType_ID# target=Right class=smlimg align=left
border=0 name=a src="">
/CFCase
CFCase value=6
 A
href="">
.PK_UnitPromotionType_ID# target=Right class=smlimg align=left
border=0 name=b src="">
/CFCase
CFCase value=7
 A
href="">
.PK_UnitPromotionType_ID# target=Right class=smlimg align=left
border=0 name=c src="">
/CFCase
/cfswitch
 /cfoutput
 /td
/tr
/table

Problem is that there is space between each button however i want not to
have space between them and look like a strip.

Thansk

Shahzad.Butt
Ph:+44 (0) 1992 701 722
Fax: +44 (0) 1992 701 604
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




CMS Solutions

2003-12-31 Thread Bailey, Neal
Does anyone know of a good CMS in ColdFusion, possibly one that has nice URL
structure? 

Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




JavaScript Issue on CFMX 6.1

2003-12-17 Thread Bailey, Neal
Hey guys,

 
I need a little _javascript_ help. I use the following script to validate two
form fields. It's an either or script and it works on an ASP page but when
running on CF MX 6.1 it only partially works. When you get prompted to fill
in the requested field and select OK to continue it still process the form
instead of halting. Any ideas... 

 
!--- Start of Validation Script ---
script Language=_javascript_
 !--
 function Form1_Validator(theForm)
 {

 
if ((theForm.EMailaddress.value == )  (theForm.BusinessPhone.value ==
)  (theForm.HomePhone.value == ))
{
alert(Please enter a value for a \Phone Number\ or the \EMail
Address\ field.);
theForm.EmailAddress.focus();
return (false);
}

 
return (true);
 }
 --
 /script
!--- End of Validation Script ---

!--- Start of Form ---
form name=form1 method=post
action="">
pg=15  Form1_Validator(this)

 
Phone: input type=text name=HomePhone

 
Email: input type=text name=EMailaddress

 
/form
!--- End of Form ---

 
I'm not a _javascript_ person so if you know of a better script that does the
same thing let me know. Thanks. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

 
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 are not the named addressee you should not disseminate, distribute or
copy this e-mail.Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your
system.If you are not the intended recipient you are hereby notified that
disclosing, copying, distributing or taking any action in reliance on the
contents of this information is strictly prohibited.Thank you.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: JavaScript Issue on CFMX 6.1

2003-12-17 Thread Bailey, Neal
Don't all jump in at once here... 

 
At any rate I figured it out... I forgot _javascript_ is CaSsE SeNsItIvE.

 
I had a Sensitive Case... he did not want to be little any more... 

 
Thanks,
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
Phone: 817.255.3720
Fax: 501.694.8929
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

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 are not the named addressee you should not disseminate, distribute or
copy this e-mail.Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your
system.If you are not the intended recipient you are hereby notified that
disclosing, copying, distributing or taking any action in reliance on the
contents of this information is strictly prohibited.Thank you.
-Original Message-
From: MILAN MUSHRAN [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 17, 2003 10:54 AM
To: CF-Talk
Subject: RE: _javascript_ Issue on CFMX 6.1

 
Change the name of the form to theform. Also, try to get into the habit of

using the proper hierarchy -
window.document.formname.fieldname.value for netscape compatibility.

From: Bailey, Neal [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: _javascript_ Issue on CFMX 6.1
Date: Wed, 17 Dec 2003 10:25:38 -0600

Hey guys,

I need a little _javascript_ help. I use the following script to validate two
form fields. It's an either or script and it works on an ASP page but when
running on CF MX 6.1 it only partially works. When you get prompted to fill
in the requested field and select OK to continue it still process the 
form
instead of halting. Any ideas...

!--- Start of Validation Script ---
script Language=_javascript_
!--
function Form1_Validator(theForm)
{

 if ((theForm.EMailaddress.value == )  (theForm.BusinessPhone.value 
==
)  (theForm.HomePhone.value == ))
 {
alert(Please enter a value for a \Phone Number\ or the \EMail
Address\ field.);
theForm.EmailAddress.focus();
return (false);
 }

 return (true);
}
--
/script
!--- End of Validation Script ---


!--- Start of Form ---
form name=form1 method=post
action="">
t
 pg=15  Form1_Validator(this)

Phone: input type=text name=HomePhone

Email: input type=text name=EMailaddress

/form
!--- End of Form ---

I'm not a _javascript_ person so if you know of a better script that does the
same thing let me know. Thanks.

Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

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 are not the named addressee you should not disseminate, distribute 
or
copy this e-mail.Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your
system.If you are not the intended recipient you are hereby notified that
disclosing, copying, distributing or taking any action in reliance on the
contents of this information is strictly prohibited.Thank you.



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




  1   2   >