Re: CSS/Embedding Font?

2007-03-07 Thread Mingo Hagen
Coldfusion wrote:
 Besides creating images for each item that uses a particular font that may
 not be installed on the clients OS,
 I know there is a way to use CSS to embed the font within the webpage, but
 how reliable is it?
it's not.

There is a way for IE4 upwards, but that particular method doesn't work 
for Firefox/opera. The only other method I know is using a small flash 
file and that is usually only (thank god) used for titles 
(http://www.mikeindustries.com/sifr/).

Mingo.

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/

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


Re: CF and AJAX

2007-03-06 Thread Mingo Hagen
+1 to JSMX
Have used both AjaxCFC and JSMX in production webapplications, and I 
think JSMX is a bit easier to grasp and a more lightweight.
I have recommended AjaxCFC in the past and will continue to do so, but I 
have to say JSMX is currently on top of my list.

I haven't checked any other ajax-library out though (like Spry).

Mingo.


Charlie Griefer wrote:
 i think one of the easiest and most lightweight libraries to check out
 would be JSMX (http://www.lalabird.com)

 check out some of the samples on the site.

 I think that'd be the quick and easy route to getting a Hello
 World up and running.

 Then I'd probably look into something like jQuery (which is high on my
 list of things to check out when I have time (tm))

 On 3/5/07, Jim H [EMAIL PROTECTED] wrote:
   
 Ok, I am a newbie to AJAX. Can anyone point me in the right direction for 
 tutorials/information on this?

 Thanks!

 -Jim H


~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion

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


Re: What is the best resource for a begginer CF Programer?

2007-03-01 Thread Mingo Hagen
Robertson-Ravo, Neil (RX) wrote:
 Errm, 301K now, damn those stats... :-) 
   
300.001 right?

;)


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/

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


Re: Take a minute to Digg this story about the Smith Project

2007-02-07 Thread Mingo Hagen
Robertson-Ravo, Neil (RX) wrote:
 But the fact is, if you wanted free ColdFusion, you would expect same
 functionality and performance as ColdFusion proper, which Smith cannot
 offer?
   

Speed... it can offer:

This code executed on both CFMX7 and Smith 1.25 results in Smith being 
on average 5 times as fast.

code:

cfset start = getTickCount()
cfset var1 = structNew()
cfloop from=1 to=1 index=var2
  cfset var1[_#var2#] = randRange(1,var2)
/cfloop
var1[_#var2#] = cfoutput#int( getTickCount() - start )#br //cfoutput


cfset start = getTickCount()
cfset var1 = structNew()
cfloop from=1 to=1 index=var2
  cfset var1._#var2# = randRange(1,var2)
/cfloop
var1._#var2# = cfoutput#int( getTickCount() - start )#br //cfoutput


cfset start = getTickCount()
cfset var1 = structNew()
cfloop from=1 to=1 index=var2
  cfset structInsert( var1, _#var2#, randRange(1,var2))
/cfloop
structInsert( var1, _#var2#, randRange(1,var2)) = cfoutput#int( 
getTickCount() - start )#br //cfoutput



Mingo.


~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Query WHERE separation

2006-12-01 Thread Mingo Hagen
so he should use 1=0

Mingo.

Doug Bezona wrote:
 The only problem I see is that if you end up with only an OR after the
 1=1, the OR becomes essentially meaningless. 1=1 is always true, so all
 rows with the right id will be returned regardless of the OR clause. 

   
 -Original Message-
 From: daniel kessler [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 01, 2006 8:02 AM
 To: CF-Talk
 Subject: Re: Query WHERE separation

 That seems to have worked.  I did it with a 1=1 because there might
 
 not be
   
 anything in the brackets, but I dunno if it's needed.  Here's what I
 
 ended
   
 up with (below), please tell me if I need to make any corrections.
 And thanks both of ya for the assistance.

 SELECT meeting_name,type,note_date,id,n_r_id, ROWNUM AS r,
 COUNT(meeting_name) OVER() AS rowcount
 FROM notes_to_the_record
 WHERE ID = #session.user.id# AND
 (1=1
 cfif url.meeting_name neq 
 AND UPPER(meeting_name) LIKE cfqueryparam
 value=%#UCase(url.meeting_name)#% cfsqltype=cf_sql_varchar
 /cfif
 cfif url.type neq 
 #url.and_or_1# UPPER(type) LIKE cfqueryparam
 value=%#UCase(url.type)#% cfsqltype=cf_sql_varchar
 /cfif
 cfif url.notes neq 
 #url.and_or_2# UPPER(notes) LIKE cfqueryparam
 value=%#UCase(url.notes)#% cfsqltype=cf_sql_varchar
 /cfif

 )
 ORDER BY UPPER(meeting_name) ASC
 )

 
 Use brackets to split the where clause up:
 WHERE
 id_field=id
 and (
 a=1
 or
 b=2
 or
 c=3
 )

 --
 Tom Chiverton
   
 

 

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

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


CFMX7 and SOAP errors

2006-11-14 Thread Mingo Hagen
Hi all,

I'm trying to connect to a SOAP webservice through either cfinvoke or 
createObject() with no luck whatsoever.

1. The webservice is hosted on some other server through php, I should 
be able to connect to it using my username and password and run 
functions on it.
2. The webservice works if I try it with php, or using: 
http://www.bindingpoint.com/quicktryv2.aspx
3. Other webservices I can get to work on my server. It's just this 
particular one with this server.

I tried to translate the provided php code into CF but keep getting the 
same error. I even tried the most basic one-line:
cfscript
  myObj = createObject( 'webservice', 'http://url/To/Webservice.php?wsdl' );
/cfscript

The error I get goes like this and is the same for both cfinvoke and 
createObject:

---
coldfusion.jsp.CompilationFailedException: Errors reported by Java 
compiler:
Found 2 syntax errors in 
C:/CFusionMX7/stubs/WS-1930889944/com/prenames/webservices/soap/SearchResults.java:

10. public class SearchResults extends java.lang.Object[] implements 
java.io.Serializable {


*** Syntax: { expected instead of this token

10. public class SearchResults extends java.lang.Object[] implements 
java.io.Serializable {
---

*** Syntax: misplaced construct(s)
..
---

I'm guessing there is some kind of incompatibility with the Java version 
of the provided webservice and that of CF. But that's just guessing...

I have tried different approaches (using cfinvoke with 
cfinvokearguments, with passing in the username and password in 
different ways, using array's using plain text, all to no avail. It just 
keeps erroring out on line 1. the one with either the createObject or 
the cfinvoke on it.)


Any Ideas?
Thanks guys, Mingo.


My specs:
Windows 2003, IIS, CFMX7 (7.0.2, Apache Axis 1.2.1)


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

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


Re: cftry inside of cftransaction ??

2006-11-07 Thread Mingo Hagen
We do it like this:

cftransaction action=begin isolation=serializable
  cftry

!--- [mjh] Query here: ---
cfquery
   ...
/cfquery

cftransaction action=commit /

cfcatch
  cftransaction action=rollback /
  cfdump var=#cfcatch#
  cfabort
/cfcatch
  /cftry
/cftransaction



Will Tomlinson wrote:
 Figured someone would know and answer quicker than me testing this. 

 Can you wrap a query with cftry inside a cftransaction? 

 Thanks,
 Will

 

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

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


Re: Eclipse RDS Plugin

2006-11-01 Thread Mingo Hagen
There's also a smaller zip floating around the net: 
http://www.cfreport.org/downloads/CF_FB_Extensions.zip

I really wish adobe would make this easier and better supported.

Mingo.



Sandra Clark wrote:
 Thanks, I ended up trying the Flex Builder download and doing that.  I just
 hate the idea that I had to download 136 mb to get it.  I don't want Flex
 Builder, can't use it.   

 Adobe used to have it as a separate download, wish they would do that again.
 Its confusing for people who are looking only for that particular part.


 Sandra Clark
 ==
 http://www.shayna.com
 Training in Cascading Style Sheets and Accessibility


 -Original Message-
 From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 31, 2006 1:53 PM
 To: CF-Talk
 Subject: Re: Eclipse RDS Plugin

 Sandy,

 Download the Flex Builder Trial, open the .exe with winzip, and extract the
 folder from there.

 Cutter
 _
 http://blog.cutterscrossing.com

 Sandra Clark wrote:
   
 Anyone know where Adobe is hiding this?  I'm re-installing Eclipse and 
 can't find the copy I had originally downloaded.  Its not on the old 
 links that I found through googling.

 Alternatively, can someone send me the original zip?

 Thanks

 Sandra Clark
 ==
 http://www.shayna.com
 Training in Cascading Style Sheets and Accessibility




 



 

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

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


Re: Eclipse RDS Plugin

2006-11-01 Thread Mingo Hagen
You can't keep people from using a good thing... Adobe should either 
build a better tool or better facilitate (cf)Eclipse.

Mingo.

Tom Chiverton wrote:
 I think they are terrified that everyone will run Eclipse with plugins rather 
 than Flex Builder.


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

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


Re: help on the cfif code

2006-10-27 Thread Mingo Hagen
No that's not it, 0 translates to false in CF.
So if myQuery.recordcount is 0, then cfif myQuery.recordcount would 
return false.

My suspicion is that you have somewhere in your code a cfsetting 
enablecfoutputonly=yes. Is the code you posted earlier the actual 
code, or is it just an example? Becaus if you have cfoutput tags after 
the cfif, it would output what is between them, but if after the cfelse 
you don't have cfoutput tags, it would leave it blank (with the 
enablecfoutputonly setting on.)

Mingo.


alex poyaoan wrote:
 got your point about that so even if the result is zero it is still true so 
 what's the alternative i could do so that when it is zero it prints a message



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

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


Re: file size when uploading multiple files

2006-10-27 Thread Mingo Hagen
I'm also not aware of a way (other then java/flash) to do this client-side.
We do it the same way you described (but on the cffile, not on the 
entire cgi.content_length).

daniel kessler wrote:
 Is there a way and if not, what do y'all do?



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

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


Re: visual tool to display table relationships

2006-10-27 Thread Mingo Hagen
free with sql server 200 is Sql Enterprise Manager's diagram tool.

Mingo.

[EMAIL PROTECTED] wrote:
 I'm so sorry for posting this here, but I know there are a lot of sharp cf 
 programmers that
 would have an opinion on this question.

 I'm looking for a free tool that will help to show me my tables and their 
 relationships. 
 (SQL Server 2000)

 D

 

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

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


Re: OT: Other countries besides US

2006-10-25 Thread Mingo Hagen
Our CRM software uses templates to hold the different address styles. 
It's in one database table, so it can be extended (currently 12 styles 
and one 'other'). However I hate our CRM software, partly because of its 
impossible database layout... so that's no help.

Anyways, here's one to add to your list (for The Netherlands)

Mystreet 10 -- street and number
1234 AA -- postal code
Amsterdam  -- city (no province necessary)

Mingo.



Doug Brown wrote:
 I have a user table which will hold address information for a user. My 
 problem comes in where different countries use different things for their 
 address. Should I store all this different info in different columns, and 
 leave them to allow NULL values, and let the processing page handle things 
 and put stuff where it belongs?

 IE:


 The US has...

 cities
 States
 Zip Codes

 In say the UK it has...

 towns/cities 
 counties
 Postal Code

 In Algeria...

 City
 State/Province/Region
 Postal Code

 

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

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


Re: OT: Other countries besides US

2006-10-25 Thread Mingo Hagen
I'm entirely with you on this one, I was just telling how some CRM 
software does it.
But what would you recommend? just a textarea with 'enter your address 
here:' or a couple of generic Address Line 1, Address Line 2, Postal/Zip 
code, Province/State, City, Country (this is what most websites do today 
I think, and most bad ones make State mandatory, so I must but gibberish 
in it in order for the form to submit.

Mingo.

Mike Kear wrote:
 My point was not to list out the various differences between one
 country and another, but to point out that there are so many
 differences that masking or using regex to force a specific format
 when you know you are going to have customers from all around the
 world is simply futile.  There are too many differences to handle in a
 practical manner.

 A few years ago, I  was trying to buy software from Hewlett-Packard -
 an international company if ever there was one.  But the on-line form
 required a US zipcode,  only offered two-character state
 abbreviations,   and validated the state against the postcode,
 required a phone number in the format (555) 555-, and believe it
 or not even required a Social Security Number!!   And the product was
 not US-specific. It was international.

 I really needed the software, so i ended up phoning my brother in
 Indianapolis,  asking him for his social security number. I made up
 one of my own based on his.  I picked a zip code and address out of an
 American magazine, and just for fun used a phone number with the area
 code 555, since all phone numbers in movies have area code 555 for
 some reason.

 Then i used the comments box to give them the real information,
 downloaded the software and paid with my credit card.

 So their validation ended up getting them what? Useless made up
 information, and the address in theri database would be to some
 company I just plucked out of a magazine.

 If you're going to attract international business,  you need to be a
 lot more flexible in your address/phone form than if you are going to
 tell customers outside your own country to bugger off.

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



 On 10/25/06, Paul Hastings [EMAIL PROTECTED] wrote:
   
 instead of relying on what is essentially hearsay, go here for your info:

 http://www.upu.int/


 

 

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

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


Re: Using PDF's...

2006-10-25 Thread Mingo Hagen
Except for Safari on Mac OS X of course... That one has native PDF reading.
Mingo.


Sandra Clark wrote:
 Its added in by the Adobe Acrobat Reader when its installed. None of today's
 browsers can read it natively that I know of 



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

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


Re: IE7 ?

2006-10-19 Thread Mingo Hagen
however the beta was here a couple of months ago, and a couple of RC's 
between then and now as well, so you could have checked a lot of your 
sites already.

Mingo.

Kevin Aebig wrote:
 Because it's being released as a patch in the next couple of weeks and I
 want to make sure all the standards M$ has implemented aren't blowing up my
 systems.

 W3C standards != M$ standards



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

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


Re: IDE's

2006-10-12 Thread Mingo Hagen
Ryan Stewart wrote:
 Quick question,
 What IDE/editor do you use for coldfusion development?

I'm Mingo and I'm a HomeSite+aholic.




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

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


Re: Hosting companies

2006-09-08 Thread Mingo Hagen
Another nice C3 topic, James ;)


Mike Tangorre wrote:
 From: Doug Brown [EMAIL PROTECTED]
   
 Was wondering who the best hosting companies were. Need to support mySql.
 
 Search the archives at houseoffusion.com. This is a popular question that 
 pops up about once a month... lots of good info in the archives.

   


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

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


Re: Locking Theory

2006-09-08 Thread Mingo Hagen
Hey Jochem,

That's the kind of stuff more people need to know about. Do you have any 
tips on good advanced SQL books? (Or should I have seen this in the 
basic SQL books that are out there and did I just skip this bit.)


Thanks,
Mingo.


Jochem van Dieten wrote:
 SELECT * FROM table WHERE id = blah FOR UPDATE
   
 -- snip --
 COMMIT and ROLLBACK unlock everything you locked FOR UPDATE automatically.


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

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


Re: Locking Theory

2006-09-08 Thread Mingo Hagen
Alrighty, thanks Jochem, i'll definitely look into those, my main 
resource now is (apart from teh intarweb) books online for MS SQL 
Server, but I'd like to gain a more generalized knowledge about SQL.

And and that manual, aren't you supposed to rtf it?

Mingo.

Jochem van Dieten wrote:
 And of course there is always the much overlooked manual.


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

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


Re: Must I Use Evaluate() Here?

2006-08-30 Thread Mingo Hagen
stcFilters['filter_#i#'] works



Sung Woo wrote:
 I have a structure called stcFilters.  In this structure, I have the 
 following values:
 
 stcFilters.filter_1 = 100
 stcFilters.filter_2 = 200
 
 I want to show the value of these filters through a cfloop:
 
 cfloop index=i from=1 to=2
  cfset temp = Evaluate(stcFilters.filter_#i#)
  cfoutput#temp#/cfoutput
 /cfloop
 
 I can't seem to get around using the evil Evaluate -- can anyone help?  Much 
 thanks.
 
 

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

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


Re: Way OT: But you know you want one..

2006-08-16 Thread Mingo Hagen
9.2.2 and if it were piss poor, it wouldn't have made this list:
http://it.slashdot.org/article.pl?sid=06/08/16/0125204

Robertson-Ravo, Neil (RX) wrote:
 For the record, I am not anti-Apple, well certainly since OSX! (9.5 and below 
 were piss poor) I was just paraphrasing the iProduct piss take on the web...



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

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


Re: Way OT: But you know you want one..

2006-08-16 Thread Mingo Hagen
Robertson-Ravo, Neil (RX) wrote:
 What list? Thanks Charles Babcock, for your wonderful insghts...

 If you ever had to deal with constant rebooting of OS 9 and below you will
 know what I mean...multi-tasking was a thing it could only strive to have!

 OSX on the other hand...very nice
I guess its sentimental... my first steps in programming, internet, just 
about anything computer related was on System 7 and later... So yes I 
have had to deal with the operating system, just not in the way you 
describe, certainly at the time, apart from an 'error type 11' or two, 
it was fantastic...

Mingo.


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

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


Re: CSS help

2006-08-16 Thread Mingo Hagen
div style=width:400px; float:right; text-align:left;
Like this?
/div

Mingo.


Rick Root wrote:
 I'm having some trouble with CSS.

 I'd like to right align a 400px box to the right side of my page, and I 
 want to LEFT align the text in the page.  I've got it working in IE, but 
 not Firefox.

 Here's the URL:

 https://www.cfr.duke.edu/new.cfm?showNewTemplate=1

 The specific CSS:

   #headerWrapper {
   text-align: right;
   margin-bottom: 25px;
   }
   #header {
   width: 400px;
   text-align: left;
   padding-bottom: 5px;
   border-bottom: 1px dotted #cc;
   }


 And the HTML code:

 div id=headerWrapper
 div id=header
 h1cfoutput#PAGE_TITLE#/cfoutput/h1
 a class=orange href=/Corporate  Foundation Relations Homepage/a
 /div/div

 What do I need to do here?

 Rick

 

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

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


Re: CSS help

2006-08-16 Thread Mingo Hagen
Jake Churchill wrote:
 I played with this a bit and it makes no sense.  You can fix it by just
 using a table.  Not as pretty but it gets the job done.
pff a table ;) so 1996...

Mingo.


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

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


Re: Fusebox 2

2006-08-12 Thread Mingo Hagen
Doug wrote:
 Any suggestions
 on being able to tell if the tag is getting called upon?
put some text in it, to see if it is loaded...


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

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


Re: Stripping Characters from a String

2006-08-11 Thread Mingo Hagen
cfset str = This is a string with £ and ?##%^$ characters __ 
cfset str_safe = ReReplaceNoCase(str,[^a-z0-9]+,_,ALL) 

eliminates the need for replacing extra _'s

Mingo.

Martyn Bowis wrote:
 Hi Lee,

 You are on the right track with ReReplace

 Try:

 cfset str = This is a string with £ and ? characters 

 cfset str_safe = ReReplaceNoCase(str,[ [EMAIL PROTECTED]*+=-],_,ALL) 

 cfset str_safe = ReReplaceNoCase(str_safe,__,_,ALL) 
 cfset str_safe = ReReplaceNoCase(str_safe,__,_,ALL) 
 cfset str_safe = ReReplaceNoCase(str_safe,__,_,ALL) 

 The last 3 functions simply changes long series of  into _ for 
 neatness.

 Cheers,
 Martyn


   - Original Message - 
   From: Lee Bailey 
   To: CF-Talk 
   Sent: Friday, August 11, 2006 8:26 PM
   Subject: Stripping Characters from a String


   Hi Folks,

   I'm trying to strip characters from a form string, like so;

   The entered text : This is a string with £ and ? characters
   The desired result : this_is_a_string_with_and_characters

   The aim is that I can use this as a 'safe' URL parameter for navigating the 
 website. Obviously, if the string contains things like ? then it throws an 
 error, or simply doesn't return the record.

   As I also need to use the original entered text (the entered text will be 
 known as 'heading', and the modified text will be known as 'shortheading' 
 within the DB) I can only accomplish this on the action page, not through 
 javascript.

   I can't use URLEncodedFormat() because the string needs to be easily 
 readable in the address bar (and look good to google!).

   Looking at my CFWACK book, ReReplace() seems to be the tag I need, but 
 despite numerous efforts I just can't get a working syntax.

   Any help would be much appreciated!

   

 

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

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


Re: CFIF inside a Form

2006-08-11 Thread Mingo Hagen
Tom Chiverton wrote:
 I don't think anything involving iif and/or trim is nicer than a perfectly 
 good if/else.
I do
:p


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

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


Re: CFIF inside a Form

2006-08-11 Thread Mingo Hagen
Which is more readable is quite subjective, you probably find this more 
readable:
select
  option value=#value#cfif value eq url.value 
selected/cfif#text#/option
/select

And I this:
select
  option value=#value##iif( value eq url.value, de( ' selected' ), 
de( '' ))##text#/option
/select

Partly because homesite+ screws up the color coding and partly because i 
don't like tags inside of tags (even if it's to different languages)

Anyways, I call potayto/potahto. Also I remember reading that iif() is 
actually faster in certain cases, but I forgot why when or how 
(something to do with the Java translation) but thats probably nullified 
by the delayed expressions...

An even better way for the above example would be to put the ' selected' 
into a separate variable alongside the #value# and #text#
Mingo.

loathe wrote:
 Honestly, I almost wish that Adobe would do away with iif and evaluate.



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

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


Re: CFIF inside a Form

2006-08-11 Thread Mingo Hagen
Tom Chiverton wrote:
 Well, I'd lay out nicer:

 select
   option value=#value#
   cfif value eq url.value 
   selected
   /cfif
#text#/option
 /select
How is whitespace managed if you lay it out like that, I'm a bit 
obsessive compulsive about that ;)
 :points at CFEclipse :-)

   
Yeah, yeah, I know, not an option... need rds on cf 5 through mx7 + I'm 
not yet happy  with how text is handled by eclipse, doesn't seem as 
robust as HS+, anyway, let's not get into that one...
 An even better way for the above example would be to put the ' selected'
 into a separate variable alongside the #value# and #text#
 
 Still leaves you with having to put an if of some sort inside the option tag.
   
I mend like this:
cfscript
  myQuery = queryNew( value,text,selected );
  queryAddRow( myQuery, 2 );

  querySetCell( myQuery, value, 1, 1 );
  querySetCell( myQuery, value, my item, 1 );
  querySetCell( myQuery, value, , 1 );

  querySetCell( myQuery, value, 1, 2 );
  querySetCell( myQuery, value, my item, 2 );
  querySetCell( myQuery, value,  selected, 2 );
/cfscript

select
  cfoutput query=myQuery
option value=#value##selected##text#/option
  /cfoutput
/select


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

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


Re: CFIF inside a Form

2006-08-11 Thread Mingo Hagen
You have a point, so my best of both worlds solution is the #iif()# 
construction, white space in order, readable, and not so complex it 
can't be figured it out 5 years from now.
Mingo.

loathe wrote:
 I don't like implicit code.  I want it to be very easy to understand. I know 
 two years from now I am not going to remember some line of code I wrote and 
 why.



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

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


Re: Regex Help...

2006-08-07 Thread Mingo Hagen
I'd say:

reReplace( string, '[A-Z##*/-]+', '', 'all' )

not sure if you need to escape the *, though.

Mingo.


Rick Root wrote:
 I need to remove all characters from a string that are *NOT* the following:
 
 A-Z
 #
 *
 /
 -
 
 currently, my regex looks like this:
 
   REReplace(lastName,[^[:alpha:]],,ALL)))
 
 Clearly, I've got to add the other characters in, but I'm not sure quite 
 where to put them.
 
 Rick
 
 

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

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


Re: Spam Blogger Comments

2006-08-07 Thread Mingo Hagen
If you do this, you need to keep the vars on the server, and not put it 
in the form fields. but otherwise i like it ;) it's simple and effective.

Mingo

Brian Dumbledore wrote:
 One of my colleagues had this idea..he is still testing it, but one of the 
 form fields will be the exact time, after the form is posted on the 
 actionpage, he checks the tiem again. if the time is less than certain 
 interval (2-3 seconds) it is definitely a bot as human can't be that fast (if 
 he is he is really spamming..).
 What do you think?? will this work?


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

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


Re: Weird CF error...

2006-08-07 Thread Mingo Hagen
Oh oh... you used the M-word, now I feel obligated to provide the 
Firefox alternative;
http://livehttpheaders.mozdev.org/

Although I must say that Fiddler has more features.

Mingo.


Brad Wood wrote:
 Ever used MS Fiddler.  It can be a very handy tool to track down pesky
 404's you don't even realize are there like js includes, css etc.



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

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


Re: Tired of lousy companies recruiters

2006-08-07 Thread Mingo Hagen
This statement in itself is two sided already, so I'd say go with the 
survey:

RobG wrote:
 ...right down to the same white spacing, line breaks, and even coding 
 methodology (and I don't mean Fusebox).

In my view this isn't necessarily a bad thing. If your coding standards 
suck, and you don't stick to the methodology chosen by the company (be 
it FB or a proprietary one) I think it's a good thing to try and change 
the 'new comer.'

Mingo.

ps. sorry if I took it a SOT.


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

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


Re: And now for something completely different...language translation?

2006-08-06 Thread Mingo Hagen
Paul Hastings wrote:
 Mingo Hagen wrote:
   
 Our applications (like the CMS) use different methodes; older apps use a 
 couple of large cf files containing all text labels inside 
 cf-structures, a different cfm file is loaded for a different language.
 

 oh my.
   
I know ;) however it seemed like the best choice at the time (cf 4.5) 
database would be to much, text file parsing not really an option, xml 
parsing not yet there...
 Currently we use an XML file with all text items. A UDF is used to 
 
 and what do you use to manage these?
   
These aren't used for stuff that changes a lot, so just a text editor to 
edit the xml.

Mingo.


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

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


Re: what if the next CF...

2006-08-05 Thread Mingo Hagen
It's slower (when stuff is not yet compiled), COM doesn't work the same, 
uhm, you know, all kinds of good stuff! ;)

Mingo.

Rick Faircloth wrote:
 FWIW, tell me one thing that is dramatically different on the user end of a 
 website experience that can be done with CF7 that can't with CF 4.5 (anything 
 not native to CF7 doesn't count)



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

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


Re: what if the next CF...

2006-08-05 Thread Mingo Hagen
I ment the other way around, 6+ is slower then 5-.

Robertson-Ravo, Neil (RX) wrote:
 COM is slower on 4.5? No way, and in some cases 4.5/5 is faster than MX code
 bases.



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

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


Re: You know what?

2006-08-05 Thread Mingo Hagen
Not to make your day any worse, but... I thought let's try that CF on a 
Mac, let's just see if it runs, well guess what...
It works like a charm and on the first try, I installed using the ever 
complicated 'next-next-finish' method.

My setup: iMac DV+ running Mac OS X 10.3.9 (perhaps that's the trick, 
cause the java on this machine is 1.4.2)

Mingo.


Jeff Small wrote:
 This is the probably the tenth time I've tried to install CF on a  
 mac.  Going back...oh, probably over a year or so.



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

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


Re: what if the next CF...

2006-08-05 Thread Mingo Hagen
Hey Rick, I guess I shouldn't try sarcasm, since English isn't my first 
language...
I mend that what CF 6+ brought me when I was upgrading (back in the day) 
was slowness, incompatibilities with COM etc. so I was actually agreeing 
with you more or less. Although, I'm very happy with CFMX7 now, but back 
then it was a pain to upgrade from 5 to 6.

Mingo.



Rick Faircloth wrote:
 Ok...I'm sure 4.5 is slower, but not so slow that it creates problems for
 the apps that I build and deploy...so that's not a good reason to shell
 out $1300...

 COM...not sure what all it will do, but at this point I haven't needed any
 of it, so, that's another function I don't need and another reason not to
 spend another $1300 and toss 4.5 in the Recycle Bin...


 -Original Message-
 From: Mingo Hagen [mailto:[EMAIL PROTECTED] 
 Sent: Saturday, August 05, 2006 1:28 PM
 To: CF-Talk
 Subject: Re: what if the next CF...

 It's slower (when stuff is not yet compiled), COM doesn't work the same,
 uhm, you know, all kinds of good stuff! ;)

 Mingo.






 

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

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


Re: Form parameters as array

2006-08-04 Thread Mingo Hagen
I would do that a little different. You coul repeat the checkboxes like so:

input typ=checkbox name=isBannedUserID value=1 /
input typ=checkbox name=isBannedUserID value=2 /
input typ=checkbox name=isBannedUserID value=3 /

On the other side of the form action you would receive a list of id's in 
the form.isBannedUserID, like this: 1,2,3 for all checked inputs. 
Which you could then directly use in an UPDATE sql statement. (WHERE 
userID IN ( cfqueryparam cfsqltype=cf_sql_integer 
value=#form.isBannedUserID# list=yes ))

Mingo.


Dmitrii Dimandt wrote:
 I know that :)

 What I needed is a simple way to output and process a number of very
 similar fields. Let's say, you want to ban 10 users from a forum at
 once. After you've found these users, you could output this:

 input type=checkbox name=User[10][IsBanned] value=banned /
 input type=checkbox name=User[20][IsBanned] value=banned /
 input type=checkbox name=User[30][IsBanned] value=banned /
 etc.

 After the form is submitted you could do this in PHP:

while(list($key, $value) = each($_POST['User']))
{
/* $key now holds 10, 20, 30 ..., $val holds the value of the checkbox 
 */
}

 Additionally each field is accessible through 
 $_POST['User']['10']['isBanned'].



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248786
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 Tag and Attribute Case

2006-08-04 Thread Mingo Hagen
No more beer for you.

Will Tomlinson wrote:
 I think this is lots more readable, no??



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248848
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 Tag and Attribute Case

2006-08-03 Thread Mingo Hagen
You represent hope for all of us ;)

Anyway, on topic, I practice and preach
 - cf-tags in lowercase,
 - functions and variables in camelCase()
 - SQL keywords in UPPERCASE, tablenames and the such in tbl_camelCase

I also prefix my variables with there data type (although CF is not 
typed) like tablename_nID and tablename_sField

Mingo.


James Holmes wrote:
 Hey, geek is apparently sexy now ;-) I even wear the shirt that says:

 SELECT * FROM USERS WHERE CLUE  0
 0 rows returned


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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248709
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 Tag and Attribute Case

2006-08-03 Thread Mingo Hagen
I'm all for this Mark, finally some uniformity, like in VisualStudio...


Mark Drew wrote:
 joke
 Since I want to spread this joy, I am making the next version of
 CFEclipse enforce this ;)
 /joke



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

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


Re: 30 days from now date variable

2006-08-03 Thread Mingo Hagen
dateAdd( 'd', 30, now())


Tim Laureska wrote:
 How do you set a variable to be 30 days from today?



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

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


RDS, Eclipse, CF5

2006-08-02 Thread Mingo Hagen
Hi all,

Does anyone know if the RDS implementation available for eclipse is 
compatible with CF5? I'm trying to connect to a CF5 server which works 
fine through HS+... no such luck as of yet in Eclipse. It errors out 
with a very generic: Unable to contact the RDS Server 'MyServername.'

Thanks,
Mingo.


ps. Yes I triple-checked the host name and password.


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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248606
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 Tag and Attribute Case

2006-08-02 Thread Mingo Hagen
You probably get all the chicks, with language like that :p

James Holmes wrote:
 As I use FOP to create PDF from our HTML, we need to conform to the
 XHTML spec or it won't transform.



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

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


Re: sql question.

2006-08-02 Thread Mingo Hagen
SQL Server sucks at regexps, you have some rudimentary tools at your 
disposal with the LIKE statement, but none that I could get to work, I 
have in the past found a regexp stored procedure but that's just dog slow...

This is the like statement I tried:
  SELECT * FROM listing
  WHERE dir LIKE cfqueryparam cfsqltype=CF_SQL_VARCHAR 
value=warranty\%[^\]

It doesn't work because the % sign already matches to the end of the 
string... so sorry :(

Mingo.

Brian Dumbledore wrote:
 I am using MS-SQL, I couldn't get this to work..

 I tried, patindex,charindex, like combinations, none worked.

 I have directory paths in a table, given a starting path of a directory, I 
 want to get its first level elements.

 eg:

 table has
 warranty\a\1.jpg
 warranty\a
 warranty\a\2.jpg
 warranty\a22
 warranty\a-23

 I want to get warranty\a,warranty\a22,warranty\a-23

 I tried all combinations, it doesn't work (correctly). I actually get only 
 warranty\a, but don't get the other two (which makes me thing it is because 
 of the numbers in the string.. but doesn't make any sense). Please help

 Thanks for your time.

 

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

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


Re: How 2 Search on date values

2006-08-01 Thread Mingo Hagen
What do you mean search on date values? inside a text or just a 
dedicated date column? in case of the date column you can just say (with 
cfqueryparams ofcourse):

WHERE YEAR( myDate )  = #year( myCFDate )#
  AND MONTH( myDate ) = #month( myCFDate )#
  AND DAY( myDate )   = #day( myCFDate )#

in case of searching for a date inside a text column, i'm less sure. if 
you know how the date is formatted, you could use LIKE '%dateFormat()%'.
I wouldn't use verity unless it's an insane ammount of records or 
word/pdf files.

[EMAIL PROTECTED] wrote:
 Does anyone know how to search on odbc date values? I really need help.

 I've searched all over the internet and Adobe.com and found nothing

 Does Verity let you search on date values from a column in a db?
 Should the date values be stored in separate columns, month, day and year?



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

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


Re: (admin) List Status

2006-08-01 Thread Mingo Hagen
I feel a fight coming up...

Tom Chiverton wrote:
 Post at the bottom like normal people :-)



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

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


Re: (admin) List Status

2006-08-01 Thread Mingo Hagen
As long as we're complaining... I hate those long disclaimers at the 
bottom of your e-mail... last I heard, normal people don't have those, 
Tom? ;-)

Although as I write this I see Thunderbird has been nice enough to auto 
snip it off, because it's below two dashes... cool ;)

Mingo.

Tom Chiverton wrote:
 On Tuesday 01 August 2006 13:44, Rick Faircloth wrote:
   
 too much time to copy, paste, etc., the previous message content.
 

 Get A Better Client :-)

   
 Not only that, but I've also got to cut other quoted content from
 the sent message.  :oP
 

 Same as you have to trim N other top posted comments.
 Bottom posting *forces* you to trim, or your comments end up 'over the fold'.

   



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

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


Re: (admin) List Status

2006-08-01 Thread Mingo Hagen
Apparently, they don't and I don't get why they don't, you would think 
that they'd get some legal advice on such matters... Assuming that the 
lawyers do know that they're worthless (the disclaimers, not the lawyers...)

Snake wrote:
 I wonder if companies realise just how worthless those disclaimers are
 anyway 



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

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


Re: CF substring?

2006-08-01 Thread Mingo Hagen
Yeah they do, but substring wouldn't that be mid()?

Tom Donovan wrote:
 is there any substring function for CF?
 

 http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0463.htm#1104504

 FindNoCase

 Mean people suck.



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

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


Re: Advanced Developer Average Salary

2006-08-01 Thread Mingo Hagen
How many yes's would you like, I got a couple to get you started: yes 
yes yes yes yes yes.
Mingo.

Matt Williams wrote:
 If people are interested, willing and not offended, I'll set up a quick
 anonymous poll so people here could enter their annual salary, city, state,
 country, years with CF, and comments.

 It wouldn't be scientific by any means, but it could be some interesting
 data.

 A few yes's and I'll get it going.



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

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


Re: Advanced Developer Average Salary

2006-08-01 Thread Mingo Hagen
http://www.frappr.com/cfdevelopers

Dan Plesse wrote:
 It seems like a lot of employers are still very interested in the location
 of CF developers. Is there a
 google map where you can plug in your location for this very purpose? Would
 this help with the employment matching process?



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

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


Re: Unofficial CF Developer Salary Survey

2006-08-01 Thread Mingo Hagen
Great stuff, could you make a select box to filter the averages on country?
Mingo.

Matt Williams wrote:
 Come one, come all...
 An anonymous salary survey is available at

 http://keysym.org/cfs

 I didn't bother with any validation, so if you try to break it, you probably
 will. :)

 I'll leave it up for a few days so people will have time and for those in
 other time zones, etc.

 Matt


 On 8/1/06, PETER SHEATS [EMAIL PROTECTED] wrote:
   
 Wow, all this for me?  Thanks =)

 I don't think I should answer it since it'll bring the average way
 down...

 Peter Sheats


 



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

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


Re: Comparing Form Fields

2006-08-01 Thread Mingo Hagen
You can use cfform and cfinput for that.

Steve LaBadie wrote:
 Does CF have the capability to compare to form fields or do I just us
 JavaScript?  I am not validating input to a database just want to make
 sure that the email address is entered properly.



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

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


Re: Oracle 8.i and querying for table/field list

2006-07-31 Thread Mingo Hagen
Is it possible you just have too many tables for CF to query in the 
timeout given? If so, you might want to up the timeout using:
  cfsetting requesttimeout=XXX

where XXX = time in seconds.

Mingo.





Terry C. Mergl wrote:
 Hi James:  here is what I have.

 cfquery datasource=alopa username=metaserv password=metaserv
 name=getPI
   SELECT object_name FROM user_objects WHERE object_type in ('TABLE',
 'VIEW')
 /cfquery

 cfset tblname=#ValueList(getPI.object_name,,)#

 cfoutput
   table
   cfloop index=i list=#tblname# delimiters=,
   cfquery datasource=alopa username=metaserv password=metaserv
 name=findfields
   Select *  From #i#
   /cfquery
   cfset flist=#findfields.columnlist#
   trtd#i#/td/tr
   trtd#flist#/td/tr
   trtdnbsp;/td/tr
   /cfloop
   /table
 /cfoutput 


 ~~~ 
 Terry C. Mergl - MCSE, CNA, WCSPV
 Darien Telephone Co.
 1011 North Way
 Darien, GA 31305
 912-437-6677 voice
 912-270-0505 mobile
 [EMAIL PROTECTED]
 Network Administrator
 ~~~ 


 This e-mail message and any attachments may be confidential, proprietary or
 privileged information. If you are not the intended recipient, or a person
 responsible for delivering it to an intended recipient, any unauthorized
 review, disclosure, use or distribution is prohibited. If you are an
 unintended recipient, please delete this information from your computer and
 contact Darien Telephone Co., immediately by replying to this message or by
 sending e-mail to [EMAIL PROTECTED] Thank you.

 -Original Message-
 From: James Holmes [mailto:[EMAIL PROTECTED] 
 Sent: Monday, July 31, 2006 10:27 AM
 To: CF-Talk
 Subject: Re: Oracle 8.i and querying for table/field list

 Can you post the SQL you are using to list the fields?

 On 7/31/06, Terry C. Mergl [EMAIL PROTECTED] wrote:
   
 Good morning everyone.
 As a novice with CF and newly introduced to one of our Oracle servers, 
 I'm having to rely on a cf query to find the tables and fields that way.
 I can successfully run a query and list all  of my tables, but when I 
 go one step further to list the fields, it is either timing out or 
 stopping about a quarter of the way through and I'm not sure what to do or
 
 go from here.
   
 Any advice greatly appreciated.
 Terry

 ~~~
 Terry C. Mergl - MCSE, CNA, WCSPV
 Darien Telephone Co.
 1011 North Way
 Darien, GA 31305
 912-437-6677 voice
 912-270-0505 mobile
 [EMAIL PROTECTED]
 Network Administrator
 ~~~


 This e-mail message and any attachments may be confidential, 
 proprietary or privileged information. If you are not the intended 
 recipient, or a person responsible for delivering it to an intended 
 recipient, any unauthorized review, disclosure, use or distribution is 
 prohibited. If you are an unintended recipient, please delete this 
 information from your computer and contact Darien Telephone Co., 
 immediately by replying to this message or by sending e-mail to
 
 [EMAIL PROTECTED] Thank you.
   
 --
 No virus found in this outgoing message.
 Checked by AVG Free Edition.
 Version: 7.1.394 / Virus Database: 268.10.5/403 - Release Date: 
 7/28/2006





 



 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248225
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Oracle 8.i and querying for table/field list

2006-07-31 Thread Mingo Hagen
Is it possible you just have too many tables for CF to query in the 
timeout given? If so, you might want to up the timeout using:
  cfsetting requesttimeout=XXX

where XXX = time in seconds.

Mingo.

Terry C. Mergl wrote:
 Hi James:  here is what I have.



OT: the error reporting is a great feature! thanks Michael ;)


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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248226
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (admin) List Status

2006-07-31 Thread Mingo Hagen
Error reporting feature is great, however, I got a message too long 
error and it came through anyway... bug or feature?

Mingo.



Michael Dinowitz wrote:
 I've done a major redesign of the House of Fusion user interface as well as 
 the backend system. Posting through the archives should work as long as your 
 subscribed to the list in question. The same goes for posting by email. If 
 there is a problem, you will get an error message as long as your email 
 address is recognised as a site member (even if not a member of the list 
 being posted to). 

 If there are any questions or comments, please email me off list. 

 Thank you

 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248232
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: (admin) List Status

2006-07-31 Thread Mingo Hagen
ROFL

Rick Faircloth wrote:
 Now, Charlie...  I don't know if that is an Amen to my previous
 post about leaving part of the previous response in the reply or what!


 Where's the part of the previous post!  :o)

 Amen to what?  :o)

 Rick



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248298
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFeclipse and RDS

2006-07-31 Thread Mingo Hagen
Check this post by Dan Vega
 http://www.danvega.org/blog/index.cfm/2006/7/28/Eclipse-RDS-Support

I think it's only compatible with Eclipse 3.1

Mingo.


Chad Gray wrote:
 I can't get Eclipse to connect to our CF server with RDS.

 I copied the folder:
 com.adobe.rds.client_0.5.0.0043

 To the plugins folder of eclipse and I enter all of our RDS information.

 Windows  Preferences  RDS Config
 I used port 80 since our installation uses IIS and the IP address of the 
 server.

 I hit test connection and it asks for the RDS password I click ok, it asks 
 for it again and says 'Unable to contact the RDS server.'

 With Homesite and Dreamweaver I can connect to the RDS server with the same 
 settings.

 Any ideas on what I am missing?  This is a super fresh install of Eclipse, 
 CFEclipse and the SVN plugin.
 Eclipse 3.2.0
 CF Standard 7,0,2,142559 setup to use IIS
 com.adobe.rds.client_0.5.0.0043



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248300
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
Please kill directory browsing, at least on that folder ;)

Mingo.

Steve LaBadie wrote:
 It get ---


 localhost - /cfide/

 
 

 [To Parent Directory]
 Friday, July 28, 2006 10:13 AMdir adminapi
 Friday, July 28, 2006 10:13 AMdir administrator 
 Monday, January 24, 2005 12:52 PM  1156 Application.cfm
 Monday, June 26, 2006 10:38 AMdir classes
 Friday, July 28, 2006 10:13 AMdir componentutils
 Monday, June 26, 2006  9:41 AMdir debug
 Monday, June 26, 2006 10:38 AMdir gettingstarted
 Monday, June 26, 2006  9:41 AMdir images 
 Monday, January 24, 2005 12:53 PM  1969 install.cfm
 Friday, July 28, 2006 10:13 AMdir installers
 Monday, June 26, 2006 10:38 AM31149 probe.cfm
 Friday, July 28, 2006 10:13 AMdir scripts
 Monday, June 26, 2006  9:41 AMdir wizards



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248301
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: IIS 6.0

2006-07-31 Thread Mingo Hagen
One major feature of IIS 6 is the increased 'security'. As in: switch 
everything off until you tell it to switch on.
Not so important on a dev box, but when you don't know about it, it can 
be a pain. Like when you offer a download of a mime type the server 
doesn't know of, it just acts like the file isn't there (404) when in 
reality it is and you just need to add it to the config.

Mingo.

Steve LaBadie wrote:
 We are putting up a brand new web server and want to know if anyone has
 an opinion about upgrading to IIS 6.0.  I am currently using 5.1 on my
 development box.



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248303
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
But you can still access /CFIDE/scripts/cfform.js right?

Steve LaBadie wrote:
 Ok

 Now I get an error 403 - forbidden



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248307
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
Okay, I think we can safely say that the problem is not your /CFIDE folder.
Does the flash form load? Do you get javascript errors? could you post 
the cfform code?

questions questions ;)


Steve LaBadie wrote:
 It ask me if I want to open or save this file



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248309
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
Hmm... your code ran fine on my machine 
(http://mingo.e-linewebsolutions.nl/test/form.cfm)
The only thing I changed was the query, this leads me to think that your 
query actually doesn't return any rows, could this be the case?


Steve LaBadie wrote:
 Here is the code:
 -snip-
   


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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248315
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Can I drag the URL to web form

2006-07-31 Thread Mingo Hagen
Yes, if you drag it by the favicon

I Cartanga wrote:
 In IE, can I drag the URL from the Address box and instead of dropping it on 
 the Links toolbar, drop it on a web text form and have it populate the input 
 box?
 Thanks.



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248322
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (admin) List Status

2006-07-31 Thread Mingo Hagen
The problem with that would be that every mail client (in every 
different language) has it's own version of 'Original Message'.

Rick Faircloth wrote:
 I'd still like to see Michael implement some kind of automated
 trimming function for the mail.  Perhaps it could leave the
 Original Message header, as below, and then leave the
 next 10-20 lines of the message and trim the rest, including his
 links etc., at the bottom.

 No more manual trimming and no more looong posts...



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248323
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Cfloop timing out.

2006-07-31 Thread Mingo Hagen
You can't be sure, but you can stretch the timeout right in the schedule 
task form in the administrator.

Andy Matthews wrote:
 I'm going to be running a scheduled task nightly. It looks like this:

 - Run a query (which will return probably around 130,000 rows).
 - Loop over that query and run an UPDATE statement on each row.
   - I'm importing data from another source and am not able to do this on
 INSERT.

 So the code itself works, but the query/cfloop is timing out. Any ideas on
 how I can make sure this thing runs without error?



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248325
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
Ok, I'm at a loss... anyone? Could it be the amount of items in the 
query? Or some illegal characters?

Steve LaBadie wrote:
 If I format as HTML, or XML the cfselect will populate.



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248328
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: C3 page drafts

2006-07-29 Thread Mingo Hagen
On the mac there was one issue with the graph, in safari and omniweb it 
shows above the text, while in camino, firefox and opera it showed on 
the right.



James Holmes wrote:
 Bah, last time I ask for feedback on a Friday ;-)

 Seriously, when people have time next week, if they can have a look in
 a few Mac browsers and any obscure ones on other platforms, I'd be
 appreciative as the layouts are pure CSS and I had to do some extra
 work to make it look ok in IE.



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248133
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: C3 page drafts

2006-07-29 Thread Mingo Hagen
I feel almost embarrassed to say it on-list, but it's a double quote at 
the end of the margin line for the rightbox class:

..rightbox{
  display: inline;
  float: right;
  margin: 5px 5px 5px 5px;
}



James Holmes wrote:
 Thanks - that must be the right float not right-floating in safari and 
 omniweb.

 I'll check into it (unless of course you want to fix it and post the code ;-)

 On 7/29/06, Mingo Hagen [EMAIL PROTECTED] wrote:
   
 On the mac there was one issue with the graph, in safari and omniweb it
 shows above the text, while in camino, firefox and opera it showed on
 the right.



 James Holmes wrote:
 
 Bah, last time I ask for feedback on a Friday ;-)

 Seriously, when people have time next week, if they can have a look in
 a few Mac browsers and any obscure ones on other platforms, I'd be
 appreciative as the layouts are pure CSS and I had to do some extra
 work to make it look ok in IE.
   


 

 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248138
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Google Code Project Hosting

2006-07-29 Thread Mingo Hagen
You bet'cha got my first project in it too... not sure if it's ready for 
prime time though... so i'm not tellin y'all, but you could of course 
find it with some imagination ;)
I basically wanted to test the subversion repository... and it (of 
course) works like a charm

Mingo.



Rick Root wrote:
 y'all seen this?

 http://code.google.com/hosting/

 Looks like a nice place to do project hosting, an alternative to 
 sourceforge, cfopen, etc.  They offer subversion hosting as part of the 
 package too.  Sweet.

 Rick

 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248147
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Trying to send a message...but it doesn''t show up....?

2006-07-29 Thread Mingo Hagen
a while back I had the same problem, just gave up on it though...

Will Tomlinson wrote:
 Been havin the same problem here. 


 Will

 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248150
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: C3 page drafts

2006-07-28 Thread Mingo Hagen
I see everyone is feeling real productive this friday ;)


Mark Drew wrote:
 What is the best CF IDE? sheesh.. I think its textpad... isnt it?

 On 7/28/06, James Holmes [EMAIL PROTECTED] wrote:
   
 First drafts of the ColdFusion Community Consensus pages are now
 available for comment:

 http://www.bifrost.com.au/c3/

 http://www.bifrost.com.au/c3/topic.cfm

 You can comment in-list or at the blog:

 http://www.bifrost.com.au/blog/index.cfm/2006/7/28/ColdFusion-Community-Consensus-page-layout-drafts

 --
 CFAJAX docs and other useful articles:
 http://www.bifrost.com.au/blog/


 

 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248094
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfcdev, cflib, my blog, etc

2006-07-24 Thread Mingo Hagen
Helm, looks interesting, thanks for that!
Mingo.

Jenny Gavin-Wear wrote:
 Just started using it here .. the one thing I wish it had was Maillist 
 support and not the Distribution list included.
 
 Also works with Helm control panel :-)
 
 Really easy to install and admin.
 
 Jenny
 
 
 -Original Message-
 From: Hugo Ahlenius [mailto:[EMAIL PROTECTED]
 Sent: 24 July 2006 09:12
 To: CF-Talk
 Subject: RE: cfcdev, cflib, my blog, etc
 
 
 | HMailServer, free, open, windows...
 |
 | www.hmailserver.com
 |
 | Using it in production now for two years, no complaints yet.
 | Serving about a 100 domains.
 
 I'll echo that, I use it small-scale for my private needs, works very
 well.
 
 /Hugo
 ###This message has been scanned by 
 F-Secure Anti-Virus for Microsoft 
 Exchange.Formore information, connect to http://www.F-Secure.com/ 
 
 
 
 
 

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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247470
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfcdev, cflib, my blog, etc

2006-07-23 Thread Mingo Hagen
Raymond Camden wrote:
 All our down as I fight my mail server. Folks, whatever you do, do not
 buy MailEnable. Ever. What does it do when something goes wrong? It
 makes 125,000 mail messages in the queue.

 Can anyone recommend a Windows-based alternative that would support
 multiple domains and listservs?

   
HMailServer, free, open, windows...

www.hmailserver.com

Using it in production now for two years, no complaints yet. Serving 
about a 100 domains.

Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247455
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Javascript Menu that Displays Over IFrames

2006-07-18 Thread Mingo Hagen
I should have replied earlier, but for the sake of completeness, the 
Brainjar.com menu has always helped me out, we've even integrated it in 
our CMS. Check it out at: http://www.brainjar.com/dhtml/menubar/ There 
are other menu's out ther that have a smaller footprint, or some that 
have an insane amount of options. This one however had the right balance 
for me. Fast, explained well, validates through w3c.

Mingo.

Ali Awan wrote:
 Thanks for all the fish
 Actually I kind of figured this out. 
 I found some free CSS menus, which via-css convert an Unordered List to an 
 invisible Iframe, so now the drop-downs display over the select boxes an 
 IFrames.



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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246848
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Fusebox Documents

2006-07-18 Thread Mingo Hagen
fusebox.org ?

Anbu Selvan wrote:
 Hi,

  Is there any site to download the fusebox documents. I want a detail 
 document about the fusebox structure and the usage. 



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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246852
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Scheduling .car creation (in other words: scheduling settings backups)

2006-07-18 Thread Mingo Hagen
In programming laziness is a good characteristic.

Mingo.

Tom Chiverton wrote:
 On Tuesday 18 July 2006 07:19, Beru wrote:
   
 So, does this silence mean that there's no solution?
 

 Maybe you should be less lazy :-)



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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246857
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Macromedia.com RIP?

2006-07-18 Thread Mingo Hagen
Or get in an infinite loop once Jeremy or JJ buys out Adobe... and 
changes it's name to Allaire

Mingo.

Mark Drew wrote:
 Just as a laugh I put in www.allaire.com which redirected me to
 www.macromedia.com and then, it redirected me to ww.adobe.com.

 I wonder if in a number of years, and adobe gets bought by, say, apple we
 will have more redirections?



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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246861
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Scheduling .car creation (in other words: scheduling settings backups)

2006-07-18 Thread Mingo Hagen
Dave Watts wrote:
 In programming laziness is a good characteristic.
 

 But you're not programming, you're trying to solve a problem. Laziness is
 not a good characteristic for problem-solving.

Okay... I was not referring to the problem solving part of being a 
programmer, I was just trying to lighten the mood (opposite effect 
resulted, apparently).
Anyways, it's hot, I need to sleep, and I only have about 60 cf-talk 
messages to skim through left...

Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247001
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Javascript Menu that Displays Over IFrames

2006-07-18 Thread Mingo Hagen
Matt Robertson wrote:
 The Brain Jar menu carries a GNU General Public License.  To quote from it:

 2. b) You must cause any work that you distribute or publish, that in
 whole or in part contains or is derived from the Program or any
 part thereof, to be licensed as a whole at no charge to all third
 parties under the terms of this License.

 This and the text that immediately follows gives someone off the
 street a legal claim to a copy of the source for your work.  Not
 something a customer or employer wants to hear about the programming
 they paid for.

 http://www.fsf.org/licensing/licenses/gpl.txt

 Sorry for the downer,
Hmm... has that always been there? I seem to remember different, because 
I specifically chose this one because of it's license (or lack 
thereof)... To bad the robots.txt doesn't allow me to see it in the Way 
back machine...

So perhaps it's time to either release the CMS in the wild (and all 
websites with it) or replace it with the one Ali found. Care to share it 
with the community, Ali? Or roll my own...

Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247005
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFMail Throttling for CFerror handling

2006-07-17 Thread Mingo Hagen
Instead of a database, you could use a plain text file or an xml file.
Mingo.

Scott Newsome wrote:
 Mike thanks for your reply.

 The database option is not workable because if the database fails (which in
 the past has been our biggest headache). We wouldn't get any emails. I could
 see checking for the database first, and if it's up, doing as you said. But
 if it's down I still need to be able to throttle the emails. On your other
 point, the custom tag we are using currently for sending emails send to our
 sysadmin group for the application or server.  That could be one or many
 people.



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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246765
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: FAQ?

2006-07-14 Thread Mingo Hagen
Tom Chiverton wrote:
 On Friday 14 July 2006 09:46, James Holmes wrote:
   
 if you have an idea for a name, as The CF Best Solutions App Thingy
 won't look good in a web design :-) Perhaps just something like Rated
 CF Solutions or similar?
 

 cfSolutions ?

 Coldfusion Community Conclusion (or C3 for short) ?

   
I like it: C3! It's got my vote...
But, shouldn't you post that on the blog as a comment :)

Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246509
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: Microsoft Virtual PC / Should I be interested, or not?

2006-07-14 Thread Mingo Hagen
Yes you should!
If not for virtual servers then at least for testing on multiple 
windows/linux configurations. Set one up identical to your clients 
config, that should help in the development process. You could also set 
one up as a development server, but I guess the speed would be an issue 
there. I guess what i'm trying to say is go for it!

Mingo.

Rick Faircloth wrote:
 So I get this email that MS has released Virtual PC for free.

 Not having used Virtual PC or anything like it, I have to ask.are
 any of you using Virtual PC or something similar in you CF work?

 Other ways?  Should I bother?



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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246516
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Microsoft Virtual PC / Should I be interested, or not?

2006-07-14 Thread Mingo Hagen
Well... you could of course get Parallels or QEMU and install windows on 
that and then get the free version of VirtualPC, or would that be 
horribly slow?.

Mingo.




Rick Faircloth wrote:
 Sorry...I checked...looks like it $249 for Virtual PC for Mac...but who
 knows?  Maybe they'll soon give that away, too!

 Rick



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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246544
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC

2006-07-14 Thread Mingo Hagen
Hmm, strange I remember it not working for me as well... is that 
something that was fixed in CF5

James Holmes wrote:
 It works fine for me in Oracle.
   



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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246547
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: FAQ?

2006-07-13 Thread Mingo Hagen
James Holmes wrote:
 Well, I'd be willing to have a crack at this, if no-one else is really keen.

   
That's great! We could of course make it a community project, open 
source and all... What would be a good place to start? a forum, a blog, 
a custom design?


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246396
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: FAQ?

2006-07-13 Thread Mingo Hagen
James Holmes wrote:
 Sound good?
Sounds good to me! see you on your blog (wherever that will be ;) )
Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246399
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Hey, what are your doctypes? And why?

2006-07-13 Thread Mingo Hagen
Ben Nadel wrote:
 Jeff,

 I tend to use this doc type:

 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;

 This is for several reasons:

 1. I like to believe that I can create an xhtml standard compliant
 website... Sometimes that is wishful thinking, but I aim high.

 2. It actually changes the way the browsers render code in newer browsers
 and I am now used to writing code that is appropriate for that doc type (ex.
 in xhtml images have line-heights unlike earlier versions which will put
 padding around the image even if it has a break after it). 

  Mostly though, its just about moving forward, staying with the times, and
 working towards standards.
We at our company work the same way, using xhtml 1.0 transitional 
(occasionally even strict) and make sites validate through w3c. When 
they validate we test in different browsers, then we're done. (ok that 
last part was wishful thinking on my part.)

Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246419
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: FAQ?

2006-07-13 Thread Mingo Hagen
Major update?! darn it, just installed the 5-0 version...
oh well, that way I have something to do over the weekend...

Mingo.

Munson, Jacob wrote:
 From: Raymond Camden

 FYI, a major new release of BlogCFC will be released this weekend.
 

 Good to hear.  I'm planning on upgrading to 5.1 when it's released.


 

 This transmission may contain information that is privileged, confidential 
 and/or exempt from disclosure under applicable law. If you are not the 
 intended recipient, you are hereby notified that any disclosure, copying, 
 distribution, or use of the information contained herein (including any 
 reliance thereon) is STRICTLY PROHIBITED. If you received this transmission 
 in error, please immediately contact the sender and destroy the material in 
 its entirety, whether in electronic or hard copy format. Thank you. A1.



 

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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246465
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


FAQ?

2006-07-12 Thread Mingo Hagen
Hi all,

Is there a place to get stuff settled (and don't say the cf-talk search 
function), stuff like what is the best wysiwyg editor (FCK, HTMLArea, 
TinyMCE, etc.), what kind of encryption to use (PGP, GPG), what 
mailserver works best with CF, what FTP server, any other unsettled 
issues? And all that geared towards coldfusion. Perhaps a place were 
users can vote, and add explanations as to why they choose A over B.

If there's not such a place, is there any interest in it?


Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246237
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: FAQ?

2006-07-12 Thread Mingo Hagen
Hi Tom,
 But, I take your point, that somewhere where 'How do I use gpg' or 'what HTML 
 WYSIWYG editors work well with CF' would be useful.
I wasn't looking for a how-to-implement-site, but more a 
what-is-the-general-consensus site.
A place where all the options are laid out for you given a certain 
problem, with stats next to it as to who uses what the most.

Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246249
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: FAQ?

2006-07-12 Thread Mingo Hagen
Hi Mark (and Tom),
 Not being stupid but coulnt HoF add a link to the signature of an email that
 when something is an answer or a good FAQ, it can be clicked and it then
 adds it to a page with FAQ's? All you would need to add is the Question and
 a link to the conversation?
That would have my preference as well.
And in response to Tom, I know there is no such thing as _the_ best, and 
that a lot has to do with your needs and skills, but I would at least 
like to see how many people back one solution and it might settle some 
of the recurring issues on this mailing list (like the framework 
question and the ajaxcfc vs cfajax vs the rest.)
It won't take away the question of which is best, but this way you can 
at least see what's used most. And for the less used options a comment 
like structure could be used where users can post there good or bad 
experiences with it.


Some ideas:

Frameworks:
- Fusebox (1,2,3,4,5)
- Mach II
- ModelGlue
- Roll-your-own
- More?

Editors:
- CFStudio
- Homesite+
- Dreamweaver
- CFEclipse
- Vi
- etc.

HTML Editors:
- FCKEditor
- HTMLArea
- TinyMCE
- Ektron
- More?

Ajax Frameworks
- AjaxCFC
- CFAjax
- JSMX
- Spry
- Roll-your-own
- more

Other unsettled issues (probably a lot)? Please post yours.


Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246250
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: FAQ?

2006-07-12 Thread Mingo Hagen
Raymond Camden wrote:
 While they don't say best, there is cffaq.com from Ben Forta and
 www.coldfusioncookbook.com from myself and Jeremy Petersen.
   
Well... this is almost exactly what i meant (I need to google better) I 
do miss some stuff like I mentioned in my other mails, more geared 
towards different solutions to one problem and perhaps you could add a 
function (like on imdb.com) where users can say 'this tip was useful to me'.

Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246253
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: FAQ?

2006-07-12 Thread Mingo Hagen
Your site addresses the 'how do i do this or that' question. What I want 
is a place where I can go to answer the 'what tools are there for my 
problem'.
In order to find out what the _right_ tools are for a certain job, you 
need to at least know _which_ tools there are and to help you find out 
if they fit your job it helps to read about what other coldfusion 
programmers' experience has been with them.
Is that a possible extension to the cfcookbook project, a library of 
cf-related tools with user experiences?

Mingo.
ps. I'm promoting your site to my (not too many) coworkers.




Raymond Camden wrote:
 Speaking just for myself (www.coldfusioncookbook.com), my philosophy
 behind the site is that every answer is the best. Now - I know that
 sounds egotistical. What I meant is, like CFLib, we try to publish
 what we consider best practice 100% of the time. Obviously I'm no
 brainiac.What I'm trying to get through is that what you see on the
 cookbook site would be considered best practice, at least by myself,
 Jeremy, and the other authors. (And again, I know the sites aren't
 perfect.)

 The cookbook site seems to almost be in stealth mode.We have over 100
 entries, all available via PDF, so the content is growing, but the
 traffic is still a bit light. Hopefully these posts will help drive
 some traffic to the site. :)

 On 7/12/06, Mingo Hagen [EMAIL PROTECTED] wrote:
   
 Raymond Camden wrote:
 
 While they don't say best, there is cffaq.com from Ben Forta and
 www.coldfusioncookbook.com from myself and Jeremy Petersen.

   
 Well... this is almost exactly what i meant (I need to google better) I
 do miss some stuff like I mentioned in my other mails, more geared
 towards different solutions to one problem and perhaps you could add a
 function (like on imdb.com) where users can say 'this tip was useful to me'.

 Mingo.


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246273
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: FAQ?

2006-07-12 Thread Mingo Hagen
Nice analogy ;)
It would also limit the amount of times the same discussion occurs (or 
is it recurs), although it is fun to watch the frameworkswar.


Munson, Jacob wrote:
 Yeah, that does sound like a good idea.  Especially if this new FAQ were
 publicly available, so that people that don't want to drink from the
 firehose (i.e., subscribe to cf-talk) can still access it.  :)
   



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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246307
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Issues with Adboe web site and IE

2006-07-12 Thread Mingo Hagen
Rick Root wrote:
 Munson, Jacob wrote:
   
 More OT:  Why are you using IE for your personal surfing?  ;) 
 

 Because 80% of the people using my web sites here at work are IE people, 
 I find it easier to have IE be my primary browser at work.  For a while, 
 I had Firefox as my primary browser, and then once I forgot to test a 
 web site using IE, and it bit me in the arse.  So for work purposes, 
 it's IE first, Firefox second.
Even more OT... The solution for that would be IETab 
(http://ietab.mozdev.org/)

Mingo


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

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246338
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


  1   2   >