Server error when sending CF mail

2009-12-14 Thread Shaun Mccran

Hi all,

I am sending a simple email through cfmail.

Code looks like this:

cfoutput
cfmail from=myem...@doamin.com to=myem...@domain.com subject=test
hi
/cfmail
/cfoutput

The server error is:

javax/activation/MimeTypeParseException The specific sequence of files 
included or processed is

But I am getting a strange front end error message:

500
ROOT CAUSE:
java.lang.NoClassDefFoundError: javax/activation/MimeTypeParseException
   at javax.activation.DataHandler.getBaseType(DataHandler.java:622)
   at 
javax.activation.DataHandler.getDataContentHandler(DataHandler.java:583)
   at javax.activation.DataHandler.getContent(DataHandler.java:521)
   at javax.mail.internet.MimeBodyPart.getContent(MimeBodyPart.java:629)
   at coldfusion.mail.MailImpl.getBody(MailImpl.java:740)
   at coldfusion.mail.MailSpooler.postSpoolMail(MailSpooler.java:1421)
   at coldfusion.mail.MailSpooler.storeMail(MailSpooler.java:701)

Anyone seen this before?

Thanks
Shaun 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329134
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Server error when sending CF mail

2009-12-14 Thread Will Swain

You don't need the cfoutput tags. cfmail works as a cfoutput. Try removing
that and see what happens. 

w

-Original Message-
From: Shaun Mccran [mailto:h...@mccran.co.uk] 
Sent: 14 December 2009 10:02
To: cf-talk
Subject: Server error when sending CF mail


Hi all,

I am sending a simple email through cfmail.

Code looks like this:

cfoutput
cfmail from=myem...@doamin.com to=myem...@domain.com subject=test
hi
/cfmail
/cfoutput

The server error is:

javax/activation/MimeTypeParseException The specific sequence of files
included or processed is

But I am getting a strange front end error message:

500
ROOT CAUSE:
java.lang.NoClassDefFoundError: javax/activation/MimeTypeParseException
   at javax.activation.DataHandler.getBaseType(DataHandler.java:622)
   at
javax.activation.DataHandler.getDataContentHandler(DataHandler.java:583)
   at javax.activation.DataHandler.getContent(DataHandler.java:521)
   at javax.mail.internet.MimeBodyPart.getContent(MimeBodyPart.java:629)
   at coldfusion.mail.MailImpl.getBody(MailImpl.java:740)
   at coldfusion.mail.MailSpooler.postSpoolMail(MailSpooler.java:1421)
   at coldfusion.mail.MailSpooler.storeMail(MailSpooler.java:701)

Anyone seen this before?

Thanks
Shaun 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329135
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Server error when sending CF mail

2009-12-14 Thread Shaun Mccran

Hi,
That doesn't make any difference.

Looks like a server error, rather than a code error.

Very weird.

Thanks
Shaun 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329136
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Working With Images...Still looking

2009-12-14 Thread Barry Mcconaghey

Hello.

I was able to upload an image and add it to my DB using CF8 and MySQl this 
weekend.

Can somebody tell me if this is correct. There are no error messages and the DB 
is also correct.

Thanks

Barry

 cfset thisDir = expandPath(images)
!--- Determine whether the form is uploaded with the image. ---

cfif IsDefined(image) AND image IS NOT  and len(trim(form.image))
!--- Determine whether the image file exceeds the size limits.--- 
cfimage action=read source=#form.image# name=myImage
cfif myImage.width lt 100 
or myImage.height lt 100
or myImage.width gt 1000
or myImage.height gt 1000
cfthrow message=Please provide an image between 100 and 1000 pixels tall and 
wide.
cflocation url=demo.cfm
cfelse

!--- Use the cffile tag to upload the image file. ---
cffile action=upload
fileField=image
destination=#thisDir#
result=fileUpload
nameconflict=makeunique accept=image/jpeg,image/jpg,image/png

cfset newImageName = fileUpload.serverDirectory
  fileUpload.serverFilename 
  fileUpload.serverFileExt
  
/cfif
/cfif

!--- Insert into the database ---
cfquery datasource=mydb
INSERT INTO artists(
image
   )

VALUES( 
'#fileUpload.serverFile#')
/cfquery 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329137
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Working With Images...Still looking

2009-12-14 Thread Rick Faircloth

Hi, Barry...sorry I took so long to get back to you...busy weekend.

The code looks good as far as I can tell...the proof is always in the
results.

You're now getting the correct filename in the db...are you also getting
the image into the correct directory after uploading?

Rick

-Original Message-
From: Barry Mcconaghey [mailto:bmcconag...@gmail.com] 
Sent: Monday, December 14, 2009 10:55 AM
To: cf-talk
Subject: Re: Working With Images...Still looking


Hello.

I was able to upload an image and add it to my DB using CF8 and MySQl this
weekend.

Can somebody tell me if this is correct. There are no error messages and the
DB is also correct.

Thanks

Barry

 cfset thisDir = expandPath(images)
!--- Determine whether the form is uploaded with the image. ---

cfif IsDefined(image) AND image IS NOT  and len(trim(form.image))
!--- Determine whether the image file exceeds the size limits.--- 
cfimage action=read source=#form.image# name=myImage
cfif myImage.width lt 100 
or myImage.height lt 100
or myImage.width gt 1000
or myImage.height gt 1000
cfthrow message=Please provide an image between 100 and 1000 pixels tall
and wide.
cflocation url=demo.cfm
cfelse

!--- Use the cffile tag to upload the image file. ---
cffile action=upload
fileField=image
destination=#thisDir#
result=fileUpload
nameconflict=makeunique accept=image/jpeg,image/jpg,image/png

cfset newImageName = fileUpload.serverDirectory
  fileUpload.serverFilename 
  fileUpload.serverFileExt
  
/cfif
/cfif

!--- Insert into the database ---
cfquery datasource=mydb
INSERT INTO artists(
image
   )

VALUES( 
'#fileUpload.serverFile#')
/cfquery 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329138
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Working With Images...Still looking

2009-12-14 Thread Barry Mcconaghey

Yes and Yes. The DB and the directory is perfect. I was just wondering if I was 
leaving a temp image on the server every time I upload an image.

Hi, Barry...sorry I took so long to get back to you...busy weekend.

The code looks good as far as I can tell...the proof is always in the
results.

You're now getting the correct filename in the db...are you also getting
the image into the correct directory after uploading?

Rick

Hello.

I was able to upload an image and add it to my DB using CF8 and MySQl this
weekend.

Can somebody tell me if this is correct. There are no error messages and the
DB is also correct.

Thanks

Barry

 cfset thisDir = expandPath(images)
!--- Determine whether the form is uploaded with the image. ---

cfif IsDefined(image) AND image IS NOT  and len(trim(form.image))
!--- Determine whether the image file exceeds the size limits.--- 
cfimage action=read source=#form.image# name=myImage
cfif myImage.width lt 100 
or myImage.height lt 100
or myImage.width gt 1000
or myImage.height gt 1000
cfthrow message=Please provide an image between 100 and 1000 pixels tall
and wide.
cflocation url=demo.cfm
cfelse

!--- Use the cffile tag to upload the image file. ---
cffile action=upload
fileField=image
destination=#thisDir#
result=fileUpload
nameconflict=makeunique accept=image/jpeg,image/jpg,image/png

   cfset newImageName = fileUpload.serverDirectory
 fileUpload.serverFilename 
 fileUpload.serverFileExt
  
/cfif
/cfif

!--- Insert into the database ---
   cfquery datasource=mydb
INSERT INTO artists(
image
   )

VALUES( 
'#fileUpload.serverFile#')
/cfquery 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329139
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Working With Images...Still looking

2009-12-14 Thread Leigh

 I was just wondering if I was leaving a temp image on 
 the server every time I upload an image.

Yes and no. ColdFusion places uploaded files in a special temporary directory, 
like the path mentioned in your earlier message: 
C:\ColdFusion8\runtime\servers\coldfusion\SERVER-INF\temp\wwwroot-tmp\neotmp9855.tmp
 . But CF automatically cleans up those temporary files. So you do not need to 
do it manually.

However, you might also read up on securing file uploads. There are some well 
known mime type security exploits:

http://www.coldfusionjedi.com/index.cfm/2009/6/30/Are-you-aware-of-the-MIMEFile-Upload-Security-Issue

HTH
Leigh


  

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329140
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Working With Images...Still looking

2009-12-14 Thread Tony Bentley

just sent a reply.


 
 Tony's link did not work and I sent him an email via his contact form. 
 No reply so far.
 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329141
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Is Infusion Still In Business?

2009-12-14 Thread Brook Davies

Sorry for the delayed replay to this thread. Yes, their web site is up, but
try to order something and you get a 404. How many people out there are
using Infusion? I wish I could get in touch with someone who works there or
knows the official word on this product

Brook

-Original Message-
From: Rick Root [mailto:rick.r...@webworksllc.com] 
Sent: September-23-09 2:03 PM
To: cf-talk
Subject: Re: Is Infusion Still In Business?


Do you mean Coolfusion (makers of Infusion Mail Server)?

http://www.coolfusion.com/

Their web site is still up.


On Tue, Sep 22, 2009 at 9:20 AM, Robert Forsyth r...@wjla.com wrote:

 Is Infusion still in business?  I have a couple of their servers installed
and want to add another one.  There shopping cart is broken and they have
not returned any emails for info/support.

 Did they join the deadpool?  I hope not.

 - Robert

 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329142
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


ColdFusion 9 Service failing on Startup

2009-12-14 Thread Dan Vega

This is really weird and I am still trying to hunt down any solutions to
this problem. I have the service set to start automatically on startup. The
service never starts and I see this in the
{cf_root}\runtime\logs\coldufsion-out.log

Starting Macromedia JRun 4.0 (Build 108795), coldfusion server
These changes should get picked up!
12/14 14:15:52 warning Unable to open
D:\ColdFusion9\runtime/lib/license.properties
12/14 14:16:01 info JRun Naming Service listening on *:2932
12/14 14:16:07 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
12/14 14:16:07 info JRun Proxy Server listening on *:51800
12/14 14:16:07 info Deploying enterprise application Adobe_ColdFusion_9
from: file:/D:/ColdFusion9/
12/14 14:16:09 info Deploying web application Adobe ColdFusion 9 from:
file:/D:/ColdFusion9/

The process right there is what its hanging out and in the event error

The ColdFusion 9 Application Server service could not be started within 240
seconds.  Increase the server startup timeout value using
D:\ColdFusion9\runtime\bin\jrunsvc.exe -starttimeout seconds

If I try and start it manually it errors out and I have the following in the
same coldfusion-out.log

Starting Macromedia JRun 4.0 (Build 108795), coldfusion server
These changes should get picked up!
12/14 14:32:19 warning Unable to open
D:\ColdFusion9\runtime/lib/license.properties
12/14 14:32:31 info JRun Naming Service listening on *:2932
12/14 14:32:33 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
12/14 14:32:33 info JRun Proxy Server listening on *:51800
12/14 14:32:33 info Deploying enterprise application Adobe_ColdFusion_9
from: file:/D:/ColdFusion9/
12/14 14:32:34 info Deploying web application Adobe ColdFusion 9 from:
file:/D:/ColdFusion9/

I start it again and no issues.

Starting Macromedia JRun 4.0 (Build 108795), coldfusion server
These changes should get picked up!
12/14 14:35:14 warning Unable to open
D:\ColdFusion9\runtime/lib/license.properties
12/14 14:35:15 info JRun Naming Service listening on *:2932
12/14 14:35:16 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
12/14 14:35:16 info JRun Proxy Server listening on *:51800
12/14 14:35:16 info Deploying enterprise application Adobe_ColdFusion_9
from: file:/D:/ColdFusion9/
12/14 14:35:17 info Deploying web application Adobe ColdFusion 9 from:
file:/D:/ColdFusion9/
12/14 14:35:42 INFO License Service: Flex 1.5 CF Edition enabled
12/14 14:35:42 INFO Starting Flex 1.5 CF Edition
12/14 14:35:43 user JSPServlet: init
12/14 14:35:46 user ColdFusionStartUpServlet: init
12/14 14:35:46 user ColdFusionStartUpServlet: ColdFusion: Starting
application services
12/14 14:35:46 user ColdFusionStartUpServlet: ColdFusion: VM version =
14.0-b16
12/14 14:35:48 Information [main] - Starting logging...
12/14 14:35:48 Information [main] - Starting license...
12/14 14:35:57 Information [main] - Enterprise Edition enabled
These changes should get picked up!
12/14 14:35:58 Information [main] - Starting crypto...
12/14 14:35:58 Information [main] - Installed JSafe JCE provider: Version
3.6 RSA Security Inc. Crypto-J JCE Security Provider (implements RSA, DSA,
Diffie-Hellman, AES, DES, Triple DES, DESX, RC2, RC4, RC5, PBE, MD2, MD5,
RIPEMD160, SHA1, SHA224, SHA256, SHA384, SHA512, HMAC-MD5, HMAC-RIPEMD160,
HMAC-SHA1, HMAC-SHA224, HMAC-SHA256, HMAC-SHA384, HMAC-SHA512)
12/14 14:35:58 Information [main] - Starting security...
12/14 14:35:58 Information [main] - Starting scheduler...
12/14 14:35:58 Information [main] - Starting WatchService...
12/14 14:35:58 Information [main] - Starting debugging...
12/14 14:35:59 Information [main] - Starting sql...
12/14 14:35:59 Information [main] - Pool Manager Started
12/14 14:35:59 Information [main] - Starting mail...
12/14 14:35:59 Information [main] - Starting runtime...
12/14 14:36:00 [main] INFO  Using
C:\DOCUME~1\CFAdmin\LOCALS~1\Temp\vfs_cache as temporary files store.
12/14 14:36:00 [main] INFO  Using
C:\DOCUME~1\CFAdmin\LOCALS~1\Temp\vfs_cache as temporary files store.
12/14 14:36:00 Information [main] - CORBA Configuration not enabled
12/14 14:36:00 Information [main] - Starting cron...
12/14 14:36:00 Information [main] - Starting registry...
12/14 14:36:00 Information [main] - Starting client...
12/14 14:36:03 Information [main] - Starting xmlrpc...
12/14 14:36:04 Information [main] - Starting graphing...
12/14 14:36:04 Information [main] - Starting verity...
12/14 14:36:04 Information [main] - Starting solr...
12/14 14:36:04 Information [main] - Starting archive...
12/14 14:36:04 Information [main] - Starting document...
12/14 14:36:04 Information [main] - Starting eventgateway...
12/14 14:36:04 Information [main] - Starting Event Backend Handlers.
12/14 14:36:04 Information [main] - Initialized EventRequestDispatcher with
a Thread Pool size of 1.
12/14 14:36:04 Information [main] - Initializing EventRequestHandler
12/14 14:36:04 Information [main] - 

Re: Is Infusion Still In Business?

2009-12-14 Thread Jordan Michaels

Their DNS information appears to have a phone number associated with it:

  http://who.godaddy.com/whoischeck.aspx?Domain=COOLFUSION.COM

Maybe the person on the other end of the line could say for sure... 
but... a company that doesn't respond to SALES requests doesn't seem too 
hopeful.

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Railo Community Distributions


Brook Davies wrote:
 Sorry for the delayed replay to this thread. Yes, their web site is up, but
 try to order something and you get a 404. How many people out there are
 using Infusion? I wish I could get in touch with someone who works there or
 knows the official word on this product
 
 Brook
 
 -Original Message-
 From: Rick Root [mailto:rick.r...@webworksllc.com] 
 Sent: September-23-09 2:03 PM
 To: cf-talk
 Subject: Re: Is Infusion Still In Business?
 
 
 Do you mean Coolfusion (makers of Infusion Mail Server)?
 
 http://www.coolfusion.com/
 
 Their web site is still up.
 
 
 On Tue, Sep 22, 2009 at 9:20 AM, Robert Forsyth r...@wjla.com wrote:
 Is Infusion still in business?  I have a couple of their servers installed
 and want to add another one.  There shopping cart is broken and they have
 not returned any emails for info/support.
 Did they join the deadpool?  I hope not.

 - Robert


 
 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329144
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion 9 Service failing on Startup

2009-12-14 Thread Dan Vega

Figured it out, virus protection was screwing us up. The policy was in place
but our web server was never hitting it.

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/


On Mon, Dec 14, 2009 at 2:36 PM, Dan Vega danv...@gmail.com wrote:

 This is really weird and I am still trying to hunt down any solutions to
 this problem. I have the service set to start automatically on startup. The
 service never starts and I see this in the
 {cf_root}\runtime\logs\coldufsion-out.log

 Starting Macromedia JRun 4.0 (Build 108795), coldfusion server
 These changes should get picked up!
 12/14 14:15:52 warning Unable to open
 D:\ColdFusion9\runtime/lib/license.properties
 12/14 14:16:01 info JRun Naming Service listening on *:2932
 12/14 14:16:07 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 12/14 14:16:07 info JRun Proxy Server listening on *:51800
 12/14 14:16:07 info Deploying enterprise application Adobe_ColdFusion_9
 from: file:/D:/ColdFusion9/
 12/14 14:16:09 info Deploying web application Adobe ColdFusion 9 from:
 file:/D:/ColdFusion9/

 The process right there is what its hanging out and in the event error

 The ColdFusion 9 Application Server service could not be started within 240
 seconds.  Increase the server startup timeout value using
 D:\ColdFusion9\runtime\bin\jrunsvc.exe -starttimeout seconds

 If I try and start it manually it errors out and I have the following in
 the same coldfusion-out.log

 Starting Macromedia JRun 4.0 (Build 108795), coldfusion server
 These changes should get picked up!
 12/14 14:32:19 warning Unable to open
 D:\ColdFusion9\runtime/lib/license.properties
 12/14 14:32:31 info JRun Naming Service listening on *:2932
 12/14 14:32:33 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 12/14 14:32:33 info JRun Proxy Server listening on *:51800
 12/14 14:32:33 info Deploying enterprise application Adobe_ColdFusion_9
 from: file:/D:/ColdFusion9/
 12/14 14:32:34 info Deploying web application Adobe ColdFusion 9 from:
 file:/D:/ColdFusion9/

 I start it again and no issues.

 Starting Macromedia JRun 4.0 (Build 108795), coldfusion server
 These changes should get picked up!
 12/14 14:35:14 warning Unable to open
 D:\ColdFusion9\runtime/lib/license.properties
 12/14 14:35:15 info JRun Naming Service listening on *:2932
 12/14 14:35:16 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 12/14 14:35:16 info JRun Proxy Server listening on *:51800
 12/14 14:35:16 info Deploying enterprise application Adobe_ColdFusion_9
 from: file:/D:/ColdFusion9/
 12/14 14:35:17 info Deploying web application Adobe ColdFusion 9 from:
 file:/D:/ColdFusion9/
 12/14 14:35:42 INFO License Service: Flex 1.5 CF Edition enabled
 12/14 14:35:42 INFO Starting Flex 1.5 CF Edition
 12/14 14:35:43 user JSPServlet: init
 12/14 14:35:46 user ColdFusionStartUpServlet: init
 12/14 14:35:46 user ColdFusionStartUpServlet: ColdFusion: Starting
 application services
 12/14 14:35:46 user ColdFusionStartUpServlet: ColdFusion: VM version =
 14.0-b16
 12/14 14:35:48 Information [main] - Starting logging...
 12/14 14:35:48 Information [main] - Starting license...
 12/14 14:35:57 Information [main] - Enterprise Edition enabled
 These changes should get picked up!
 12/14 14:35:58 Information [main] - Starting crypto...
 12/14 14:35:58 Information [main] - Installed JSafe JCE provider: Version
 3.6 RSA Security Inc. Crypto-J JCE Security Provider (implements RSA, DSA,
 Diffie-Hellman, AES, DES, Triple DES, DESX, RC2, RC4, RC5, PBE, MD2, MD5,
 RIPEMD160, SHA1, SHA224, SHA256, SHA384, SHA512, HMAC-MD5, HMAC-RIPEMD160,
 HMAC-SHA1, HMAC-SHA224, HMAC-SHA256, HMAC-SHA384, HMAC-SHA512)
 12/14 14:35:58 Information [main] - Starting security...
 12/14 14:35:58 Information [main] - Starting scheduler...
 12/14 14:35:58 Information [main] - Starting WatchService...
 12/14 14:35:58 Information [main] - Starting debugging...
 12/14 14:35:59 Information [main] - Starting sql...
 12/14 14:35:59 Information [main] - Pool Manager Started
 12/14 14:35:59 Information [main] - Starting mail...
 12/14 14:35:59 Information [main] - Starting runtime...
 12/14 14:36:00 [main] INFO  Using
 C:\DOCUME~1\CFAdmin\LOCALS~1\Temp\vfs_cache as temporary files store.
 12/14 14:36:00 [main] INFO  Using
 C:\DOCUME~1\CFAdmin\LOCALS~1\Temp\vfs_cache as temporary files store.
 12/14 14:36:00 Information [main] - CORBA Configuration not enabled
 12/14 14:36:00 Information [main] - Starting cron...
 12/14 14:36:00 Information [main] - Starting registry...
 12/14 14:36:00 Information [main] - Starting client...
 12/14 14:36:03 Information [main] - Starting xmlrpc...
 12/14 14:36:04 Information [main] - Starting graphing...
 12/14 14:36:04 Information [main] - Starting verity...
 12/14 14:36:04 Information [main] - Starting solr...
 12/14 14:36:04 Information [main] - Starting archive...
 12/14 14:36:04 Information [main] - Starting document...
 

Re: Is Infusion Still In Business?

2009-12-14 Thread Matt Quackenbush

On Mon, Dec 14, 2009 at 1:52 PM, Jordan Michaels wrote:


 a company that doesn't respond to SALES requests doesn't seem too
 hopeful.



Bah.  Sales are overrated.  :D


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329146
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion 9 Service failing on Startup

2009-12-14 Thread brad

Wow, that was a little weird.  I didn't know Adobe ColdFusion has hit
virus status.  :)
Is there any particular brand of anti virus software or settings we
should look out for, or do you have one of those over-zealous admins who
decided all executable code was bad?  I think you'll have to admit, your
site was VERY secure against SQLi and XSS during the time it didn't
start so maybe he's onto something...

~Brad


 Original Message 
Subject: Re: ColdFusion 9 Service failing on Startup
From: Dan Vega danv...@gmail.com
Date: Mon, December 14, 2009 2:14 pm
To: cf-talk cf-talk@houseoffusion.com


Figured it out, virus protection was screwing us up. The policy was in
place
but our web server was never hitting it.

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329147
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Is Infusion Still In Business?

2009-12-14 Thread Brook Davies

That phone number is out of service. Its weird though, I thought they had a
decent customer base. They certainly had a good product as I believe anyone
who used it would attest. Its also strange that the site is still up. Maybe
they plan to come back at a later date? Maybe they are trying to sell the
company? It would be nice if they could release their code as open source,
so that those people who are using it are not 100% screwed...

Brook

-Original Message-
From: Jordan Michaels [mailto:jor...@viviotech.net] 
Sent: December-14-09 11:53 AM
To: cf-talk
Subject: Re: Is Infusion Still In Business?


Their DNS information appears to have a phone number associated with it:

  http://who.godaddy.com/whoischeck.aspx?Domain=COOLFUSION.COM

Maybe the person on the other end of the line could say for sure... 
but... a company that doesn't respond to SALES requests doesn't seem too 
hopeful.

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Railo Community Distributions


Brook Davies wrote:
 Sorry for the delayed replay to this thread. Yes, their web site is up,
but
 try to order something and you get a 404. How many people out there are
 using Infusion? I wish I could get in touch with someone who works there
or
 knows the official word on this product
 
 Brook
 
 -Original Message-
 From: Rick Root [mailto:rick.r...@webworksllc.com] 
 Sent: September-23-09 2:03 PM
 To: cf-talk
 Subject: Re: Is Infusion Still In Business?
 
 
 Do you mean Coolfusion (makers of Infusion Mail Server)?
 
 http://www.coolfusion.com/
 
 Their web site is still up.
 
 
 On Tue, Sep 22, 2009 at 9:20 AM, Robert Forsyth r...@wjla.com wrote:
 Is Infusion still in business?  I have a couple of their servers
installed
 and want to add another one.  There shopping cart is broken and they have
 not returned any emails for info/support.
 Did they join the deadpool?  I hope not.

 - Robert


 
 
 
 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329148
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Working With Images...Still looking

2009-12-14 Thread Barry Mcconaghey

OK...last newbie question.

How do i add more than one photo to this code below. I added 4 new fields in 
the DB called (image2, image3, image4, image5) and 4 more cfinputs with the 
same names as the DB.

Thanks

Barry

This code below works when adding 1 photo.

 cfset thisDir = expandPath(images)
!--- Determine whether the form is uploaded with the image. ---

cfif IsDefined(image) AND image IS NOT  and len(trim(form.image))
!--- Determine whether the image file exceeds the size limits.--- 
cfimage action=read source=#form.image# name=myImage
cfif myImage.width lt 100 
or myImage.height lt 100
or myImage.width gt 1000
or myImage.height gt 1000
cfthrow message=Please provide an image between 100 and 1000 pixels tall
and wide.
cflocation url=demo.cfm
cfelse

!--- Use the cffile tag to upload the image file. ---
cffile action=upload
fileField=image
destination=#thisDir#
result=fileUpload
nameconflict=makeunique accept=image/jpeg,image/jpg,image/png

   cfset newImageName = fileUpload.serverDirectory
 fileUpload.serverFilename 
 fileUpload.serverFileExt
  
/cfif
/cfif

!--- Insert into the database ---
   cfquery datasource=mydb
INSERT INTO artists(
image
   )

VALUES( 
'#fileUpload.serverFile#')
/cfquery 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Infusion Still In Business?

2009-12-14 Thread Kym Kovan

Hi Brook,

you wrote:
 That phone number is out of service. Its weird though, I thought they had a
 decent customer base. They certainly had a good product as I believe anyone
 who used it would attest. Its also strange that the site is still up. Maybe
 they plan to come back at a later date? Maybe they are trying to sell the
 company? It would be nice if they could release their code as open source,
 so that those people who are using it are not 100% screwed...

A lot of us ended up here as a way to keep in touch:
imsm...@googlegroups.com
but we are not being very chatty...

I chatted to Howie Hamlin a long time back about going open source or 
otherwise making the codebase available and he said no, due to legal 
reasons. The code engine that talks from a Win Service to CF was a 
patented thing for a start.


-- 

Yours,

Kym Kovan
mbcomms.net.au


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Working With Images...Still looking

2009-12-14 Thread Rick Faircloth

Try something like this, Barry...

cfloop from=1 to=5 index=i  !--- [ set the to= according to the
number of upload fields you have ] ---

cfset imageFileField = image#i#

cffile action = upload filefield=imageFileField
destination=your/destination/path etc...

(run whatever other actions, such as resize, using the
imageFileField as your variable for each loop)

/cfloop

hth,

Rick

-Original Message-
From: Barry Mcconaghey [mailto:bmcconag...@gmail.com] 
Sent: Monday, December 14, 2009 4:54 PM
To: cf-talk
Subject: Re: Working With Images...Still looking


OK...last newbie question.

How do i add more than one photo to this code below. I added 4 new fields in
the DB called (image2, image3, image4, image5) and 4 more cfinputs with the
same names as the DB.

Thanks

Barry

This code below works when adding 1 photo.

 cfset thisDir = expandPath(images)
!--- Determine whether the form is uploaded with the image. ---

cfif IsDefined(image) AND image IS NOT  and len(trim(form.image))
!--- Determine whether the image file exceeds the size limits.--- 
cfimage action=read source=#form.image# name=myImage
cfif myImage.width lt 100 
or myImage.height lt 100
or myImage.width gt 1000
or myImage.height gt 1000
cfthrow message=Please provide an image between 100 and 1000 pixels tall
and wide.
cflocation url=demo.cfm
cfelse

!--- Use the cffile tag to upload the image file. ---
cffile action=upload
fileField=image
destination=#thisDir#
result=fileUpload
nameconflict=makeunique accept=image/jpeg,image/jpg,image/png

   cfset newImageName = fileUpload.serverDirectory
 fileUpload.serverFilename 
 fileUpload.serverFileExt
  
/cfif
/cfif

!--- Insert into the database ---
   cfquery datasource=mydb
INSERT INTO artists(
image
   )

VALUES( 
'#fileUpload.serverFile#')
/cfquery 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329151
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


SOT: Blue Dragon w/CF9 Multi Server

2009-12-14 Thread Leigh

Has anyone had any luck installing the Blue Dragon WAR file w/CF9 Multi Server 
Configuration on Windows?  Using the following as a guide:

http://corfield.org/blog/index.cfm/do/blog.entry/entry/Railo__ColdFusion_on_JRun

Railo worked without a hitch. But with Blue Dragon only .jsp pages seem to 
work. Requests for .cfm pages generate a JRun Servlet Error 403 Forbidden 
error. 

-Leigh


  

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329152
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4