Re: Coldfusion Code Review Tool

2011-01-13 Thread dev losh

Hey ! Thanks all for the Responses. I will try all these and will update in 
this thread. 

Thanks
Devlosh


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


Coldfusion Code Review Tool

2011-01-11 Thread dev losh

Can anyone recommend any good tool that can be used for Coldfusion Code 
Reviews? 
I tried Sonar but could'nt find coldfusion plugin for the same.

Thanks,
Devlosh 

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


Re: OOP vs cfinvoke

2010-10-29 Thread Dev Guru

>I've got an app here that has several hundred cfinvoke calls to a couple
>of CFCs. I'm trying to decide if it's worth my time to go through and
>convert the app from using cfinvoke constantly to using cfobject. How
>much of a difference on my overhead will it make?
>
> 
>
>Kris Sisk
>
>USD-457 Technology
>
>1205 Fleming St.
>
>Garden City, KS 67846
>
>(620) 805-7107
>
> 
>
>There are 10 types of people in this world: those who understand binary
>and those who don't.


If you create an object you can actually output whats inside the method you 
reference like this:

#thisObj.displayMethod(userID=sission.userID)#

This actually works good for methods where you display some different html 
based on the user that is passed in. 

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


Coldfusion administrator page showing unexpected constant error

2009-06-22 Thread dev losh

The coldfusion administrator for my cf installation is no more working !!
Whenever I load the page http://blabla/cfide/administrator/index.cfm , I'm 
getting the following error :

unexpected constant #2 56 


I got the same error in my previous CF installation too and ended up 
re-installing CF to fix it.

Please Help !
-Dev 

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


re-creating new browser session in j2ee session

2009-06-20 Thread dev losh

I am facing a weird issue.
scenario:
site 1: www.site1.com
site 2. www.blabla.site1.com

both sites are in coldfusion having same coding structure.

ISSUE:

 load site1 in browser . but should not type www. just type site1.com
 then in the same browser type in the address bar www.blabla.site1.com

now when i try to login to site2 i'm getting a session error. This is because 
the browser session of site1 is being used by site2 since i typed in site2 in 
the same browser.

Is there any way to kill the existing browser session and re-create the browser 
session within the same browser window?

Please help.

-Dev 

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


Re: Submitting larger data using cfajaxproxy: throwing error

2009-01-27 Thread dev losh
Hey Thanks Kumar we idendifed that the error is because of new lines in it.

Do you have any  solution for this issue ? thanks a lot.

Dev

>Does the Text Area have new lines in it. I remember reading about
>there being an issue with JS and Textarea with afajaxproxy when the
>text has newlines.
>
>
>-- 
>Kumar Shah
>http://www.coldfusion-ria.com/Blog/
>
>
>> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318610
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Submitting larger data using cfajaxproxy: throwing error

2009-01-26 Thread dev losh
Hi all,

I'm submitting my form using cfajaxproxy(using remote method invocation). it is 
working fine with small data. my page is having a text area. if we give larger 
text say like 500 chars, the sumbit action is throwing javascript error. the 
CFC is not able to handle it. is there any solution for this issue ? please 
help 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318588
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Submitting larger data using cfajaxproxy

2009-01-26 Thread dev losh
Hi all,

I'm submitting my form using cfajaxproxy(using remote method invocation). it is 
working fine with small data. my page is having a text area. if we give larger 
text say like 500 chars, the sumbit action is throwing javascript error. the 
CFC is not able to handle it. is there any solution for this issue ? please 
help 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318585
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


call a cfm page from cfc

2009-01-16 Thread dev losh
hi all,

Is it possible to call a cfm page from cfc? 

i.e,  My requirement is to  call a cfm page and store the output in a variable 
all inside cfc. 

Please help me if this is possible.
Thanks,
Dev 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318054
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


call a cfm page from cfc

2009-01-16 Thread dev losh
hi all,

Is it possible to call a cfm page from cfc? 

i.e,  My requirement is to  call a cfm page and store the output in a variable 
all inside cfc. 

Please help me if this is possible.
Thanks,
Dev 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318053
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Cfgrid cgridcolumn textColor not working

2008-09-10 Thread dev losh
hi,

I need to change the color of text in a particular column to blue. I tried 
textcolor option in cfgridcolumn . no joy :(

can anyone help... 

Regards,
Loshy 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Re: Cfgrid Javascript function not working if not put inside tags

2008-08-21 Thread dev losh
Hey Great Joy it worked !!

Thanks Charilie :)

>
> your javascript stuff here
>
>
>
>On Thu, Aug 21, 2008 at 1:53 PM, dev losh <[EMAIL PROTECTED]> wrote:
>
>> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Cfgrid Javascript function not working if not put inside tags

2008-08-21 Thread dev losh
I having an issue with ajaxOnLoad function to use with gfgrid.

if i call a function say 'myfun' using  for a 
cfgrid, 
the function will work ONLY IF PUT INSIDE  tags. i need to make 
that js dynamic.. please some one can help me with any tweaks that will allow 
JS to be placed anywhere in the code ?

Thanks,
Dev 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:311385
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: Oracle Query Question

2008-04-30 Thread ColdFusion Dev
Sweet that worked... (Yes all the records will contain date daa)

On Wed, Apr 30, 2008 at 12:10 PM, Greg Morphis <[EMAIL PROTECTED]> wrote:

> '' isnt a date recognized..
> try to_char()
> to_char(myDate, '')
> That should work for you
>
> On Wed, Apr 30, 2008 at 11:06 AM, Ian Skinner <[EMAIL PROTECTED]> wrote:
> > Randy Adkins wrote:
> >  > So to answer a few questions:
> >  > Yes, the field within the oracle database is a true date time field.
> >
> >  Do all the records contain date data?  Are any of them NULL?
> >
> >
> >
> >
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


OT: FB5 Question

2007-06-06 Thread CFMX DEV
Sorry for the OT, but I am not having any luck with the Fusebox5 mailing
list on Yahoo nor anything on Google.
Yes, I hit those before posting here.

1. What is the best way to have a select list setup compiled and reused on
various pages?
Ex:  State select list compiled and called on many display pages.
At first I thought it was best in the fusebox.ini.cfm file calling:
v.stateList where the view circuit would call the dsp_state.cfm file.
But that threw an error.

2. When using dsp pages to show a form, then sending it to an action file
and performing some server side validation, if the SSV
failes, I want to go back to the form page, display the form and values
entered as well as message regarding the failure. I am using
client side and server side validation in case the end user has JS disabled.

TIA!!


~|
ColdFusion 8 beta – Build next generation applications today.
Free beta download on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

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


Re: Inser XML into Sql Server Database

2006-08-02 Thread dev user06
Thank you for your relply!
but what I'm looking for is a script which can do this in coldfusion.
I already have the table created which uses GUID so basically I need to know
where do I write my cfquery and insert statements in the code to insert the
data into the database...
I'm really new to all this stuff don't know how to proceed with
this.
and I don't want to save ot as a xmldatatype since that table is used in so
many places in and I can't change the interface for
everything.

On 8/2/06, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]>
wrote:
>
> If its SQL Server 2005 - may as well just bung the whole XML packet in as
> an
> XML datatype ;-)!
>
>
>
> -Original Message-
> From: dev user06 [mailto:[EMAIL PROTECTED]
> Sent: 02 August 2006 15:15
> To: CF-Talk
> Subject: Inser XML into Sql Server Database
>
> I have to parse my xml using Coldfusion MX 7 and insert the results into
> the
> sql server database; I have approximately 12,000 records.
>
> http://www.mydynamiclinktofile.com/content.asp
> ">;
> 
> 
> 
> 
> 
> 
> #myBenefit[i].Name.xmltext#
>
> 
> 
> 
>
>
>
> 

~|
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:248631
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Inser XML into Sql Server Database

2006-08-02 Thread dev user06
Thank you for your relply!
but what I'm looking for is a script which can do this in coldfusion.
I already have the table created which used GUID

On 8/2/06, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]>
wrote:
>
> If its SQL Server 2005 - may as well just bung the whole XML packet in as
> an
> XML datatype ;-)!
>
>
>
> -----Original Message-
> From: dev user06 [mailto:[EMAIL PROTECTED]
> Sent: 02 August 2006 15:15
> To: CF-Talk
> Subject: Inser XML into Sql Server Database
>
> I have to parse my xml using Coldfusion MX 7 and insert the results into
> the
> sql server database; I have approximately 12,000 records.
>
> http://www.mydynamiclinktofile.com/content.asp
> ">;
> 
> 
> 
> 
> 
> 
> #myBenefit[i].Name.xmltext#
>
> 
> 
> 
>
>
>
> 

~|
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:248629
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Inser XML into Sql Server Database

2006-08-02 Thread dev user06
I have to parse my xml using Coldfusion MX 7 and insert the results into the 
sql server database; I have approximately 12,000 records.

http://www.mydynamiclinktofile.com/content.asp";>; 
 
 
  
 
 

#myBenefit[i].Name.xmltext#   



   

~|
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:248626
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Small Problem with Query Duplicates

2005-09-12 Thread CF-DEV
What part is being duplicated? The URL? All of the records?
If it is all the records then you should have a look at your 
Database. Unless duplication is okay in your DB.

What is the ID field? Is it an auto generated ID or an ID
Field you are populating?


 

-Original Message-
From: Mark Henderson [mailto:[EMAIL PROTECTED] 
Sent: Sunday, September 11, 2005 10:44 PM
To: CF-Talk
Subject: Small Problem with Query Duplicates

I have a query thats run from a user search request, that looks like so:


 SELECT URL, ID, Company, Category, Phone, Email,
Paid_listing
 FROM   nzfarming
WHERE   URL IS NOT NULL
 ANDuCase(Company) like

 ORDER BY   Paid_listing ASC, Company ASC;


This is fine and works.  However, the url is listed (in the output for
display) each time an instance of the search term is matched (obviously) and
I would like to get rid of the duplicates. I tried using DISTINCT without
success i.e in the query,  SELECT UNIQUE URL, Company etc

If I do a single QoQ, like so

SELECT  DISTINCT URL
FROMsearchFarmLinks

it DOES appear to return the correct recordset but I'm stumped as to how to
re query based on that result. I also figure there must be a quicker cleaner
way to do this. Any ideas?? All help appreciated.

TIA
regards
Mark



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: Reading file contents

2005-08-03 Thread CF-DEV
Sorry that is the only other way I can think of besides
the way you are processing the request now. 

Maybe someone else has a better idea.

-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 03, 2005 9:00 PM
To: CF-Talk
Subject: RE: Reading file contents

Unfortunately, no. The remote server is linux etc ... 

-Original Message-
From: CF-DEV [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 03, 2005 5:53 PM
To: CF-Talk
Subject: RE: Reading file contents

One way is if the web server has permissions on the remote server, You could
do a simple CFFILE ACTION=READ FILE="\\REMOTESERVER\FILE.TXT"

This is considering that the CF services are running under the same profile
that has access to the remote server. 




Mindkeeper Solutions
website: http://www.mindkeeper.net
support: http://support.mindkeeper.net

 

-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 03, 2005 8:09 PM
To: CF-Talk
Subject: Reading file contents

I wish to read the contents of a file on a remote server via ftp.

The lame approach appears to be:



http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: Reading file contents

2005-08-03 Thread CF-DEV
One way is if the web server has permissions on the remote server,
You could do a simple CFFILE ACTION=READ FILE="\\REMOTESERVER\FILE.TXT"

This is considering that the CF services are running under the same
profile that has access to the remote server. 




Mindkeeper Solutions
website: http://www.mindkeeper.net
support: http://support.mindkeeper.net

 

-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 03, 2005 8:09 PM
To: CF-Talk
Subject: Reading file contents

I wish to read the contents of a file on a remote server via ftp.

The lame approach appears to be:



http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: FCKEditor XML Error

2005-02-23 Thread GroupOne Dev.
I assume you are referring to the fckconfig.js file?  If so, I have already 
changed the following lines:

// Link Browsing
FCKConfig.LinkBrowser = true ;
FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 
"filemanager/browser/default/browser.html?Connector=connectors/cfm/connector.cfm"
 ;

// Image Browsing
FCKConfig.ImageBrowser = true ;
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 
"filemanager/browser/default/browser.html?Type=Image&Connector=connectors/cfm/connector.cfm"
 ;

The Link Upload url is still pointing to an aspx, but it is also set to false, 
so I assume it is not being loaded.

Any other ideas?

Thanks
-- Jeff


 From: "Matthew Small" <[EMAIL PROTECTED]>
Sent: Wednesday, February 23, 2005 2:09 PM
To: CF-Talk 
Subject: RE: FCKEditor XML Error 

I had the same problem myself. I found that the FCKeditor was trying to use
the ASPX version rather than the CF version. I changed it in the
configuration and it started working. 
- Matt Small

-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 23, 2005 1:53 PM
To: CF-Talk
Subject: OT: FCKEditor XML Error

Sorry for the off-topic, but I have not been able to find this answer any
where else and I have seen people on this list talk about FCKEditor.

I am attempting to use FCKEditor 2.0 RC2 on CFMX 6.1 w/ Win2K3. Everything
works fine until I load the resource browser via the browse button in the
image properties dialog. When the resource browser loads, I get a
javascript pop-up saying:

XML request error: Internal Server Error (500).

I have found several questions regarding this error, but no answers. If
anybody has any suggestions they would like to send me off-list, I would
appreciate it.

Thanks
-- Jeff



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

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


RE: CFX_Dumptext and MX6.1

2004-10-13 Thread dev
Brian, Thanks for your reply. The tag cfx_dumptext takes the results of a
query and writes it to a text file. There are a few controls for formatting
the output file. 

Tony

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 13, 2004 3:50 PM
To: CF-Talk
Subject: Re: CFX_Dumptext and MX6.1

What does the tag do?

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CFX_Dumptext and MX6.1

2004-10-13 Thread dev
I have code which works on CF5Server but not MX6.1 using the tag
cfx_dumptext.dll from the tag library.

I have searched the site and past emails without any hint at anyone else
posting this issue. I have tested the code on two servers (CF5 and MX6.1) -
it works fine on 5 but not on 6.1.

Has anyone run into code that uses cfx_dumptext and not have it work on 6.1?
I am using the latest version. Kinda frazzled at this point, please share
you experience with this if any.

Tony
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Help - Cannot repopulate collection after purge

2003-07-06 Thread Web Dev
I had 3 verity collections which worked yesterday and a few days ago up
until I tried to purge, reindexed and updated the collection.

As a test, I use the same keword search, no results have appeared except for
one collection only!

I have updated, purged and rebuilt the collections but nothing seems to get
them ALL working again.

What am I to do next? I'd appreciate anyone's suggestions as this is a
time-sensitive project with a tight deadline.

thanks,

Chris




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



HELP with Authorize.net - SIM or AIM?? Safeset?

2003-01-29 Thread Dev Team
Soon authorize.net will end the weblink connect to their gateway

Anyone attempted this migration yet? What is the best method?  I know that
cf_authorize now uses AIM but requires you to have your username and
password reside on the server, while there is cfx_sim_fingerprint that
calculates only the fingerprint, but would require another tag to impliment.
The tag itself is encripted with your user name and password.

I am up for suggestions, help and any other information that I can get from
anyone about this. I just signed on to authorize.net and figure instead of
implimenting weblink I would program for their new accepted methods..

Thanks,
Jeff


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Error in CFFile Tag

2003-01-07 Thread CF-DEV
Make sure your form tag contains:

enctype="multipart/form-data"

-Original Message-
From: Larry Juncker [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 07, 2003 5:27 PM
To: CF-Talk
Subject: Error in CFFile Tag


I have the exact same code other than directory on two websites.

One I can upload files too all day and the other one keeps giving me:

The form field specified in the CFFILE tag (UPLOADNAME) does not contain an
uploaded file.  Please be sure that you have specified the correct form
field name.

My debug information shows:

Form fields:
etc.etc.etc
UPLOADNAME=C:\My Documents\My Pictures\Eds55.jpg

I have tried several different images in several different folders and it
just does not want to work.

Any help of any kind would be greatly appreciated.

Larry Juncker
Senior Cold fusion Developer
Heartland Communications Group, Inc.
[EMAIL PROTECTED]
(515) 574-2122

CONFIDENTIALITY NOTICE
The information contained in this e-mail is intended only for the use of the
individual or entity to which it is addressed.  This e-mail may contain
information that is privileged, confidential and/or personal.  If the reader
of this message is not the intended recipient (or the employee or agent
responsible to deliver it to the intended recipient), you are hereby
notified that any dissemination, distribution, or copying of this
communication is prohibited.

If you have received this communication in error, please notify us at the
e-mail listed above.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Email Problem

2002-12-11 Thread CF-DEV
Is it sending HTML based email?

It might be that they have Netscape Mail set for TEXT
mail and not HTML.

-Original Message-
From: cfhelp [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 8:23 PM
To: CF-Talk
Subject: Email Problem


One of our newsletter clients is getting email all full of ==09. They are
running Win2k and Using Netscape Mail.

Here is a piece of one of the newsletters.

--part1_ef.6bbe8a7.2b26d046_boundary Content-Type: text/plain;
name="BlueEarD.txt" Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline; filename="BlueEarD.txt" =09=09=09 =09=20
=20 =20 =20 =20 =09=09 =09=09 =09=09 =09=09 =09=09Welcome!
09=09=09 =09=09 =09=09December 09, 2002 =09=09 =09=09 =09=09 =09=09
=09=09 =09=09 =09=09 =09=09=09
Password? <3D%22http://www.blueear.com/Login.cfm%22> |=20
=09=09=09Help <3D%22http://www.blueear.com/help.cfm%22> |=20
=09=09=09Tell=20= a Friend <3D%22http://www.blueear.com/friend.cfm%22>


Anyone seen this before please help.

Rick

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: CFLoop query problem

2002-10-31 Thread CF-DEV
What is happening, you are getting the LAST record in the query to populate
the values.

What is it you are attempting??

If you want an Overall total of ItemPrice
Then is OrderTotal already defined?

If you are want to loop and continually add the values
until the end of the query is reached then you can
do something as follows:







-Original Message-
From: Mark Leder [mailto:mel@;markleder.com]
Sent: Thursday, October 31, 2002 2:32 PM
To: CF-Talk
Subject: CFLoop query problem


Hi All,
I'm trying to loop through a query to add all the items contained in
that query.

This query set contains three records.  When I do a CFOUTPUT inside the
CFLOOP on the ItemPrice field, all three individual prices are returned
in succession, but the  tag only shows the first
record.  I want the tag to contain the sum of all three ItemPrice
fields. What am I doing wrong?








Thanks,
Mark


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Need assistance with listbox on a form

2002-10-31 Thread CF-DEV
On the action page test to see if the value exists:
ISDEFINED()

-Original Message-
From: Clark, Aimee [mailto:aclark@;stinsonmoheck.com]
Sent: Thursday, October 31, 2002 2:14 PM
To: CF-Talk
Subject: Need assistance with listbox on a form


I have a page in which employees can update information that is contained in
their record in my SQL table. I recently added a multi-select list box with
a list of foreign languages that they can choose from if it's applicable to
them.

If a user selects a foreign language and submits their changes, it works.

If they change their address, but don't speak a foreign language and the
list box doesn't have anything selected, then they get this lovely error
message:

GetOld.FLanaguage IS ""


Error near line 126, column 24.
  _


Error resolving parameter GETOLD.FLANAGUAGE



The column FLANAGUAGE is not present in the query named GETOLD. It is likely
that you have misspelled the name of the column.




The error occurred while processing an element with a general identifier of
(CFIF), occupying document position (126:1) to (126:30).

Ok, so FLangauge is a field in the query, so it isn't that. Here's the piece
of the page where it's failing at:


 

 


Is the reason why I am having this problem have to do with the fact that
this is a multi-select list box and if so, how do I correct this to make
this work correctly?

For anyone who wants to see the code for the list box it is:

 
Foriegn Languages You May Speak:

  
  


  

   #LanguageName#
  



Thank you,

Aimee Clark
Web Developer
Stinson Morrison Hecker LLP
[EMAIL PROTECTED]



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: user - attachments ?

2002-10-26 Thread CF-DEV
Usually an input box with the type=file
The form must be set for method=multipart/form-data



-Original Message-
From: Ed Gordon [mailto:NetDr@;callptc.com]
Sent: Friday, October 25, 2002 3:31 PM
To: CF-Talk
Subject: user - attachments ?


What is used to allow users to upload "attachments", and what other
considerations might there be to this scenario...


I have a system whereas users enter "headlines" that are then posted to the
HOME page of the site, along with an "expiration" date (after which the home
page CFM ignores them). They often wish to refer to a JPG or something -
have any code like this I can adapt for this purpose? It would be much
appreciated.


TIA,

Ed Gordon





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: CFM Files Display as TXT

2002-10-03 Thread CF-DEV

That was it!!!

Thanks very much. Not sure how that happened but much appreciated
for the info!!


-Original Message-
From: Andres [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 03, 2002 2:46 PM
To: CF-Talk
Subject: RE: CFM Files Display as TXT


check your IIS site's application configuration. make sure your .cfm pages,
or whatever mapping you use, is  properly set to your CFUSION\bin\iscf.dll.

for security purposes, make sure the "check that file exists" is checked.
This will patch some IIS security flaws.

HTH

Andres

-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 03, 2002 9:57 AM
To: CF-Talk
Subject: CFM Files Display as TXT


Any idea why CFM files when called by a browser
would display them as if they were TEXT and not
served up as CFM files from the CF Application Server?

I am running CF5 under IIS.
I do have index.cfm as a default document.

But when I call:  http://localhost/mydir/index.cfm
it displays the contents of the file as text and not
being processed accordingly.

TIA



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: CFM Files Display as TXT

2002-10-03 Thread CF-DEV

CF Application Server service is running along with all the
other CF services but still displays the contents of the
CFM file to the browser instead of processing the CFM code.

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 03, 2002 10:35 AM
To: CF-Talk
Subject: Re: CFM Files Display as TXT


Your default documents list shouldn't matter in this case although you may
want to check to make sure the CF Server service hasn't stopped in NT
Services... If the service is stopped, afaik IIS just passes the file on to
the browser as is.

> Any idea why CFM files when called by a browser
> would display them as if they were TEXT and not
> served up as CFM files from the CF Application Server?

> I am running CF5 under IIS.
> I do have index.cfm as a default document.

> But when I call:  http://localhost/mydir/index.cfm
> it displays the contents of the file as text and not
> being processed accordingly.


S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



CF5 Problem

2002-10-03 Thread CF-DEV

Any idea why CF 5 would server CFM files up as TXT files?

I do have the index.cfm in the IIS settings for default documents.

TIA!
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: CF Application Logs

2002-10-02 Thread CF-DEV

Nope only session.

Everything else is either request or variables scoped


-Original Message-
From: Mike Brunt [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 02, 2002 6:34 PM
To: CF-Talk
Subject: RE: CF Application Logs


What about Application and/or Server scoped variables, are there any of
those being used?

Kind Regards - Mike Brunt, CTO
Webapper
http://www.webapper.com
Downey CA Office
562.243.6255
AIM - webappermb

"Webapper - Making the NET work"


-Original Message-
From: CF-DEV [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 02, 2002 3:21 PM
To: CF-Talk
Subject: RE: CF Application Logs


There is only maybe 3 session variables being used which
are all in fact utilizing CFLOCK.



-Original Message-
From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 02, 2002 6:17 PM
To: CF-Talk
Subject: RE: CF Application Logs


Possibly memory corruption due to variables not being locked appropriately.

-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 3 October 2002 2:16 AM
To: CF-Talk
Subject: CF Application Logs


Has anyone seen this error in the server.log file
from the CF Administrator?

Caught a fatal signal (4) - Aborting

OR

Caught a fatal signal (11) - Aborting

After receiving this error, CF Executive (I imagine)
initates a call for restarting the CF Application Server Services.

If so, any ideas what it means as well as possible causes?





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: CF Application Logs

2002-10-02 Thread CF-DEV

There is only maybe 3 session variables being used which
are all in fact utilizing CFLOCK.



-Original Message-
From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 02, 2002 6:17 PM
To: CF-Talk
Subject: RE: CF Application Logs


Possibly memory corruption due to variables not being locked appropriately.

-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 3 October 2002 2:16 AM
To: CF-Talk
Subject: CF Application Logs


Has anyone seen this error in the server.log file
from the CF Administrator?

Caught a fatal signal (4) - Aborting

OR

Caught a fatal signal (11) - Aborting

After receiving this error, CF Executive (I imagine)
initates a call for restarting the CF Application Server Services.

If so, any ideas what it means as well as possible causes?



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: CFMX / MSSQL

2002-09-30 Thread CF-DEV

Don't I feel like a total A$$

In the HELP it stated to put LOCAL
within the parathesis.

Such as: (local)

Not True.. It is the standard: localhost

Thanks everyone!!


-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 30, 2002 9:09 PM
To: CF-Talk
Subject: Re: CFMX / MSSQL


This is weird -- I'll try sending direct

Dick

On Monday, September 30, 2002, at 06:03 PM, Dick Applebaum wrote:

> I am having trouble posting the setups below -- copy pasted
>
>
>
>

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX / MSSQL

2002-09-30 Thread CF-DEV

This is the error:

Connection verification failed for data source: Mindkeeper_SQL
[]java.sql.SQLException: SQLException occurred in JDBCPool while attempting
to connect, please check your username, password, URL, and other
connectivity info.
The root cause was that: java.sql.SQLException: SQLException occurred in
JDBCPool while attempting to connect, please check your username, password,
URL, and other connectivity info.

-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 30, 2002 8:51 PM
To: CF-Talk
Subject: Re: CFMX / MSSQL


On Monday, September 30, 2002, at 05:24 PM, CF-DEV wrote:

> I have CF MX installed and SQL 7.
>
> I created the database along with in the
> Control Panel, I created the ODBC connection
> to the DB with a DSN name of: myDB
>
> Now in CF it will not connect.
> I have SQL 7 set to TCP/IP in the Client Network
> Utility.
>
> I have no PWD associated since this is used
> as my DEV box.
>
> Any ideas?
>

Why use ODBC - CFMX has a built-in JDBC driver that works just fine.

Below are 3 different ways that work on CFMX OS X (Linux).

HTH

Dick



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX / MSSQL

2002-09-30 Thread CF-DEV

I am using the local dbo account of "sa"
no password.

It will not authenicate in CF MX Admin.
The drivers are those in CF MX.



-Original Message-
From: Brook [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 30, 2002 8:54 PM
To: CF-Talk
Subject: Re: CFMX / MSSQL


What type of drivers are you using? The ODBC Socket Connection should work.
If you want to use the Sql Server Driver, you need to have mixed mode
authentication on your SQL Server. You need to setup a sql server login,
with a username an password. Then use this username and password to connect
to the datasource via CFMX.

In earlier version you could use window authentication with the sql server
driver, but not in MX. And you should try to avoid the ODBC Socket
Connection. I have both those services stopped..

Brook

At 08:24 PM 30/09/02 -0400, you wrote:
>I have CF MX installed and SQL 7.
>
>I created the database along with in the
>Control Panel, I created the ODBC connection
>to the DB with a DSN name of: myDB
>
>Now in CF it will not connect.
>I have SQL 7 set to TCP/IP in the Client Network
>Utility.
>
>I have no PWD associated since this is used
>as my DEV box.
>
>Any ideas?
>
>
>

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMX / MSSQL

2002-09-30 Thread CF-DEV

I have CF MX installed and SQL 7.

I created the database along with in the 
Control Panel, I created the ODBC connection
to the DB with a DSN name of: myDB

Now in CF it will not connect.
I have SQL 7 set to TCP/IP in the Client Network
Utility.

I have no PWD associated since this is used
as my DEV box. 

Any ideas?


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CGI.HTTP_REFERER

2002-07-09 Thread dev

>>I doubt that you can do this without some assistance from the intervening
>>page. While browsers have a history object,
<<<

>>> > I currently use #CGI.HTTP_REFERER# to see the last page my user came
>>> > from, is there a way to look back 2 pages?<<<

This is not exactly the same thing, but the following does access the
history object successfully. I don't know JavaScript that well, but it's not
a stretch to think you could access and capture the url.

This may help too:
http://www.dannyg.com/javascript/quickref/index.html

HTH

-Craig





GO BACK




function goHistory(form)
{

window.history.go(parseInt(form.num.value));
}









-1
-2
-3
-4









__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists