RE: ARGH! - Three Months in the future query problem

2006-05-18 Thread Adrian Lynch
You might want to test the boundary cases because the time portion of
datetimes can cause trouble for you.

Adrian

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]
Sent: 18 May 2006 05:28
To: CF-Talk
Subject: Re: ARGH! - Three Months in the future query problem


Duh!

This does it:

WHERE event_date  #threemonths# and
   event_date = #startDATE#

See! Getting away from the computer and thinking about things while
walking your dogs really helps!!


 cfset startDATE = #now()#
 cfset threemonths = DateAdd(m,3,startDATE)

 cfquery name=calendar
 SELECT
 id, event_date, event_name FROM events
 WHERE month(event_date) = #month(startDATE)#
   and event_date  #threemonths#
   and year(event_date) = #year(startDATE)#
 ORDER BY event_date,event_time ASC
 /cfquery



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240876
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: ARGH! - Three Months in the future query problem

2006-05-18 Thread Jim McAtee
Depends on what you're trying to do.  Do you want everything between today 
and the date three months from today?  For instance 5/17/2005 to 
8/17/2005.  Or do you want everthing from the beginning of May through the 
end of July?

The latter could be done with

cfset startdate = CreateDate(Year(Now()), Month(Now()), 1)
cfset threemonths = DateAdd(m, 3, startdate)
cfset enddate = CreateDate(Year(threemonths), Month(threemonths),
DaysInMonth(threemonths))

WHERE event_date BETWEEN startdate AND enddate



- Original Message - 
From: Les Mizzell [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, May 17, 2006 10:28 PM
Subject: Re: ARGH! - Three Months in the future query problem


 Duh!

 This does it:

 WHERE event_date  #threemonths# and
   event_date = #startDATE#

 See! Getting away from the computer and thinking about things while
 walking your dogs really helps!!


 cfset startDATE = #now()#
 cfset threemonths = DateAdd(m,3,startDATE)

 cfquery name=calendar
 SELECT
 id, event_date, event_name FROM events
 WHERE month(event_date) = #month(startDATE)#
   and event_date  #threemonths#
   and year(event_date) = #year(startDATE)#
 ORDER BY event_date,event_time ASC
 /cfquery 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240877
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: ARGH! - Three Months in the future query problem

2006-05-18 Thread Jim McAtee
Whoops.  Add just two months to get this month plus the next two.

 DateAdd(m, 3, startdate)


- Original Message - 
From: Jim McAtee [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Thursday, May 18, 2006 3:15 AM
Subject: Re: ARGH! - Three Months in the future query problem


 Depends on what you're trying to do.  Do you want everything between 
 today
 and the date three months from today?  For instance 5/17/2005 to
 8/17/2005.  Or do you want everthing from the beginning of May through 
 the
 end of July?

 The latter could be done with

 cfset startdate = CreateDate(Year(Now()), Month(Now()), 1)
 cfset threemonths = DateAdd(m, 3, startdate)
 cfset enddate = CreateDate(Year(threemonths), Month(threemonths),
DaysInMonth(threemonths))

 WHERE event_date BETWEEN startdate AND enddate



 - Original Message - 
 From: Les Mizzell [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Wednesday, May 17, 2006 10:28 PM
 Subject: Re: ARGH! - Three Months in the future query problem


 Duh!

 This does it:

 WHERE event_date  #threemonths# and
   event_date = #startDATE#

 See! Getting away from the computer and thinking about things while
 walking your dogs really helps!!


 cfset startDATE = #now()#
 cfset threemonths = DateAdd(m,3,startDATE)

 cfquery name=calendar
 SELECT
 id, event_date, event_name FROM events
 WHERE month(event_date) = #month(startDATE)#
   and event_date  #threemonths#
   and year(event_date) = #year(startDATE)#
 ORDER BY event_date,event_time ASC
 /cfquery 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240878
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


Coldfusion phpBB

2006-05-18 Thread Luke Freeman
Hi to anyone that can help. I have a website with a coldfusion login system
which works fine. However, i have recently intergraded a phpBB forum to the
site (clients request not my idea). I have managed to link the username /
password tables to my exisiting coldfusion site, so when someone registers
via the coldfusion script it automatically creates them a phpBB login too.
 
The problem that I am facing is that when a user logs into the coldfusion
site they have to also login to phpBB seperatly. I have used CFHTTP to try
and force a login via phpBB but to no joy. Below is the script.. 
 
!-- log into message board --
CFHTTP method=post url=/board/login.php resolveurl=yes
CFHTTPPARAM type=formfield name=username value=test
CFHTTPPARAM type=formfield name=password value=test
CFHTTPPARAM type=formfield name=redirect value=
CFHTTPPARAM type=formfield name=autologin value=1 
CFHTTPPARAM type=formfield name=login value=
/CFHTTP

Now the above code does sucesfully authenticate the user with phpBB and log
them in, but it does not save the session cookie so when the user navigates
away they are no longer logged in to phpBB. I have done some digging about
and found that the session cookie for phpBB is called php2mysql_sid.

Does anyone know how to get this working? Probably a really simple
solution. :o/

cheers! 

 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240879
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: Coldfusion phpBB

2006-05-18 Thread Jim
The way I understand it, since cfhttp is run on the server, not on the 
client, then all you are doing is logging the server into phBB.
I think you will probably have to use javascript or a meta refresh to 
send the login variables to the server from the client, that way the 
client will get logged in to phBB.


Luke Freeman wrote:
 Hi to anyone that can help. I have a website with a coldfusion login system
 which works fine. However, i have recently intergraded a phpBB forum to the
 site (clients request not my idea). I have managed to link the username /
 password tables to my exisiting coldfusion site, so when someone registers
 via the coldfusion script it automatically creates them a phpBB login too.
  
 The problem that I am facing is that when a user logs into the coldfusion
 site they have to also login to phpBB seperatly. I have used CFHTTP to try
 and force a login via phpBB but to no joy. Below is the script.. 
  
 !-- log into message board --
 CFHTTP method=post url=/board/login.php resolveurl=yes
 CFHTTPPARAM type=formfield name=username value=test
 CFHTTPPARAM type=formfield name=password value=test
 CFHTTPPARAM type=formfield name=redirect value=
 CFHTTPPARAM type=formfield name=autologin value=1 
 CFHTTPPARAM type=formfield name=login value=
 /CFHTTP

 Now the above code does sucesfully authenticate the user with phpBB and log
 them in, but it does not save the session cookie so when the user navigates
 away they are no longer logged in to phpBB. I have done some digging about
 and found that the session cookie for phpBB is called php2mysql_sid.

 Does anyone know how to get this working? Probably a really simple
 solution. :o/

 cheers! 

  


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240880
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: CFDocument - Sporadic PDF issues, text being jarbled up

2006-05-18 Thread Casey Dougall
I'm thinking this is really more system specific but also due to how the PDF
is generated by Coldfusion. The odd thing in all of this, a client reports a
problem with their PDF. They attach the file and when I open it, of course
it looks exactly as it should.

I've also tested PDF's of the same document using an external programs like
*pdf995 http://www.pdf995.com/* which don't seem to be causing the same
issue.

Lucky that at the moment one of my co-workers has this problem so, looks
like I'm going to have to peak though his system to see what's different vs
mine. Same issue with one of our clients. His system produces this gibberish
yet all of the other computers in his office show the document correctly.

Regards,

Casey

On 5/17/06, Denny Valliant [EMAIL PROTECTED] wrote:

  I'm not sure this is a CFdocument issue.  I have experienced this
 recently
  opening stand alone PDF files.  Several times I have opened PDF files
 and
  the text is mirrored.  I have no idea how or why, but I have experienced
 it
  outside the CF world.


 Where did you get the stand alone PDF's? CF is pretty prolific itself
 nowadays... ;-)




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240881
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: Coldfusion phpBB

2006-05-18 Thread Katz, Dov B \(IT\)
Take a look at this...
http://www.houseoffusion.com/cf_lists/messages.cfm/forumid:4/threadid:57
27

If you do this approach, you will need to CFCOOKIE (set cookies) to the
user, based on the CFHTTP.ResponseHeader[Cookie] which phpbb comes
back, since that's how phpbb maintains sessions...

If you do that, you'll probably need to send the user to a page which JS
redirects to the phpbb app, but at least this will allow you to log into
phpbb on the backend.

At least, this is what I think would work in your case.  Only other
thing, is that you end up with 2 sessions. A CF session, and a PHP
session...  In order to keep the 2 in sync, you'd need to do something
creative, like use a CFM file in CF to pipe out a transparent GIF when
viewing PHP pages, and a PHP page which does the same, for inclusion on
CFM pages. Then you'll end up maintaining the 2 sessions
simultaneously... Ugly, but it should work 99% of the time. (just make
sure both app servers have the same timeout for sessions)


Dov


-Original Message-
From: Luke Freeman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 18, 2006 5:38 AM
To: CF-Talk
Subject: Coldfusion  phpBB

Hi to anyone that can help. I have a website with a coldfusion login
system which works fine. However, i have recently intergraded a phpBB
forum to the site (clients request not my idea). I have managed to link
the username / password tables to my exisiting coldfusion site, so when
someone registers via the coldfusion script it automatically creates
them a phpBB login too.
 
The problem that I am facing is that when a user logs into the
coldfusion site they have to also login to phpBB seperatly. I have used
CFHTTP to try and force a login via phpBB but to no joy. Below is the
script.. 
 
!-- log into message board --
CFHTTP method=post url=/board/login.php resolveurl=yes
CFHTTPPARAM type=formfield name=username value=test
CFHTTPPARAM type=formfield name=password value=test
CFHTTPPARAM type=formfield name=redirect value=
CFHTTPPARAM type=formfield name=autologin value=1 
CFHTTPPARAM type=formfield name=login value= /CFHTTP

Now the above code does sucesfully authenticate the user with phpBB and
log them in, but it does not save the session cookie so when the user
navigates away they are no longer logged in to phpBB. I have done some
digging about and found that the session cookie for phpBB is called
php2mysql_sid.

Does anyone know how to get this working? Probably a really simple
solution. :o/

cheers! 

 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240882
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: CFDocument - Sporadic PDF issues, text being jarbled up

2006-05-18 Thread Jim Wright
On 5/17/06, Casey Dougall [EMAIL PROTECTED] wrote:
 CFdocument creates PDF's that open fine on most computers, there are are
 times when it opens with garbled text. Not legitable at all. It's only
 certain people and the actual version of Acrobat doesn't seem to be the
 issue. Anyone  lock down the reasoning behind this?


This often happens when the font that is used in the document is not
available on the target system, and is not embedded in the PDF.
Acrobat tries to do a font substitution and gets it wrong.  There is a
fontembed attribute in cfdocument.

-- 
Jim Wright
Wright Business Solutions
[EMAIL PROTECTED]
919-417-2257

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240883
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: Frameworks

2006-05-18 Thread george . earl
So what happens when you adopt a framework and you build a bunch of stuff using 
this framework and the framework has one of its regularly scheduled updates to 
a new version?

What are the implications for the existing applications written using the old 
version of the framework? 

I assume you can either continue to use the old version of the framework or you 
can migrate the application to the new one. 

Typically what is involved in updating an application to a new version of a 
framework? Does it require an extensive rewrite of the application or are old 
framework modules simply replaced with new ones? 

What if you have this huge application that is growing and will continue to 
grow into the foreseeable future and you want to keep in step with the updates 
to the framework you have chosen? How do you handle this?

Thanks!

George

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240884
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: OOD/Design Patterns and ColdFusion.

2006-05-18 Thread mark
Hey there,

I'm am further behind than you are...but if I wanted to learn MVC and
objects I would do the quick start guide in Model Glue and then build a few
really small apps.  My understanding is that model glue enforces MVC and
OOP.  I bet you would understand alot more after a few hours of playing
around with Model Glue than after reading a few books.  Get the books and
read them over time as you play with Model Glue.

Mark

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 16, 2006 1:21 PM
To: CF-Talk
Subject: RE: OOD/Design Patterns and ColdFusion.


That doesn't discuss code though. It's just ideas? I tried browsing the book
and it didn't work.

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Massimo Foti [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 16, 2006 12:19 PM
To: CF-Talk
Subject: Re: OOD/Design Patterns and ColdFusion.


 This book: http://www.oreilly.com/catalog/hfdesignpat/ ?

Get it. You will not regret.

There is also an upcoming title from the same series that looks good:
http://www.oreilly.com/catalog/hfobjects/




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240885
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


OT: Dreamweaver, WebDAV and PHP

2006-05-18 Thread Rick Root
I'm not sure where else to post this but maybe some of you folks out 
there might know the answer.

My web server, running IIS 6, supports both Coldfusion and PHP.  I've 
recently enabled WebDAV for two dreamweaver users who want to transfer 
files securely using the check-in/check-out/sync processes built into 
dreamweaver.

Unfortunately, they are unable to retrieve any PHP files.  I had the 
same problem, I tried to sync the entire web site and all the html and 
image files came down fine, but ALL of the php files generated the 
following error:

**
/development/index.php - error occurred - An HTTP error occurred - 
cannot get index.php.  Access Denied.  The file may not exist, or there 
could be a permission problem.

File activity incomplete. 1 file(s) or folder(s) were not completed.

Files with errors: 1
/development/index.php
**


The file DOES exist, and the permissions are exactly the same on all the 
files, because I manually set the permissions on the web root and had it 
apply to all subfolders and files.

I can't figure out why it's  failing to retrieve the PHP files...

Rick


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240886
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: Frameworks

2006-05-18 Thread Michael Traher
depends on the framework and the update.

most framework updates try and maintain backwards compatibility, although
fusebox 3 to fusebox 4 was an exception to this.

Your choices are always to stay put or upgrade with any associated effort
involved, same as with any software.

To stay put cuts you out of furture advantages and sometimes you are forced
to upgrade by circumstances (like a CF server upgrade which means your old
framework code no longer works).

But I guess you know all that :-)

On 5/18/06, george. earl @ ssa. gov george. earl @ ssa. gov 
[EMAIL PROTECTED] wrote:

 So what happens when you adopt a framework and you build a bunch of stuff
 using this framework and the framework has one of its regularly scheduled
 updates to a new version?

 What are the implications for the existing applications written using the
 old version of the framework?

 I assume you can either continue to use the old version of the framework
 or you can migrate the application to the new one.

 Typically what is involved in updating an application to a new version of
 a framework? Does it require an extensive rewrite of the application or are
 old framework modules simply replaced with new ones?

 What if you have this huge application that is growing and will continue
 to grow into the foreseeable future and you want to keep in step with the
 updates to the framework you have chosen? How do you handle this?

 Thanks!

 George

 

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


Re: Coldfusion phpBB

2006-05-18 Thread Rick Root
Luke,

Here's some code I wrote to use CF to log into phpBB and then send a 
private message.. you can probably get whaty ou need out of it.

http://www.opensourcecf.com/1/2006/05/Using-coldfusion-to-log-into-a-phpBB-system.cfm

http://tinyurl.com/evtcg

Rick

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


Re: OT: Dreamweaver, WebDAV and PHP

2006-05-18 Thread Rick Root
Also... even though it says an HTTP error occurred, when I look at the 
IIS log files, the return code is 200.

Rick Root wrote:
 I'm not sure where else to post this but maybe some of you folks out 
 there might know the answer.
 
 My web server, running IIS 6, supports both Coldfusion and PHP.  I've 
 recently enabled WebDAV for two dreamweaver users who want to transfer 
 files securely using the check-in/check-out/sync processes built into 
 dreamweaver.
 
 Unfortunately, they are unable to retrieve any PHP files.  I had the 
 same problem, I tried to sync the entire web site and all the html and 
 image files came down fine, but ALL of the php files generated the 
 following error:
 
 **
 /development/index.php - error occurred - An HTTP error occurred - 
 cannot get index.php.  Access Denied.  The file may not exist, or there 
 could be a permission problem.
 
 File activity incomplete. 1 file(s) or folder(s) were not completed.
 
 Files with errors: 1
 /development/index.php
 **
 
 
 The file DOES exist, and the permissions are exactly the same on all the 
 files, because I manually set the permissions on the web root and had it 
 apply to all subfolders and files.
 
 I can't figure out why it's  failing to retrieve the PHP files...


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240889
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: CFHTTP Charset Question

2006-05-18 Thread Claude Schneegans
 There should be another argument called 'encoding'. That would end
lots of confusion between the two.

I think the confusion lies in the W3C standard first, with META tags like:

META HTTP-EQUIV=Content-Type CONTENT=text/html; charset=UTF-8

Most charsets are both a charset and an encoding system. UTF is a kind 
of exception.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240890
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: embed image in cfmail

2006-05-18 Thread kurt schroeder
that get's me to a general docs help page. is there a specific area that has 
the answer i'm looking for?
thanks
kes 
 check out
 http://livedocs.macromedia.
 com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.
 htm?context=ColdFusion_Documentationfile=part_cfm.htm
 
 DK
 
 On 5/17/06, kurt schroeder [EMAIL PROTECTED] wrote:
  Is there a way to embed an image in a cfmail without using a web 
 reference.
 
  Thanks
  KES
 
  

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240891
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 and Quickbooks

2006-05-18 Thread Richard Dillman
 I have a client that wants to integrate her Cart with her Quickbooks.
I dont currently have a cart set up yet so I'm looking for  suggestions.

I'd like  easily to implament one with:
--CFMX7
--Quickbooks 2005
--SQL Server 2005
--Windows 2003 Server

I have total controll of the box.

-- 
Richard Dillman
[EMAIL PROTECTED]
(317) 916-8341

The most important step is always the first one.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240892
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: embed image in cfmail

2006-05-18 Thread Burns, John D
Look at CFMAILPARAM, especially the CONTENTID attribute of it in CFMX 7.
You give it a contentID and use that in your source for your html.

Look at
http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/comm
on/html/wwhelp.htm?context=ColdFusion_Documentationfile=part_cfm.htm

And there's a section entitled To display a file inline in a mail
message that tells you all about it. 


John Burns
Certified Advanced ColdFusion MX Developer
Wyle Laboratories, Inc. | Web Developer
 

-Original Message-
From: kurt schroeder [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 18, 2006 9:59 AM
To: CF-Talk
Subject: Re: embed image in cfmail

that get's me to a general docs help page. is there a specific area that
has the answer i'm looking for?
thanks
kes 
 check out
 http://livedocs.macromedia.
 com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.
 htm?context=ColdFusion_Documentationfile=part_cfm.htm
 
 DK
 
 On 5/17/06, kurt schroeder [EMAIL PROTECTED] wrote:
  Is there a way to embed an image in a cfmail without using a web
 reference.
 
  Thanks
  KES
 
  



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240893
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: embed image in cfmail

2006-05-18 Thread kurt schroeder
just saw that. and thanks!!
Look at CFMAILPARAM, especially the CONTENTID attribute of it in CFMX 7.
You give it a contentID and use that in your source for your html.

Look at
http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/comm
on/html/wwhelp.htm?context=ColdFusion_Documentationfile=part_cfm.htm

And there's a section entitled To display a file inline in a mail
message that tells you all about it. 


John Burns
Certified Advanced ColdFusion MX Developer
Wyle Laboratories, Inc. | Web Developer
 

-Original Message-
From: kurt schroeder [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 18, 2006 9:59 AM
To: CF-Talk
Subject: Re: embed image in cfmail

that get's me to a general docs help page. is there a specific area that
has the answer i'm looking for?
thanks
kes

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240895
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: embed image in cfmail

2006-05-18 Thread kurt schroeder
CFmail part will do it as follows:
cfmail ** type=html
cfmailparam file=http://0.0.0.0/images/thsimg1.gif; contentid=myimg1 
disposition=inline
img src=cid:myimg1
/cfmail
Thanks
KES
 that get's me to a general docs help page. is there a specific area 
 that has the answer i'm looking for?
 thanks
 kes 
  check out
  http://livedocs.macromedia.
  com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.
  htm?context=ColdFusion_Documentationfile=part_cfm.htm
  
  DK
  
  On 5/17/06, kurt schroeder [EMAIL PROTECTED] wrote:
   Is there a way to embed an image in a cfmail without using a web 
  reference.
  
   Thanks
   KES
  
   

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240894
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: JRun/CFusion System Properties

2006-05-18 Thread Steve Brownlee
You'd have to write some Java code then, because you're not in
ColdFusion at that point.  A quick search turned up some code...

http://java.sun.com/docs/books/tutorial/essential/system/properties.html




Steve The Boss Brownlee
http://www.orbwave.com/cfjboss

-Original Message-
From: Troy Simpson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 17, 2006 5:17 PM
To: CF-Talk
Subject: Re: JRun/CFusion System Properties

Is there a way to make jrun spit this out when I run the application in
console mode?

For example, I create a start.bat file with the following and run it
from the console (cmd.exe window).

c:\jrun4\bin\jrun -config d:\servers\bin\jvm_jrun01.config -start jrun01
pause


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240896
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 Admin error

2006-05-18 Thread Adkins, Randy
I am now receiving an error when attempting to access the CFMX 7 
administrative page. This is just trying to get to the login page for
CFADMIN.
 

-
The system has attempted to use an undefined value, which usually
indicates a programming error, either in your code or some system code. 
Null Pointers are another name for undefined values. 

-

 
 
Last thing I recall was applying the DW8 Updater 2.
 
Anyone else have(had) this issue?
 
TIA!
 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240900
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: Best way to redirect .htm pages to .cfm?

2006-05-18 Thread Crow T . Robot
I'm digging this old-ass post out of the archives because it seems like it was 
never answered, and I really, really need to get one.

I need to do exactly what the original poster was asking.  I have an old html 
site that is VERY well ranked, and we need to convert to a newer, easier to 
maintain CF site.  My plan was to just create a site-wide 404 error handler, 
then use cfheader to do a 301 redirect.  However, Jim McAtee wrote in this 
thread that it doesn't quite work:

That's what I was concerned about.  I'd heard this years ago but didn't know 
if it was still true. I'm close to an alternative, but... I found out that 
ideally, google and others would like you to return an HTTP 301 (Moved 
Permanently) status code.  I believe it's so they can remove the old page 
from their index.  Which is what I'd like as well. I was able to get a custom 
404 page pointed at a CF template.  Problem now is that no matter what I do 
in the template using CFHEADER, IIS always morphs my 301 HTTP status code 
into a 302 code, with its own page output. If I do a GET using something like 
wfetch, then I can see IIS' output - it has the correct new .cfm page 
location, but a 302 status code. Somehow I think the custom error page 
approach isn't going to get me anywhere do to the way IIS operates.

Has anyone successfully done a 301 redirect WITHOUT using IIS?  I'm hosted in a 
shared environment at CrystalTech, and they flat out refuse to mess with IIS 
for redirects, period.

HELP!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240901
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: QofQ error on function-generated query

2006-05-18 Thread Ben Nadel
Shot in the dark, don't use double quotes:

WHERE type = asset

Should be

WHERE type = 'asset' 

See if that makes a difference.

...
Ben Nadel 
Web Developer
Nylon Technology
350 7th Avenue
Floor 10
New York, NY 10001
212.691.1134
212.691.3477 fax
www.nylontechnology.com
 
You know, like nunchuck skills, bowhunting skills, computer hacking
skills... Girls only want boyfriends who have great skills.
- Napoleon Dynamite
-Original Message-
From: Ken Dunnington [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 18, 2006 12:19 PM
To: CF-Talk
Subject: QofQ error on function-generated query

Okay, this is really baffling me so maybe someone out there can help.
I've got a query that I'm generating using queryNew() and parsing over a
bunch of FTP log files. The query gets created just fine, and I can output
it without errors, but when I try to run a query of queries on it, I get an
error with no details. If I try a simple qofq selecting only one column from
the main query, I get a NullPointerException.
Here is the column list for the main query as it's created in my parsing
method:

cfset var logQuery = queryNew(id,date,time,client_ip,username,method,
uri_stem,proto_status,win_status,bytes_sent,time_taken,filename,type)
/

And here is the QofQ that is giving me errors:

cfquery name=assetStats dbtype=query
SELECT
`date`,`time`,client_ip,username,id,filename,bytes_sent,time_taken
FROM logQuery
WHERE type = asset
/cfquery

(Note that I get the same error using SELECT id and SELECT *)

This is on CF 7.0.1, there are no NULL columns (only a few empty
strings) and I'm executing this QofQ right after the main query is finished
being created (after I trace out it's recordCount.)

Am I missing something here?

--
 Quidquid latine dictum sit, altum sonatur.
- Whatever is said in Latin sounds profound.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240903
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 and Quickbooks

2006-05-18 Thread Mary Jo Sminkey
I have a client that wants to integrate her Cart with her Quickbooks.
I dont currently have a cart set up yet so I'm looking for  suggestions.

There are a number of products out there that can do Quickbooks imports with 
just about any shopping cart. A number of my customers use the Shopping Cart 
Assistant from writeitonce.com. It's particularly nice since it can import into 
lots of products, so can do not only Quickbooks but can import into something 
like UPS Worldship to do your shipping labels as well as handling other 
accounting packages as well. It usually works just by copying the details in 
the order confirmation email but can handle importing from an XML file as well 
if you want something really streamlined. 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240906
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: QofQ error on function-generated query

2006-05-18 Thread Brad Wood
Might also try

WHERE type IS NOT NULL AND lower(type) = asset

Or, specify your data types when you build the query with
queryNew(columnnames,datatypes).

~Brad

-Original Message-
From: Ken Dunnington [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 18, 2006 11:19 AM
To: CF-Talk
Subject: QofQ error on function-generated query

Okay, this is really baffling me so maybe someone out there can help.
I've got a query that I'm generating using queryNew() and parsing over
a bunch of FTP log files. The query gets created just fine, and I can
output it without errors, but when I try to run a query of queries on
it, I get an error with no details. If I try a simple qofq selecting
only one column from the main query, I get a NullPointerException.
Here is the column list for the main query as it's created in my
parsing method:

cfset var logQuery = queryNew(id,date,time,client_ip,username,method,
 
uri_stem,proto_status,win_status,bytes_sent,time_taken,filename,type)
/

And here is the QofQ that is giving me errors:

cfquery name=assetStats dbtype=query
SELECT
`date`,`time`,client_ip,username,id,filename,bytes_sent,time_taken
FROM logQuery
WHERE type = asset
/cfquery

(Note that I get the same error using SELECT id and SELECT *)

This is on CF 7.0.1, there are no NULL columns (only a few empty
strings) and I'm executing this QofQ right after the main query is
finished being created (after I trace out it's recordCount.)

Am I missing something here?

-- 
 Quidquid latine dictum sit, altum sonatur.
- Whatever is said in Latin sounds profound.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240907
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/Flex 2 OO/MVC/RIA/RAD Wizard = Your First Flex 2 App

2006-05-18 Thread dcooper
http://www.dcooper.org for an intro and a screencast demo by the CF team.

If you ever wanted to get into RIA's as a CF developer but didn't think it was 
for you, or thought the on-ramp was too steep, check this out.

You are guaranteed to have your first CF-powered, OO, MVC, Asynchronous, 
Hyper-RAD, ActiveRecord/CRUD, Event-Driven Flex 2 Flash 9 application created, 
against YOUR DB, and have it up and running with validation, edit masking, 
lookups, select lookup-dropdowns, with best-practice code and working in an 
Internet environment (so people don't overwrite each others code IN LESS THAN 
10 MINUTES.

Just install CF 7.0.2 + FlexBuilder + Plugins installed and follow the Wizard 
instructions.

(And then you can show your boss and take the rest of the month off.)

Enjoy.

Damon

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240908
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 and Quickbooks

2006-05-18 Thread Steve Kahn
If your CF cart can handle auth.net as the payment gateway, you can get QB 
integration. Rates are reasonable, I have an 800 number if you want to get more 
info, just contact me offlist.


-- Original Message --
From: Mary Jo Sminkey [EMAIL PROTECTED]
Reply-To: cf-talk@houseoffusion.com
Date:  Thu, 18 May 2006 12:30:12 -0400

I have a client that wants to integrate her Cart with her Quickbooks.
I dont currently have a cart set up yet so I'm looking for  suggestions.

There are a number of products out there that can do Quickbooks imports with 
just about any shopping cart. A number of my customers use the Shopping Cart 
Assistant from writeitonce.com. It's particularly nice since it can import 
into lots of products, so can do not only Quickbooks but can import into 
something like UPS Worldship to do your shipping labels as well as handling 
other accounting packages as well. It usually works just by copying the 
details in the order confirmation email but can handle importing from an XML 
file as well if you want something really streamlined. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240909
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/Flex 2 OO/MVC/RIA/RAD Wizard = Your First Flex 2 App

2006-05-18 Thread dcooper
...so people don't overwrite each other's DB RECORDS... 

 http://www.dcooper.org for an intro and a screencast demo by the CF 
 team.
 
 If you ever wanted to get into RIA's as a CF developer but didn't 
 think it was for you, or thought the on-ramp was too steep, check this 
 out.
 
 You are guaranteed to have your first CF-powered, OO, MVC, 
 Asynchronous, Hyper-RAD, ActiveRecord/CRUD, Event-Driven Flex 2 Flash 
 9 application created, against YOUR DB, and have it up and running 
 with validation, edit masking, lookups, select lookup-dropdowns, with 
 best-practice code and working in an Internet environment (so people 
 don't overwrite each others code IN LESS THAN 10 MINUTES.
 
 Just install CF 7.0.2 + FlexBuilder + Plugins installed and follow the 
 Wizard instructions.
 
 (And then you can show your boss and take the rest of the month off.)
 
 Enjoy.
 
Damon

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240910
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: Replacements/alternatives for CFFILE upload?

2006-05-18 Thread Dirk Sieber
 
 Something is wrong.  I'd look at the network.  Maybe setting 
 the latency
 a little lower or higher or whatever that is could fix something.
 
 Really, you shouldn't have a problem, I've used cffile over a 
 14.4 with
 MB files with no problems, other than slowness, as would be expected.

Hmmm... interesting.  I've actually got someone looking at the network
issue, but other forms of transfer (eg, FTPing a file to the same
server) seem to be fine.

 But if you have even a sluggish network, that normally allows 
 transmission
 of MB files much faster, I'd wonder what's going on.  Have 
 you checked
 the network outside of CF?

See above. :)  I've just done some testing of my own - FTP transfers are
fine - approx 100 KB/sec sustained transfer rates to the server.
However, document uploads still time out.

Thanks,
Dirk
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240911
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: QofQ error on function-generated query

2006-05-18 Thread Ken Dunnington
Thanks guys, I specified the data types, renamed date and time to
ftpdate and ftptime (those were backticks around them, which is the
mysql way) and finally performed date formatting on the value I was
setting for ftpdate and finally got it working!

On 5/18/06, Brad Wood [EMAIL PROTECTED] wrote:
 Might also try

 WHERE type IS NOT NULL AND lower(type) = asset

 Or, specify your data types when you build the query with
 queryNew(columnnames,datatypes).

 ~Brad

 -Original Message-
 From: Ken Dunnington [mailto:[EMAIL PROTECTED]
 Sent: Thursday, May 18, 2006 11:19 AM
 To: CF-Talk
 Subject: QofQ error on function-generated query

 Okay, this is really baffling me so maybe someone out there can help.
 I've got a query that I'm generating using queryNew() and parsing over
 a bunch of FTP log files. The query gets created just fine, and I can
 output it without errors, but when I try to run a query of queries on
 it, I get an error with no details. If I try a simple qofq selecting
 only one column from the main query, I get a NullPointerException.
 Here is the column list for the main query as it's created in my
 parsing method:

 cfset var logQuery = queryNew(id,date,time,client_ip,username,method,

 uri_stem,proto_status,win_status,bytes_sent,time_taken,filename,type)
 /

 And here is the QofQ that is giving me errors:

 cfquery name=assetStats dbtype=query
 SELECT
 `date`,`time`,client_ip,username,id,filename,bytes_sent,time_taken
 FROM logQuery
 WHERE type = asset
 /cfquery

 (Note that I get the same error using SELECT id and SELECT *)

 This is on CF 7.0.1, there are no NULL columns (only a few empty
 strings) and I'm executing this QofQ right after the main query is
 finished being created (after I trace out it's recordCount.)

 Am I missing something here?

 --
  Quidquid latine dictum sit, altum sonatur.
 - Whatever is said in Latin sounds profound.



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240912
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


Create Tabs using XML vs Flash...

2006-05-18 Thread Charles E. Heizer
Hello,
I have been working on an internal site  and I used the tabs provided  
with the cfform type flash. What I want to know is, is there any way  
to make the tabs work using xml? The flash stuff takes to long to  
load and my users are now complaining about the performance.

Thanks,
- Charles

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240913
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: Create Tabs using XML vs Flash...

2006-05-18 Thread Massimo Foti
 I have been working on an internal site  and I used the tabs provided  
 with the cfform type flash. What I want to know is, is there any way  
 to make the tabs work using xml? The flash stuff takes to long to  
 load and my users are now complaining about the performance.

You could try this out:
http://www.olimpo.ch/tmt/tag/tabs/

  
Massimo Foti
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com
  


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240914
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: SOT: Secure FTP and Dreamweaver

2006-05-18 Thread Damien McKenna
On May 15, 2006, at 11:10 AM, Rick Root wrote:
 Of the two recommendations I got (Gene6
 and coreftp), only coreftp actually supports FTP over SSH.
 But coreftp is still in beta.

I've used CoreFTP Server in production a little bit and am (hopefully  
today) going to be using it as our primary file server.  I'm  
particularly keen on how quickly they were to add on a feature I  
requested, even before we bought two licenses for it.  They are also  
very quick on support responses, they gave almost daily updates while  
working on the feature request.

So what needs do you have that you don't think it'd work for you?   
How many concurrent sessions do you foresee?  Have you given it a  
test run yet?

BTW, I've searched several times for an SSH server.  For the past  
~year we've used FreeSSHd but it hasn't been great so am moving to  
CoreFTP Server.  Beyond that I tested a whole bunch of different  
ones, many of which were *way* more expensive than CoreFTP Server  
with some costing almost a grand to get SSH support.

Damien


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240915
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: Create Tabs using XML vs Flash...

2006-05-18 Thread Charles E. Heizer
This is really cool, thanks!

Do I have to import these tags using the CFMX admin web page?

Thanks,
- Charles

On May 18, 2006, at 11:04 AM, Massimo Foti wrote:

 I have been working on an internal site  and I used the tabs provided
 with the cfform type flash. What I want to know is, is there any way
 to make the tabs work using xml? The flash stuff takes to long to
 load and my users are now complaining about the performance.

 You could try this out:
 http://www.olimpo.ch/tmt/tag/tabs/

 
 Massimo Foti
 Tools for ColdFusion and Dreamweaver developers:
 http://www.massimocorner.com
 


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240916
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


Verity Search Powerpoints

2006-05-18 Thread Eric J. Hoffman
Quick feeler to see if anyone else has had such a requirement:

Client needs verity to search within powerpoints, which I believe it can
do.

Trick is, once the keyword is found, he wants that particular slide to
show up, rather than a link to the whole presentation.   Has anyone
dealt with such a thing?

Thanks!



Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4115
mob: 651.245.2717



This message contains confidential information and is intended only for [EMAIL 
PROTECTED] If you are not cf-talk@houseoffusion.com you should not disseminate, 
distribute or copy this e-mail. Please notify [EMAIL PROTECTED] immediately by 
e-mail if you have received this e-mail by mistake and delete this e-mail from 
your system. E-mail transmission cannot be guaranteed to be secure or 
error-free as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses. Eric J. Hoffman therefore does 
not accept liability for any errors or omissions in the contents of this 
message, which arise as a result of e-mail transmission. If verification is 
required please request a hard-copy version.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240917
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: SOT: Secure FTP and Dreamweaver

2006-05-18 Thread Rick Root
Damien McKenna wrote:
 
 So what needs do you have that you don't think it'd work for you?   
 How many concurrent sessions do you foresee?  Have you given it a  
 test run yet?

Well, I decided not to use it because it kept crashing when I installed 
it.   Don't know why, cuz it didn't log anything that I could find.

Featurewise it seemed okay except that it didn't seem to allow directory 
aliases (Filezilla Server does)

Rick

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240918
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: Verity Search Powerpoints

2006-05-18 Thread Rob Wilkerson
I've never known that to be possible, but would love to know if
someone's actually done it.  As far as I know you can only link to a
presentation, not to a slide within a presentation.  It's not like you
can link to presentationurl.ppt?slide=3...can you?

For that matter, I'm not sure Verity can or does make the distinction
between what content is indexed from slide x and what is indexed on
slide n of a given presentation.

On 5/18/06, Eric J. Hoffman [EMAIL PROTECTED] wrote:
 Quick feeler to see if anyone else has had such a requirement:

 Client needs verity to search within powerpoints, which I believe it can
 do.

 Trick is, once the keyword is found, he wants that particular slide to
 show up, rather than a link to the whole presentation.   Has anyone
 dealt with such a thing?

 Thanks!
 


 Eric J. Hoffman
 Managing Partner
 2081 Industrial Blvd
 StillwaterMN55082
 mail: [EMAIL PROTECTED]
 www: http://www.ejhassociates.com
 tel: 651.717.4105
 fax: 651.717.4115
 mob: 651.245.2717

 

 This message contains confidential information and is intended only for 
 [EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com you should not 
 disseminate, distribute or copy this e-mail. Please notify [EMAIL PROTECTED] 
 immediately by e-mail if you have received this e-mail by mistake and delete 
 this e-mail from your system. E-mail transmission cannot be guaranteed to be 
 secure or error-free as information could be intercepted, corrupted, lost, 
 destroyed, arrive late or incomplete, or contain viruses. Eric J. Hoffman 
 therefore does not accept liability for any errors or omissions in the 
 contents of this message, which arise as a result of e-mail transmission. If 
 verification is required please request a hard-copy version.
 

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240919
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: Reactor and transactions

2006-05-18 Thread Matt Williams
I just did a search on some reactor generated files and they do include
cftransaction on Insert queries.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240920
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: Create Tabs using XML vs Flash...

2006-05-18 Thread Massimo Foti
 Do I have to import these tags using the CFMX admin web page?

No. The doc and the samples use cfimport, but you can use cfmodule or 
cf_ as well. Download the zip and look at the source.


Massimo Foti
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240921
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: Create Tabs using XML vs Flash...

2006-05-18 Thread Charles E. Heizer
Thanks!


On May 18, 2006, at 11:55 AM, Massimo Foti wrote:

 Do I have to import these tags using the CFMX admin web page?

 No. The doc and the samples use cfimport, but you can use  
 cfmodule or
 cf_ as well. Download the zip and look at the source.

 
 Massimo Foti
 Tools for ColdFusion and Dreamweaver developers:
 http://www.massimocorner.com
 




 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240922
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: Verity Search Powerpoints

2006-05-18 Thread Eric J. Hoffman
Yeah, its all very out there.  First, I am searching with Microsoft on
the bring up a slide thing; but I guess to your point it is fruitless if
Verity doesn't index it in such a manner. 





Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4115
mob: 651.245.2717



This message contains confidential information and is intended only for [EMAIL 
PROTECTED] If you are not cf-talk@houseoffusion.com you should not disseminate, 
distribute or copy this e-mail. Please notify [EMAIL PROTECTED] immediately by 
e-mail if you have received this e-mail by mistake and delete this e-mail from 
your system. E-mail transmission cannot be guaranteed to be secure or 
error-free as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses. Eric J. Hoffman therefore does 
not accept liability for any errors or omissions in the contents of this 
message, which arise as a result of e-mail transmission. If verification is 
required please request a hard-copy version.


-Original Message-

From: Rob Wilkerson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 18, 2006 1:51 PM
To: CF-Talk
Subject: Re: Verity Search Powerpoints

I've never known that to be possible, but would love to know if
someone's actually done it.  As far as I know you can only link to a
presentation, not to a slide within a presentation.  It's not like you
can link to presentationurl.ppt?slide=3...can you?

For that matter, I'm not sure Verity can or does make the distinction
between what content is indexed from slide x and what is indexed on
slide n of a given presentation.

On 5/18/06, Eric J. Hoffman [EMAIL PROTECTED] wrote:
 Quick feeler to see if anyone else has had such a requirement:

 Client needs verity to search within powerpoints, which I believe it 
 can do.

 Trick is, once the keyword is found, he wants that particular slide to
 show up, rather than a link to the whole presentation.   Has anyone
 dealt with such a thing?

 Thanks!
 


 Eric J. Hoffman
 Managing Partner
 2081 Industrial Blvd
 StillwaterMN55082
 mail: [EMAIL PROTECTED]
 www: http://www.ejhassociates.com
 tel: 651.717.4105
 fax: 651.717.4115
 mob: 651.245.2717

 

 This message contains confidential information and is intended only
for [EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com
you should not disseminate, distribute or copy this e-mail. Please
notify [EMAIL PROTECTED] immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system.
E-mail transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive
late or incomplete, or contain viruses. Eric J. Hoffman therefore does
not accept liability for any errors or omissions in the contents of this
message, which arise as a result of e-mail transmission. If verification
is required please request a hard-copy version.
 

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240923
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: Verity Search Powerpoints

2006-05-18 Thread Eric J. Hoffman
Supposedly you can do presentation.ppt#5 with the number being the
slide.  Its all rather murky reading the forums. 





Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4115
mob: 651.245.2717



This message contains confidential information and is intended only for [EMAIL 
PROTECTED] If you are not cf-talk@houseoffusion.com you should not disseminate, 
distribute or copy this e-mail. Please notify [EMAIL PROTECTED] immediately by 
e-mail if you have received this e-mail by mistake and delete this e-mail from 
your system. E-mail transmission cannot be guaranteed to be secure or 
error-free as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses. Eric J. Hoffman therefore does 
not accept liability for any errors or omissions in the contents of this 
message, which arise as a result of e-mail transmission. If verification is 
required please request a hard-copy version.


-Original Message-

From: Rob Wilkerson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 18, 2006 1:51 PM
To: CF-Talk
Subject: Re: Verity Search Powerpoints

I've never known that to be possible, but would love to know if
someone's actually done it.  As far as I know you can only link to a
presentation, not to a slide within a presentation.  It's not like you
can link to presentationurl.ppt?slide=3...can you?

For that matter, I'm not sure Verity can or does make the distinction
between what content is indexed from slide x and what is indexed on
slide n of a given presentation.

On 5/18/06, Eric J. Hoffman [EMAIL PROTECTED] wrote:
 Quick feeler to see if anyone else has had such a requirement:

 Client needs verity to search within powerpoints, which I believe it 
 can do.

 Trick is, once the keyword is found, he wants that particular slide to
 show up, rather than a link to the whole presentation.   Has anyone
 dealt with such a thing?

 Thanks!
 


 Eric J. Hoffman
 Managing Partner
 2081 Industrial Blvd
 StillwaterMN55082
 mail: [EMAIL PROTECTED]
 www: http://www.ejhassociates.com
 tel: 651.717.4105
 fax: 651.717.4115
 mob: 651.245.2717

 

 This message contains confidential information and is intended only
for [EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com
you should not disseminate, distribute or copy this e-mail. Please
notify [EMAIL PROTECTED] immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system.
E-mail transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive
late or incomplete, or contain viruses. Eric J. Hoffman therefore does
not accept liability for any errors or omissions in the contents of this
message, which arise as a result of e-mail transmission. If verification
is required please request a hard-copy version.
 

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240924
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 and Quickbooks

2006-05-18 Thread Stan Winchester
My son Tim has developed a VB solution that works with CF. I'll send you his 
email off list.

I have a client that wants to integrate her Cart with her Quickbooks.
I dont currently have a cart set up yet so I'm looking for  suggestions.

I'd like  easily to implament one with:
--CFMX7
--Quickbooks 2005
--SQL Server 2005
--Windows 2003 Server

I have total controll of the box.

-- 
Richard Dillman
[EMAIL PROTECTED]
(317) 916-8341

The most important step is always the first one.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240925
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: Verity Search Powerpoints

2006-05-18 Thread Rob Wilkerson
That's actually good to know, but may not help you all that much if
Verity makes no distinction about where the content is located within
a document (and I'm not aware that it does).  Be a nice feature,
though.

On 5/18/06, Eric J. Hoffman [EMAIL PROTECTED] wrote:
 Supposedly you can do presentation.ppt#5 with the number being the
 slide.  Its all rather murky reading the forums.


 


 Eric J. Hoffman
 Managing Partner
 2081 Industrial Blvd
 StillwaterMN55082
 mail: [EMAIL PROTECTED]
 www: http://www.ejhassociates.com
 tel: 651.717.4105
 fax: 651.717.4115
 mob: 651.245.2717

 

 This message contains confidential information and is intended only for 
 [EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com you should not 
 disseminate, distribute or copy this e-mail. Please notify [EMAIL PROTECTED] 
 immediately by e-mail if you have received this e-mail by mistake and delete 
 this e-mail from your system. E-mail transmission cannot be guaranteed to be 
 secure or error-free as information could be intercepted, corrupted, lost, 
 destroyed, arrive late or incomplete, or contain viruses. Eric J. Hoffman 
 therefore does not accept liability for any errors or omissions in the 
 contents of this message, which arise as a result of e-mail transmission. If 
 verification is required please request a hard-copy version.
 

 -Original Message-

 From: Rob Wilkerson [mailto:[EMAIL PROTECTED]
 Sent: Thursday, May 18, 2006 1:51 PM
 To: CF-Talk
 Subject: Re: Verity Search Powerpoints

 I've never known that to be possible, but would love to know if
 someone's actually done it.  As far as I know you can only link to a
 presentation, not to a slide within a presentation.  It's not like you
 can link to presentationurl.ppt?slide=3...can you?

 For that matter, I'm not sure Verity can or does make the distinction
 between what content is indexed from slide x and what is indexed on
 slide n of a given presentation.

 On 5/18/06, Eric J. Hoffman [EMAIL PROTECTED] wrote:
  Quick feeler to see if anyone else has had such a requirement:
 
  Client needs verity to search within powerpoints, which I believe it
  can do.
 
  Trick is, once the keyword is found, he wants that particular slide to
  show up, rather than a link to the whole presentation.   Has anyone
  dealt with such a thing?
 
  Thanks!
  
 
 
  Eric J. Hoffman
  Managing Partner
  2081 Industrial Blvd
  StillwaterMN55082
  mail: [EMAIL PROTECTED]
  www: http://www.ejhassociates.com
  tel: 651.717.4105
  fax: 651.717.4115
  mob: 651.245.2717
 
  
 
  This message contains confidential information and is intended only
 for [EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com
 you should not disseminate, distribute or copy this e-mail. Please
 notify [EMAIL PROTECTED] immediately by e-mail if you have
 received this e-mail by mistake and delete this e-mail from your system.
 E-mail transmission cannot be guaranteed to be secure or error-free as
 information could be intercepted, corrupted, lost, destroyed, arrive
 late or incomplete, or contain viruses. Eric J. Hoffman therefore does
 not accept liability for any errors or omissions in the contents of this
 message, which arise as a result of e-mail transmission. If verification
 is required please request a hard-copy version.
  
 
 



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240926
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


Here's a weird one

2006-05-18 Thread Scott Stewart
I'm installing ColdFusion MX 7.01 on a VMWare image. When I launch the
installer it tells me to select a new folder to extract the files. I do this
and nothing happens.

It's acting like it can't see the drives in the image

 

Any thoughts?

 

Scott Stewart

ColdFusion Developer/Administrator

GlobalNet Services, Inc.

www.gnsi.com BLOCKED::http://www.gnsi.com/ 

301-770-9610 x358 (Voice)

301-770-9611  (Fax)

 

The information contained in this message may be privileged, confidential,
and protected from disclosure.  If the reader of this message is not the
intended recipient, or any employee or agent responsible for delivering this
message to the intended recipient, you are hereby notified that any
dissemination, distribution, or copying of this communication is strictly
prohibited.  If you have received this communication in error, please notify
us immediately by replying to the message and deleting it from your
computer.

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240927
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


Moving a div

2006-05-18 Thread Bruce, Rodney S C-E LCMC HQISEC/Signal Solutions
Sorry this might be OT.
I have a header on a large table that scrolls down.
The top of the header starts at about 106px.
I want the header to move down,  once the top of the window gets to it and
then stay about 10px below the top of the window until the user scrolls back
up, then for it to stop at its origanal postion(106px).

I found some javascript that I got to work. What I did was have a DIV
hidden that matched the header.  When the top of the window got to the
header the div was unhidden and followed the user down. When the user got
back up to the header, the div hide again.
The div is always 10px from the top of the window, but is hidden until the
top gets to about 105px, then is shown, so to the user it just looks like
the header starts to move.

BUT this does not work if I use, either of these:
!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN
http://www.w3.org/TR/html4/strict.dtd; 

Dreamweaver 8, seems to default to this one:
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;

But does work with:
!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN

So must be a feature that is being left behind.

I have tried using Position: Fixed in my css, but IE has issues with this.
Found more javascript that will in general get Postion: Fixed to work with
it.

But if I do this and start my div over the header, it will then stay 106px
from the top of the window.
How can I get the div to either not move until the top of the window gets
to the header and then stay at 10px from window top.
Or hide the div like I was doing and have it only show up when the top of
the window is at or below 105px?

Thanks and sorry for the long winded msg.
Rodney


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240928
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: Reactor and transactions

2006-05-18 Thread Dante Orlando
I believe you have to handle transactions further up in the
application stack (i.e. controller or service layer). You would wrap
calls to reactor object with cftransaction.

-dante

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240929
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: Here's a weird one

2006-05-18 Thread Dave Watts
 I'm installing ColdFusion MX 7.01 on a VMWare image. When I 
 launch the installer it tells me to select a new folder to 
 extract the files. I do this and nothing happens.
 
 It's acting like it can't see the drives in the image

I've successfully installed it in VMs before. What OS are you using in the
VM? Windows Server 2003? It may well be an issue with that OS - I seem to
recall occasional problems with Windows File Protection or something like
that.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240930
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: Here's a weird one

2006-05-18 Thread Rob Wilkerson
I've done successful installs on Win2k, Win2k3 and several Linux
distros.  Are you using VMWare Workstation or Server (GSX, I think is
the product designation, but I'm not certain)?

On 5/18/06, Dave Watts [EMAIL PROTECTED] wrote:
  I'm installing ColdFusion MX 7.01 on a VMWare image. When I
  launch the installer it tells me to select a new folder to
  extract the files. I do this and nothing happens.
 
  It's acting like it can't see the drives in the image

 I've successfully installed it in VMs before. What OS are you using in the
 VM? Windows Server 2003? It may well be an issue with that OS - I seem to
 recall occasional problems with Windows File Protection or something like
 that.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240931
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: Reactor and transactions

2006-05-18 Thread Nathan Strutz
From what I remember reading on the Reactor list, there are a few places
where transactions would be beneficial internally. By default those places
include cftransactions, but when you have your own cftransaction tags, it
has a boolean argument or property you can set to exclude the internal
cftransaction tags.

However, I don't know the status of this one. I suppose I could search my
gmail...

-nathan strutz
http://www.dopefly.com/



On 5/18/06, Dante Orlando [EMAIL PROTECTED] wrote:

 I believe you have to handle transactions further up in the
 application stack (i.e. controller or service layer). You would wrap
 calls to reactor object with cftransaction.

 -dante




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240932
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: Reactor and transactions

2006-05-18 Thread Nathan Strutz
OK, here's the thread from just last month:

http://www.mail-archive.com/reactor@doughughes.net/msg01241.html

-nathan strutz
http://www.dopefly.com/



On 5/18/06, Nathan Strutz [EMAIL PROTECTED] wrote:

 From what I remember reading on the Reactor list, there are a few places
 where transactions would be beneficial internally. By default those places
 include cftransactions, but when you have your own cftransaction tags, it
 has a boolean argument or property you can set to exclude the internal
 cftransaction tags.

 However, I don't know the status of this one. I suppose I could search my
 gmail...

 -nathan strutz
 http://www.dopefly.com/



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240933
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: Here's a weird one

2006-05-18 Thread Dave Watts
 I've done successful installs on Win2k, Win2k3 and several 
 Linux distros. Are you using VMWare Workstation or Server 
 (GSX, I think is the product designation, but I'm not certain)?

It shouldn't matter which version you're using, as they're all identical
internally (they even emulate the same hardware). VMware GSX Server was the
entry-level server product, but that's been replaced with the free VMware
Server, which is still in beta. VMware ESX Server is the enterprise server
product; it provides its own stripped-down Linux OS.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240934
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: CFHTTP Charset Question

2006-05-18 Thread Rob Wilkerson
Just to follow up, here's what I decided to do:

1.  Execute a head request for the feed
2.  If the head request returns a charset in the response header,
store it in a variable.  Otherwise, default to UTF-8 as the stored
charset.
3.  Execute the get request using the charset as identified in #2

After that, I'll have to figure out how I want to insert it into my
transformed XML, but I can think of several ways to do that.  Anyone
see any problems (or better ways) of handling the acquisition of the
target file's encryption?

Thanks again for everyone's help with this.  I learned a lot more than
I bargained for.

On 5/18/06, Claude Schneegans [EMAIL PROTECTED] wrote:
  There should be another argument called 'encoding'. That would end
 lots of confusion between the two.

 I think the confusion lies in the W3C standard first, with META tags like:

 META HTTP-EQUIV=Content-Type CONTENT=text/html; charset=UTF-8

 Most charsets are both a charset and an encoding system. UTF is a kind
 of exception.

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240935
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: Here's a weird one

2006-05-18 Thread Scott Stewart
I installed CFMX 6.1 on another VM on the same box. I ran into something
called DEP that was preventing the executable from firing. Once it (windows)
allowed me to change the settings the installer fired.

So far I haven't run into the same thing with the MX 7 installer

Scott Stewart

ColdFusion Developer/Administrator

GlobalNet Services, Inc.

www.gnsi.com

301-770-9610 x358 (Voice)

301-770-9611  (Fax)

 

The information contained in this message may be privileged, confidential,
and protected from disclosure.  If the reader of this message is not the
intended recipient, or any employee or agent responsible for delivering this
message to the intended recipient, you are hereby notified that any
dissemination, distribution, or copying of this communication is strictly
prohibited.  If you have received this communication in error, please notify
us immediately by replying to the message and deleting it from your
computer.


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 18, 2006 4:50 PM
To: CF-Talk
Subject: RE: Here's a weird one

 I'm installing ColdFusion MX 7.01 on a VMWare image. When I 
 launch the installer it tells me to select a new folder to 
 extract the files. I do this and nothing happens.
 
 It's acting like it can't see the drives in the image

I've successfully installed it in VMs before. What OS are you using in the
VM? Windows Server 2003? It may well be an issue with that OS - I seem to
recall occasional problems with Windows File Protection or something like
that.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240936
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: Here's a weird one

2006-05-18 Thread Dave Watts
 I installed CFMX 6.1 on another VM on the same box. I ran 
 into something called DEP that was preventing the executable 
 from firing. Once it (windows) allowed me to change the 
 settings the installer fired.
 
 So far I haven't run into the same thing with the MX 7 installer

7.0.1 is supposed to fix that problem, but I don't know if it always does.
You may want to disable DEP and see what happens.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240937
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: Here's a weird one

2006-05-18 Thread Kev McCabe
Are you sure the install file for mx 7 is not corrupt I've seen it do the
ask for extraction then? 

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: 18 May 2006 22:20
To: CF-Talk
Subject: RE: Here's a weird one

I installed CFMX 6.1 on another VM on the same box. I ran into something
called DEP that was preventing the executable from firing. Once it (windows)
allowed me to change the settings the installer fired.

So far I haven't run into the same thing with the MX 7 installer

Scott Stewart

ColdFusion Developer/Administrator

GlobalNet Services, Inc.

www.gnsi.com

301-770-9610 x358 (Voice)

301-770-9611  (Fax)

 

The information contained in this message may be privileged, confidential,
and protected from disclosure.  If the reader of this message is not the
intended recipient, or any employee or agent responsible for delivering this
message to the intended recipient, you are hereby notified that any
dissemination, distribution, or copying of this communication is strictly
prohibited.  If you have received this communication in error, please notify
us immediately by replying to the message and deleting it from your
computer.


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 18, 2006 4:50 PM
To: CF-Talk
Subject: RE: Here's a weird one

 I'm installing ColdFusion MX 7.01 on a VMWare image. When I launch the 
 installer it tells me to select a new folder to extract the files. I 
 do this and nothing happens.
 
 It's acting like it can't see the drives in the image

I've successfully installed it in VMs before. What OS are you using in the
VM? Windows Server 2003? It may well be an issue with that OS - I seem to
recall occasional problems with Windows File Protection or something like
that.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized instruction
at our training centers in Washington DC, Atlanta, Chicago, Baltimore,
Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240938
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: Here's a weird one

2006-05-18 Thread Dave Watts
 Are you sure the install file for mx 7 is not corrupt I've 
 seen it do the ask for extraction then?

That's a great suggestion, actually. Use an md5sum program to find out - the
checksums are posted on the download page.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240939
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


complete 360 product photos

2006-05-18 Thread dave
I have a site now where we display the products in a 360 view (straight side to 
side), the client has asked me if when can do a global version this time, 
meaning not just side 2 side but completely around like it was hovering in 
space. I can't find anything like that out there and my photogrpaher and I have 
been trying to figure out how but whe havent quite got it.

Anyone got any ideas?

~Dave the disruptor~ 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240940
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: complete 360 product photos

2006-05-18 Thread Jerry Johnson
Not sure what you are asking for.

Display software
Authoring software
Graphic software
3d camera rigs

What kind of objects are you displaying? How do you create the images?

Also, what do you mean by in space? That you want 3 axis of control,
rather than one? 2 axis of control?

Do you want the user to control the movement, or just run a video of it moving?


On 5/18/06, dave [EMAIL PROTECTED] wrote:
 I have a site now where we display the products in a 360 view (straight side 
 to side), the client has asked me if when can do a global version this 
 time, meaning not just side 2 side but completely around like it was hovering 
 in space. I can't find anything like that out there and my photogrpaher and I 
 have been trying to figure out how but whe havent quite got it.

 Anyone got any ideas?

 ~Dave the disruptor~



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240941
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: complete 360 product photos

2006-05-18 Thread dave
sorry wrong list

~Dave the disruptor~ 


From: dave [EMAIL PROTECTED]
Sent: Thursday, May 18, 2006 6:38 PM
To: CF-Talk cf-talk@houseoffusion.com
Subject: complete 360 product photos 

I have a site now where we display the products in a 360 view (straight side to 
side), the client has asked me if when can do a global version this time, 
meaning not just side 2 side but completely around like it was hovering in 
space. I can't find anything like that out there and my photogrpaher and I have 
been trying to figure out how but whe havent quite got it.

Anyone got any ideas?

~Dave the disruptor~ 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240942
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: complete 360 product photos

2006-05-18 Thread dave
The items would be fly fishing reels and gear.

User controlled (not movie) probably via flash or js.

Best way to describe it would be if the product was in a see-thru globe 
hovering in the middle and you could turn it any-which way, does that make 
sense?

Heres what it is now, go down and click on the 360 degree version to see how it 
currently is http://www.rossreels.com/products/evolution/evolution.cfm

Then imagine if you could rotate it any which way.

I will be doing it via an xml feed generated by cfm so I guess the topic can 
stay here ;)~

~Dave the disruptor~ 


From: Jerry Johnson [EMAIL PROTECTED]
Sent: Thursday, May 18, 2006 6:45 PM
To: CF-Talk cf-talk@houseoffusion.com
Subject: Re: complete 360 product photos 

Not sure what you are asking for.

Display software
Authoring software
Graphic software
3d camera rigs

What kind of objects are you displaying? How do you create the images?

Also, what do you mean by in space? That you want 3 axis of control,
rather than one? 2 axis of control?

Do you want the user to control the movement, or just run a video of it moving?





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240943
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


Resetting a CF application.

2006-05-18 Thread Ian Skinner
How could one reset an application so that the onApplicationStart method of 
the application CFC can be re-run after new code has been added to it?

Is there anything more elegant then restarting the entire CF Service?


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

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240944
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: Resetting a CF application.

2006-05-18 Thread Ryan Guill
Im not sure, but im pretty sure you could call the
onApplicationStart() directly.  Maybe add a flag to your
onRequestStart(), if structKeyExists(url,reloadApplication) and
url.reloadApplication EQ Truecfset onApplicationStart() //cfif


On 5/18/06, Ian Skinner [EMAIL PROTECTED] wrote:
 How could one reset an application so that the onApplicationStart method of 
 the application CFC can be re-run after new code has been added to it?

 Is there anything more elegant then restarting the entire CF Service?


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

 -
 | 1 |   |
 -  Binary Soduko
 |   |   |
 -

 C code. C code run. Run code run. Please!
 - Cynthia Dunning

 Confidentiality Notice:  This message including any
 attachments is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the
 intended recipient, please contact the sender and
 delete any copies of this message.



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240945
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: Resetting a CF application.

2006-05-18 Thread Dave Watts
 How could one reset an application so that the 
 onApplicationStart method of the application CFC can be 
 re-run after new code has been added to it?

You can simply call onApplicationStart from within one of your other
Application.cfc methods. This is actually covered in the Adobe Advanced
ColdFusion Development course.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240946
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: complete 360 product photos

2006-05-18 Thread Jerry Johnson
I assume these are separate images you run through. There appear to be
40 for the full spin around (a 1 axis spin).

First, you need to do the math. That will tell you alot.

You could do a controlled 2 axis spin (spin left and right OR spin up
and down). This would allow the user to move up and down only if you
were at the 0 point of the left and right spin. This would require
another 38 images, for a total of 78.

You could do a full 2 axis spin, which would require about 1600 images
per object (at 40 positions per rotation)

I don't think you could do a true 3 axis spin (nor do I think you
would want to) due to image count, interface limitations, and bad
views of the product.

I would probably look at a 2 axis spin that stops at each pole (so you
can't look at the object upside down. I would also limit the number of
positions on the vertical legs to 10 rather than 20 per hemisphere.
This would require 400 images, rather than 1600, which is a big
difference.

Are these 3d models or photos?
How are you currently building your spin? Swift? Plasma? 3d modeling software?


On 5/18/06, dave [EMAIL PROTECTED] wrote:
 The items would be fly fishing reels and gear.

 User controlled (not movie) probably via flash or js.

 Best way to describe it would be if the product was in a see-thru globe 
 hovering in the middle and you could turn it any-which way, does that make 
 sense?

 Heres what it is now, go down and click on the 360 degree version to see how 
 it currently is http://www.rossreels.com/products/evolution/evolution.cfm

 Then imagine if you could rotate it any which way.

 I will be doing it via an xml feed generated by cfm so I guess the topic can 
 stay here ;)~

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240947
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: Resetting a CF application.

2006-05-18 Thread Alan Rother
I usually add a restart to the onRequest method like this


cfif IsDefined(url.Init)
cfset foo = onApplicationStart
/cfif


This is off the cuff and has not been tested or validity, so use a guideline
only.
-- 
Alan Rother
Macromedia Certified Advanced ColdFusion MX 7 Developer


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


Re: ColdFusion and MapPoint

2006-05-18 Thread Ryan Guill
Sorry I dont have a response for you, but would be very interested if
you came across a solution (for 6.1 or 7 either).

On 5/15/06, James Hunt [EMAIL PROTECTED] wrote:
 Has anyone used MapPoint and ColdFusion MX 6.1 together?

 I'd like to use it to find driving distances from one address to another
 address.

 If anyone knows of a better solution please let me know.

 Thanks!
 James


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240949
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: Here's a weird one

2006-05-18 Thread Casey Dougall
If it's the DEP thing, you will see it in windows eventlog. But it does do
that exact thing. Start to load then nothing...


On 5/18/06, Dave Watts [EMAIL PROTECTED] wrote:

  Are you sure the install file for mx 7 is not corrupt I've
  seen it do the ask for extraction then?

 That's a great suggestion, actually. Use an md5sum program to find out -
 the
 checksums are posted on the download page.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!


 

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


Re: OT: Dreamweaver, WebDAV and PHP

2006-05-18 Thread Denny Valliant
Did the .cfm files come down alright?
How about trying some .asp or .vb type files?
Maybe it's a feature or something similar.


Tried different webdav clients?

That's all I got at the moment. :-/


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240951
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 Admin error

2006-05-18 Thread Denny Valliant
Not I. I didn't know there was an updater 2 though, gonna grab that.

Have you checked the logs?  That's where I'd start.

Good Luck!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240952
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: Best way to redirect .htm pages to .cfm?

2006-05-18 Thread Denny Valliant
On 5/18/06, Barney Boisvert [EMAIL PROTECTED] wrote:

 The best way is to use a rewriting engine like mod_rewrite (for
 Apache) or isapi_rewrite (for IIS).  If your host refuses to give you
 that capability, perhaps a hosting change is in order?

 Another alternative is to build your CF site and instead of serving
 dynamic content (I.e. visitors request CFM pages), have it write to
 static file (the same HTML files that already exist).  Best of all
 worlds: html URLs, static server, dynamic creation.


Heh. Depends on how dynamic the content is, but I do like the
static bit. You could drive a whole website with just the dev version
of CF! ;-)

What about server-side redirects? I don't know if they come into
play with any of this stuff... just tossing an avenue of attack out
there.  Think you need a pretty recent version of CF for 'em tho...

Eh...


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240953
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: Replacements/alternatives for CFFILE upload?

2006-05-18 Thread Denny Valliant
 See above. :)  I've just done some testing of my own - FTP transfers are
 fine - approx 100 KB/sec sustained transfer rates to the server.
 However, document uploads still time out.


Hrm. Well, you could try doing some cfhttp gets of some MB+ files and
see if it's just the http protocol.  Maybe it's the webserver... outside
chance that there is throttling on http? You could do some http posts to
yourself of large files and see how they behave as well.

There are also some diagnostic tools for watching the network traffic...
It's pretty cool to see how much is really going on behind the scenes.

Learning curve there tho, so you might ask a compadre who has the
knowledge already to check it out, if one is available.

May the Force be with you!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240954
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: SOT: Secure FTP and Dreamweaver

2006-05-18 Thread Denny Valliant
Cygwin out of the question? ;-)

On 5/18/06, Rick Root [EMAIL PROTECTED] wrote:

 Damien McKenna wrote:
 
  So what needs do you have that you don't think it'd work for you?
  How many concurrent sessions do you foresee?  Have you given it a
  test run yet?

 Well, I decided not to use it because it kept crashing when I installed
 it.   Don't know why, cuz it didn't log anything that I could find.

 Featurewise it seemed okay except that it didn't seem to allow directory
 aliases (Filezilla Server does)

 Rick

 

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


Re: ColdFusion and MapPoint

2006-05-18 Thread Paul Hastings
Ryan Guill wrote:
 Sorry I dont have a response for you, but would be very interested if
 you came across a solution (for 6.1 or 7 either).

the esri webservices work a treat w/cf  last time i looked were way more 
reasonably priced than mappoint stuff. for instance:
http://www.sustainablegis.com/projects/routing/

there was a cf/mappoint solution published a few years ago that involved 
building a java client to talk to the mappoint ws  having cf talk to the java 
client. a simple google search turns up:

http://blogs.msdn.com/cthota/archive/2004/05/07/127964.aspx

the biggest issue was that mappoint wsdl had more than 1 service in it. which i 
think either cf7 or a hotfix fixed.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240956
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: complete 360 product photos

2006-05-18 Thread Mike Kear
Dell do it.   When you shop on their site for a notebook, you can see the
notebook in a window, and turn it any way you like using the mouse.In
all 3 dimensions.  And you can zoom in and out on different features.
http://dell.com

But i dont know how it's done.

.. Cheers
Mike Kear
Windsor, NSW, Australia
Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240957
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