(ot) Declude Website

2013-04-12 Thread Uwe Degenhardt

Hi list,
is anyone here who
knows what happened to
the Declude Website ?
www.declude.com

Uwe



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355393
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Large amounts of CF email

2013-04-12 Thread Marty Franklin

Test post. Please ignore.

On 4/11/2013 5:03 PM, Justin Scott wrote:
 The iis smtp service is ok for absolute no frills, don't care at all what
 happens to the emails.  But the logging is pretty rubbish, so tracking
 down causes of failures is often very hard or impossible.
 That hasn't been my experience, though I agree the logs could use some
 improving.  I don't have recent experience with SmarterMail, so
 perhaps it's improved with time, but when I tested it a few years ago
 it promptly fell over under the loads that we put our servers under
 while IIS SMTP kept up without any trouble.  Your mileage may vary. :)
   We're in the process of moving delivery to Exim on CentOS because it
 gives us better control of outgoing mail, routing, etc. than IIS does
 and still keeps up.  For 100k messages a month though it's probably
 overkill.


 -Justin

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355394
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) SQL bulk inserts, ftps, and unicode special characters

2013-04-12 Thread Rick Root

Thanks Paul.

It occurs to me that even If I put the data in correctly, I still have to
deal with it because I can't really output a utf-16 character to a web
page (or can I?).. I dunno maybe it just works.

time to play...


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355395
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ACF10 and cffile

2013-04-12 Thread John M Bliss

 you might try setting the strict attribute to false, as a test.

That worked, thanks!


On Thu, Apr 11, 2013 at 3:25 PM, Steve 'Cutter' Blades 
cold.fus...@cutterscrossing.com wrote:


 John,

 I'm not seeing anything right off that should be causing you an issue.
 The docs are pretty clear on the accept attribute:


 http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-738f.html

 I did find a note, in the comments of that bit of the docs, that points
 out some new bits in the MIME Type handling:


 http://www.sagarganatra.com/2012/03/coldfusion-10-cffile-restricting-file.html

 In reading that, you might try setting the strict attribute to false,
 as a test. You could try, as the docs show it, putting a space between
 each MIME type. Have you checked Google yet? Might find something there
 too. I found this StackOverflow post that mentioned that same excel MIME
 type:


 http://stackoverflow.com/questions/11354070/why-is-coldfusion-server-misinterpreting-an-uploaded-files-mime-type

 Good luck. Let us know what you come up with.

 Steve 'Cutter' Blades
 Adobe Community Professional
 Adobe Certified Expert
 Advanced Macromedia ColdFusion MX 7 Developer
 
 http://cutterscrossing.com


 Co-Author Learning Ext JS 3.2 Packt Publishing 2010

 https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book

 The best way to predict the future is to help create it

 On 4/11/2013 3:21 PM, John M Bliss wrote:
  When I remove the accept and dump the cffile var, I see:
 
  CONTENTSUBTYPE vnd.ms-excel
  CONTENTTYPE application
 
  ...which means my accept should be good, no?
 
 
  On Thu, Apr 11, 2013 at 2:17 PM, John M Bliss bliss.j...@gmail.com
 wrote:
 
  Under ACF8, this:
 
  cffile action=upload accept=text/csv,application/vnd.ms-excel...
 
  ...would accept CSV files. Under ACF10, it throws, Only files of type
  text/csv,application/vnd.ms-excel can be uploaded. Verify that you are
  uploading a file of the appropriate type.
 
  Is that right / known behavior / expected behavior?
 
  --
  John Bliss - http://about.me/jbliss
 
 
 



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355396
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) SQL bulk inserts, ftps, and unicode special characters

2013-04-12 Thread Paul Hastings

On 4/13/2013 1:55 AM, Rick Root wrote:

 It occurs to me that even If I put the data in correctly, I still have to
 deal with it because I can't really output a utf-16 character to a web
 page (or can I?).. I dunno maybe it just works.

no, it will show up fine (your db driver  cf will see to that). internally sql 
server stores the data as UCS2, that's going to get transformed to UTF-8 (or 
whatever you request).

just make sure the columns holding the unicode text data are N dataype 
(nvarchar, etc.)  you should be good to go.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355397
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm