cfoutput group

2006-12-09 Thread Pete
 

Hi All

 

I am outputting information OK but I would like to improve the way the
information is presented to the user.

 

Hence I would like to group the output.  Its sort of working but not the way
I want it to and I cant seem to get the information exactly how I want it.

 

Heres my code:

 

 

table width=100% border=0 cellpadding=4 cellspacing=0
align=center class=report

   tr

  th align=leftName/th

  th align=leftPractice/th

  th align=leftSuburb/th

th align=leftContact No/th

th align=leftLink/th

   /tr

 

   cfoutput query=qGetInfo group=stprv_Name

   State: #stprv_Name#

   cfoutput

  trcfif currentrow mod 2 class=alt/cfif

 td align=left width=20%span
class=reporttext#name#/span/td

 td align=left width=30%span
class=reporttext#practice#/span/td

 td align=left width=15%span
class=reporttext#suburb#/span/td

 td align=left width=15%span
class=reporttext#contactno#/span/td

 td align=left width=20%span class=reporttexta
href=http://#link#;#link#/a/span/td

  /tr

   /cfoutput

   /cfoutput

/table

 

 

The trouble I am having is the way the output is presented now:

 

The screen shot below shows how the page is currently being presented.

 

Any ideas on how to get it presenting better would be appreciated

 

 

 



 

 

 

 




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263402
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cfoutput group

2006-12-09 Thread Pete
Problem has been fixed.

Thanks

-Original Message-
From: Pete [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 9 December 2006 8:29 PM
To: CF-Talk
Subject: cfoutput group

 

Hi All

 

I am outputting information OK but I would like to improve the way the
information is presented to the user.

 

Hence I would like to group the output.  Its sort of working but not the way
I want it to and I cant seem to get the information exactly how I want it.

 

Heres my code:

 

 

table width=100% border=0 cellpadding=4 cellspacing=0
align=center class=report

   tr

  th align=leftName/th

  th align=leftPractice/th

  th align=leftSuburb/th

th align=leftContact No/th

th align=leftLink/th

   /tr

 

   cfoutput query=qGetInfo group=stprv_Name

   State: #stprv_Name#

   cfoutput

  trcfif currentrow mod 2 class=alt/cfif

 td align=left width=20%span
class=reporttext#name#/span/td

 td align=left width=30%span
class=reporttext#practice#/span/td

 td align=left width=15%span
class=reporttext#suburb#/span/td

 td align=left width=15%span
class=reporttext#contactno#/span/td

 td align=left width=20%span class=reporttexta
href=http://#link#;#link#/a/span/td

  /tr

   /cfoutput

   /cfoutput

/table

 

 

The trouble I am having is the way the output is presented now:

 

The screen shot below shows how the page is currently being presented.

 

Any ideas on how to get it presenting better would be appreciated

 

 

 



 

 

 

 






~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263403
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Session Settings

2006-12-09 Thread Pete
 

I have an index.cfm where I have a login  box displayed for a member to
login to the secure area of the website.

 

So far in testing I have been able to login but when I go to display a
personalized welcome message to the person its falling over.  Basically I
set session variables and was planning on using these so as to be able to
display the personalized greeting.

 

In the Application.cfm program I have set sessionmanagement=yes

 

Then I have gone to use: cfoutput Session.LoggedUserLName/cfoutput

 

But keep getting the message - Element LOGGEDUSERFNAME is undefined in
SESSION.

 

Wondering if anyone has any thoughts on what the issue might me.

 

Thanks in advance

 

 

 

On the login page I have the following code:

 

cfsilent

cfif IsDefined(FORM.username)

  !--- Query the database to see if the member is registered ---

  

  cfquery name=getLogOn datasource=#request.db_dsn#
username=#request.db_login# password=#request.db_pwd#

  SELECT * FROM tbl_customers WHERE cst_username = '#FORM.username#' AND
cst_password

  = '#FORM.password#'

  /cfquery

  cfparam name=LastLogin default=#getLogOn.cst_LoginDate#

  

  cfif (LastLogin IS ) OR (NOT IsDate(LastLogin))

cfset LastLogin=CreateODBCDateTime(2002-01-01 01:00:00)

  cfelse

cfset LastLogin=CreateODBCDateTime(LastLogin)

  /cfif

 

  !--- Record found, login  ---

  cfif getLogOn.RecordCount NEQ 0

cflock timeout=5 throwontimeout=no type=exclusive

  !--- Set the session vars ---

  cfset Session.LoggedIn = 1

  !--- This session store the username ---

  cfset Session.LoggedUser =#getLogOn.cst_MedRegoNo#

cfset Session.LoggedUserFName =#getLogOn.cst_FirstName#

cfset Session.LoggedUserLName =#getLogOn.cst_LastName#



cfset Session.LastLogin = LastLogin

/cflock

!--- Store username inside a cookie if required ---

cfif isDefined(FORM.remember_me)

  cfcookie name=LYMbrname value=#FORM.username# expires=never

  !--- Else, clean any existing cookie ---

  cfelse

  cfcookie name=LYMbrname value= expires=now

/cfif

!--- Update user logon date ---

  cfquery datasource=#request.db_dsn#
username=#request.db_login# password=#request.db_pwd#

UPDATE tbl_customers SET cst_LastLogin = #LastLogin#,
cst_LoginDate = #CreateODBCDateTime(Now())#

/cfquery

!--- If the user requested a specific page, redirect there ---

cfif IsDefined(FORM.redirect_to)

  cflocation addtoken=no url=#URLDecode(FORM.redirect_to)#

  cfelse

  cflocation addtoken=no url=members/mbr_home.cfm

/cfif

!--- Login failed ---

cfelse

!--- Store the application's name in a local var to reduce locking ---

cflock timeout=5 throwontimeout=No type=readonly
scope=application

  cfset appname=application.applicationname

/cflock

!--- Display an error message ---

cfset LogOnError=Log on unsuccesful. No match was found. Please try
again or contact administrator.

  /cfif

/cfif

cfif not isdefined(cookie.SMbrname)

  cfcookie name=SMbrname value=

/cfif

/cfsilent




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263404
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Getting Novell Network login information

2006-12-09 Thread Jochem van Dieten
Bruce Sorge wrote:
 OK, I may not need to connect to the LDAP server since I only need to get
 the account that is logged into the workstation.

Only one user is ever logged in on a system? No remote desktop, terminal / 
citrix / shell servers? No access from systems that are not part of the Novell 
Network?


 So what is involved in
 getting the users account information from the PC?

I think what you want is getting the user account information from the browser, 
not the PC: 
http://support.novell.com/techcenter/articles/ana20010306.html#CHDDACIA

Jochem

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263405
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: MySQL vs PostgreSQL

2006-12-09 Thread Jochem van Dieten
Munson, Jacob wrote:
 
 'Supported' means when if it falls over in a big steaming mess at 9am on a 
 Monday, I can phone someone else and have them come fix it because they 
 promised it would work.

I have never seen a support contract where they promised it would work, only 
support contracts where they promised they would respond within X hours to try 
to make it work.


 Right, but you can do that anyway, right?  There are always contracting
 companies around that will gladly take your money to fix things for you.

Sure there are. For instance, we sell that sort of support. But there is a 
catch: if you don't already have a contract, you don't know the 24/7 phone 
number. So for new customers it is effectively 'next business day' support and 
not 'X hour' support.


Also, high end support requires access to the source code. Hence this type of 
support is much more prevalent in the Open Source arena then in the closed 
source arena. (And that is not just for 'help it crashes' support, when I was 
working with tweakers.net to tune PostgreSQL for this benchmark I repeatedly 
checked the source code to make sure we did the right thing.)

Jochem

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263406
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 Server 2005 JDBC Driver

2006-12-09 Thread Jochem van Dieten
Tim Claremont wrote:
 I am running CFMX 7.1 on Win2k3 Server with SQL Server 2005

CF MX 7.0 or CF MX 6.1?


 I just installed SQL Server 2005, and I am unable to connect to it 
 with the JDBC Driver. I have downloaded the driver from MS, and 
 followed the instructions in the CF TechNote on the Adobe site. I then 
 restarted the CFMX Server service. No luck.
 
 The error complains that it cannot log into the database. Naturally I 
 have checked and rechecked usernames and passwords, and the same 
 username and password works fine with the ODBC connection.

Do you use Windows authentication or MS SQL Server authentication?

Jochem

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263407
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Session Settings

2006-12-09 Thread Jochem van Dieten
Pete wrote:
 I have an index.cfm where I have a login  box displayed for a member to
 login to the secure area of the website.
 
 So far in testing I have been able to login but when I go to display a
 personalized welcome message to the person its falling over.  Basically I
 set session variables and was planning on using these so as to be able to
 display the personalized greeting.
 
 In the Application.cfm program I have set sessionmanagement=yes

Can you put the application.cfm and index.cfm online somewhere where we can 
download them?

Jochem

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263408
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Session Settings

2006-12-09 Thread Pete
OK Done here is a link

http://202.157.179.158/lookyounger/cfmprgs.zip

Thanks in advance

P

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 9 December 2006 10:13 PM
To: CF-Talk
Subject: Re: Session Settings

Pete wrote:
 I have an index.cfm where I have a login  box displayed for a member to
 login to the secure area of the website.
 
 So far in testing I have been able to login but when I go to display a
 personalized welcome message to the person its falling over.  Basically I
 set session variables and was planning on using these so as to be able to
 display the personalized greeting.
 
 In the Application.cfm program I have set sessionmanagement=yes

Can you put the application.cfm and index.cfm online somewhere where we can
download them?

Jochem



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263409
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Getting Novell Network login information

2006-12-09 Thread Bruce Sorge
You know what? Come to think of it, this is a site that will be accessible
publicly, so that means that someone can administer the site from home if
they want. I think that what I will do for the admin site is just doing a
regular database login mechanism instead. I remember messing with CFLDAP in
an M$ environment and it was a pia. 

Thanks,
Bruce

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Saturday, December 09, 2006 2:44 AM
To: CF-Talk
Subject: Re: Getting Novell Network login information

Bruce Sorge wrote:
 OK, I may not need to connect to the LDAP server since I only need to get
 the account that is logged into the workstation.

Only one user is ever logged in on a system? No remote desktop, terminal /
citrix / shell servers? No access from systems that are not part of the
Novell Network?


 So what is involved in
 getting the users account information from the PC?

I think what you want is getting the user account information from the
browser, not the PC:
http://support.novell.com/techcenter/articles/ana20010306.html#CHDDACIA

Jochem



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263410
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Session Settings

2006-12-09 Thread Jochem van Dieten
Pete wrote:
 http://202.157.179.158/lookyounger/cfmprgs.zip

Two issues:
- your cfapplication tag needs a name;
- people can bookmark / deeplink and go directly to a member page before they 
are logged in (which will give an error because the name is unknown).

I think the last one is what is happening to you.

Jochem

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263411
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Getting Novell Network login information

2006-12-09 Thread James Holmes
It really is easy with Novell. Really :-)

On 12/9/06, Bruce Sorge [EMAIL PROTECTED] wrote:
 You know what? Come to think of it, this is a site that will be accessible
 publicly, so that means that someone can administer the site from home if
 they want. I think that what I will do for the admin site is just doing a
 regular database login mechanism instead. I remember messing with CFLDAP in
 an M$ environment and it was a pia.

 Thanks,
 Bruce

 -Original Message-
 From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
 Sent: Saturday, December 09, 2006 2:44 AM
 To: CF-Talk
 Subject: Re: Getting Novell Network login information

 Bruce Sorge wrote:
  OK, I may not need to connect to the LDAP server since I only need to get
  the account that is logged into the workstation.

 Only one user is ever logged in on a system? No remote desktop, terminal /
 citrix / shell servers? No access from systems that are not part of the
 Novell Network?


  So what is involved in
  getting the users account information from the PC?

 I think what you want is getting the user account information from the
 browser, not the PC:
 http://support.novell.com/techcenter/articles/ana20010306.html#CHDDACIA

 Jochem



 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263412
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: dynamically generating .flv files on upload

2006-12-09 Thread Raymond Camden
My prior company is doing this right now, not with CF but with .net.
We used FFMPEG which is free and pretty easy to use once you get used
to it. Here is a good URL:

http://blog.go4teams.com/?p=56

On 12/9/06, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:
 You may also be able to do it via COM access - would need to look at the
 binary methods to check.

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263413
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: MySQL vs PostgreSQL

2006-12-09 Thread Jacob Munson

  Right, but you can do that anyway, right?  There are always contracting
  companies around that will gladly take your money to fix things for you.


 Sure there are. For instance, we sell that sort of support. But there is a
 catch: if you don't already have a contract, you don't know the 24/7 phone
 number. So for new customers it is effectively 'next business day' support
 and not 'X hour' support.


When I was trying to convince an boss at an earlier job that we should use
Delphi for a programming project instead of VS, he played the 'support'
card.  To counter that, I did some searching, made some phone calls, and had
a list of local companies that could offer Delphi support if needed.  If one
is too busy to take my money, I'd go to the next, and so on until I had
someone on hand.

The same thing happened when we had a router go down at that job.  I called
two companies and left messages.  The first one that got back to me got the
money.

See, I think people are too scared and/or lazy to do it this way, thus they
prefer the 'comfort' level an expensive support contract offers.


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263414
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Getting Novell Network login information

2006-12-09 Thread Dawson, Michael
Interesting. I find that LDAP in Active Directory is a breeze.  What
reasons make you say that it was a pain?

M!ke 

-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Saturday, December 09, 2006 8:08 AM
To: CF-Talk
Subject: RE: Getting Novell Network login information

You know what? Come to think of it, this is a site that will be
accessible publicly, so that means that someone can administer the site
from home if they want. I think that what I will do for the admin site
is just doing a regular database login mechanism instead. I remember
messing with CFLDAP in an M$ environment and it was a pia. 

Thanks,
Bruce

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263415
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


OT: SQL 2005 SP1 Problem

2006-12-09 Thread Oğuz Demirkapı
Hi,

This is not direct CF question but it looks urgent and I want to ask 
also here.

I have SQL Server 2005 Express on my personal server. I have just 
updated into SQL Server 2005 SP1 and then I have problem now.

When I try to start my SQL Server, I get error with code 17058 (0x42a2) 
and can not start it.

It looks like this is a permission problem but strange before update 
there was no problem.

I am still looking for a solution but I want to ask also to you in case 
of having a known problem.

TIA!


Oğuz Demirkapı

TeraTech Inc. | Senior Developer
405 East Gude Dr Suite 207, Rockville, MD 20850, USA
Voice: +1 (301) 424-3903 ext 111 | Fax: +1 (301) 762-8185
Web: http://www.teratech.com | E-mail: oguz.demirkapi AT teratech.com
Winner in CFDJ awards Best Consulting. Member Team Fusebox.

~~~


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263416
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: SQL 2005 SP1 Problem

2006-12-09 Thread Robertson-Ravo, Neil (RX)
Did you apply the SP for the Express Edition specifically?




This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: [EMAIL PROTECTED]
To: CF-Talk
Sent: Sat Dec 09 16:38:18 2006
Subject: OT: SQL 2005  SP1 Problem

Hi,

This is not direct CF question but it looks urgent and I want to ask 
also here.

I have SQL Server 2005 Express on my personal server. I have just 
updated into SQL Server 2005 SP1 and then I have problem now.

When I try to start my SQL Server, I get error with code 17058 (0x42a2) 
and can not start it.

It looks like this is a permission problem but strange before update 
there was no problem.

I am still looking for a solution but I want to ask also to you in case 
of having a known problem.

TIA!


OÄYuz Demirkapı

TeraTech Inc. | Senior Developer
405 East Gude Dr Suite 207, Rockville, MD 20850, USA
Voice: +1 (301) 424-3903 ext 111 | Fax: +1 (301) 762-8185
Web: http://www.teratech.com | E-mail: oguz.demirkapi AT teratech.com
Winner in CFDJ awards Best Consulting. Member Team Fusebox.

~~~




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263417
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: SQL 2005 SP1 Problem

2006-12-09 Thread Oğuz Demirkapı
Yes.

Robertson-Ravo, Neil (RX) wrote:
 Did you apply the SP for the Express Edition specifically?




 -Original Message-
 From: [EMAIL PROTECTED]
 To: CF-Talk
 Sent: Sat Dec 09 16:38:18 2006
 Subject: OT: SQL 2005  SP1 Problem

 Hi,

 This is not direct CF question but it looks urgent and I want to ask 
 also here.

 I have SQL Server 2005 Express on my personal server. I have just 
 updated into SQL Server 2005 SP1 and then I have problem now.

 When I try to start my SQL Server, I get error with code 17058 (0x42a2) 
 and can not start it.

 It looks like this is a permission problem but strange before update 
 there was no problem.

 I am still looking for a solution but I want to ask also to you in case 
 of having a known problem.

 TIA!
   


Oğuz Demirkapı

TeraTech Inc. | Senior Developer
405 East Gude Dr Suite 207, Rockville, MD 20850, USA
Voice: +1 (301) 424-3903 ext 111 | Fax: +1 (301) 762-8185
Web: http://www.teratech.com | E-mail: oguz.demirkapi AT teratech.com
Winner in CFDJ awards Best Consulting. Member Team Fusebox.

~~~


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263418
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: SQL 2005 SP1 Problem

2006-12-09 Thread Oğuz Demirkapı
And when I change service user as Administrator it works.

But I wonder why it does not work with local system user. Because before 
SP1 update everything was ok.



Oğuz Demirkapı wrote:
 Yes.

 Robertson-Ravo, Neil (RX) wrote:
   
 Did you apply the SP for the Express Edition specifically?




 -Original Message-
 From: [EMAIL PROTECTED]
 To: CF-Talk
 Sent: Sat Dec 09 16:38:18 2006
 Subject: OT: SQL 2005  SP1 Problem

 Hi,

 This is not direct CF question but it looks urgent and I want to ask 
 also here.

 I have SQL Server 2005 Express on my personal server. I have just 
 updated into SQL Server 2005 SP1 and then I have problem now.

 When I try to start my SQL Server, I get error with code 17058 (0x42a2) 
 and can not start it.

 It looks like this is a permission problem but strange before update 
 there was no problem.

 I am still looking for a solution but I want to ask also to you in case 
 of having a known problem.

 TIA!
   
 


Oğuz Demirkapı

TeraTech Inc. | Senior Developer
405 East Gude Dr Suite 207, Rockville, MD 20850, USA
Voice: +1 (301) 424-3903 ext 111 | Fax: +1 (301) 762-8185
Web: http://www.teratech.com | E-mail: oguz.demirkapi AT teratech.com
Winner in CFDJ awards Best Consulting. Member Team Fusebox.

~~~


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263419
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Getting Novell Network login information

2006-12-09 Thread Bruce Sorge
We were getting things from Active Directory. Once we got everything working
and the network guys got their act together it worked out fine. I was just
new to LDAP and all.

-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: Saturday, December 09, 2006 8:32 AM
To: CF-Talk
Subject: RE: Getting Novell Network login information

Interesting. I find that LDAP in Active Directory is a breeze.  What
reasons make you say that it was a pain?

M!ke 

-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Saturday, December 09, 2006 8:08 AM
To: CF-Talk
Subject: RE: Getting Novell Network login information

You know what? Come to think of it, this is a site that will be
accessible publicly, so that means that someone can administer the site
from home if they want. I think that what I will do for the admin site
is just doing a regular database login mechanism instead. I remember
messing with CFLDAP in an M$ environment and it was a pia. 

Thanks,
Bruce



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263420
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Dymo Label

2006-12-09 Thread ibs
I have created labels using Report Builder and I am trying to print them
using Dymo 400 printer. When I print them, they are too small. I guess I
need to use the Dymo COM object. Has anyone done this before? 

Thanks for your help.

Bell 


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263421
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Getting Novell Network login information

2006-12-09 Thread Dawson, Michael
Cool.  Those damn network guys...   ;^) 

-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Saturday, December 09, 2006 12:45 PM
To: CF-Talk
Subject: RE: Getting Novell Network login information

We were getting things from Active Directory. Once we got everything
working and the network guys got their act together it worked out fine.
I was just new to LDAP and all.

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263422
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Datasources case-sensitive?

2006-12-09 Thread Will Tomlinson
Ran into the exact same thing at my CT shared hosting. My development machine 
would work fine... then run a query up on the server, kaboom!

Will

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263423
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Datasources case-sensitive?

2006-12-09 Thread Snake
Yes I have been on the receiving end of lots of abuse for that one when the
client was just blaming our servers. Took me a while realise what the
problem was.


Russ 

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: 09 December 2006 19:15
To: CF-Talk
Subject: Re: Datasources case-sensitive?

Ran into the exact same thing at my CT shared hosting. My development
machine would work fine... then run a query up on the server, kaboom!

Will



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263424
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ImageCFC 2.0 Released

2006-12-09 Thread Dave Lyons
thanks for the good work Rick!



I've completed imageCFC version 2.0

Numerous changes since beta 3... and unfortunately some of the changes 
will break your code if you're using image.cfc 2.0 beta.

http://www.opensourcecf.com/imagecfc

NEW (REAL) DOCUMENTATION!
http://www.opensourcecf.com/imagecfc/docs/imageCFC.cfm

This release includes a few bug changes plus the following changes:

  o readImage() and writeImage() are now public methods.

  o writeImage() method writes to temp directory and then uses
cffile to move image to its final destination.  This corrects
a known issue where resizing an image down and saving it to
the same file did not actually reduce the physical file size.

  o changed scaleX() to scaleWidth()

  o changed scaleY() to scaleHeight()

  o Added optional preserveAspect argument to resize() method
(allowing you to resize an image to fit within a certain width
and height without messing with the aspect ratio)

o  You can turn text antialiasing on and off, or change the
interpolation mode now using the setOption() method.

  o WROTE REAL API DOCUMENTATION!

There are a variety of other fixes and minor enhancements.  Please see 
the full change log on the site for details.

Rick

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263425
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Which type of lock is best for cffile rename

2006-12-09 Thread Archie Campbell
I am renaming a file on a shared server and am wondering what type of 
lock is best

I am currently doing the following:
cflock name=FilenameChange timeout=10
   cfffile action=rename source=#oldFilename#  
destination=#newFilename#
/cflock

Is that OK?

Thanks
Archie Campbell


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263426
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Bond sucks and cfreturn sucks

2006-12-09 Thread Will Tomlinson
Ok, why does cfreturn go against the grain of all the cf tags?? 

cfreturn getproductreviews

why is there no attribute quotes in it? I always thought it looked a bit odd 
and stuck out from other cf tag code. 

Anyone wanna chime in on this ignorant question? 

loL!

me

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263427
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Raymond Camden's Sitemapgenerator UDF

2006-12-09 Thread Terry Troxel
Could someone show me please an example of how properly to
call
Raymond Camden's Sitemap generator from cflib.org?

Terry Troxel


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263428
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread Robertson-Ravo, Neil (RX)
I would presume that since it is just returning a var and cfreturn is self
explanatory as in return this var - no need for quotes as you don't need
them in most places when referencing a var.

   






.. 


This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Tomlinson
To: CF-Talk
Sent: Sat Dec 09 22:27:38 2006
Subject: Bond sucks and cfreturn sucks

Ok, why does cfreturn go against the grain of all the cf tags?? 

cfreturn getproductreviews

why is there no attribute quotes in it? I always thought it looked a bit odd
and stuck out from other cf tag code. 

Anyone wanna chime in on this ignorant question? 

loL!

me



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263430
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread Christopher Jordan
What do you mean by attribute quotes? What do you expect the syntax to 
look like? Can you further explain what you mean?

Cheers,
Chris

Will Tomlinson wrote:
 Ok, why does cfreturn go against the grain of all the cf tags?? 

 cfreturn getproductreviews

 why is there no attribute quotes in it? I always thought it looked a bit odd 
 and stuck out from other cf tag code. 

 Anyone wanna chime in on this ignorant question? 

 loL!

 me

 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263429
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread Robertson-Ravo, Neil (RX)
As in cfset foo = now()

:-) ... No quotes.








This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Robertson-Ravo, Neil (RX)
To: CF-Talk
Sent: Sat Dec 09 23:38:31 2006
Subject: Re: Bond sucks and cfreturn sucks

I would presume that since it is just returning a var and cfreturn is self
explanatory as in return this var - no need for quotes as you don't need
them in most places when referencing a var.

   






... 


This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Tomlinson
To: CF-Talk
Sent: Sat Dec 09 22:27:38 2006
Subject: Bond sucks and cfreturn sucks

Ok, why does cfreturn go against the grain of all the cf tags?? 

cfreturn getproductreviews

why is there no attribute quotes in it? I always thought it looked a bit odd
and stuck out from other cf tag code. 

Anyone wanna chime in on this ignorant question? 

loL!

me





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263431
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread Will Tomlinson
howcome in cfinvoke this is what it looks like...

returnvariable=whatever

??

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263432
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread Robertson-Ravo, Neil (RX)
The invoke is a diff case as it is assigning a variable not returning.








This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Tomlinson
To: CF-Talk
Sent: Sat Dec 09 22:27:38 2006
Subject: Bond sucks and cfreturn sucks

Ok, why does cfreturn go against the grain of all the cf tags?? 

cfreturn getproductreviews

why is there no attribute quotes in it? I always thought it looked a bit odd
and stuck out from other cf tag code. 

Anyone wanna chime in on this ignorant question? 

loL!

me



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263433
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread Robertson-Ravo, Neil (RX)
I also think it is more Java like..

Back to Gears of War:-)








This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Robertson-Ravo, Neil (RX)
To: CF-Talk
Sent: Sat Dec 09 23:44:42 2006
Subject: Re: Bond sucks and cfreturn sucks

The invoke is a diff case as it is assigning a variable not returning.








This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Tomlinson
To: CF-Talk
Sent: Sat Dec 09 22:27:38 2006
Subject: Bond sucks and cfreturn sucks

Ok, why does cfreturn go against the grain of all the cf tags?? 

cfreturn getproductreviews

why is there no attribute quotes in it? I always thought it looked a bit odd
and stuck out from other cf tag code. 

Anyone wanna chime in on this ignorant question? 

loL!

me





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263434
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread Will Tomlinson
As in cfset foo = now()
\

Hold it Neil guy! You're comparing cfreturn thevar to cfset foo = now()

There's my point! lol! 

me

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263435
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread Robertson-Ravo, Neil (RX)
No, that with just an example of no quotes :-)


The return does not need a to be set to a var or need quotes as it is not
set in the CFC (well it be in a var no doubt)










This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Tomlinson
To: CF-Talk
Sent: Sat Dec 09 22:44:19 2006
Subject: Re: Bond sucks and cfreturn sucks

As in cfset foo = now()
\

Hold it Neil guy! You're comparing cfreturn thevar to cfset foo = now()

There's my point! lol! 

me



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263436
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Bond sucks and cfreturn sucks

2006-12-09 Thread Dave Watts
 Ok, why does cfreturn go against the grain of all the cf tags?? 
 
 cfreturn getproductreviews
 
 why is there no attribute quotes in it? I always thought it 
 looked a bit odd and stuck out from other cf tag code. 

There is no attribute to quote. You can return a literal value:

cfreturn foo

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

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

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263437
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: SQL 2005 SP1 Problem

2006-12-09 Thread Dave Watts
 And when I change service user as Administrator it works.
 
 But I wonder why it does not work with local system user. 
 Because before SP1 update everything was ok.

I don't know, but you can typically find these sorts of things out using
Sysinternals/Winternals tools (filemon, sysmon).

http://www.microsoft.com/technet/sysinternals/default.mspx

In any case, you should be able to run SQL Server 2005 with a
less-privileged security context than Local System (or a less-privileged
user than Administrator). I haven't tried that with Express, though - it'll
be a little harder to figure out, I suspect.

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

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

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263438
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread Matt Williams
I see Will's point. Not that I want it to change, but

cfreturn value=#myFoo# /

would be more consistent with other cf tags, such as

cfswitch expression=#myVar# (instead of just cfswitch myVar)

Matt

On 12/9/06, Dave Watts [EMAIL PROTECTED] wrote:
  Ok, why does cfreturn go against the grain of all the cf tags??
 
  cfreturn getproductreviews
 
  why is there no attribute quotes in it? I always thought it
  looked a bit odd and stuck out from other cf tag code.
-- 
Matt Williams
It's the question that drives us.

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263439
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Raymond Camden's Sitemapgenerator UDF

2006-12-09 Thread Raymond Camden
Hey, I bet I can. ;) Seriously, in the future it is probably easier to
just use my Contact tab on my home page.

The basic concept is that you can either pass a query containing
information about your URLs, or a simple list of URLs.

If you pass a query, the UDF expects to see the following columns:

lastmod - A datetime stamp for when the url was last modified

changefreq - How often the URL changes. Can be one of these:
always,hourly,daily,weekly,monthly,yearly,never

priority - a value from 0 to 1 that represents the importance of the url

url - the url, obviously

So the idea is you create this query based on your site parameters. So
take my blog for example. All the URLs are based on blog entries. I
can create a site map by getting all the blog entries and creating the
URL using queryNew, queryAddRow, etc. The generateSiteMap UDF then
takes this UDF and creates the correct XML for the sitemap.

On 12/9/06, Terry Troxel [EMAIL PROTECTED] wrote:
 Could someone show me please an example of how properly to
 call
 Raymond Camden's Sitemap generator from cflib.org?

 Terry Troxel


 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263440
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: SQL 2005 SP1 Problem

2006-12-09 Thread Oğuz Demirkapı
Thanks for your suggestion Dave.

I have already tried a tool like this to manage system users and NTFS 
rights. But problem is that this server is a dedicated server which came 
with a preinstalled OS and its own security settings. They have a 
strange security policy on default setup and sometimes it makes me angry.

I had same kind of problems while configuring MySQL or Subversion before. 
 

I miss sometimes my *nix boxes. I think my next server will be a Linux 
box with a clean Debian installation. :)



Dave Watts wrote:
 And when I change service user as Administrator it works.

 But I wonder why it does not work with local system user. 
 Because before SP1 update everything was ok.
 

 I don't know, but you can typically find these sorts of things out using
 Sysinternals/Winternals tools (filemon, sysmon).

 http://www.microsoft.com/technet/sysinternals/default.mspx

 In any case, you should be able to run SQL Server 2005 with a
 less-privileged security context than Local System (or a less-privileged
 user than Administrator). I haven't tried that with Express, though - it'll
 be a little harder to figure out, I suspect.

 Dave Watts, CTO, Fig Leaf Software
   

Oğuz Demirkapı

TeraTech Inc. | Senior Developer
405 East Gude Dr Suite 207, Rockville, MD 20850, USA
Voice: +1 (301) 424-3903 ext 111 | Fax: +1 (301) 762-8185
Web: http://www.teratech.com | E-mail: oguz.demirkapi AT teratech.com
Winner in CFDJ awards Best Consulting. Member Team Fusebox.

~~~


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263441
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Bond sucks and cfreturn sucks

2006-12-09 Thread James Holmes
Sure, but we can also do something like:

cfset MyObject.SetSomeValue(AValue)

Notice there's no attribute = something syntax there either.

On 12/10/06, Will Tomlinson [EMAIL PROTECTED] wrote:
 As in cfset foo = now()
 \

 Hold it Neil guy! You're comparing cfreturn thevar to cfset foo = now()

 There's my point! lol!

 me

 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263442
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Which type of lock is best for cffile rename

2006-12-09 Thread James Holmes
As long as anyone else using those files in their code uses exactly
the same name, it will work.

On 12/10/06, Archie Campbell [EMAIL PROTECTED] wrote:
 I am renaming a file on a shared server and am wondering what type of
 lock is best

 I am currently doing the following:
 cflock name=FilenameChange timeout=10
cfffile action=rename source=#oldFilename#
 destination=#newFilename#
 /cflock

 Is that OK?

 Thanks
 Archie Campbell


 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263443
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Problems with Lyla Captcha

2006-12-09 Thread Brian Rinaldi
This is a known issue and the fix is documented on the site:
http://lyla.maestropublishing.com/Issues.cfm

- Brian Rinaldi
blog - http://www.remotesynthesis.com/blog
CF Open Source List - http://www.remotesynthesis.com/cfopensourcelist
Boston CFUG - http://www.bostoncfug.org

On 12/8/06, Jason Radosevich [EMAIL PROTECTED] wrote:
 Hi,
  I keep getting this error with Lyla Captcha

 message  The selected method setColor was not found.
 diagnostics  The selected method setColor was not found. Either there
 are no methods with the specified method name and argument types, or
 the method setColor is overloaded with arguments types that ColdFusion
 can't decipher reliably. If this is a Java object and you verified
 that the method exists, you may need to use the javacast function to
 reduce ambiguity.
 The error occurred on line 278.


 I have changed line 278 to read cfset
 graphics.setColor(getColorByType(getConfigBean().getFontColor())) /



 --
 --
 Jason Radosevich
 http://www.terminalfusion.com

 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263444
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: MySQL vs PostgreSQL

2006-12-09 Thread Aaron Roberson
 When I was trying to convince an boss at an earlier job that we should use
 Delphi for a programming project instead of VS, he played the 'support'
 card.  To counter that, I did some searching, made some phone calls, and had
 a list of local companies that could offer Delphi support if needed.  If one
 is too busy to take my money, I'd go to the next, and so on until I had
 someone on hand...
 See, I think people are too scared and/or lazy to do it this way, thus they
 prefer the 'comfort' level an expensive support contract offers.

I think that is pretty good advice and I will remember this example in
case I get into the same situation or find myself wondering if I
should pay extra for an expensive support contract.

Thanks,
Aaron

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263445
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 Report and Crystal reports

2006-12-09 Thread David Mineer
I have been using the asp pages for years with crystal 9.  Works great, but 
only 3 concurrent users.

Several months ago I spent some time with my free support incident for my CR 11 
upgrade trying to get everything working with version 11.  I was successfull 
but it wasn't easy.  Also, I never went to production because I am still 
upgrading a major app on a new production machine.

I have some info at work.  I will try and put my thoughts together and send you 
more info on Monday.  If that is too long to wait, you may search their support 
site for their sample apps.  They do have them, they are just extremely 
difficult to find.

The report builder is great, but only to a point.  I use it for mailing labels 
and such, but I cannot get it to duplicate the main report that we use for a 
newsletter that we publish.  Just too many quirks and roadblocks.  YOu just 
don't have the same finetooth control that you have in Crystal.  I hope that 
changes, though.  Anyone disagrees, I would be happy to send you a sample of 
the report to see if you can make the report builder do it.

Later

Dave

Has anyone succeeded in getting this combination to work?  We have tried
many combinations and the instructions we could find to no avail.  Please
let me know what you did to make this work.

-- 
Russel Madere


Never Again!
Rebuild New Orleans with Category 5 Protection

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263446
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 Report and Crystal reports

2006-12-09 Thread David Mineer
I'm sorry, I searched for a message I expected to be posted and got the wrong 
one and replied to it.  This is an old message.  Subject is the same, but not 
the message I meant to reply to.

 I have been using the asp pages for years with crystal 9.  Works great, 
 but only 3 concurrent users.
 
 Several months ago I spent some time with my free support incident for 
 my CR 11 upgrade trying to get everything working with version 11.  I 
 was successfull but it wasn't easy.  Also, I never went to production 
 because I am still upgrading a major app on a new production machine.
 
 I have some info at work.  I will try and put my thoughts together and 
 send you more info on Monday.  If that is too long to wait, you may 
 search their support site for their sample apps.  They do have them, 
 they are just extremely difficult to find.
 
 The report builder is great, but only to a point.  I use it for 
 mailing labels and such, but I cannot get it to duplicate the main 
 report that we use for a newsletter that we publish.  Just too many 
 quirks and roadblocks.  YOu just don't have the same finetooth control 
 that you have in Crystal.  I hope that changes, though.  Anyone 
 disagrees, I would be happy to send you a sample of the report to see 
 if you can make the report builder do it.
 
 Later
 
 Dave
 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263447
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: dynamically generating .flv files on upload

2006-12-09 Thread Russ
Download riva, and then figure out what commands need to be run (you can
check the batch file that riva generates), it basically uses ffmpeg and
flvtool to create flash 7 compatible flv... 

Russ

 -Original Message-
 From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 08, 2006 4:23 PM
 To: CF-Talk
 Subject: RE: dynamically generating .flv files on upload
 
 No, but as long as you can do the conversion from the command line, you
 can
 run the same command with cfexecute. You'll want to worry about file sizes
 and conversion times though. That's a task that is pretty strenuous on a
 processor.
 
 I'd suggest batching them late at night with a system task rather than
 coldfsuion.
 
 ..:.:.:.:.:.:.:.:.:.:.:.
 Bobby Hartsfield
 http://acoderslife.com
 
 
 
 
 
 -Original Message-
 From: Will Swain [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 08, 2006 4:02 PM
 To: CF-Talk
 Subject: SOT: dynamically generating .flv files on upload
 
 I want to allow users to upload video files which I will then convert
 automatically to .flv files. If I have a copy of quicktime pro with the
 FLV
 QuickTime Export plug-in installed on the server, is it possible to do
 this
 using CF to manage the uploads and conversion? Anyone done anything like
 this?
 
 Thanks
 
 Will
 
 
 
 
 
 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
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:263448
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4