Has anyone here experienced Macs taking a /really/ long time loading some
.cfm documents, but not others?
Any thoughts on why that is? It can be really frustrating when you're trying
to capture an onLoad event..
~|
Archives: http
On 1/27/03 2:25 PM, "Gyrus" <[EMAIL PROTECTED]> wrote:
> Anyone have any problems with hidden form fields and Macs? I've got someone
> using a CF site I've done, they're using Mac OS9 & IE5 (I think).
>
> Problem seems to be that boolean hidden fields (values set to "TRUE" or
> "FALSE") seem to b
On 1/27/03 6:03 PM, "Jim Davis" <[EMAIL PROTECTED]> wrote:
> You didn't mention if you checked her cookie settings. That could be a
> major cause of this kind of problem.
>
I started by checking for cookie problems and found that the site is well
written with CFID & CFTOKEN passed on every URL s
Cool, I'll take a look! Thanks!
--
Josh Trefethen
.:[ Exciteworks, Inc ]::[ http://exciteworks.com ]:.
.::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::.
-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 7:11 AM
To: C
Is there anyone who can answer a quick javascript/Active Select custom
tag question>? Essentially, the form needs what was selected in the
second drop down to fill in a field elsewhere, and all efforts to point
have been miserable. Seem to break instead of actually performing
properlygrrr...
I'm freelancing for a client who still has CF 4.0 on
their server (yes, I know). I'm trying to send
multiple attachments with the CFMAIL tag. I had
totally forgotten about the MIMEATTACH attribute
(tried doing CFMAILPARAM instead) and now can't figure
out how to send multiple files with it. Can
I am using the following method to dynamically build a query
Question: Is there a limit to the length of values which can be assigned
using QuerySetCell(result, columnName,columnValue) since my MEMO fields
from access are being trimmed to 255 characters by this code.
Many thanks,
P
You didn't mention if you checked her cookie settings. That could be a
major cause of this kind of problem.
Also, less likely, we've seen some odd behavior on our site if the IE
add-in "HotBar" was installed. We've got reports that "only on our
site" users would crash when trying to view certain
Situation: Existing system, hundreds of successful
users. All templates add url tokens so that login
works with or without cookies. This is tested and
confirmed by dozens of users every day.
Problem: ONE user with a new Dell WinXP, IE 6.0.26
connecting through MSN is not retaining session.
Sh
I've seen it, too. On CF5. Not as often as you are.
best, paul
At 04:17 PM 1/27/03 -0500, you wrote:
> On CF5, I'm getting this error on random pages at random times. The
> queries have nothing in common other than they connect to the same
> datasource.
> However I am starting to get i
Use to point directly to the tag on the server (assuming the tag
is placed at the root level of the Custom Tags diectory...), viz.
This _should_ work... please note that I haven't time to test this directly
myself!
Also check docs online:
http://www.macromedia.com/support/ultradev/content/cf_cu
Well, you can probably do that. CFHTTP is available on 4.5.2 and it can easily do
such a thing, subject to:
1. Their site doesn't check for an outside referrer. If it does, and it sees a post
from a 'foreign' web site, it may bounce you.
2. Doing this doesn't violate your phone contract or
So, you are able to use CFHTTP (which I've never used...available for CF
4.5.2?)
to submit to a form on Verizon's website that was setup for sending text
messages
and have it submit and send a message to your phone?
Like using their form as a forwarding service?
Rick
> -Original Messag
Hi, Douglas.
I see you're with Alltel. So am I. (Customer, however)
I found out I'm not signed up for Text Messaging, but when I contacted
an Alltel rep just now, he said there was not a way to send an email
message to a cellphone, except through the Alltel website, on the
Text Messaging page.
I assume you're referring to "SitePeeper." If so, I found it.
Looks interesting. I'll have to spring for an account
from another provider to use it. Sure would be nice to get a notice
about the server on my cell phone...it's digital and has text messaging,
so that should work out nicely. I coul
I'd like to move a custom tag from a web site's local directory tree to one
designated in the CF Server Administrator's 'Custom Tag Paths'. This is so that
it can be used by another web site and so I don't have to maintain multiple
copies of the tag.
How do I get CF to recognize the new location
hi everyone,
Couple weeks back (developers at MINDSEYE) had some interesting discussions
w/ Macromedia guys about what we'd like to see in upcoming CFMX releases..
one of the features we wanted was application onstart, session onstart type
events.. Long story short...I wrote up a couple classes th
I guess there's a few people out there using Flash MX. Has anyone used the
Rich Text Editor from the MX Developer Resource Kit CD? Is there a demo
anywhere on the web?
We're looking at it as a potential candidate for our CMS, if clients don't
want to be restricted to IE5/PC only. How does it weigh
Unfortunately that's the way Mac IE works ... it's particularly nice
when dealing with file uploads. IE shoves a space at the end of every
formfield entry for some unbeknownst reason.
Your approach to clean all form submissions is the best approach ... Not
really a bad idea anyway if you think abo
Thanks. I understand what you're saying. I couldn't get the suggested query to
complete until I indexed the email field, but now it's pretty quick.
Jim
- Original Message -
From: "Matthew Walker" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, January 27, 2003 3:24
DISTINCT works on all the selected columns
SO with your example below:
[EMAIL PROTECTED] Tim Jones
[EMAIL PROTECTED] Timothy G. Jones
Each is a distinct record, the name is different on each one.
Doesn't matter that you added () around email.
-Original Message-
From: Jim M
I recall having similar problems, and I think getting carriage returns
jammed in there too. I would vote for the brute force approach you
describe. It's not really that bad though, Fusebox code does similar
things to the form scope.
> -Original Message-
> From: Gyrus [mailto:[EMAIL PROTEC
Anyone have any problems with hidden form fields and Macs? I've got someone
using a CF site I've done, they're using Mac OS9 & IE5 (I think).
Problem seems to be that boolean hidden fields (values set to "TRUE" or
"FALSE") seem to be getting spaces added to them abitrarily. At least, when
I use
I thought of that, even though I take care not to insert trailing whitespace
into text fields. So I printed out Len(email).
18 [EMAIL PROTECTED] Tim Jones
18 [EMAIL PROTECTED] Timothy G. Jones
Jim
- Original Message -
From: "Jason Miller" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMA
DISTINCT is not a function with parameters. It works on all the selected
data.
Try this:
SELECT DISTINCT email, (
SELECT TOP 1 [name]
FROM table1 AS table1a
WHERE email = table1.email
) AS myName
FROM table1
WHERE status = 'A'
AND email <> ''
> -Original Mes
Years ago, I wrote
a CF-application to convert e-mails to SMS-messages.
You pretty much should take the subject line of the email
to convert it to the SMS-body which can be maximum 160 characters.
The other thing I would like to add is, that
you can do your own SMS-message service.
I did it months
unfortunately CF 4.5
thanks.
- Original Message -
From: <"Roberson>; ; >
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, January 27, 2003 4:23 PM
Subject: RE: DateTimeFormat
> You could write a function to return the correct string in one shot
>
> function date_time(tmpVar){
>
> New_Date
That happened to me too - then I found out it was trailing white
spaces.. try trimming the white spaces
Jim McAtee wrote:
>Any ideas why I might be seeing duplicate email addresses in the dataset
>returned by this simple query (Access 97 via ODBC)?
>
>
>SELECT DISTINCT(email), name
>FROM table
It dies after 5 minutes no matter which pages you hit? For instance,
if you were to create a simple test page like this...
#myVar#
... and hit it for 5 minutes, the server will still eventually die?
I'm guessing not, so the next step would be to find out which page is
c
Any ideas why I might be seeing duplicate email addresses in the dataset
returned by this simple query (Access 97 via ODBC)?
SELECT DISTINCT(email), name
FROM table1
WHERE status = 'A'
AND email <> ''
In the output, I'm seeing stuff like:
[EMAIL PROTECTED]Bob Smith
[EMAIL PROTECTED]
> I have a CF5 compatible user-defined function like this:
>
> function jsqfCommit(formname) {
> arguments[1] = request.tapi.js.qf(formname) & ".commit";
> return request.tapi.call("request.tapi.js.call",arguments);
> }
>
> This works beatifully in CF5 (don't get me started on the
>
I'm researching how we can test the rich apps we're rolling
out...(regression testing mostly) I've tried out a product from Mercury
Interactive that seems capable of automatic quite a bit in regards to
interacting with a Flash UI...but I read in the pet market app that MM
used SilkTest.
Of course
Your welcome, It's only because I just did this myself friday. :)
Bryan F. Hogan
Director of Internet Development
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL
-Ori
Bryan:
Thank you, you nailed it ! I knew it was going to be something stupid !
I removed the slash delimiters and it worked as desired.
Thank you for taking the time to help out, it is much appreciated !
-Gerry
Gerard T. Pauline
Mgr, Internet Applications
Computer Systems, DoIT
Pace University
This is our first venture into Remoting with our Java environment,
success is critical :) (we already use it with cfmx)
Here's the description from my java team lead:
I'm trying to make Flash MX call an EJB directly through the flash
remoting gateway. I have a basic text box window that will d
You could write a function to return the correct string in one shot
function date_time(tmpVar){
New_DateTime= DateFormat(tmpVar, "-mm-dd") & " " &
TimeFormat(tmpVar, "hh:mm:ss");
return New_DateTime;
};
-Original Message-
From: Sam Roach [mailto:[EMAIL PROTEC
Stacy-
Ask away...
Collin Tobin
QA Engineer
617 219 2000
[EMAIL PROTECTED]
Macromedia®
What the web can be.(tm)
-Original Message-
From: Stacy Young [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 4:15 PM
To: CF-Talk
Subject: Problems: Any good support resources for Flash R
Not in one shot but you can do something like:
-- Sam
-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 1:10 PM
To: CF-Talk
Subject: DateTimeFormat
Hi,
I looked at all the functions but can't seem to find a CF function that
formats date a
On CF5, I'm getting this error on random pages at random times. The
queries have nothing in common other than they connect to the same
datasource.
However I am starting to get it fairly (1-2 times a day, and
today 3 times) consistently now as load starts to climb on a new app.
Anyone s
We're having some problems...need to troubleshoot...the MM forum has
folks asking questions but no answers :(
Thx!
Stace
AVIS IMPORTANT:
---
Les informations contenues dans le present document et ses pieces jointes sont
strictement confidentielles et reservees a l'u
You'll need to do #DateFormat(var)# #TimeFormat(var)#, but you can use the
same variable - the functions are smart enough to extract the date and time
info accordingly.
At 04:09 PM 1/27/2003 -0500, you wrote:
>Or do I have to parse out the date and time and do it separately?
~~~
Hi,
I looked at all the functions but can't seem to find a CF function that
formats date and time in one shot.
Can I change the output of Now() directly into this format : 2003-01-27
14:54:29
Or do I have to parse out the date and time and do it separately?
Looking for a shortcut:)
Thanks
~~
http://www.houseoffusion.com/cf_lists/index.cfm?method=threads&forumid=6
Signup and archives are there. While the traffic is low, the membership is high
quality and DB related questions are usually answered quickly and thoroughly.
I'm not knocking CF-Talk as it's as strong as ever but some of the s
[EMAIL PROTECTED] Michael's got a whole pile of mailing lists other
than CF-Talk. FYI it's not even 1/10th of the traffic of this list... days
go by without a post to it.
At 03:46 PM 1/27/2003 -0500, you wrote:
>Btw, what is that SQL list?
~~~
Btw, what is that SQL list?
Matthew Small
IT Supervisor
Showstopper National Dance Competitions
3660 Old Kings Hwy
Murrells Inlet, SC 29576
843-357-1847
http://www.showstopperonline.com
-Original Message-
From: Scott Weikert [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 3:37
Win2K Server
IIS 5
CF MX updater 2
Here's the problem:
I have a CF5 compatible user-defined function like this:
function jsqfCommit(formname) {
arguments[1] = request.tapi.js.qf(formname) & ".commit";
return request.tapi.call("request.tapi.js.call",arguments);
}
This works beati
I knew that Updater 2 kid looked a little shady. Thanks for the info.
- Jim
- Original Message -
From: "Scott Brady" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, January 27, 2003 1:49 PM
Subject: Re: Cannot pass NULL values to Oracle through MX?
> We've had no pr
What I needed was multiple RIGHT JOINS on the second table instead of doing
checks in the main WHERE clause. A guy on the SQL list pushed me in the
right direction...
SELECT A.*
FROMTableA A
RIGHT JOIN TableB B2
ON S.Email = B2.Email AND S.PublicationID = B2.PublicationID
AND
Excerpt from :
http://www.macromedia.com/v1/Handlers/index.cfm?ID=8627&Method=Full
This is why I asked if you were using COM or EJBs, something outside the
coldFusion environment. Of course I forgot the obvious, the DB, is the
datasource setup correctly?
Adam Wayne Lehman
Web Systems Developer
Scott Weikert wrote:
> At 08:34 PM 1/27/2003 +0100, you wrote:
>>Scott Weikert wrote:
>>
>>>(
>>>( B.CustomFieldID = 23 AND B.FieldValue = 'something' )
>>>And
>>>( B.CustomFieldID = 24 AND B.FieldValue = 'something else' )
>>>)
>>
>>B.CustomFieldID can not be 23 and 24 at the same time.
>
> That'
I think what you're looking for might be
^\d{4}-\d{3}-\d{4}$
but, to be honest, I've not done much with JS regexes.
As always, check out the RegEx list at http://www.houseoffusion.com for more
help. Many regex ninjas on call there. :-)
-- Ben Doom
Programmer & General Lackey
Moonbow S
Change the and to or.
(
( B.CustomFieldID = 23 AND B.FieldValue = 'something' )
OR
( B.CustomFieldID = 24 AND B.FieldValue = 'something else' )
)
- Original Message -
From: Scott Weikert <[EMAIL PROTECTED]>
Date: Monday, January 27, 2003 12:46 pm
Subject: Re: SQL: Odd Select Issue
> Th
We've had no problem passing nulls through on Oracle 8i and MX with
Updater 1.
However, Updater 2 has a new issue related to Oracle and the use of refcursors, so
we're not on Updater 2.
Reportedly, Updater 3 fixes that issue.
Scott
Scott Brady
http://www.scott
That's why they're cancelling each other out. I need to a) restructure the
query in some fashion to allow the check properly, or b) trim the
"FieldValue" checks out, and do some post-query-processing to determine if
the record from TableA really *does* qualify based on the criteria I'm
checking
replace your pattern="/^\d{4}\-\d{3}\-\d{4}$/"
with pattern="^\d{4}\-\d{3}\-\d{4}$"
Bryan F. Hogan
Director of Internet Development
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL
===
Hi Gerry remove the first character and the last character and re-run it.
Bryan F. Hogan
Director of Internet Development
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL
CFxperts:
I'm using CFFORM to create an online survey for a user. In one of the
CFINPUT tags, I'm using a regular express to validate an entry. I coded
the VALIDATE= and PATTERN= parms as follows:
The text should contain three numeric quadrants delimited by hyphens,
for example: 1000-909
Scott Weikert wrote:
> (
> ( B.CustomFieldID = 23 AND B.FieldValue = 'something' )
> And
> ( B.CustomFieldID = 24 AND B.FieldValue = 'something else' )
> )
B.CustomFieldID can not be 23 and 24 at the same time.
Jochem
~|
Archive
cfstat? (dont laugh, im not the admin he asked me to post this)
-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 2:31 PM
To: CF-Talk
Subject: RE: cfmx server
What is cfStat showing?
Adam Wayne Lehman
Web Systems Developer
Johns
>all simple cold fusion apps. no COM, no EJBs.
Are you using CFFILE Reads/Writes anywhere? If so, could it be that somebody
is trying to upload/write a large file and it's eating your RAM?
Shots in the dark, but trying to give you some paths to pursue.
Regards,
Dave.
Frank Mamone wrote:
> What is the nest way to format a date to compare to a database datetime
> column.
Use cfqueryparam and the actual format doesn't really matter anymore.
Jochem
~|
Archives: http://www.houseoffusion.com/cf_li
What is cfStat showing?
Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division
-Original Message-
From: "Tangorre [mailto:"Tangorre]
Sent: Monday, January 27, 2003 2:13 PM
To: CF-Talk
Subject: RE: cfmx server
all simple cold
Oh! Sorry.. Missed that part. :)
| -Original Message-
| From: Matt Robertson [mailto:[EMAIL PROTECTED]]
| Sent: Monday, January 27, 2003 11:13 AM
| To: CF-Talk
| Subject: RE: CFMail Not Local Host - Not a Gateway
|
|
| Yes, we're already there. What he's saying is this method is
all simple cold fusion apps. no COM, no EJBs.
-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 1:58 PM
To: CF-Talk
Subject: RE: cfmx server
What type of applications do you have running? Did this box work
properly before, or is this
Yes, we're already there. What he's saying is this method is insecure, and there is
an alternative that works with cf and straight smtp auth (i.e. 'no relay' in imail).
---
Matt Robertson, [EMAIL PROTECTED]
MSB Designs, Inc. http://mysecretbase.com
-
Yes, we're already there. What he's saying is this method is insecure, and there is
an alternative that works with cf and straight smtp auth (i.e. 'no relay' in imail).
---
Matt Robertson, [EMAIL PROTECTED]
MSB Designs, Inc. http://mysecretbase.com
-
Yes, me too.
Bryan F. Hogan
Director of Internet Development
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL
-Original Message-
From: Matt Robertson [mailto:[EMAI
We've got an application that uses and
extensively on an Oracle 8i database. Some frustrating debugging sessions
later, a Macromedia rep tells us not to use NULL values in
against an Oracle datasource. Hilarity ensued.
We've installed updaters 1 and 2 on MX.
Has anyone encountered this probl
Simply include our local servers in your "Relay for Addresses" list. And it
will stop checking those server IPs.
Have done it many times...
| -Original Message-
| From: Matt Robertson [mailto:[EMAIL PROTECTED]]
| Sent: Monday, January 27, 2003 10:56 AM
| To: CF-Talk
| Subject: Re: CFM
(I posted this to the SQL list, but since it gets about as much traffic
as... well, very little traffic... I'm posting here as well.)
I have two tables that I'm trying to do a combined select on, based on
criteria drawn from both tables. Second table has zero-to-X records for
each record out of t
Unfortunately I do mean an honest to goodness Telnet session, with logins,
and ASCII screens collecting data and all that. The application local users
use is "Reflection" that is set to use a VT102 emulation. Can you give some
hints on where I, a telnet novice but very experienced cold fusion cod
Thanks.
-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 12:31 PM
To: CF-Talk
Subject: RE: Session Swapping
This is because the expire time is set to now() by default.
WG
> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTEC
#createODBCDateTime(now())#
Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division
-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 12:16 PM
To: CF-Talk
Subject: Date question
Wh
Failed to send the spooled mail file, C:\CFusion\Mail\spool\7E4.cfmail. SMTP
server replied "bogus mail from" Moved file to
C:\CFusion\Mail\undelivr\80A.cfmail.
Bryan F. Hogan
Director of Internet Development
Macromedia Certified ColdFusion MX Developer
The last time this came up, as I recall, you brought this up and it caused a slew of
naysaying. I don't think we ever got hold of a working code example and - I believe
it was Jochem who brought them up - a slew of problems apparently exist with using
this technique.
Relay for addresses is the
What type of applications do you have running? Did this box work
properly before, or is this a new install? Are you using any outside
objects like EJBs, classes or COM? What does CFStat tell you?
Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Educa
The cfmx server in one of our environments is not functioning correctly. If we get it
working, it works for like 5 minutes, then it dies. So far the only I can fetch out
of the log files is in one of the jrun log files. When I say dead I mean that all
.cfm files don't work, like the browser ha
I am getting errors when using CFHTTP.FileContent to grab pages that contain special
characters such as î, è, à, etc.
To diagnose the problem I use and it displays the
HTML code of the target page right up until the first special character and stops.
When I use #CFHTTP.FileContent# I get:
M
This is because the expire time is set to now() by default.
WG
> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]]
> Sent: 27 January 2003 18:19
> To: CF-Talk
> Subject: RE: Session Swapping
>
>
> Dimo,
>
> I don't understand how this insures that cookies are terminate
Ya - the cookie dies once the user kills the browser session
- Original Message -
From: "<"Tangorre>,Michael"" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, January 27, 2003 1:26 PM
Subject: RE: Session Swapping
> The cookie is never written to the user's hard disk
go here:
http://www.halhelms.com/index.cfm?fuseaction=tutorials.detail
It is the last Animated Tutorial..
hope that better clarifies things.
Mike
-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 1:19 PM
To: CF-Talk
Subject: RE: Session
The cookie is never written to the user's hard disk... they stay memory resident only.
Mike
-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 1:19 PM
To: CF-Talk
Subject: RE: Session Swapping
Dimo,
I don't understand how this insures th
Dimo,
I don't understand how this insures that cookies are terminated on browser
close. It just looks like you are just resaving the same token. Would you
explain how this works?
Andy
-Original Message-
From: Dimo Michailov [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 12:0
Hi Robert:
A quick tip, we had a situation with mixed sessin identities not long
ago. The reason - ghost-ing machines which had a CFID/CFTOKEN cookie, so
all ghosted machines had the same cookie - same identity of swapped
identities in the middle of session.
Also, putting this in your Applicat
Thanks for your help on this.
Thanks, Mark
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 12:48 PM
To: CF-Talk
Subject: Re: SOT: XML version / DOC type
CSE is correct. You have to VERY careful with your doctype when dealing
with I
> -Original Message-
> From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
> Sent: Monday, January 27, 2003 5:20 AM
> To: CF-Talk
> Subject: Re: SQL Worm
>
> Paris Lundis wrote:
> > A good summary Jochem would be for folks to tune the firewall and
> > ensure permissions/allowable IP list..
I forgot to mention that the page will keep refreshing so the value would
change all the time.
What I want to do is set it once an stays the same. Maybe set a session var
in another browser frame using Now().
Thanks Tony!
- Original Message -
From: "Tony Weeg" <[EMAIL PROTECTED]>
To: "C
LOL, Just being picky!! As for the servlets in Pro edition well.. Cough..
Cough.
Is Ent edition NOT a certified servlet container?
WG
> The Enterprise edition does, however not the Professional edition. The
> Professional edition will let you use Java objects, but not Servlets,
> JSPs or tag l
CSE is correct. You have to VERY careful with your doctype when dealing with IE6,
because it _will_ follow it to the letter. So, if you have tags and layout that
doesn't agree with the XHTML transitional doctype, it won't render correctly in IE6.
- Original Message -
From: Mark Leder <
thanks, i didn't catch that.
-Original Message-
From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 27, 2003 10:00 AM
To: CF-Talk
Subject: RE: CFMX Log Viewer
It's added back in with Updater 2. Install that and you should be all set.
Debbie
-Original Message
and to add just a bit more
where I have now, you could easily have...
#DateFormat(Now(),'mm/dd/')#
or you could have
'#DateFormat(Now(),'mm/dd/')# 00:00:00.000' to signify midnight
'#DateFormat(Now(),'mm/dd/')# 23:59:59.999' to signify the end of
the day
'#DateFormat(Now(),'
At 12:16 PM 1/27/03 -0500, Frank Mamone wrote:
>What is the nest way to format a date to compare to a database datetime
>column.
I always use CreateODBCDate(). So I can do something like:
Where dateColumn < #RequestDate#
Works everytime (for me) and you don't have to worry about date forma
I believe one of the ColdFusion MX updaters makes it available again:
http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenote
s_mx_updater.html
ID: 46600
The Log Viewer was not available in the ColdFusion MX Administrator in
Professional Edition.
Benjamin S. Rogers
http://www.c4
The Enterprise edition does, however not the Professional edition. The
Professional edition will let you use Java objects, but not Servlets,
JSPs or tag libraries. And neither are complete and certified J2EE
solutions like JRun is.
Sorry, should have clarified.
Christian
On Monday, Janua
you can do this...
select * from foo where TheDate >= #Now()#
and that value can be anything that is acceptable date format
...tony
Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & r
Candace,
It should not matter where you install CFMX, flash remoting requests are handled by
the ISAPI filter then passed on to CFMX.
So the configuration you need to check is in IIS. Make sure that the ISAPI filter is
installed at the global level and the /JRunScripts virtual directory is add
What is the nest way to format a date to compare to a database datetime
column.
Basically I want to pull all records created after the original request was
made.
So,
SELECT ..
Where datecolumn >= RequestTime
I'm really bad with date stuff and I need to learn how to work with them.
Tha
are all your session variables locked? also, are you appending the cfid
token etc in the URL.?
-Original Message-
From: Robert Shaw [mailto:[EMAIL PROTECTED]]
Sent: 27 January 2003 16:50
To: CF-Talk
Subject: Session Swapping
Hi,
Using CF 5 we switched form client vars to session and now
Ok, do you know of a place I can find out what is passed through within the
header?
Bryan F. Hogan
Director of Internet Development
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL
Hi,
Using CF 5 we switched form client vars to session and now we're seeing
session swapping (login as one account and see data from another's). Any
tips on what might be happening and why we'd be seeing this. I imagine it's
tied to the switching.
TIA,
Rob
~
1 - 100 of 169 matches
Mail list logo