Re: What are ColdFusion developers doing with Web Services?

2004-01-13 Thread Geoff Bowers
Christian Cantrell wrote:
 1. I added web services to MXNA (http://www.markme.com/mxna) so that
 people could write their own presentation layers.(We haven't made the
 API public yet).

Of course you could always use the webservice API that has been public 
at Fullasagoog (the solution MXNA is based on) since Feb 2003:
http://www.fullasagoog.com/webservice.cfm

Great for playing around or building real apps.Let me know if you need 
something -- new method, additional properties, whatever... I'm normally 
pretty flexible.

-- geoff
http://www.fullasagoog.com/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Safari Navigation Bug and general speed issues

2004-01-13 Thread Hugo Ahlenius
Does Safari honor caching headers?


-
Hugo AhleniusE-Mail: [EMAIL PROTECTED]
Project Officer Phone:+46 8 230460
UNEP GRID-ArendalFax:+46 8 230441
Stockholm OfficeMobile:+46 733 467111
 WWW: http://www.grida.no
- 



| -Original Message-
| From: Jim Davis [mailto:[EMAIL PROTECTED]
| Sent: Tuesday, January 13, 2004 05:34
| To: CF-Talk
| Subject: RE: Safari Navigation Bug and general speed issues
|
| We just had a major problem with some versions of Safari (not
| all).The issue, it seems was that Safari was a little
| aggressive with caching.Our log in page submits to itself:
| showing error or success information.Safari only showed the
| original page from its cache even tho' the page had been updated.
|
| We fixed this by adding a URL variable to the page - all I did was
| ?tick=#getTickCount()#It's kludgy as hell, but it changes the URL
| enough to force Safari to display the actual page.
###

This message has been scanned by F-Secure Anti-Virus for Microsoft
Exchange.
For more information, connect to http://www.F-Secure.com/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Two Destinations for POST form?

2004-01-13 Thread Hugo Ahlenius
Another way is to (using _javascript_) also submit the data to a (hidden)
iframe that calls the local database.


-
Hugo AhleniusE-Mail: [EMAIL PROTECTED]
Project Officer Phone:+46 8 230460
UNEP GRID-ArendalFax:+46 8 230441
Stockholm OfficeMobile:+46 733 467111
 WWW: http://www.grida.no
- 



| -Original Message-
| From: Mike Townend [mailto:[EMAIL PROTECTED]
| Sent: Monday, January 12, 2004 13:51
| To: CF-Talk
| Subject: RE: Two Destinations for POST form?
|
| Do an initial post to a local page, then insert these
| details.Then you can do a CFHTTP post to the SMS provider
|
| HTH
|
|
|
| -Original Message-
| From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
| Sent: Monday, January 12, 2004 12:47
| To: CF-Talk
| Subject: Two Destinations for POST form?
|
|
| Afternoon all, I trust you had a good weekend?
|
| I've got a form that sends a textarea message to an SMS
| service. This is
| simple enough, but I want to record the very same message
| (and who sent it)
| on the local site's database, meaning the form would have to
| POST to two
| destinations. Is this possible? Any ideas?
|
| Cheers,
| Rob
|_
|
|
|
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: X separated values.

2004-01-13 Thread Hugo Ahlenius
Why are you doing this in first place? I think the best choice, if there
is a risk that the separator will be present in the string, is to use a
non-printing character.

/H.


-
Hugo AhleniusE-Mail: [EMAIL PROTECTED]
Project Officer Phone:+46 8 230460
UNEP GRID-ArendalFax:+46 8 230441
Stockholm OfficeMobile:+46 733 467111
 WWW: http://www.grida.no
- 



| -Original Message-
| From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
| Sent: Monday, January 12, 2004 15:51
| To: CF-Talk
| Subject: X separated values.
|
| Just a quicky,
|
| I'm looping over a list and specifying a custom delimiter,I
| want to be able to allow the user to specify a delimiter of
| 1 characters however CF seems to take each of these
| characters as a separate delimiter. e.g.
| delimiters=ab looks separates the list at an a or a b
| and not ab.
|
| Is there an quick easy why to specify that the cfloop should
| match the entire value not each character individually ?
|
| Cheers,
|
| Darren
|
|
|
|
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CFMX Upgrade Problem

2004-01-13 Thread Bruce Sorge
Thanks Steven, but none of this worked. I guess I am going to roll back to CFMX 6.0.
- Original Message - 
From: Steven Erat 
To: CF-Talk 
Sent: Tuesday, January 06, 2004 11:50 AM
Subject: RE: CFMX Upgrade Problem

Maybe this will help:

Troubleshooting DataDirect SequeLink ODBC service startup issues

http://www.macromedia.com/support/coldfusion/ts/documents/cfmx_sequelink.htm
http://www.macromedia.com/support/coldfusion/ts/documents/cfmx_sequelinkht
m 

 _

From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 06, 2004 12:02 PM
To: CF-Talk
Subject: CFMX Upgrade Problem

I just upgraded our development server from CF5 to CFMX, then to CFMX 6.1.
Now the CFMX ODBC Server and Agent will not start. They do not generate any
errors. I am only informed that they could not be started on the local
machine. Has anyone had this happen to them before, and if so, what did you
do to remedy it?

Thanks,

Bruce

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




RE: X separated values.

2004-01-13 Thread [EMAIL PROTECTED]
Hi Hugo,

Well I'm writting a way for users to do a quick batch import from another
system to our web based one.
Assuming that most systems can export to CSV I'm putting together a
prototype.Works well but, I got a request for multiple chracter delimiters
and then found out that cfloop treats them as separate delimiters.

Got it working now thanks to the Strip UDF !

I agree with you but, we need to allow a user to import data from a source
that we are not sure about.I'd say the likelyhood is that data files will
be comma delimited but, I'm trying to build a robust system to allow for
other values.

Darren

-Original Message-
From: Hugo Ahlenius [mailto:[EMAIL PROTECTED]
Sent: 13 January 2004 08:50
To: CF-Talk
Subject: RE: X separated values.

Why are you doing this in first place? I think the best choice, if there
is a risk that the separator will be present in the string, is to use a
non-printing character.

/H.


-
Hugo AhleniusE-Mail: [EMAIL PROTECTED]
Project Officer Phone:+46 8 230460
UNEP GRID-ArendalFax:+46 8 230441
Stockholm OfficeMobile:+46 733 467111
 WWW: http://www.grida.no
- 



| -Original Message-
| From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
| Sent: Monday, January 12, 2004 15:51
| To: CF-Talk
| Subject: X separated values.
|
| Just a quicky,
|
| I'm looping over a list and specifying a custom delimiter,I
| want to be able to allow the user to specify a delimiter of
| 1 characters however CF seems to take each of these
| characters as a separate delimiter. e.g.
| delimiters=ab looks separates the list at an a or a b
| and not ab.
|
| Is there an quick easy why to specify that the cfloop should
| match the entire value not each character individually ?
|
| Cheers,
|
| Darren
|
|
|
|
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




re:re: X separated values. (XML)

2004-01-13 Thread [EMAIL PROTECTED]
Of course, XML imports would be better !

-Original Message-
From: Hugo Ahlenius [mailto:[EMAIL PROTECTED]
Sent: 13 January 2004 08:50
To: CF-Talk
Subject: RE: X separated values.

Why are you doing this in first place? I think the best choice, if there
is a risk that the separator will be present in the string, is to use a
non-printing character.

/H.


-
Hugo AhleniusE-Mail: [EMAIL PROTECTED]
Project Officer Phone:+46 8 230460
UNEP GRID-ArendalFax:+46 8 230441
Stockholm OfficeMobile:+46 733 467111
 WWW: http://www.grida.no
- 



| -Original Message-
| From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
| Sent: Monday, January 12, 2004 15:51
| To: CF-Talk
| Subject: X separated values.
|
| Just a quicky,
|
| I'm looping over a list and specifying a custom delimiter,I
| want to be able to allow the user to specify a delimiter of
| 1 characters however CF seems to take each of these
| characters as a separate delimiter. e.g.
| delimiters=ab looks separates the list at an a or a b
| and not ab.
|
| Is there an quick easy why to specify that the cfloop should
| match the entire value not each character individually ?
|
| Cheers,
|
| Darren
|
|
|
|
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Safari Navigation Bug and general speed issues

2004-01-13 Thread Ryan Mitchell
It will from the next release... It was a known bug that has been fixed for
what should be an immenent release
Up to version 1.1.1 it didn¹t honor them as well as it should :)

On 13/1/04 8:44 am, Hugo Ahlenius [EMAIL PROTECTED] wrote:

 Does Safari honor caching headers?
 
 
 -
 Hugo AhleniusE-Mail: [EMAIL PROTECTED]
 Project Officer Phone:+46 8 230460
 UNEP GRID-ArendalFax:+46 8 230441
 Stockholm OfficeMobile:+46 733 467111
WWW: http://www.grida.no
 -
 
 
 
 | -Original Message-
 | From: Jim Davis [mailto:[EMAIL PROTECTED]
 | Sent: Tuesday, January 13, 2004 05:34
 | To: CF-Talk
 | Subject: RE: Safari Navigation Bug and general speed issues
 |
 | We just had a major problem with some versions of Safari (not
 | all).The issue, it seems was that Safari was a little
 | aggressive with caching.Our log in page submits to itself:
 | showing error or success information.Safari only showed the
 | original page from its cache even tho' the page had been updated.
 |
 | We fixed this by adding a URL variable to the page - all I did was
 | ?tick=#getTickCount()#It's kludgy as hell, but it changes the URL
 | enough to force Safari to display the actual page.
 ###
 
 This message has been scanned by F-Secure Anti-Virus for Microsoft
 Exchange.
 For more information, connect to http://www.F-Secure.com/
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




cfunit test suites

2004-01-13 Thread Thomas Chiverton
The docs are slightly lacking in how to group test cases together into a 
suite, I've tried creating a component like:
cfcomponent extends=com.macromedia.cfunit.test_suite
	cffunction name=run access=remote
		cfscript
		setSuiteName('Test Suite for CEO');
		addTest('com.bluefinger.tests.a_test.test_checkPass_fails');
		addTest('com.bluefinger.tests.b_test.test_checkVehicleTelIsFree_fails');
		run();
		/cfscript
	/cffunction
/cfcomponent
but that doesn't work.

The individual test cases for each object (http://.../a_test.cfc?method=run) 
run fine.
-- 
Tom Chiverton 
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy this
communication if received in error. No binding contract will result from
this e-mail until such time as a written document is signed on behalf of
the company. BlueFinger Limited cannot accept responsibility for the
completeness or accuracy of this message as it has been transmitted over
public networks.***
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Temp files question

2004-01-13 Thread John Stanley
thanks, just wasnt sure.

-Original Message-
From: Doug White [mailto:[EMAIL PROTECTED]
Sent: Monday, January 12, 2004 5:48 PM
To: CF-Talk
Subject: Re: Temp files question

yes, they can be deleted

==
Stop spam on your domain, Anti-spam solutions
http://www.clickdoug.com/mailfilter.cfm
http://www.clickdoug.com/mailfilter.cfm 
For hosting solutions http://www.clickdoug.com http://www.clickdoug.com 
==
Aspire to Inspire before you Retire or Expire!

- Original Message - 
From: John Stanley [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, January 12, 2004 4:45 PM
Subject: Temp files question

: Does anyone know what the following directories and files sre used for?
The
: only thing I see is that they are taking up a bunch of hard drive space:
:
: c:\documents and settings\computer\local settings\temp\tmp15e6
: tmp0017e0
: c:\documents and settings\computer\local settings\temp\tmp22b6
: tmp0017e1
:
: Some of these are over 300 megs in size.
: Can they be safely deleted?
: Running XP Pro
:
: Thanks,
: John
:
:
:
:
: 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFFile Move Error

2004-01-13 Thread Jeff Chastain
Anybody?This is driving me crazy.

-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 12, 2004 9:43 AM
To: CF-Talk
Subject: CFFile Move Error

I am working with a script that interacts with a mail server, reading
messages from a specific POP account and processing them.The problem I am
running into is dealing with the message attachments.In the CFMAIL tag, I
store all attachments in a central folder with unique file names.Then
during the processing, I am attempting to move them to different folders and
rename them back to their original file names.

I am getting the following error though on the CFFILE tag while attempting
to move and rename the files:

'Attribute validation error for tag CFFILE.The value of the attribute
source which is currently D:\attachments\fd4.dtd, is invalid.'

However, if I copy this file path and paste it into the run window on the
server (start - run), the server returns the file - i.e. the path is valid.
What am I missing here?

--

cfloop from=1 to=#listLen(archiveMessages.attachments, ' ')#
index=attachmentIndex
 cfset currentAttachmentFile =
listGetAt(archiveMessages.attachmentFiles, attachmentIndex, ' ') !---
original, unmodified attachment file name only (no path info) ---
 cfset origAttachmentFileName = listGetAt(archiveMessages.attachments,
attachmentIndex, ' ') !--- unique attachment file name including current
path location ---
 cffile action="" source=#currentAttachmentFile#
destination=#variables.baseFilePath#\#friendlyUID#\#origAttachmentFileName#
 !--- rename the attachment back to the original file name and move to
folder unique to parent message ---
/cfloop

*** The list functions are parsing the attachment list using the TAB string
as deliminators - that is just not appearing in the HTML message.

--

Thanks,
-- Jeff

_

Jeff Chastain
Web Applications Developer, Consultant 
Certified Macromedia ColdFusion Developer

FBXSolutions
http://www.fbxsolutions.com/ http://www.fbxsolutions.com
email:mailto:[EMAIL PROTECTED]
[EMAIL PROTECTED]
phone: 469.964.2047 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Determining Database Type

2004-01-13 Thread C. Hatton Humphrey
I'm working on an application where I need to provide support for both MySQL
and MSSQL databases.This is because our devel and production environments
are both running MySQL 4.x on Windows but our staging/code share server is
running MySQL 3.23 on Linux.They're working on upgrading but because of
the control panel they run it's not a possibility at the moment.

So what I've done is created a MS SQL version of the database.In the
entire site there are only two queries that have to be changed for the
different databases (MSSQL concatenates differently than MySQL).Other than
that everything else is playing nicely together.

What I'm wondering, though, is if there is a way for me to run a query in my
application.cfm to determine the version of the database I'm running.At
the moment I'm exploring using a CFCatch around a specific MySQL query
(select version()), but does anyone have any better ideas of how to go about
this?

FWIW this is all running on Windows servers using CFMX 6.0 and 6.1.

Thanks!
Hatton

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.559 / Virus Database: 351 - Release Date: 1/7/2004
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CFFile Move Error

2004-01-13 Thread Thomas Chiverton
On Tuesday 13 Jan 2004 13:33 pm, Jeff Chastain wrote:
 Anybody?This is driving me crazy.
 However, if I copy this file path and paste it into the run window on the
 server (start - run), the server returns the file - i.e. the path is
 valid. What am I missing here?

Permissions ?

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy this
communication if received in error. No binding contract will result from
this e-mail until such time as a written document is signed on behalf of
the company. BlueFinger Limited cannot accept responsibility for the
completeness or accuracy of this message as it has been transmitted over
public networks.***
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFFile Move Error

2004-01-13 Thread Mike Townend
It could be that there is a file lock involved which will result in the move
failing (as its a copy then delete).Change the code to do a copy instead
of a move to see if it initially fixes the current problem you are having.

 
If it does then I would suggest that you do this instead but setup a
schedule that cleans out the directory every now and then (based on
timestamps so that it doesnt play with a file thats being used) so that the
directory doesnt get bloated and fill up the server.

HTH

-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 13:34
To: CF-Talk
Subject: RE: CFFile Move Error

Anybody?This is driving me crazy.

-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 12, 2004 9:43 AM
To: CF-Talk
Subject: CFFile Move Error

I am working with a script that interacts with a mail server, reading
messages from a specific POP account and processing them.The problem I am
running into is dealing with the message attachments.In the CFMAIL tag, I
store all attachments in a central folder with unique file names.Then
during the processing, I am attempting to move them to different folders and
rename them back to their original file names.

I am getting the following error though on the CFFILE tag while attempting
to move and rename the files:

'Attribute validation error for tag CFFILE.The value of the attribute
source which is currently D:\attachments\fd4.dtd, is invalid.'

However, if I copy this file path and paste it into the run window on the
server (start - run), the server returns the file - i.e. the path is valid.
What am I missing here?

--

cfloop from=1 to=#listLen(archiveMessages.attachments, ' ')#
index=attachmentIndex
 cfset currentAttachmentFile =
listGetAt(archiveMessages.attachmentFiles, attachmentIndex, ' ') !---
original, unmodified attachment file name only (no path info) ---
 cfset origAttachmentFileName = listGetAt(archiveMessages.attachments,
attachmentIndex, ' ') !--- unique attachment file name including current
path location ---
 cffile action="" source=#currentAttachmentFile#
destination=#variables.baseFilePath#\#friendlyUID#\#origAttachmentFileName#
 !--- rename the attachment back to the original file name and move to
folder unique to parent message ---
/cfloop

*** The list functions are parsing the attachment list using the TAB string
as deliminators - that is just not appearing in the HTML message.

--

Thanks,
-- Jeff

_

Jeff Chastain
Web Applications Developer, Consultant 
Certified Macromedia ColdFusion Developer

FBXSolutions
http://www.fbxsolutions.com/ http://www.fbxsolutions.com
email:mailto:[EMAIL PROTECTED]
[EMAIL PROTECTED]
phone: 469.964.2047 
_ 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Two Destinations for POST form?

2004-01-13 Thread Bill Grover
Another option is to do something like the following.I've done this a couple of places where we wrote systems that submitted to a page then after everything is released the specs changed and we needed to submit to 2 pages to get things to work.

 
Have your form submit to a page that does your local stuff.Then at the bottom of that page have the following code:

 
form action="" id=values name=values method=post
 cfloop collection=#form# item=lcFieldName
input type=hidden name=#lcFieldName# value=#FORM[lcFieldName]#
 /cfloop
/form

SCRIPT language=_javascript_
 document.values.submit();
/script

So now your localpage will submit on to the SMS page which will still display to the user what it usually does.
__ 
file:///E:/EUColor.gif 	
Bill Grover 	
Manager, Information Systems 	Phone:	 301.424.3300 x3324 	
EU Services, Inc. 	FAX:	 301.424.3696	
649 North Horners Lane 	E-Mail:	mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]	
Rockville, MD 20850-1299 	WWW:	http://www.euservices.com/ http://www.euservices.com 	
__ 

-Original Message-
From: Hugo Ahlenius [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 3:47 AM
To: CF-Talk
Subject: RE: Two Destinations for POST form?

Another way is to (using _javascript_) also submit the data to a (hidden)
iframe that calls the local database.

-
Hugo AhleniusE-Mail: [EMAIL PROTECTED]
Project Officer Phone:+46 8 230460
UNEP GRID-ArendalFax:+46 8 230441
Stockholm OfficeMobile:+46 733 467111
 WWW: http://www.grida.no
- 

| -Original Message-
| From: Mike Townend [mailto:[EMAIL PROTECTED]
| Sent: Monday, January 12, 2004 13:51
| To: CF-Talk
| Subject: RE: Two Destinations for POST form?
|
| Do an initial post to a local page, then insert these
| details.Then you can do a CFHTTP post to the SMS provider
|
| HTH
|
|
|
| -Original Message-
| From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
| Sent: Monday, January 12, 2004 12:47
| To: CF-Talk
| Subject: Two Destinations for POST form?
|
|
| Afternoon all, I trust you had a good weekend?
|
| I've got a form that sends a textarea message to an SMS
| service. This is
| simple enough, but I want to record the very same message
| (and who sent it)
| on the local site's database, meaning the form would have to
| POST to two
| destinations. Is this possible? Any ideas?
|
| Cheers,
| Rob
|_
|
|
| 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Determining Database Type

2004-01-13 Thread Nick de Voil
 What I'm wondering, though, is if there is a way for me to run a query in
my
 application.cfm to determine the version of the database I'm running.At
 the moment I'm exploring using a CFCatch around a specific MySQL query
 (select version()), but does anyone have any better ideas of how to go
about
 this?

I think your approach is a pretty good one actually.

The correct way would be to use the java.sql.DatabaseMetaData class.

Nick
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT - CFMX on WebSphere and http server directives

2004-01-13 Thread Joe On The Road
Hi,
I understand that the WebSphere (WAS) plugin this is used by the 
apache (IBM HTTPD) server uses an xml config file, generated but the 
WebSphere admin, to decide what get requests go to the app server and 
which get request it should do.My slightly OT questions is:If the 
get request is handled by the plugin (WAS) , are the HTTP directives in 
the httpd.conf file ignored?Specifically the directory and expires items.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: MS Access password

2004-01-13 Thread Angel Stewart
There are password removal programs for access .mdb files. 

 
Do a search on google. 

 
You need to purchase them though.
They will display the password for the file to you.

 
These also exist for .zip, .doc and most other common file formats.

 
Here's a quick list,you should find something to help you out here:

 
HYPERLINK
http://dmoz.org/Computers/Security/Products_and_Tools/Password_Recovery
/http://dmoz.org/Computers/Security/Products_and_Tools/Password_Recover
y/

 
-Gel

-Original Message-
From: Alan Rafael Bleiweiss [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 1:30 AM
To: CF-Talk
Subject: MS Access password

I've got a new client with an existing site using MS Access.The
problem 
is the original developer put a password lock on the database - the guy
is 
no longer reachable - doesn't return calls, email or written letters.

I need to either know how to get passed the password or a CF snippet to 
learn the data table names, column names and data types.Or can I just
do 
an import from within SQL server 2000 without that password?

Any help would be greatly appreciated - otherwise I need to charge the 
client a lot of money to build this from scratch.

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.559 / Virus Database: 351 - Release Date: 1/7/2004
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CFFile Move Error

2004-01-13 Thread Jeff Chastain
I checked that one - the everyone group has full access to both the source and destination folders.

Thanks
-- Jeff

Original Message:
From: Thomas Chiverton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: Re: CFFile Move Error
Date: Tue, 13 Jan 2004 13:40:15 +

On Tuesday 13 Jan 2004 13:33 pm, Jeff Chastain wrote:
 Anybody?This is driving me crazy.
 However, if I copy this file path and paste it into the run window on the
 server (start - run), the server returns the file - i.e. the path is
 valid. What am I missing here?

Permissions ?

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy this
communication if received in error. No binding contract will result from
this e-mail until such time as a written document is signed on behalf of
the company. BlueFinger Limited cannot accept responsibility for the
completeness or accuracy of this message as it has been transmitted over
public networks.***


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFFile Move Error

2004-01-13 Thread Jeff Chastain
Okay, the copy operation threw a slightly different error message, which
pointed me at the root cause - the destination folder did not exist.The
copy or move operation does not create the directory if it does not exist.
Therefore, I had to use cfdirectory first, and then the move operation works
fine.

 
Thanks for the help.
-- Jeff

-Original Message-
From: Mike Townend [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 7:43 AM
To: CF-Talk
Subject: RE: CFFile Move Error

It could be that there is a file lock involved which will result in the move
failing (as its a copy then delete).Change the code to do a copy instead
of a move to see if it initially fixes the current problem you are having.

If it does then I would suggest that you do this instead but setup a
schedule that cleans out the directory every now and then (based on
timestamps so that it doesnt play with a file thats being used) so that the
directory doesnt get bloated and fill up the server.

HTH

-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 13:34
To: CF-Talk
Subject: RE: CFFile Move Error

Anybody?This is driving me crazy.

-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 12, 2004 9:43 AM
To: CF-Talk
Subject: CFFile Move Error

I am working with a script that interacts with a mail server, reading
messages from a specific POP account and processing them.The problem I am
running into is dealing with the message attachments.In the CFMAIL tag, I
store all attachments in a central folder with unique file names.Then
during the processing, I am attempting to move them to different folders and
rename them back to their original file names.

I am getting the following error though on the CFFILE tag while attempting
to move and rename the files:

'Attribute validation error for tag CFFILE.The value of the attribute
source which is currently D:\attachments\fd4.dtd, is invalid.'

However, if I copy this file path and paste it into the run window on the
server (start - run), the server returns the file - i.e. the path is valid.
What am I missing here?

--

cfloop from=1 to=#listLen(archiveMessages.attachments, ' ')#
index=attachmentIndex
 cfset currentAttachmentFile =
listGetAt(archiveMessages.attachmentFiles, attachmentIndex, ' ') !---
original, unmodified attachment file name only (no path info) ---
 cfset origAttachmentFileName = listGetAt(archiveMessages.attachments,
attachmentIndex, ' ') !--- unique attachment file name including current
path location ---
 cffile action="" source=#currentAttachmentFile#
destination=#variables.baseFilePath#\#friendlyUID#\#origAttachmentFileName#
 !--- rename the attachment back to the original file name and move to
folder unique to parent message ---
/cfloop

*** The list functions are parsing the attachment list using the TAB string
as deliminators - that is just not appearing in the HTML message.

--

Thanks,
-- Jeff

_

Jeff Chastain
Web Applications Developer, Consultant 
Certified Macromedia ColdFusion Developer

FBXSolutions
http://www.fbxsolutions.com/ http://www.fbxsolutions.com
email:mailto:[EMAIL PROTECTED]
[EMAIL PROTECTED]
phone: 469.964.2047 
_ 
_ 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




P3P ready cookies

2004-01-13 Thread Thane Sherrington
Does anyone know of a simple, clear tutorial to making cookies work with 
IE6 in anything other than Low Privacy mode?I've downloaded IBM's free 
P3P policy maker - put the files in the proper places, and even used a P3P 
policy validator to test it.It says it's fine, but IE6 won't allow 
cookies when set toanything other than Low on the Privacy 
slider.Perhaps I'm just braindead, but I don't understand why this should 
be so hard.My cookies only carry ColdFusion ID data to handle movements 
from page to page, and other than tracking information in my server logs, 
I'm not gathering any personal data.

Any help would be greatly appreciated.

T

Tired of your bookmarks/favourites being limited to one computer?Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Safari Navigation Bug and general speed issues

2004-01-13 Thread Larry C. Lyons
Alan Rafael Bleiweiss wrote:

 For some reason my code didn't get included in the first email.Here's a 
 link to the code in question...
 
 http://www.brionanet.com/nextprevcodechunk.txt
 

Alan,

While not directly related to your question, one thing you may want to 
do in your code is add the Cachedwithin attribute to your query. It 
would speed things up a lot, especially for large queries, assuming of 
course that your SortOrder variable stays the same from page to page.

CFQUERY NAME=GetProducts DATASOURCE=#EComDB# 
cachedwithin=#CreateTimeSpan(0, 0, 60, 0)#
	SELECT * from Products,Categories
	WHERE Products.CategoryID = #CategoryID#	
	AND Products.CategoryID = Categories.CategoryID
	AND Products.InventoryCount 0
	ORDER BY #SortOrder#
/CFQUERY

regards,

larry
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: MS Access password

2004-01-13 Thread Andy Ousterhout
If someone is hosting your site, you might also check with their technical
department.I had a problem a while back and the support person I talked to
said he had a program to find the passwords.

Andy
-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 8:12 AM
To: CF-Talk
Subject: RE: MS Access password

There are password removal programs for access .mdb files.

Do a search on google.

You need to purchase them though.
They will display the password for the file to you.

These also exist for .zip, .doc and most other common file formats.

Here's a quick list,you should find something to help you out here:

HYPERLINK
http://dmoz.org/Computers/Security/Products_and_Tools/Password_Recovery
/http://dmoz.org/Computers/Security/Products_and_Tools/Password_Recover
y/

-Gel

-Original Message-
From: Alan Rafael Bleiweiss [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 1:30 AM
To: CF-Talk
Subject: MS Access password

I've got a new client with an existing site using MS Access.The
problem
is the original developer put a password lock on the database - the guy
is
no longer reachable - doesn't return calls, email or written letters.

I need to either know how to get passed the password or a CF snippet to
learn the data table names, column names and data types.Or can I just
do
an import from within SQL server 2000 without that password?

Any help would be greatly appreciated - otherwise I need to charge the
client a lot of money to build this from scratch.

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.559 / Virus Database: 351 - Release Date: 1/7/2004
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Detecting SQL Update success

2004-01-13 Thread Dan O'Keefe
Thank you Paul and Nate.

Dan
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




cfsavecontent question

2004-01-13 Thread Les Mizzell
I've got a rather lengthy form that needs to be emailed to several 
destinations. Basically, the email that goes out is the exact same 
contents as the final processing page when the form is completed.

Previously, I had an app_email.cfm page that routed the mail, but 
duplicated all the processing code and everything from the page above.

So, when redesigning the app, I figured Hey, cfsavecontent could save 
me a lot of trouble. Figured I'd just wrap all the necessary stuff from 
the processing page with cfsavecontent and email it off.

The email part works, but content wrapped in cfsavecontent doesn't 
display?Though the email is sent with the proper content, the final 
processing page using the cfsavecontent tag displays nothing inside 
the tag.

So, either I need to find a way to get that content to display, or find 
a better way to email the necessary content off the processing page. I 
was hoping to NOT have to duplicate code from the processing page on the 
app_email.cfm page.

Thoughts?

-- 
Les Mizzell
-
“Un jour tout sera bien,
voil notre esprance.
Tout est bien aujourd'hui,
voil l'illusion”
-
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: cfsavecontent question

2004-01-13 Thread Raymond Camden
cfsavecontent saves, and suppresses, the output. Just add a cfoutput#the
name of the variable#/cfoutput if you want to see the output.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: cfsavecontent question

2004-01-13 Thread Philip Arnold
 The email part works, but content wrapped in cfsavecontent doesn't
 display?Though the email is sent with the proper content, the final
 processing page using the cfsavecontent tag displays nothing inside
 the tag.

This is perfectly normal behavour - CFSAVECONTENT does exactly that - it
saves the content you're generating into a variable

 So, either I need to find a way to get that content to
 display, or find
 a better way to email the necessary content off the
 processing page. I
 was hoping to NOT have to duplicate code from the processing
 page on the app_email.cfm page.

Erm, CFOUTPUT the variable...
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Flash Remoting with Blue Dragon

2004-01-13 Thread Burns, John
I haven't gotten into this a lot, but is the HTTP compression of soap an
option in Flash?Their argument with the memory leak information seemed
like it was pretty solidly based.I'm assuming that's just a Flash
player issue?Any explanation or further education would be greatly
appreciated as I'm looking into these options now.

John Burns

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 12, 2004 5:16 PM
To: CF-Talk
Subject: Re: Flash Remoting with Blue Dragon

 http://www.flashorb.com/articles/soap_vs_flash_remoting_benchmark.shtm
 l

 Unfortunately, it seems like they forgot to consider HTTP compression

They didn't forget... the purposely excluded it. Otherwise their
argument would fall on its face.

-Matt
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: cfsavecontent question

2004-01-13 Thread Stephen Moretti
 
 So, either I need to find a way to get that content to
 display, or find
 a better way to email the necessary content off the
 processing page. I
 was hoping to NOT have to duplicate code from the processing
 page on the app_email.cfm page.
 
 Erm, CFOUTPUT the variable...

Or if you're using CFMAIL to send the emails, then you should just be 
able to put the cfsavecontent variable into the content area of cfmail. ;o)

Regards

Stephen
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFMX Upgrade Problem

2004-01-13 Thread Dave Watts
 Thanks Steven, but none of this worked. I guess I am going to 
 roll back to CFMX 6.0.

Yecch. Are you using Access, or some other ODBC-only database? If not, you
can just turn these services off and not worry about them.

I've been able to get the services to start by deleting the trace files
(just look for the files with a .trc extension somewhere within the slserver
directory). But I suppose that's probably mentioned in the link that Steven
Erat posted, so it probably didn't work for you.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Keyword Tracking?

2004-01-13 Thread Bailey, Neal
Not sure if anyone saw this as I did not receive any responses. I think also
I might have screwed the email up as I posted it to another list at the same
time, Sorry about that. 

 
Is it possible to extract the keywords from a referring URL coming from a
search engine? The biggest problem I see is that every search engines
referring string is different. I guess I could try to detect which SE it's
coming from and then run a specific procedure to strip out the key words.
Not sure how efficient this would be though as I think SEs are always
changing the way they output their search string. Any ideas on this... could
I maybe use the log files in some way. Any ideas... 

 
Below is how I see the referring links from the particular SE. Thanks for
any advice on this. 

 
MSN Search String
http://search.msn.com/pass/results.asp?RS=CHECKED
http://search.msn.com/pass/results.asp?RS=CHECKEDFORM=MSNHM1v=1q=q=My+K
eywordscp=1252 FORM=MSNHM1v=1q=q=My+Keywordscp=1252

 
Google Search String
http://www.google.com/search?sourceid=navclient
http://www.google.com/search?sourceid=navclientie=UTF-8oe=UTF-8q=My+Keyw
ords ie=UTF-8oe=UTF-8q=My+Keywords

 
Yahoo Search String
http://search.yahoo.com/search?p=Key+Words
http://search.yahoo.com/search?p=Key+Wordsei=UTF-8fr=fp-tab-web-tcop=mss
tab ei=UTF-8fr=fp-tab-web-tcop=msstab=

 
Overture Search String
http://www.overture.com/d/search/?type=home
http://www.overture.com/d/search/?type=homemkt=usKeywords=Key+Words
mkt=usKeywords=Key+Words

Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

-Original Message-
From: Bailey, Neal [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 12, 2004 11:34 AM
To: '[EMAIL PROTECTED]'; CF-Talk
Subject: Keyword Tracking?

 
Hello folks...

 
I am about to start up a new project that includes building a site statistic
application for our websites. I know you are probable thinking why not use
the many that exist already like Webtrends. 

 
The main issue I am faced with is that we have 15 thousand websites that are
actually all the same site. What we have are 15 thousand agents that have
custom configured websites, they basically go into a studio area and
configure all their settings from layout/design, color, content, links, and
a few other things they can add on the fly, then their website is created
for them once the finish the setup. 

 
So what I would like to do is store all the referrer links coming to each
site and build a chart for each agent that will tell them where their
traffic is coming from and what keywords people are using to find their
sites. 

 
So I am looking for some insight on where to start with this. I need a way
to strip out all the key words from a URL and then store them in a db for
reporting. I have found something on CFLib.org but it only gives me keywords
Google referrers. Does anyone have any ideas on code that will tell me the
keywords coming from all search engines? 

 
Thanks for any input. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: cfsavecontent question

2004-01-13 Thread Philip Arnold
  So, either I need to find a way to get that content to
  display, or find
  a better way to email the necessary content off the
  processing page. I
  was hoping to NOT have to duplicate code from the processing
  page on the app_email.cfm page.
 
  Erm, CFOUTPUT the variable...

 Or if you're using CFMAIL to send the emails, then you should just be
 able to put the cfsavecontent variable into the content area
 of cfmail. ;o)

His mail had the content, he just wanted to present the form as well, so
the CFSAVECONTENT was doing it's job, but not showing the content on the
page
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist and
has the value it should (but the file does not show in the directory it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found: /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Bryan Stevenson 
To: CF-Talk 
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist and
has the value it should (but the file does not show in the directory it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found: /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Keyword Tracking?

2004-01-13 Thread Raymond Camden
I'm pretty sure Samual Neff designed some code for this. Check his blog at
http://www.rewindlife.com/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




J2EE Configuration (Coldfusion MX with Jrun4)

2004-01-13 Thread CK LIM
I've just installed J2EE Configuration (Coldfusion MX with Jrun4) on my solaris server. I use Netscape Enterprise Web Server(NES) for the configuration and I managed to load the CF Admin page as usual here :

http://myhostname:8004/CFIDE/administrator/index.cfm

I wonder how I could create more instances by running the jrun admin page like what has been described here: http://www.straker.co.nz/straker/devnet/cfmx/instaling-cfmx-j2ee-using-jrun.cfm

I've jrun installed on /opt/jrun4 and CFMX installed on /opt/coldfusionmx

How to I load the jrun page to configure my instance ? Anybody can help please ?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
Oh yeah...and here's the dump of the cffile structure...clearly the file is not being saved:

struct 
ATTEMPTEDSERVERFILE yoda.jpg
CLIENTDIRECTORY C:\Documents and Settings\Bryan Stevenson\Desktop\PrivateMatters\yoda.jpg
CLIENTFILE yoda.jpg
CLIENTFILEEXT jpg
CLIENTFILENAME yoda
CONTENTSUBTYPE pjpeg
CONTENTTYPE image
DATELASTACCESSED {d '1969-12-31'}
FILEEXISTED NO
FILESIZE 0
FILEWASAPPENDED NO
FILEWASOVERWRITTEN NO
FILEWASRENAMED NO
FILEWASSAVED NO
OLDFILESIZE 0
SERVERDIRECTORY /var/www/pmfiles/trib_photos
SERVERFILE yoda.jpg
SERVERFILEEXT jpg
SERVERFILENAME yoda
TIMECREATED {ts '1969-12-31 16:00:00'}
TIMELASTMODIFIED {ts '1969-12-31 16:00:00'}

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Bryan Stevenson 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 7:51 AM
Subject: REPOST: CFFILE not working on MX Standard on Linux

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist and
has the value it should (but the file does not show in the directory it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found: /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
 - Original Message - 
 From: Bryan Stevenson 
 To: CF-Talk 
 Sent: Monday, January 12, 2004 3:28 PM
 Subject: ide.cfm/CFFILE

 Hey All,

 I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
 the application log whenever I try and upload a file via CFFILE (please note
 this did work when the Enterprise edition was installed).I have tried
 dumping cffile.serverfile after the upload and that variable does exist and
 has the value it should (but the file does not show in the directory it was
 uploaded or any other directory for that matter)!!

 Error,jrpp-0,01/12/04,15:00:00,,File not found: /CFIDE/main/ide.cfm
 The specific sequence of files included or processed is:
 /var/www/html/CFIDE/main/ide.cfm 

 I'm pretty sure the main/ide.cfm directory/file is missing because I did not
 install RDS??My question is how/why/does RDS effect CFFILE??

 BTW the directory I am trying to upload to is NOT web accessible...it is
 above the webroot (so none of the files are web browsable).

 This one has me really stumpedany help no matter how dumb it may sound
 would be greatly appreciated.

 Cheers

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: cfsavecontent question

2004-01-13 Thread Stephen Moretti
Philip Arnold wrote:

  So, either I need to find a way to get that content to
  display, or find
  a better way to email the necessary content off the
  processing page. I
  was hoping to NOT have to duplicate code from the processing
  page on the app_email.cfm page.
 
  Erm, CFOUTPUT the variable...

 Or if you're using CFMAIL to send the emails, then you should just be
 able to put the cfsavecontent variable into the content area
 of cfmail. ;o)
 
 His mail had the content, he just wanted to present the form as well, so
 the CFSAVECONTENT was doing it's job, but not showing the content on the
 page

Opps.. Must have misread it.Sorry

Not sure I'd want to output the form unless it was only being sent to 
one person, especially as it is a long form. (Which is probably what 
made me mis-read it...)

Stephen
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CF Datasource

2004-01-13 Thread Drew Harris
Well, truth be known, this is my first time to attempt a csv or xls dsn.

-
Drew

On Monday, Jan 12, 2004, at 14:57 US/Central, Chunshen (Don) Li wrote:

 Have you tried a work-around (lazy man's soltion:) such as just reName 
 the existing csv or xls file that points to the defined dsn?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




java compiling

2004-01-13 Thread Turetsky, Seth
Just curious as to the best way to work in Java with CF.Once I've compiled
my Java and then I go to move to my classpath, the old files are locked and I
need to stop CF to get them in(note I'm working with Jar files).

Is there any way around this, or am I doing something wrong?

thanks in advance,
seth
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Yves Arsenault
Hmm...

I'm running CFMX 6.1 standard on RedHat 9 as well...
I was working on something yesterday and uploaded via CFFILE with no problems.

With the sufficient permissions I would assume that it wouldn't matter 
whether a file is web accessible or not.

The file doesn't show up in the desired directory?
Any CF errors show up at all?

Yves A

At 11:51 2004-01-13, you wrote:
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist and
has the value it should (but the file does not show in the directory it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found: /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson
To: CF-Talk
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please 
 note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist and
has the value it should (but the file does not show in the directory it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found: 
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I 
 did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com

--
[
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: cfsavecontent question

2004-01-13 Thread Les Mizzell
 Not sure I'd want to output the form unless it was only being sent to
 one person, especially as it is a long form. (Which is probably what
 made me mis-read it...)

Maybe I wasn't clear when I wrote it either!

The contents from the form, plus all the calculations and everything 
else are processing properly and being emailed properly using the 
cfsavecontent tag.

I missed the VERY obvious by not just putting
cfoutput#mysavedcontents#/cfoutput on the page to display it in the 
browser!

Doh!

-- 
Les Mizzell
-
“Un jour tout sera bien,
voil notre esprance.
Tout est bien aujourd'hui,
voil l'illusion”
-
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
Just the error in the log and another error thrown when I try and rename the uploaded file (attribute validation error) because the specified file to rename never got uploaded.

Take a look at my next message (after the one you replied to and before this one)it hasa dump of the cffile structure.

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Yves Arsenault 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 8:00 AM
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

Hmm...

I'm running CFMX 6.1 standard on RedHat 9 as well...
I was working on something yesterday and uploaded via CFFILE with no problems.

With the sufficient permissions I would assume that it wouldn't matter 
whether a file is web accessible or not.

The file doesn't show up in the desired directory?
Any CF errors show up at all?

Yves A

At 11:51 2004-01-13, you wrote:
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist and
has the value it should (but the file does not show in the directory it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found: /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson
To: CF-Talk
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please 
 note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist and
has the value it should (but the file does not show in the directory it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found: 
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I 
 did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com

--
[
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Josh Remus
I do believe you need some things out of the CFIDE directory, so shouldn't
exist?My understanding was that several CF tags required this.
-Original Message-
From: Yves Arsenault [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:00 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

Hmm...

I'm running CFMX 6.1 standard on RedHat 9 as well...
I was working on something yesterday and uploaded via CFFILE with no
problems.

With the sufficient permissions I would assume that it wouldn't matter
whether a file is web accessible or not.

The file doesn't show up in the desired directory?
Any CF errors show up at all?

Yves A

At 11:51 2004-01-13, you wrote:
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please
note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist
and
has the value it should (but the file does not show in the directory it
was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
/CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I did
not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may
sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson
To: CF-Talk
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error
in
the application log whenever I try and upload a file via CFFILE
(please
 note
this did work when the Enterprise edition was installed).I have
tried
dumping cffile.serverfile after the upload and that variable does
exist and
has the value it should (but the file does not show in the directory
it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I
 did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it
is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may
sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com

--
[
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
Yves you mentioned permissions...and I'm starting to wonder if that might be it.I'm new to CF on Linuxon Windows CF uses what...the System accountis there an equivalent account that should have permissions on linux to allow CF to do it's magic??

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Yves Arsenault 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 8:00 AM
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

Hmm...

I'm running CFMX 6.1 standard on RedHat 9 as well...
I was working on something yesterday and uploaded via CFFILE with no problems.

With the sufficient permissions I would assume that it wouldn't matter 
whether a file is web accessible or not.

The file doesn't show up in the desired directory?
Any CF errors show up at all?

Yves A

At 11:51 2004-01-13, you wrote:
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist and
has the value it should (but the file does not show in the directory it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found: /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson
To: CF-Talk
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
the application log whenever I try and upload a file via CFFILE (please 
 note
this did work when the Enterprise edition was installed).I have tried
dumping cffile.serverfile after the upload and that variable does exist and
has the value it should (but the file does not show in the directory it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found: 
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I 
 did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com

--
[
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
the cfide directory existsbut there is no ide.cfm file.2 different creatures ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Josh Remus 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 8:05 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

I do believe you need some things out of the CFIDE directory, so shouldn't
exist?My understanding was that several CF tags required this.
 -Original Message-
 From: Yves Arsenault [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 13, 2004 11:00 AM
 To: CF-Talk
 Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

 Hmm...

 I'm running CFMX 6.1 standard on RedHat 9 as well...
 I was working on something yesterday and uploaded via CFFILE with no
problems.

 With the sufficient permissions I would assume that it wouldn't matter
 whether a file is web accessible or not.

 The file doesn't show up in the desired directory?
 Any CF errors show up at all?

 Yves A

 At 11:51 2004-01-13, you wrote:
 Hey All,
 
 I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in
 the application log whenever I try and upload a file via CFFILE (please
note
 this did work when the Enterprise edition was installed).I have tried
 dumping cffile.serverfile after the upload and that variable does exist
and
 has the value it should (but the file does not show in the directory it
was
 uploaded or any other directory for that matter)!!
 
 Error,jrpp-0,01/12/04,15:00:00,,File not found:
/CFIDE/main/ide.cfm
 The specific sequence of files included or processed is:
 /var/www/html/CFIDE/main/ide.cfm 
 
 I'm pretty sure the main/ide.cfm directory/file is missing because I did
not
 install RDS??My question is how/why/does RDS effect CFFILE??
 
 BTW the directory I am trying to upload to is NOT web accessible...it is
 above the webroot (so none of the files are web browsable).
 
 This one has me really stumpedany help no matter how dumb it may
sound
 would be greatly appreciated.
 
 Cheers
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: Bryan Stevenson
 To: CF-Talk
 Sent: Monday, January 12, 2004 3:28 PM
 Subject: ide.cfm/CFFILE
 
 Hey All,
 
 I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error
in
 the application log whenever I try and upload a file via CFFILE
(please
  note
 this did work when the Enterprise edition was installed).I have
tried
 dumping cffile.serverfile after the upload and that variable does
exist and
 has the value it should (but the file does not show in the directory
it was
 uploaded or any other directory for that matter)!!
 
 Error,jrpp-0,01/12/04,15:00:00,,File not found:
  /CFIDE/main/ide.cfm
 The specific sequence of files included or processed is:
 /var/www/html/CFIDE/main/ide.cfm 
 
 I'm pretty sure the main/ide.cfm directory/file is missing because I
  did not
 install RDS??My question is how/why/does RDS effect CFFILE??
 
 BTW the directory I am trying to upload to is NOT web accessible...it
is
 above the webroot (so none of the files are web browsable).
 
 This one has me really stumpedany help no matter how dumb it may
sound
 would be greatly appreciated.
 
 Cheers
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 
 --
 [
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Josh Remus
I got it, I'm slow today.This is just a shot in the dark, but you might
try creating a zero-byte file in that location to see if it will make it be
quiet.Try using touch to create that file and see if it makes it happy.
It could also be permissions, make sure the user that apache is running as
has read permissions into that CFIDE/main directory (on my linux installs,
apache usually runs as the apache user).
-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:13 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

the cfide directory existsbut there is no ide.cfm file.2 different
creatures ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
 - Original Message -
 From: Josh Remus
 To: CF-Talk
 Sent: Tuesday, January 13, 2004 8:05 AM
 Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

 I do believe you need some things out of the CFIDE directory, so
shouldn't
 exist?My understanding was that several CF tags required this.
-Original Message-
From: Yves Arsenault [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:00 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

Hmm...

I'm running CFMX 6.1 standard on RedHat 9 as well...
I was working on something yesterday and uploaded via CFFILE with no
 problems.

With the sufficient permissions I would assume that it wouldn't matter
whether a file is web accessible or not.

The file doesn't show up in the desired directory?
Any CF errors show up at all?

Yves A

At 11:51 2004-01-13, you wrote:
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
error in
the application log whenever I try and upload a file via CFFILE
(please
 note
this did work when the Enterprise edition was installed).I have
tried
dumping cffile.serverfile after the upload and that variable does
exist
 and
has the value it should (but the file does not show in the directory
it
 was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I
did
 not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it
is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may
 sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson
To: CF-Talk
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
error
 in
the application log whenever I try and upload a file via CFFILE
 (please
 note
this did work when the Enterprise edition was installed).I have
 tried
dumping cffile.serverfile after the upload and that variable does
 exist and
has the value it should (but the file does not show in the
directory
 it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because
I
 did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web
accessible...it
 is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it
may
 sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com

--
[
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Yves Arsenault
I think I'm with Josh...

I'm not quite sure what else you could try at the moment.

Yves

At 12:19 2004-01-13, you wrote:
I got it, I'm slow today.This is just a shot in the dark, but you might
try creating a zero-byte file in that location to see if it will make it be
quiet.Try using touch to create that file and see if it makes it happy.
It could also be permissions, make sure the user that apache is running as
has read permissions into that CFIDE/main directory (on my linux installs,
apache usually runs as the apache user).
-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:13 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

the cfide directory existsbut there is no ide.cfm file.2 different
creatures ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Josh Remus
To: CF-Talk
Sent: Tuesday, January 13, 2004 8:05 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

I do believe you need some things out of the CFIDE directory, so
shouldn't
exist?My understanding was that several CF tags required this.
 -Original Message-
 From: Yves Arsenault [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 13, 2004 11:00 AM
 To: CF-Talk
 Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

 Hmm...

 I'm running CFMX 6.1 standard on RedHat 9 as well...
 I was working on something yesterday and uploaded via CFFILE with no
problems.

 With the sufficient permissions I would assume that it wouldn't matter
 whether a file is web accessible or not.

 The file doesn't show up in the desired directory?
 Any CF errors show up at all?

 Yves A

 At 11:51 2004-01-13, you wrote:
 Hey All,
 
 I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
error in
 the application log whenever I try and upload a file via CFFILE
(please
note
 this did work when the Enterprise edition was installed).I have
tried
 dumping cffile.serverfile after the upload and that variable does
exist
and
 has the value it should (but the file does not show in the directory
it
was
 uploaded or any other directory for that matter)!!
 
 Error,jrpp-0,01/12/04,15:00:00,,File not found:
/CFIDE/main/ide.cfm
 The specific sequence of files included or processed is:
 /var/www/html/CFIDE/main/ide.cfm 
 
 I'm pretty sure the main/ide.cfm directory/file is missing because I
did
not
 install RDS??My question is how/why/does RDS effect CFFILE??
 
 BTW the directory I am trying to upload to is NOT web accessible...it
is
 above the webroot (so none of the files are web browsable).
 
 This one has me really stumpedany help no matter how dumb it may
sound
 would be greatly appreciated.
 
 Cheers
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: Bryan Stevenson
 To: CF-Talk
 Sent: Monday, January 12, 2004 3:28 PM
 Subject: ide.cfm/CFFILE
 
 Hey All,
 
 I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
error
in
 the application log whenever I try and upload a file via CFFILE
(please
  note
 this did work when the Enterprise edition was installed).I have
tried
 dumping cffile.serverfile after the upload and that variable does
exist and
 has the value it should (but the file does not show in the
directory
it was
 uploaded or any other directory for that matter)!!
 
 Error,jrpp-0,01/12/04,15:00:00,,File not found:
  /CFIDE/main/ide.cfm
 The specific sequence of files included or processed is:
 /var/www/html/CFIDE/main/ide.cfm 
 
 I'm pretty sure the main/ide.cfm directory/file is missing because
I
  did not
 install RDS??My question is how/why/does RDS effect CFFILE??
 
 BTW the directory I am trying to upload to is NOT web
accessible...it
is
 above the webroot (so none of the files are web browsable).
 
 This one has me really stumpedany help no matter how dumb it
may
sound
 would be greatly appreciated.
 
 Cheers
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  

Re: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
hmm...but as I said...there is no cfide/main directory ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Josh Remus 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 8:19 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

I got it, I'm slow today.This is just a shot in the dark, but you might
try creating a zero-byte file in that location to see if it will make it be
quiet.Try using touch to create that file and see if it makes it happy.
It could also be permissions, make sure the user that apache is running as
has read permissions into that CFIDE/main directory (on my linux installs,
apache usually runs as the apache user).
 -Original Message-
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 13, 2004 11:13 AM
 To: CF-Talk
 Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

 the cfide directory existsbut there is no ide.cfm file.2 different
creatures ;-)

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
- Original Message -
From: Josh Remus
To: CF-Talk
Sent: Tuesday, January 13, 2004 8:05 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

I do believe you need some things out of the CFIDE directory, so
shouldn't
exist?My understanding was that several CF tags required this.
-Original Message-
From: Yves Arsenault [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:00 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

Hmm...

I'm running CFMX 6.1 standard on RedHat 9 as well...
I was working on something yesterday and uploaded via CFFILE with no
problems.

With the sufficient permissions I would assume that it wouldn't matter
whether a file is web accessible or not.

The file doesn't show up in the desired directory?
Any CF errors show up at all?

Yves A

At 11:51 2004-01-13, you wrote:
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
error in
the application log whenever I try and upload a file via CFFILE
(please
note
this did work when the Enterprise edition was installed).I have
tried
dumping cffile.serverfile after the upload and that variable does
exist
and
has the value it should (but the file does not show in the directory
it
was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
/CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I
did
not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it
is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may
sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson
To: CF-Talk
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
error
in
the application log whenever I try and upload a file via CFFILE
(please
 note
this did work when the Enterprise edition was installed).I have
tried
dumping cffile.serverfile after the upload and that variable does
exist and
has the value it should (but the file does not show in the
directory
it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because
I
 did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web
accessible...it
is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how 

RE: Keyword Tracking?

2004-01-13 Thread Bailey, Neal
Raymond,

 
I can't seem to find any thing there that helps with what I am tying to do. 

 
Though thanks for the link, it's in my Favs now. 

 
Neal Bailey
Internet Marketing Manager
UGA-Association Field Services
E-mail:mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

This email and any files transmitted with it are confidential and intended
solely for the use of the individual or entity to whom they are addressed.
If you are not the named addressee you should not disseminate, distribute or
copy this e-mail.Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your
system.If you are not the intended recipient you are hereby notified that
disclosing, copying, distributing or taking any action in reliance on the
contents of this information is strictly prohibited.Thank you.
-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 9:51 AM
To: CF-Talk
Subject: RE: Keyword Tracking?

 
I'm pretty sure Samual Neff designed some code for this. Check his blog at
http://www.rewindlife.com/ http://www.rewindlife.com/ 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
Oh yeah...and what is touch?Oh..and there is already a file in that dir...but it's not zero byte

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Josh Remus 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 8:19 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

I got it, I'm slow today.This is just a shot in the dark, but you might
try creating a zero-byte file in that location to see if it will make it be
quiet.Try using touch to create that file and see if it makes it happy.
It could also be permissions, make sure the user that apache is running as
has read permissions into that CFIDE/main directory (on my linux installs,
apache usually runs as the apache user).
 -Original Message-
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 13, 2004 11:13 AM
 To: CF-Talk
 Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

 the cfide directory existsbut there is no ide.cfm file.2 different
creatures ;-)

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
- Original Message -
From: Josh Remus
To: CF-Talk
Sent: Tuesday, January 13, 2004 8:05 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

I do believe you need some things out of the CFIDE directory, so
shouldn't
exist?My understanding was that several CF tags required this.
-Original Message-
From: Yves Arsenault [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:00 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

Hmm...

I'm running CFMX 6.1 standard on RedHat 9 as well...
I was working on something yesterday and uploaded via CFFILE with no
problems.

With the sufficient permissions I would assume that it wouldn't matter
whether a file is web accessible or not.

The file doesn't show up in the desired directory?
Any CF errors show up at all?

Yves A

At 11:51 2004-01-13, you wrote:
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
error in
the application log whenever I try and upload a file via CFFILE
(please
note
this did work when the Enterprise edition was installed).I have
tried
dumping cffile.serverfile after the upload and that variable does
exist
and
has the value it should (but the file does not show in the directory
it
was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
/CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because I
did
not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web accessible...it
is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how dumb it may
sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson
To: CF-Talk
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
error
in
the application log whenever I try and upload a file via CFFILE
(please
 note
this did work when the Enterprise edition was installed).I have
tried
dumping cffile.serverfile after the upload and that variable does
exist and
has the value it should (but the file does not show in the
directory
it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is missing because
I
 did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web
accessible...it
is
above the webroot (so none of the files are web browsable).

This one has me 

Re: Flash Remoting with Blue Dragon

2004-01-13 Thread Matt Liotta
The HTTP compression is automatically handled by the web browser. As 
far as the memory leak goes I can't provide any real information on 
that front only to say that it either has already been addressed by 
Macromedia or will be in the future. Remember, the FlashORB product is 
based on Flash Remoting, so they very much are biased in that 
direction.

-Matt

On Jan 13, 2004, at 10:22 AM, Burns, John wrote:

 I haven't gotten into this a lot, but is the HTTP compression of soap 
 an
 option in Flash?  Their argument with the memory leak information 
 seemed
 like it was pretty solidly based.  I'm assuming that's just a Flash
 player issue?  Any explanation or further education would be greatly
 appreciated as I'm looking into these options now.

 John Burns

 -Original Message-
 From: Matt Liotta [mailto:[EMAIL PROTECTED]
 Sent: Monday, January 12, 2004 5:16 PM
 To: CF-Talk
 Subject: Re: Flash Remoting with Blue Dragon

 http://www.flashorb.com/articles/soap_vs_flash_remoting_benchmark.shtm
  l
 
  Unfortunately, it seems like they forgot to consider HTTP compression
 
 They didn't forget... the purposely excluded it. Otherwise their
 argument would fall on its face.

 -Matt

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread C. Hatton Humphrey
Did you move the CFIDE directory somewhere else?The only reason I ask this
is because of the way the error says:

File not found: /CFIDE/main/ide.cfm The specific sequence of files included
or processed is:
/var/www/html/CFIDE/main/ide.cfm 

Other than that, you mention RDS though I'm not sure how that would tie in
with CFFile.I do know that some tags call other functions, such as
CFApplication now calls CFRegistry.Perhaps that's the case here.

Hatton

 -Original Message-
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, January 13, 2004 11:13 AM
 To: CF-Talk
 Subject: Re: REPOST: CFFILE not working on MX Standard on Linux
 
 the cfide directory existsbut there is no ide.cfm 
 file.2 different creatures ;-)
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
- Original Message -
From: Josh Remus
To: CF-Talk
Sent: Tuesday, January 13, 2004 8:05 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux
 
 
I do believe you need some things out of the CFIDE 
 directory, so shouldn't
exist?My understanding was that several CF tags required this.
-Original Message-
From: Yves Arsenault [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:00 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux
 
Hmm...
 
I'm running CFMX 6.1 standard on RedHat 9 as well...
I was working on something yesterday and uploaded via 
 CFFILE with no
problems.
 
With the sufficient permissions I would assume that it 
 wouldn't matter
whether a file is web accessible or not.
 
The file doesn't show up in the desired directory?
Any CF errors show up at all?
 
Yves A
 
At 11:51 2004-01-13, you wrote:
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm 
 getting this error in
the application log whenever I try and upload a file via 
 CFFILE (please
note
this did work when the Enterprise edition was 
 installed).I have tried
dumping cffile.serverfile after the upload and that 
 variable does exist
and
has the value it should (but the file does not show in 
 the directory it
was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
/CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is 
 missing because I did
not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web 
 accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how 
 dumb it may
sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson
To: CF-Talk
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm 
 getting this error
in
the application log whenever I try and upload a file 
 via CFFILE
(please
 note
this did work when the Enterprise edition was 
 installed).I have
tried
dumping cffile.serverfile after the upload and that 
 variable does
exist and
has the value it should (but the file does not show 
 in the directory
it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is 
 missing because I
 did not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web 
 accessible...it
is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter 
 how dumb it may
sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com

--
[
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 

RE: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Josh Remus
then I would suggest trying to create it.I don't know why it's looking for
it, but it is.
-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:34 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

hmm...but as I said...there is no cfide/main directory ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
 - Original Message -
 From: Josh Remus
 To: CF-Talk
 Sent: Tuesday, January 13, 2004 8:19 AM
 Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

 I got it, I'm slow today.This is just a shot in the dark, but you
might
 try creating a zero-byte file in that location to see if it will make it
be
 quiet.Try using touch to create that file and see if it makes it
happy.
 It could also be permissions, make sure the user that apache is running
as
 has read permissions into that CFIDE/main directory (on my linux
installs,
 apache usually runs as the apache user).
-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:13 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

the cfide directory existsbut there is no ide.cfm file.2
different
 creatures ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Josh Remus
To: CF-Talk
Sent: Tuesday, January 13, 2004 8:05 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

I do believe you need some things out of the CFIDE directory, so
 shouldn't
exist?My understanding was that several CF tags required this.
 -Original Message-
 From: Yves Arsenault [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 13, 2004 11:00 AM
 To: CF-Talk
 Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

 Hmm...

 I'm running CFMX 6.1 standard on RedHat 9 as well...
 I was working on something yesterday and uploaded via CFFILE with
no
problems.

 With the sufficient permissions I would assume that it wouldn't
matter
 whether a file is web accessible or not.

 The file doesn't show up in the desired directory?
 Any CF errors show up at all?

 Yves A

 At 11:51 2004-01-13, you wrote:
 Hey All,
 
 I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
 error in
 the application log whenever I try and upload a file via CFFILE
 (please
note
 this did work when the Enterprise edition was installed).I have
 tried
 dumping cffile.serverfile after the upload and that variable does
 exist
and
 has the value it should (but the file does not show in the
directory
 it
was
 uploaded or any other directory for that matter)!!
 
 Error,jrpp-0,01/12/04,15:00:00,,File not found:
/CFIDE/main/ide.cfm
 The specific sequence of files included or processed is:
 /var/www/html/CFIDE/main/ide.cfm 
 
 I'm pretty sure the main/ide.cfm directory/file is missing
because I
 did
not
 install RDS??My question is how/why/does RDS effect CFFILE??
 
 BTW the directory I am trying to upload to is NOT web
accessible...it
 is
 above the webroot (so none of the files are web browsable).
 
 This one has me really stumpedany help no matter how dumb it
may
sound
 would be greatly appreciated.
 
 Cheers
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: Bryan Stevenson
 To: CF-Talk
 Sent: Monday, January 12, 2004 3:28 PM
 Subject: ide.cfm/CFFILE
 
 Hey All,
 
 I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting
this
 error
in
 the application log whenever I try and upload a file via
CFFILE
(please
  note
 this did work when the Enterprise edition was installed).I
have
tried
 dumping cffile.serverfile after the upload and that variable
does
exist and
 has the value it should (but the file does not show in the
 directory
it was
 uploaded or any other directory for that matter)!!
 
 Error,jrpp-0,01/12/04,15:00:00,,File not found:
  /CFIDE/main/ide.cfm
 The specific sequence of files included or processed is:
 

Re: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
Nope...I didn't move it...this is a fresh install as of yesterday morning (down by ISP..not me).I chose to disable RDS and I thought I read somewhere that RDS was somehow tied to cfide/main/ide.cfm

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: C. Hatton Humphrey 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 8:35 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

Did you move the CFIDE directory somewhere else?The only reason I ask this
is because of the way the error says:

File not found: /CFIDE/main/ide.cfm The specific sequence of files included
or processed is:
/var/www/html/CFIDE/main/ide.cfm 

Other than that, you mention RDS though I'm not sure how that would tie in
with CFFile.I do know that some tags call other functions, such as
CFApplication now calls CFRegistry.Perhaps that's the case here.

Hatton

 -Original Message-
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, January 13, 2004 11:13 AM
 To: CF-Talk
 Subject: Re: REPOST: CFFILE not working on MX Standard on Linux
 
 the cfide directory existsbut there is no ide.cfm 
 file.2 different creatures ;-)
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
- Original Message -
From: Josh Remus
To: CF-Talk
Sent: Tuesday, January 13, 2004 8:05 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux
 
 
I do believe you need some things out of the CFIDE 
 directory, so shouldn't
exist?My understanding was that several CF tags required this.
-Original Message-
From: Yves Arsenault [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:00 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux
 
Hmm...
 
I'm running CFMX 6.1 standard on RedHat 9 as well...
I was working on something yesterday and uploaded via 
 CFFILE with no
problems.
 
With the sufficient permissions I would assume that it 
 wouldn't matter
whether a file is web accessible or not.
 
The file doesn't show up in the desired directory?
Any CF errors show up at all?
 
Yves A
 
At 11:51 2004-01-13, you wrote:
Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm 
 getting this error in
the application log whenever I try and upload a file via 
 CFFILE (please
note
this did work when the Enterprise edition was 
 installed).I have tried
dumping cffile.serverfile after the upload and that 
 variable does exist
and
has the value it should (but the file does not show in 
 the directory it
was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
/CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is 
 missing because I did
not
install RDS??My question is how/why/does RDS effect CFFILE??

BTW the directory I am trying to upload to is NOT web 
 accessible...it is
above the webroot (so none of the files are web browsable).

This one has me really stumpedany help no matter how 
 dumb it may
sound
would be greatly appreciated.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson
To: CF-Talk
Sent: Monday, January 12, 2004 3:28 PM
Subject: ide.cfm/CFFILE

Hey All,

I'm running a CFMX 6.1 Standard on RedHat 9 and I'm 
 getting this error
in
the application log whenever I try and upload a file 
 via CFFILE
(please
 note
this did work when the Enterprise edition was 
 installed).I have
tried
dumping cffile.serverfile after the upload and that 
 variable does
exist and
has the value it should (but the file does not show 
 in the directory
it was
uploaded or any other directory for that matter)!!

Error,jrpp-0,01/12/04,15:00:00,,File not found:
 /CFIDE/main/ide.cfm
The specific sequence of files included or processed is:
/var/www/html/CFIDE/main/ide.cfm 

I'm pretty sure the main/ide.cfm directory/file is 
 missing because I
 did not
install 

RE: P3P ready cookies

2004-01-13 Thread Gaulin, Mark
Is the page that is trying to set the cookies in a frame, or is some way
being contained (img, ilayer, etc) by a page that has a different host
name?This is a big issue in p3p.

-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 9:42 AM
To: CF-Talk
Subject: P3P ready cookies

Does anyone know of a simple, clear tutorial to making cookies work with 
IE6 in anything other than Low Privacy mode?I've downloaded IBM's free 
P3P policy maker - put the files in the proper places, and even used a P3P 
policy validator to test it.It says it's fine, but IE6 won't allow 
cookies when set toanything other than Low on the Privacy 
slider.Perhaps I'm just braindead, but I don't understand why this should 
be so hard.My cookies only carry ColdFusion ID data to handle movements 
from page to page, and other than tracking information in my server logs, 
I'm not gathering any personal data.

Any help would be greatly appreciated.

T

Tired of your bookmarks/favourites being limited to one computer?Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet. 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Josh Remus
check that apache has access to that directory then.
-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:35 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

Oh yeah...and what is touch?Oh..and there is already a file in that
dir...but it's not zero byte

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
 - Original Message -
 From: Josh Remus
 To: CF-Talk
 Sent: Tuesday, January 13, 2004 8:19 AM
 Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

 I got it, I'm slow today.This is just a shot in the dark, but you
might
 try creating a zero-byte file in that location to see if it will make it
be
 quiet.Try using touch to create that file and see if it makes it
happy.
 It could also be permissions, make sure the user that apache is running
as
 has read permissions into that CFIDE/main directory (on my linux
installs,
 apache usually runs as the apache user).
-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 11:13 AM
To: CF-Talk
Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

the cfide directory existsbut there is no ide.cfm file.2
different
 creatures ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Josh Remus
To: CF-Talk
Sent: Tuesday, January 13, 2004 8:05 AM
Subject: RE: REPOST: CFFILE not working on MX Standard on Linux

I do believe you need some things out of the CFIDE directory, so
 shouldn't
exist?My understanding was that several CF tags required this.
 -Original Message-
 From: Yves Arsenault [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 13, 2004 11:00 AM
 To: CF-Talk
 Subject: Re: REPOST: CFFILE not working on MX Standard on Linux

 Hmm...

 I'm running CFMX 6.1 standard on RedHat 9 as well...
 I was working on something yesterday and uploaded via CFFILE with
no
problems.

 With the sufficient permissions I would assume that it wouldn't
matter
 whether a file is web accessible or not.

 The file doesn't show up in the desired directory?
 Any CF errors show up at all?

 Yves A

 At 11:51 2004-01-13, you wrote:
 Hey All,
 
 I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this
 error in
 the application log whenever I try and upload a file via CFFILE
 (please
note
 this did work when the Enterprise edition was installed).I have
 tried
 dumping cffile.serverfile after the upload and that variable does
 exist
and
 has the value it should (but the file does not show in the
directory
 it
was
 uploaded or any other directory for that matter)!!
 
 Error,jrpp-0,01/12/04,15:00:00,,File not found:
/CFIDE/main/ide.cfm
 The specific sequence of files included or processed is:
 /var/www/html/CFIDE/main/ide.cfm 
 
 I'm pretty sure the main/ide.cfm directory/file is missing
because I
 did
not
 install RDS??My question is how/why/does RDS effect CFFILE??
 
 BTW the directory I am trying to upload to is NOT web
accessible...it
 is
 above the webroot (so none of the files are web browsable).
 
 This one has me really stumpedany help no matter how dumb it
may
sound
 would be greatly appreciated.
 
 Cheers
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: Bryan Stevenson
 To: CF-Talk
 Sent: Monday, January 12, 2004 3:28 PM
 Subject: ide.cfm/CFFILE
 
 Hey All,
 
 I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting
this
 error
in
 the application log whenever I try and upload a file via
CFFILE
(please
  note
 this did work when the Enterprise edition was installed).I
have
tried
 dumping cffile.serverfile after the upload and that variable
does
exist and
 has the value it should (but the file does not show in the
 directory
it was
 uploaded or any other directory for that matter)!!
 
 Error,jrpp-0,01/12/04,15:00:00,,File not found:
  /CFIDE/main/ide.cfm
 The specific sequence of files included or processed is:
 

RE: P3P ready cookies

2004-01-13 Thread Thane Sherrington
At 12:00 PM 01/13/2004 -0500, Gaulin, Mark wrote:
Is the page that is trying to set the cookies in a frame, or is some way
being contained (img, ilayer, etc) by a page that has a different host
name?This is a big issue in p3p.

Yes it is.Perhaps that's the problem.But every page loaded is loading 
the compact policy via the application.cfm.

T

Tired of your bookmarks/favourites being limited to one computer?Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Problem with QofQ or just SQL

2004-01-13 Thread Mickael
Hello All,

I am running into an issue with something that I am trying to do.I have a directory with files that are named MMDD_fr.htm and I have a database that has a record for each day for the next few years.What I am trying to do is return records from my database where a file exists in my directory.

Here is what my code looks like

cfdirectory 
 action="" 
 directory=#thisdirectory#\#variables.reportfolder# 
 filter=*_fr.htm 
 name=GetFiles
 
 cfdump var=#GetFiles#

 cfquery name=getccrecords datasource=#DSN#
select * from #variables.tablename#
where batch_date = #now()#
order by batch_date desc
 /CFQUERY
 cfdump var=#getccrecords#
 
 cfquery dbtype=query name=GetJoin
 Select * from GetFiles, GetCCRecords
 where 'Left(GetFiles.Name,8)' = '#dateformat(GetCCrecords.BATCH_DATE, mmdd)#'
 
 /cfquery

When I look at the SQL output I get this,

Select * from GetFiles, GetCCRecords
where 'Left(GetFiles.Name,8)' = '20040113'

There is something that I am missing here because I get zero records in my QofQ where there should be.

Thanks

Mike
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Problem with QofQ or just SQL

2004-01-13 Thread Thomas Chiverton
On Tuesday 13 Jan 2004 17:05 pm, Mickael wrote:
cfquery dbtype=query name=GetJoin
Select * from GetFiles, GetCCRecords
where 'Left(GetFiles.Name,8)' = '#dateformat(GetCCrecords.BATCH_DATE,
 mmdd)#'
 When I look at the SQL output I get this,
 Select * from GetFiles, GetCCRecords
 where 'Left(GetFiles.Name,8)' = '20040113'

Don't you mean 
where 'Left(#GetFiles.Name#,8)' = '#dateformat(GetCCrecords.BATCH_DATE,
in your query ?

Oh, and use cfqueryparam tags :-)

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy this
communication if received in error. No binding contract will result from
this e-mail until such time as a written document is signed on behalf of
the company. BlueFinger Limited cannot accept responsibility for the
completeness or accuracy of this message as it has been transmitted over
public networks.***
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




cfset and cookies

2004-01-13 Thread Thomas Chiverton
If you set a cookie with
cfset cookie.wibble=rar
what expiration is given to that cookie ?
-- 
Tom Chiverton 
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy this
communication if received in error. No binding contract will result from
this e-mail until such time as a written document is signed on behalf of
the company. BlueFinger Limited cannot accept responsibility for the
completeness or accuracy of this message as it has been transmitted over
public networks.***
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: cfset and cookies

2004-01-13 Thread ksuh
It becomes a session cookie.

- Original Message -
From: Thomas Chiverton [EMAIL PROTECTED]
Date: Tuesday, January 13, 2004 10:44 am
Subject: cfset and cookies

 If you set a cookie with
 cfset cookie.wibble=rar
 what expiration is given to that cookie ?
 -- 
 Tom Chiverton 
 Advanced ColdFusion Programmer
 
 Tel: +44(0)1749 834997
 email: [EMAIL PROTECTED]
 BlueFinger Limited
 Underwood Business Park
 Wookey Hole Road, WELLS. BA5 1AF
 Tel: +44 (0)1749 834900
 Fax: +44 (0)1749 834901
 web: www.bluefinger.com
 Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
 Quay, BRISTOL. BS1 6EG.
 *** This E-mail contains confidential information for the addressee
 only. If you are not the intended recipient, please notify us
 immediately. You should not use, disclose, distribute or copy this
 communication if received in error. No binding contract will 
 result from
 this e-mail until such time as a written document is signed on 
 behalf of
 the company. BlueFinger Limited cannot accept responsibility for the
 completeness or accuracy of this message as it has been 
 transmitted over
 public networks.***
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: cfset and cookies

2004-01-13 Thread Bob Haroche
Thomas Chiverton wrote:
 If you set a cookie with
 cfset cookie.wibble=rar
 what expiration is given to that cookie ?

I believe it's 38 years

-
Regards,
Bob Haroche
O n P o i n tS o l u t i o n s
www.OnPointSolutions.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Telling an update Stored Procedure to ignore a parameter

2004-01-13 Thread Rick Bierregaard
Trying to use the same stored procedure to update selected fields in a record could overwrite remaining pre-existing field values if empty string parameters are passed.
To solve this problem, I use the following cf code and T-SQL code when updating fields:
cf code:
cfprocparam type=In dbvarname=field1 value=. cfsqltype=CF_SQL_VARCHAR indicates that the current value is to be kept,
cfprocparam type=In dbvarname=field1 value= cfsqltype=CF_SQL_VARCHAR indicates that the value is to be nulled
T-SQL code:
fld1_txt = nullif(coalesce(Nullif(@field1,'.'), fld1_txt),'')

I've tested this last statement in Query Analyzer and it works as required.

Rick Bierregaard
Web Developer
Boeing CAS
[EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: cfset and cookies

2004-01-13 Thread Philip Arnold
 If you set a cookie with
 cfset cookie.wibble=rar
 what expiration is given to that cookie ?

I wouldn't guarantee CFSET with cookies - remember that you can set them
this way after a CFFLUSH, which means they won't get sent to the browser

It's always more reliable to use CFCOOKIE
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT: If-Modified-Since HTTP header

2004-01-13 Thread Ketan Patel
Hi All,
This is a OT question. I was going over new guidelines form google for
webmasters and read something which I am not sure what should I do for my
sites.

here is what they say:

Make sure your web server supports the If-Modified-Since HTTP header. This
feature allows your web server to tell Google whether your content has
changed since we last crawled your site. Supporting this feature saves you
bandwidth and overhead.

I am not sure how can I set that header any ideas about it.

If you want to read more details on it
http://www.google.com/webmasters/guidelines.html

Ketan Patel
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: P3P ready cookies

2004-01-13 Thread Gaulin, Mark
Ok, so your page is from a third party because the host or domain (I
forget which) in the url that the user sees in his Location bar doesn't
match the host in the request to your page.You may find that you cannot
get a non-session cookie to stick in that case since, as a third party, you
are treated like a banner ad aggregator (for example), and no one wants
those guys to be able to track them.

-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 12:13 PM
To: CF-Talk
Subject: RE: P3P ready cookies

At 12:00 PM 01/13/2004 -0500, Gaulin, Mark wrote:
Is the page that is trying to set the cookies in a frame, or is some way
being contained (img, ilayer, etc) by a page that has a different host
name?This is a big issue in p3p.

Yes it is.Perhaps that's the problem.But every page loaded is loading 
the compact policy via the application.cfm.

T

Tired of your bookmarks/favourites being limited to one computer?Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet. 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Flash connection question

2004-01-13 Thread Burns, John
I've got a project coming up to develop an app that would be distributed
on a CD and would use remoting or web services to connect to a CF
component on a site.I'm curious if flash has something to check if an
internet connection is present or if I would just need to do something
where I try to connect and pass a small amount of info just to see if it
works.I just don't want it to pop-up people's dial-up connection or
anything if they're not connected.I'm curious if I can test to see if
a connection already exists.Any insight would be appreciated.

 
John Burns
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Flash Remoting with Blue Dragon

2004-01-13 Thread Christian Cantrell
On Tuesday, January 13, 2004, at 10:22AM, Burns, John wrote:

 I haven't gotten into this a lot, but is the HTTP compression of soap 
 an
 option in Flash?  Their argument with the memory leak information 
 seemed
 like it was pretty solidly based.  I'm assuming that's just a Flash
 player issue?  Any explanation or further education would be greatly
 appreciated as I'm looking into these options now.

Compression addresses the verbosity of SOAP, but there are other things 
to take into consideration:

1. The overhead of zipping and unzipping the XML.I have found this to 
be minimal to negligible, but if I were basing a new project on this 
type of communication, I would probably do some more tests just to be 
certain.
2. The overhead of parsing (serializing and deserializing) SOAP 
requests and responses on both the client and the server.
3. The overhead in generating binary AMF responses on the server (this 
isn't an issue on the client because the Flash player doesn't have to 
deserialize AMF).

My experience is that Flash Remoting is slightly faster, but I don't 
have definitive numbers.I would encourage anyone weighing the pros 
and cons of the two to set up some simple performance tests and decide 
for yourself.Published benchmarks and personal anecdotes have too 
much potential to be biased or just plain wrong.

Other things to consider:

1. SOAP is obviously an open format and will make your projects more 
portable.For some, that's an important consideration, and for some, 
it's not.
2. Not all browsers support Flash Remoting.Last time I checked, 
Mozilla and Opera were not compatible.Hopefully that's changed by now 
(anyone know?), but there are always legacy browsers to consider.
3. I have found Flash Remoting and AMF to be more robust than the web 
service implementations I have used.I have forced myself to use web 
services in newer projects rather than Flash Remoting just to get the 
experience, and I have found bugs in both the Flash implementation and 
in Apache Axis which caused a lot of frustration and would have been 
avoided if I had used Flash Remoting.So far, I have not run into any 
significant bugs with Flash Remoting that I can recall.

The bottom line is, as always, there is no single answer that is right 
for everyone.I think it's a decision that has to be made on a project 
by project basis.The only absolute I can offer is to encapsulate the 
communication mechanism enough to allow you to change your mind later 
on down the road.

Christian
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: cfunit test suites

2004-01-13 Thread Christian Cantrell
Here is a little test suite I used for meta testing the test suite:

cfcomponent extends=com.macromedia.cfunit.test_suite output=yes
cfscript
setSuiteName(Meta Test Suite);
addTest(com.macromedia.cfunit.meta_test_1);
addTest(com.macromedia.cfunit.meta_test_2);
/cfscript
/cfcomponent

Make a direct HTTP request to this component just like you would to an
individual test (with the method=run parameter), and the test suite
will run all the tests that were added to it.

Does that make sense?

Christian

On Tuesday, January 13, 2004, at 06:53AM, Thomas Chiverton wrote:

 The docs are slightly lacking in how to group test cases together into
 a
 suite, I've tried creating a component like:
 cfcomponent extends=com.macromedia.cfunit.test_suite
 cffunction name=run access=remote
 cfscript
 setSuiteName('Test Suite for CEO');
 addTest('com.bluefinger.tests.a_test.test_checkPass_fails');
 addTest('com.bluefinger.tests.b_test.test_checkVehicleTelIsFree_fails') 
 ;
 run();
 /cfscript
 /cffunction
 /cfcomponent
 but that doesn't work.

 The individual test cases for each object
 (http://.../a_test.cfc?method=run)
 run fine.
 --
 Tom Chiverton
 Advanced ColdFusion Programmer

 Tel: +44(0)1749 834997
 email: [EMAIL PROTECTED]
 BlueFinger Limited
 Underwood Business Park
 Wookey Hole Road, WELLS. BA5 1AF
 Tel: +44 (0)1749 834900
 Fax: +44 (0)1749 834901
 web: www.bluefinger.com
 Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
 Quay, BRISTOL. BS1 6EG.
 *** This E-mail contains confidential information for the addressee
 only. If you are not the intended recipient, please notify us
 immediately. You should not use, disclose, distribute or copy this
 communication if received in error. No binding contract will result
 from
 this e-mail until such time as a written document is signed on behalf
 of
 the company. BlueFinger Limited cannot accept responsibility for the
 completeness or accuracy of this message as it has been transmitted
 over
 public networks.***
image.tiff


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Flash for Developers/Programmers WAS: Flash Remoting with Blue Dragon

2004-01-13 Thread Bryan F. Hogan
3. I have found Flash Remoting and AMF to be more robust than the
web 
 service implementations I have used.I have forced myself to use web 
 services in newer projects rather than Flash Remoting just to get the 
 experience, and I have found bugs in both the Flash implementation and

 in Apache Axis which caused a lot of frustration and would have been 
 avoided if I had used Flash Remoting.So far, I have not run into any

 significant bugs with Flash Remoting that I can recall. 

 
Everytime I'm about ready to pick up on using Flash something else tells
me not too. SOAP and Flash almost had me convinced on starting to use
Flash, then I hear something like this.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Nested Tree SQL Sorting

2004-01-13 Thread Michael Dinowitz
The latest release version is here:
http://www.houseoffusion.com/_library/
I'll have to get the latest 'true' version out as it's tighter and faster.

 You can do this with a single mySQL (or any other platform) query, but
 it will need some help from CF.
 
 There are two options.CFX_fMakeTree will order the query the fastest.
 Its better than cfx_maketree in that it will preserve your query sort
 order.
 
 Our fearless list admin wrote a slick little cf tag that will do the job
 quite neatly and almost as fast.Its cf_MakeTree and its on the
 houseoffusion.com site somewhere, I think.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




error while browsing to cfc

2004-01-13 Thread Smith, Matthew P -CONT(CSC)
I am trying to browse to a cfc I am playing with, not passing any method or anything else.The server relocates me to /CFIDE/componentutils/cfcexplorer.cfc?method=getcfcinhtmlname=foo.verifypath=/foo/verify.cfc

 
And prompts me for the rds or admin password.After entering it, it sends me to the same url above, but I get this error:

The selected method ResolvePath was not found. 

Either there are no methods with the specified method name and argument types, or the method ResolvePath 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 in D:\Inetpub\wwwroot\CFIDE\componentutils\cfcexplorer.cfc: line 184

182 :WriteOutput( utils.cfcToHTML(comp) ) ;
183 :/cfscript
184 : cfcatch type=coldfusion.runtime.CfJspPage$NoSuchTemplateException
185 :cfoutputh4Component not found/h4
186 :The component definition file for component '#name#' cannot be found on this server./cfoutput

Any help?Thanks,

 
Matthew
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Problem with QofQ or just SQL

2004-01-13 Thread Mickael
Hi Tom,

Yes that would help :).But I am still getting no records returned.The sql seems to me like it is selecting only one record as the last line show 20040113, I would like it to return all the records from my database table, where the same date exists in the Directory.

Sort of a sub query, can you do that with QofQ?

If it were to tables I wouldn't this work? 

Select * from table where left(#getfiles.name#,8) in (select #dateformat(GetCCrecords.BATCH_DATE,
 mmdd)# from datetable)

can't get it to work for me.
- Original Message - 
From: Thomas Chiverton 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 12:21 PM
Subject: Re: Problem with QofQ or just SQL

On Tuesday 13 Jan 2004 17:05 pm, Mickael wrote:
cfquery dbtype=query name=GetJoin
Select * from GetFiles, GetCCRecords
where 'Left(GetFiles.Name,8)' = '#dateformat(GetCCrecords.BATCH_DATE,
 mmdd)#'
 When I look at the SQL output I get this,
 Select * from GetFiles, GetCCRecords
 where 'Left(GetFiles.Name,8)' = '20040113'

Don't you mean 
where 'Left(#GetFiles.Name#,8)' = '#dateformat(GetCCrecords.BATCH_DATE,
in your query ?

Oh, and use cfqueryparam tags :-)

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy this
communication if received in error. No binding contract will result from
this e-mail until such time as a written document is signed on behalf of
the company. BlueFinger Limited cannot accept responsibility for the
completeness or accuracy of this message as it has been transmitted over
public networks.***
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Flash for Developers/Programmers WAS: Flash Remoting with Blue Dragon

2004-01-13 Thread Matt Liotta
Such is life. It is generally a requirement to be familiar with any two 
technologies that one wants to integrate before attempting to integrate 
them. Flash and CFML is no different. I always got around my lack of 
Flash experience by just hiring the best Flash people I could find.

-Matt

On Jan 13, 2004, at 1:22 PM, Bryan F. Hogan wrote:

   3. I have found Flash Remoting and AMF to be more robust than the
 web
  service implementations I have used.  I have forced myself to use web
  services in newer projects rather than Flash Remoting just to get the
  experience, and I have found bugs in both the Flash implementation 
 and

  in Apache Axis which caused a lot of frustration and would have been
  avoided if I had used Flash Remoting.  So far, I have not run into 
 any

  significant bugs with Flash Remoting that I can recall.


 Everytime I'm about ready to pick up on using Flash something else 
 tells
 me not too. SOAP and Flash almost had me convinced on starting to use
 Flash, then I hear something like this.

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Robert Cunningham
I'm running CFMX 6.1 Standard on Redhat 8, and I don't have a /CFIDE/main/ide.cfm file either, but I'm able to upload without any problem.
Most likely you'll need to give the user that the CF server is running as permission to the directory you're uploading to. 
The easiest way to check if permissions are the issue is to temporarily change the permissions of the directory you're uploading the file to. If you set the permissions to 777, and the upload works, then CF doesn't have the proper rights to the directory while the permissions are set as they should be.
HTH,
Robert Cunningham

 Yves you mentioned permissions...and I'm starting to wonder if that 
 might be it.I'm new to CF on Linuxon Windows CF uses what...the 
 System accountis there an equivalent account that should have 
 permissions on linux to allow CF to do it's magic??
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Flash Remoting with Blue Dragon

2004-01-13 Thread Brian LeRoux
1. SOAP is obviously an open format and will make your projects more 
portable.For some, that's an important consideration, and for some, 
it's not. 

 
Depends on how you look at portable. At the end of the day a Flash app
can only access a server resource if it resides on the same server as
the published SWF file or if crossdomain.xml allows it. If you have
access to the server it really only makes sense to take advantage of the
Remoting performance boost. Remember Remoting works with SOAP but the
deserialization occurs on the server not the client so the issue of SOAP
vs Remoting really isn't there.

 
2. Not all browsers support Flash Remoting.Last time I checked, 
Mozilla and Opera were not compatible.Hopefully that's changed by now 
(anyone know?), but there are always legacy browsers to consider. 

 
Works in my firebird mozilla browser. Always has.

 
3. I have found Flash Remoting and AMF to be more robust than the web 
service implementations I have used.I have forced myself to use web 
services in newer projects rather than Flash Remoting just to get the 
experience, and I have found bugs in both the Flash implementation and 
in Apache Axis which caused a lot of frustration and would have been 
avoided if I had used Flash Remoting.So far, I have not run into any 
significant bugs with Flash Remoting that I can recall.

Very true. 

 
The bottom line is, as always, there is no single answer that is right 
for everyone.I think it's a decision that has to be made on a project 
by project basis.The only absolute I can offer is to encapsulate the 
communication mechanism enough to allow you to change your mind later 
on down the road. 

 
This is the best advice. Create a service delegate in actionscript to
hide the implementation-- then it doesn't matter if you choose Remoting,
SOAP, LoadVars or even just fudging the data until the backend is
complete.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Flash Remoting with Blue Dragon

2004-01-13 Thread Matt Liotta
 Depends on how you look at portable. At the end of the day a Flash 
 app
 can only access a server resource if it resides on the same server as
 the published SWF file or if crossdomain.xml allows it. If you have
 access to the server it really only makes sense to take advantage of 
 the
 Remoting performance boost. Remember Remoting works with SOAP but the
 deserialization occurs on the server not the client so the issue of 
 SOAP
 vs Remoting really isn't there.

It might make sense to use Flash Remoting, but you have to remember 
that Flash Remoting is a product that costs money, so even if you have 
access to the server, you will still need a license to Flash Remoting 
before you can use it. On the other hand, there are plenty of server 
products that have built-in support for SOAP meaning that adding Flash 
Remoting to the mix will actually cost more.

 3. I have found Flash Remoting and AMF to be more robust than the web
 service implementations I have used.  I have forced myself to use web
 services in newer projects rather than Flash Remoting just to get the
 experience, and I have found bugs in both the Flash implementation and
 in Apache Axis which caused a lot of frustration and would have been
 avoided if I had used Flash Remoting.  So far, I have not run into any
 significant bugs with Flash Remoting that I can recall.

 Very true.

Maybe true for some, but there are plenty of Flash Remoting issues that 
still haven't been addressed. For example, you still can't consume 
services from Java classes and CFCs in the same context as both rely on 
different gateways that are not compatible. Further, there is serious 
marshaling challenges for Java-based services that Flash Remoting 
consumes not the least of which is corrupted objects.

-Matt
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: P3P ready cookies

2004-01-13 Thread Thane Sherrington
At 01:08 PM 1/13/04 -0500, Gaulin, Mark wrote:
Ok, so your page is from a third party because the host or domain (I
forget which) in the url that the user sees in his Location bar doesn't
match the host in the request to your page.You may find that you cannot
get a non-session cookie to stick in that case since, as a third party, you
are treated like a banner ad aggregator (for example), and no one wants
those guys to be able to track them.

That was the case originally, but then I moved the pages in the frame to 
the same site, and the problem still occurs.(The frame files are in a 
different folder, but surely that's not an issue.)But if I do want to 
call files from another site, couldn't I set up a compact privacy policy 
for the other site that would cover cookies set from that site?

I'm all for privacy, but this is insane.

T

Tired of your bookmarks/favourites being limited to one computer?Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Re:REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
OK this is definately a permissions issueI gave Group and World write permission to the directory in question and voila! uploads now work.My concern is that changing the permissions on the directory is not the safest way and I would prefer to assign additional rights to the account that CF Server uses...but what is that account called on Linux??

Thanks eveybody

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Robert Cunningham 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 9:45 AM
Subject: Re:REPOST: CFFILE not working on MX Standard on Linux

I'm running CFMX 6.1 Standard on Redhat 8, and I don't have a /CFIDE/main/ide.cfm file either, but I'm able to upload without any problem.
Most likely you'll need to give the user that the CF server is running as permission to the directory you're uploading to. 
The easiest way to check if permissions are the issue is to temporarily change the permissions of the directory you're uploading the file to. If you set the permissions to 777, and the upload works, then CF doesn't have the proper rights to the directory while the permissions are set as they should be.
HTH,
Robert Cunningham

 Yves you mentioned permissions...and I'm starting to wonder if that 
 might be it.I'm new to CF on Linuxon Windows CF uses what...the 
 System accountis there an equivalent account that should have 
 permissions on linux to allow CF to do it's magic??
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]
 
 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Re:REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Josh Remus
if you do something like a ps -al |more you'll get a list of all processes
 the user running them.I believe what you're concerned about is apache
permissions, so check what user httpd is running as, and allow that account
permissions into the directory.
-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 2:22 PM
To: CF-Talk
Subject: Re: Re:REPOST: CFFILE not working on MX Standard on Linux

OK this is definately a permissions issueI gave Group and World
write permission to the directory in question and voila! uploads now work.
My concern is that changing the permissions on the directory is not the
safest way and I would prefer to assign additional rights to the account
that CF Server uses...but what is that account called on Linux??

Thanks eveybody

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
 - Original Message -
 From: Robert Cunningham
 To: CF-Talk
 Sent: Tuesday, January 13, 2004 9:45 AM
 Subject: Re:REPOST: CFFILE not working on MX Standard on Linux

 I'm running CFMX 6.1 Standard on Redhat 8, and I don't have a
/CFIDE/main/ide.cfm file either, but I'm able to upload without any problem.
 Most likely you'll need to give the user that the CF server is running
as permission to the directory you're uploading to.
 The easiest way to check if permissions are the issue is to temporarily
change the permissions of the directory you're uploading the file to. If you
set the permissions to 777, and the upload works, then CF doesn't have the
proper rights to the directory while the permissions are set as they should
be.
 HTH,
 Robert Cunningham

  Yves you mentioned permissions...and I'm starting to wonder if that
  might be it.I'm new to CF on Linuxon Windows CF uses what...the
  System accountis there an equivalent account that should have
  permissions on linux to allow CF to do it's magic??
 
  Bryan Stevenson B.Comm.
  VP  Director of E-Commerce Development
  Electric Edge Systems Group Inc.
  t. 250.920.8830
  e. [EMAIL PROTECTED]
 
  -
  Macromedia Associate Partner
  www.macromedia.com
  -
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Sub Query of a QofQ

2004-01-13 Thread Mickael
Hi 

Is it possible to have a simple query have a sub query using QofQ.It sounds like it could work but how do you determine the datasource?

What I am getting at is 

cfquery datasource=mydsn

Select thedate from datetable where thedate in (select * from the QofQResult)

/cfquery

How would you get the above to work?

Thanks

Mike
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Sub Query of a QofQ

2004-01-13 Thread Schuster, Steven
Though this seems like a stupid question why not just use a left outer join?
 Of course I didn't see any code as I must have deleted the original so this
may all be moot.



Stephen E. Schuster
PeopleSoft Administrator
2000 Ashland Drive
Ashland, KY 41101

Office Phone 606.920.7447
Cell Phone 606.831.4590

_

From: Mickael [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 2:29 PM
To: CF-Talk
Subject: Sub Query of a QofQ

 
Hi 

Is it possible to have a simple query have a sub query using QofQ.It
sounds like it could work but how do you determine the datasource?

What I am getting at is 

cfquery datasource=mydsn

Select thedate from datetable where thedate in (select * from the
QofQResult)

/cfquery

How would you get the above to work?

Thanks

Mike
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Sub Query of a QofQ

2004-01-13 Thread Jochem van Dieten
Mickael said:

 Is it possible to have a simple query have a sub query using QofQ.
 It sounds like it could work but how do you determine the
 datasource?

Not as a subquery, but there are workarounds as long as the subquery
is not correlated. Just don't expect stellar performance.

 cfquery datasource=mydsn
 Select thedate from datetable where thedate in (select * from the
 QofQResult)
 /cfquery

 How would you get the above to work?

Closest you can get will be:

cfquery name=myquery dbtype=query
select *
from the QofQResult
/cfquery

cfquery datasource=mydsn
Select thedate
from datetable
where thedate in cfqueryparam list=yes cfsqltype=cf_sql_date
value=#ValueList(myquery.thedate)#
/cfquery

Jochem
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




SOLVED Re: Re:REPOST: CFFILE not working on MX Standard on Linux

2004-01-13 Thread Bryan Stevenson
Well ultimately I'm going to give World write access to these directories...I know it may sound scary, but they are not web accessible directories, so granting that kind of access should be fine IMHO

Thanks to all that chipped in their 2 cents ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Josh Remus 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 11:25 AM
Subject: RE: Re:REPOST: CFFILE not working on MX Standard on Linux

if you do something like a ps -al |more you'll get a list of all processes
 the user running them.I believe what you're concerned about is apache
permissions, so check what user httpd is running as, and allow that account
permissions into the directory.
 -Original Message-
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 13, 2004 2:22 PM
 To: CF-Talk
 Subject: Re: Re:REPOST: CFFILE not working on MX Standard on Linux

 OK this is definately a permissions issueI gave Group and World
write permission to the directory in question and voila! uploads now work.
My concern is that changing the permissions on the directory is not the
safest way and I would prefer to assign additional rights to the account
that CF Server uses...but what is that account called on Linux??

 Thanks eveybody

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
- Original Message -
From: Robert Cunningham
To: CF-Talk
Sent: Tuesday, January 13, 2004 9:45 AM
Subject: Re:REPOST: CFFILE not working on MX Standard on Linux

I'm running CFMX 6.1 Standard on Redhat 8, and I don't have a
/CFIDE/main/ide.cfm file either, but I'm able to upload without any problem.
Most likely you'll need to give the user that the CF server is running
as permission to the directory you're uploading to.
The easiest way to check if permissions are the issue is to temporarily
change the permissions of the directory you're uploading the file to. If you
set the permissions to 777, and the upload works, then CF doesn't have the
proper rights to the directory while the permissions are set as they should
be.
HTH,
Robert Cunningham

 Yves you mentioned permissions...and I'm starting to wonder if that
 might be it.I'm new to CF on Linuxon Windows CF uses what...the
 System accountis there an equivalent account that should have
 permissions on linux to allow CF to do it's magic??

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Sub Query of a QofQ

2004-01-13 Thread Mickael
Well one query is the results of a CFDIRECTORY query and the other is a database table.

here is my task

In my table I have a date and in my folder I have files that are name with a date format like ddmm.htmWhat I am trying to do is only return the rows where the file exists in my directory.

Does that make sense?
- Original Message - 
From: Schuster, Steven 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 2:35 PM
Subject: RE: Sub Query of a QofQ

Though this seems like a stupid question why not just use a left outer join?
Of course I didn't see any code as I must have deleted the original so this
may all be moot.

Stephen E. Schuster
PeopleSoft Administrator
2000 Ashland Drive
Ashland, KY 41101

Office Phone 606.920.7447
Cell Phone 606.831.4590

 _

From: Mickael [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 2:29 PM
To: CF-Talk
Subject: Sub Query of a QofQ

Hi 

Is it possible to have a simple query have a sub query using QofQ.It
sounds like it could work but how do you determine the datasource?

What I am getting at is 

cfquery datasource=mydsn

Select thedate from datetable where thedate in (select * from the
QofQResult)

/cfquery

How would you get the above to work?

Thanks

Mike
 _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Sub Query of a QofQ

2004-01-13 Thread Mickael
Hi Jochem,
This is report that I am creating is not really hit by many people is it for a small number of clients.

What you said makes sense just one thing.In the myquery.thedate value I will have a filename that is mmdd_fr.htm can I look at just the date in your example?
- Original Message - 
From: Jochem van Dieten 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 2:41 PM
Subject: Re: Sub Query of a QofQ

Mickael said:

 Is it possible to have a simple query have a sub query using QofQ.
 It sounds like it could work but how do you determine the
 datasource?

Not as a subquery, but there are workarounds as long as the subquery
is not correlated. Just don't expect stellar performance.

 cfquery datasource=mydsn
 Select thedate from datetable where thedate in (select * from the
 QofQResult)
 /cfquery

 How would you get the above to work?

Closest you can get will be:

cfquery name=myquery dbtype=query
 select *
 from the QofQResult
/cfquery

cfquery datasource=mydsn
 Select thedate
 from datetable
 where thedate in cfqueryparam list=yes cfsqltype=cf_sql_date
value=#ValueList(myquery.thedate)#
/cfquery

Jochem
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Sub Query of a QofQ

2004-01-13 Thread Jochem van Dieten
Mickael said:

 What you said makes sense just one thing.In the myquery.thedate
 value I will have a filename that is mmdd_fr.htm can I look at
 just the date in your example?

Sure. But it is much easier to do it the other way around:

cfquery name=myquery dbtype=query
select *
from the QofQResult
/cfquery

cfquery datasource=mydsn
SELECT thedate
FROM datetable
WHERE thedate || '_fr.htm' IN cfqueryparam list=yes
 cfsqltype=cf_sql_date value=#ValueList(myquery.thedate)#
/cfquery

Just make sure that datetable.thedate actually has the format of a
mmdd string (use the databases native string formatting functions
if necessary).

Jochem
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: MS Access password

2004-01-13 Thread Matt Robertson
I just did this a couple of days ago, although in that case I was
converting data from a developer who had given me his db but forgot the
pwds.

There are two things you can do right away:

I set up the dsn in odbc via Win2k.Then I went into mySQLFront and did
an odbc import.Worked perfectly, recreating indexes, duplicating field
parameters etc.You may be able to do the same thing with other db
systems like sql server.

The second way:

b. After creating the dsn, restart CF and go into CF Studio /hs+.Click
the dsn tab and you should see the dsn on the list.Clicking on the dsn
and tables will bring up their structure like magic.You can even look
at the data by d-clicking on the tables.From there you can write what
you need to copy over the data via CF.

HtH,


 Matt Robertson [EMAIL PROTECTED] 
 MSB Designs, Inc.http://mysecretbase.com

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: P3P ready cookies

2004-01-13 Thread Gaulin, Mark
The scenario you describe should work if *all* of the frames, etc are coming
from the same host (and have the same domain name... it's not an IP address
thing). Maybe you should turn on IE's warnings for cookies so at least
you'll know why it rejecting your current cookies, in case it is unrelated
to p3p... 

 
Yeah, the privacy vs functionality conflict is a tough one.Unfortunately
you cannot have one site bless another site via p3p... if you could then
search engines would bless doubleclick.com and banner ad tracking would work
again. (I use that example when I think of this problem because it reminds
me to think of the 3rd party as someone I don't like!)If the two sites are
really friendly with each other then you could decide to change your host
name to be in the same domain of the other site (or the other way around)...
I think that would keep you out of the third party category.

 
 Mark

-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 2:02 PM
To: CF-Talk
Subject: RE: P3P ready cookies

At 01:08 PM 1/13/04 -0500, Gaulin, Mark wrote:
Ok, so your page is from a third party because the host or domain (I
forget which) in the url that the user sees in his Location bar doesn't
match the host in the request to your page.You may find that you cannot
get a non-session cookie to stick in that case since, as a third party, you
are treated like a banner ad aggregator (for example), and no one wants
those guys to be able to track them.

That was the case originally, but then I moved the pages in the frame to 
the same site, and the problem still occurs.(The frame files are in a 
different folder, but surely that's not an issue.)But if I do want to 
call files from another site, couldn't I set up a compact privacy policy 
for the other site that would cover cookies set from that site?

I'm all for privacy, but this is insane.

T

Tired of your bookmarks/favourites being limited to one computer?Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet. 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Something for ASP like livedocs

2004-01-13 Thread Robert Everland III
The docs that come with ColdFusion have always been pretty good. I need something that has the same kind of functionality for ASP. Anyone have any good references that is similar to that or has the same kind of content. 

Bob
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Something for ASP like livedocs

2004-01-13 Thread Scott Wilhelm
Here ya go:

 
http://www.microsoft.com/downloads/details.aspx?FamilyId=C717D943-7E4B-4622-86EB-95A22B832CAA http://www.microsoft.com/downloads/details.aspx?FamilyId=C717D943-7E4B-4622-86EB-95A22B832CAAdisplaylang=en displaylang=en

 
Watch out for wrapping.

 
Scott

-Original Message-
From: Robert Everland III [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 13, 2004 2:17 PM
To: CF-Talk
Subject: Something for ASP like livedocs

The docs that come with ColdFusion have always been pretty good. I need something that has the same kind of functionality for ASP. Anyone have any good references that is similar to that or has the same kind of content. 

Bob 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




ampersands in a XML object

2004-01-13 Thread David Adams
I need to have an ampersand in a XML object such as:

linkURLhttp://www.houseoffusion.com/cf_lists/index.cfm?method=threadsforumid=4/linkURL

Unfortunately, XML and CF complain about this.Any advice?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Something for ASP like livedocs

2004-01-13 Thread Schuster, Steven
MSDN Online.

 
Msdn.microsoft.com

 
Also, you can get MSDN Library as well. CD's or DVD versions full of bunches
of crap



Stephen E. Schuster
PeopleSoft Administrator
2000 Ashland Drive
Ashland, KY 41101

Office Phone 606.920.7447
Cell Phone 606.831.4590

_

From: Robert Everland III [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 2:17 PM
To: CF-Talk
Subject: Something for ASP like livedocs

 
The docs that come with ColdFusion have always been pretty good. I need
something that has the same kind of functionality for ASP. Anyone have any
good references that is similar to that or has the same kind of content. 

Bob
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: ampersands in a XML object

2004-01-13 Thread Tony Weeg
use the ascii code for it? 

-Original Message-
From: David Adams [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 2:20 PM
To: CF-Talk
Subject: ampersands in a XML object 

I need to have an ampersand in a XML object such as:

linkURLhttp://www.houseoffusion.com/cf_lists/index.cfm?method=threadsforu
mid=4/linkURL

Unfortunately, XML and CF complain about this.Any advice?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: ampersands in a XML object

2004-01-13 Thread Schuster, Steven
Use the special character amp;

 
That works in my XML docs



Stephen E. Schuster
PeopleSoft Administrator
2000 Ashland Drive
Ashland, KY 41101

Office Phone 606.920.7447
Cell Phone 606.831.4590

_

From: David Adams [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 2:20 PM
To: CF-Talk
Subject: ampersands in a XML object 

 
I need to have an ampersand in a XML object such as:

linkURLhttp://www.houseoffusion.com/cf_lists/index.cfm?method=threadsforu
mid=4/linkURL

Unfortunately, XML and CF complain about this.Any advice?
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: ampersands in a XML object

2004-01-13 Thread Raymond Camden
xmlFormat() the string?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Sub Query of a QofQ

2004-01-13 Thread Mickael
Jochem 

Your suggestion makes sense.I am using access what do you mean by Native string formatting functions?
- Original Message - 
From: Jochem van Dieten 
To: CF-Talk 
Sent: Tuesday, January 13, 2004 3:00 PM
Subject: Re: Sub Query of a QofQ

Mickael said:

 What you said makes sense just one thing.In the myquery.thedate
 value I will have a filename that is mmdd_fr.htm can I look at
 just the date in your example?

Sure. But it is much easier to do it the other way around:

cfquery name=myquery dbtype=query
 select *
 from the QofQResult
/cfquery

cfquery datasource=mydsn
 SELECT thedate
 FROM datetable
 WHERE thedate || '_fr.htm' IN cfqueryparam list=yes
cfsqltype=cf_sql_date value=#ValueList(myquery.thedate)#
/cfquery

Just make sure that datetable.thedate actually has the format of a
mmdd string (use the databases native string formatting functions
if necessary).

Jochem
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Sub Query of a QofQ

2004-01-13 Thread Jochem van Dieten
Mickael wrote:
 
 Your suggestion makes sense.I am using access what do you mean by Native string formatting functions?

You need to format a date as a mmdd string. I'm sure Access 
has a function for that.

Jochem

-- 
I don't get it
immigrants don't work
and steal our jobs
- Loesje
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




real quick ot

2004-01-13 Thread Tony Weeg
does anyone here use version control for web apps?

my CTO is dying for me to version control our company intranet
and I cant explain to him enough that in the 10 freakin years ive
been building web apps, that ive never heard of a VERSION.

since web sites are a single point of distribution, and as soon as someone 
loads a page they have the new version, WHATS THE POINT?

...tony

tony weeg
senior web applications architect
navtrak, inc.
www.navtrak.net
[EMAIL PROTECTED]
410.548.2337
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: real quick ot

2004-01-13 Thread Schuster, Steven
I used VSS a long time ago, back when 3.1 or 4.0 supported it. They lied, it
sucked



Stephen E. Schuster
PeopleSoft Administrator
2000 Ashland Drive
Ashland, KY 41101

Office Phone 606.920.7447
Cell Phone 606.831.4590

_

From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 13, 2004 3:57 PM
To: CF-Talk
Subject: real quick ot

 
does anyone here use version control for web apps?

my CTO is dying for me to version control our company intranet
and I cant explain to him enough that in the 10 freakin years ive
been building web apps, that ive never heard of a VERSION.

since web sites are a single point of distribution, and as soon as someone 
loads a page they have the new version, WHATS THE POINT?

...tony

tony weeg
senior web applications architect
navtrak, inc.
www.navtrak.net
[EMAIL PROTECTED]
410.548.2337
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




  1   2   >