On Friday, Oct 18, 2002, at 19:06 US/Pacific, Tony Weeg wrote:
> race condition?
When two requests might get processed at the same time and both might
try to read and/or update a shared scope variable... a case of
whichever request wins the the race... :)
A rule of thumb here is: if you don't r
I'm pretty sure it's the order that is hanging it up. I have used
cfstoredproc in other places on our servers and it works just fine.
It's pretty dissapointing that this seems to be a "feature" or "bug" or
whatever you want to call it that MM is ignoring. What happens when you
want to skip param
Yea.. the duplicate/structCopy route works good as well...
i was just throwing out the logic.
Joe
> -Original Message-
> From: Mark A. Kruger - CFG [mailto:mkruger@;cfwebtools.com]
> Sent: Saturday, October 19, 2002 12:25 AM
> To: CF-Talk
> Subject: RE: session vars and locking
>
>
> Joe
> You are correct... but i think its better to copy the
> variables to
> local scope in one sequence... instead of a lot cflocks..
>
>
> tmpVar1=Session.SomeStruct.var1;
> tmpVar2=Session.SomeStruct.var2;
>
>
>
>
> Session.SomeStruct.var1=Var1;
> Session.SomeStruct.var2=Var2;
>
>
> You c
Joe,
When you do it this way you are referencing the session variable as a local.
To get a true copy use the duplicate function:
tmpVar1= duplicate(Session.SomeStruct.var1);
tmpVar2=duplicate(Session.SomeStruct.var2);
-mk
-Original Message-
From: Joe Eugene [mailto:Jebebox@;earth
You are correct... but i think its better to copy the variables to
local scope in one sequence... instead of a lot cflocks..
tmpVar1=Session.SomeStruct.var1;
tmpVar2=Session.SomeStruct.var2;
Session.SomeStruct.var1=Var1;
Session.SomeStruct.var2=Var2;
You can refer to the local scope vari
>> It't not just an occasionaly thing, it's with _every_
>> cfstoredproc call.
>> Updating MDAC ( while not necessarily a bad idea ) won't
>> help, because the
> The specific error that Andy was getting can be related to
> the version of
> MDAC that is installed on the server.
Ahh... well -- he m
> is there a function, that i missing from the help file
> for some reason, cant find anything, to count the amount
> of characters in a file?
> not the file length, but the actual amount of characters
> in a file?
There's no native function, you'd have to read in the file and check the
length...
I thought they operated by license key submitted with each request? When I
signed up (a while back) they sent me some kind of key...but didn't receive
any other notification of restrictions on usage etc... ?
Stace
-Original Message-
From: Eric Hoffman [mailto:webmaster@;digitalmpls.com]
I checked it out as well...believe it's SOAP-RPC...may work with CFHTTP and
XML/CFHTTPPARAM ?
You can download their API/XML doc off their site...
-Original Message-
From: Ben Forta [mailto:ben@;forta.com]
Sent: Friday, October 18, 2002 5:05 PM
To: CF-Talk
Subject: RE: UPS web services
At 02:49 PM 10/18/2002 -0700, you wrote:
>Good point.
>
>Sorry I keep thinking people have honor. Bites me in the arse everytime...
>
>10 PRINT "I am old"
>20 GOTO 10
I think I see a bug in that code.
10 Print "I am experienced"
20 Goto 10
30 Goto 30
There, that should work.
If everyone ha
And the advantage over each of the 3 developers running a separate
Developer version would be what?
If it is a production system , realistically, how many 3-person CF
production networks are there?
Even then, if you wanted to cheat, you could do a more effective job
with a proxy server -- s
On Friday, Oct 18, 2002, at 18:03 US/Pacific, Brook wrote:
> Interesting, well maybe I can use a combination of the two. Store the
> XML
> data and then when needed parse section of it into arrays or what not
> and
> then work with the resulting objects in CF. And then save it back into
> the
>
race condition?
tw
-Original Message-
From: Sean A Corfield [mailto:sean@;corfield.org]
Sent: Friday, October 18, 2002 10:03 PM
To: CF-Talk
Subject: Re: session vars and locking
On Friday, Oct 18, 2002, at 18:00 US/Pacific, Tony Weeg wrote:
> is it safe to assume that everywhere on a p
On Friday, Oct 18, 2002, at 18:00 US/Pacific, Tony Weeg wrote:
> is it safe to assume that everywhere on a page, where i am either
> setting or reading from session variables, that i should have cflock's
> of the exclusive type (when writing to session vars) and cflocks of
> the readonly type (when
is there a function, that i missing from the help file
for some reason, cant find anything, to count the amount
of characters in a file?
not the file length, but the actual amount of characters in a file?
...tony
tony weeg
[EMAIL PROTECTED]
www.revolutionwebdesign.com
rEvOlUtIoN wEb DeSiGn
410.3
cancel this. i figgered it out.
thanks.
tony
-Original Message-
From: Tony Weeg [mailto:tony@;navtrak.net]
Sent: Friday, October 18, 2002 9:27 PM
To: CF-Talk
Subject: odd cffile error
ok,
'splain this one
im about to go mad...
Error Diagnostic Information
Error processing CFFILE
E
On Friday, Oct 18, 2002, at 17:29 US/Pacific, Brook wrote:
> Well, it's using MSSQL and the default JDBC driver that ships with
> CFMX. I
SQL 2k or v7 or...?
> didn't think this was important because I don't think it's a DB issue.
> Unless you think that a DB issue could manifest itself like thi
On 10/18/02, Eric Hoffman penned:
>A primary issue as well is their concerns that unregulated code will
>cause significant problems to their servers. My client was required to
>be shipping a minimum of 50 packages a day to get access to the full
>online shipping system,
UPS Shipping is one of the
> It't not just an occasionaly thing, it's with _every_ cfstoredproc call.
> Updating MDAC ( while not necessarily a bad idea ) won't help, because the
The specific error that Andy was getting can be related to the version of
MDAC that is installed on the server.
On 10/18/02, [EMAIL PROTECTED] penned:
>That's off the wall. I find it ironic that UPS is fighting
>distribution of code
>that ultimately would result in more customers / business for their company.
LOL
I've argued every point I can think of with them. The whole thing is
ludicrous. The stupid
ok,
'splain this one
im about to go mad...
Error Diagnostic Information
Error processing CFFILE
Error attempting to read
'd:\www\clients\cx_Web~1\ScoreW~1\pre_out_702928_TTT_123.xml.' The
process cannot access the file because it is being used by another
process. (error 32)
The error occurred
> Isaac,
> Thanks for the info, and to the previous poster - the
> CF_SQL_TIMESTAMP date
> type didn't help any.
> The parameters aren't in the same order as in the stored
> procedure, but is
> there any way to get around this "feature". That sounds
> like a severe
> limitation of the tag. I'd r
hi there
is it safe to assume that everywhere on a page, where i am either
setting or reading from session variables, that i should have cflock's
of the exclusive type (when writing to session vars) and cflocks of
the readonly type (when reading from session vars) on every single
occurence
of one
Hey Greg,
I think there's some disconnect somewhere here, can you clarify for me if the
following doesn't sort it out?
> You're raising the cost of entry by differentiating the Enterprise and Pro
editions along the lines of a basic programming construct (specifically, JSP tags)
for the first t
A primary issue as well is their concerns that unregulated code will
cause significant problems to their servers. My client was required to
be shipping a minimum of 50 packages a day to get access to the full
online shipping system, we had to certify a ton of code and database
stuff, as well as an
Interesting, well maybe I can use a combination of the two. Store the XML
data and then when needed parse section of it into arrays or what not and
then work with the resulting objects in CF. And then save it back into the
XML document? Insert it back in I guess? I need to brush up on the CFMX X
Friday, October 18, 2002, 7:07:58 PM, you wrote:
B> Does it make sense to take an XML doc from the DB and store it as a client
B> variable for persistence? And if this XML document was used internally via
B> the app and was modified and parse very frequently, would there be a
B> decrease in the pe
Bud,
That's off the wall. I find it ironic that UPS is fighting distribution of code
that ultimately would result in more customers / business for their company.
-Cliff
On Fri, 18 Oct 2002 17:20:15 -0700 (PDT), Bud wrote:
>
> On 10/18/02, Ben Forta penned:
> >I may be wrong, but I do not
>I really wish we had done this... Selling HomeSite+ as "ColdFusion
>Studio MX" at $499 alongside Dreamweaver MX at $399...
Yeah, but then we'd bitch and moan about it not including all the latest
CFMX toys that DWMX offers rather than just wishing we could have the
pre-Adobe-settlement CF Studi
On 10/18/02, Ben Forta penned:
>I may be wrong, but I do not believe they have a Web Service. They have
>a series of XML interfaces that are not trivial to use (not terribly
>complex either though).
>
>I started building a CFC to encapsulate their XML API's, but have a way
>to go yet. I'll try get
Sean,
Well, it's using MSSQL and the default JDBC driver that ships with CFMX. I
didn't think this was important because I don't think it's a DB issue.
Unless you think that a DB issue could manifest itself like this. The MX
Updater is installed.
-Brook
At 05:03 PM 18/10/02 -0700, you wrote:
**All IMHO**
> How fast are the XML routines within CFMX?
I can't say for sure, but I think they are based on Xerces and Xalan - which
is pretty fast depending or what you are doing (how complex the xml document
is - how many levels).
>Does it make sense to take an XML doc from the DB and store i
On Friday, Oct 18, 2002, at 15:37 US/Pacific, Brook wrote:
> I'm running CFMX (with the updater installed) on win2k sp3. Everything
> was
> running fine, but now, at least one a day, the server freezes. Its the
> strangest thing. The CPU and/or Memory do not spike or accumulate. The
> services are
On 10/18/02, Chris Montgomery penned:
>I have read over the PayPal Instant Payment Notification (IPN) docs and
>think I have a fairly firm grasp on how this works for payment
>verification, etc. But what I haven't nailed down is if it is possible
>to use PayPal with an *existing* shopping cart writ
On Friday, Oct 18, 2002, at 10:12 US/Pacific, Costas Piliotis wrote:
> Thing is though, the problem mostly is that Macromedia isn't really
> listening. They SHOULD care about we use as an editor.
Yes, they really are listening. And they really care. Believe me. If
they weren't / didn't, then the
Also check for cfcontent as that tag in the Application.cfm stopped the
page from rendering in "certain" conditions which I was unable to track
completely down... Just that debuggin on worked... Debuggin off
didn't... But a very simialr page worked correctly in all cases
-Original Message-
>> Was this corrected in CFMX?
>Honestly, I haven't tested to find out.
I ran the CFMX Code Analyzer against an old app last night and one of the
things it mentioned was that dbvarname is ignored in CFMX and that
parameters must be listed in proper order.
Ken
~~
unless, of course, it was a 3 person network.
-Original Message-
From: Dick Applebaum [mailto:dicklacara@;mac.com]
Sent: Friday, October 18, 2002 3:00 PM
To: CF-Talk
Subject: Re: CFMX Developer Edition wish was Re: Pro v Enterprise?
It really doesn't matter what the external IP addresses
I am hosting a site that uses a combination of PayPal and conventional payment
options, (written in
ASP and CF.)
The shopping cart is a custom modification of QuickEstore.
check it out at http://www.strictlyhodaka.com
This address is filtered through the open r
You can do this in Access.
right click on table 2, click on copy.
now right click anywhere within the table tab. then click on paste.
type in the name of your table1. and select append data to existing table.
if you set the email field in table1 as primary key. this will take of of
the duplicat
Hey Brook,
I'm pretty sure I've seen a bunch of posts on that recently.I'd checkout
the archives for the requests adding up until death
HTH
Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]
-
On Friday, Oct 18, 2002, at 11:59 US/Pacific, Rob Rohan wrote:
> I miss Windows3.11's stability, should we start a petition to have
> Microsoft start redeveloping it?
Microsoft cancelled WfWG??? I'm bummed... I loved that OS...
(c'mon, it's Friday!)
"SOAP is not so much a means of transmitting
>(i.e. no else statements when using if).
are you talking about XSLT? if you are you need to use a choose statement
for anything more then one if
...
...
...
>XML is SO verbose!
true.
> We are pulling our hair out and getting carple tunnel from all of the
extra
> typing
Coldfusion and Perl have if/else functionality...use it, that's what
the application server's role in life is. XML is only a data format,
XSL which you eluded to doesn't have an else statement, true, but XSL
isn't really a procedural language anyway.
Some questions that come to my mind...
What par
I believe it is version 2.6
-Original Message-
From: Kwang Suh [mailto:ksuh@;shaw.ca]
Sent: Friday, October 18, 2002 3:04 PM
To: CF-Talk
Subject: RE: cfstoredproc behavior
Do you know what version of MDAC is on the server?
> -Original Message-
> From: Andy Clary [mailto:aclary@;
I made a mistake in test.cfm -> client variables are still properly
being set... The problem must lie in my code somewhere...
-Original Message-
From: Ben Koshy [mailto:benlist@;w3media.net]
Sent: Friday, October 18, 2002 2:25 PM
To: CF-Talk
Subject: RE: MX Installation: Client Variables
How fast are the XML routines within CFMX? I am currently using arrays and
structures to store a big ole data structure for one of my apps. I want to
create an XML document based on this info and store it as XML instead of a
WDDX packet in the DB. What I'm curious about is parsing and using that
I finally figured out why the page was not generating.
I called a tag in the Application.cfm. Having this anywhere
inside the Application.cfm or the page causes the page not to render
completely.
So if you are using MX make sure that you are not using this tag.
Thanks,
Tim Laureska writes:
> OK... I was just trying to convert the month number (ex 10 for October)
> into Oct instead of October
>
I think Raymond posted the answer to that...but in case you missed it...
#left(monthAsString(month), 3)#
charlie
> -Original Message-
> From: Randell B
This is actually a known issue that is documented in Technote #23179.
We have run into this in load testing CFMX when we were resolving a
completely separate bug.
Full URL here:
http://www.macromedia.com/v1/Handlers/index.cfm?ID=23179&Method=Full
Jeremy
-Original Message-
From: [EMAI
Yes, we did that; no change. I wonder if LoadRunner is keeping the user sessions
straight?
thanks,
Chris Norloff
-- Original Message --
from: "Deanna Schneider" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
date: Fri, 18 Oct 2002 08:59:16 -0500
>Have y
Thanks. That response seems to be the Standard Oracle Tech Support Response, though if
you don't run BullsEye it doesn't seem very relevant ...
We're getting this error only under load, but not consistently. It's also popped up
in other places in the past (from checking the old log files). Str
Yes, we did that; no change. I wonder if LoadRunner is keeping the user sessions
straight?
thanks,
Chris Norloff
-- Original Message --
from: "Deanna Schneider" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
date: Fri, 18 Oct 2002 08:59:16 -0500
>Have y
I don't know about that... Verity for CF is free. Have you checked out the
price of actually buying Verity? Or of buying a decent replacement for
verity? Have you tried using any of the free alternatives? The power and
level of integration you get with CF & Verity is pretty good, so I'm happy
to t
Did you follow the instructions in this Technote?
http://www.macromedia.com/v1/Handlers/index.cfm?ID=23179&Method=Full
> > -Original Message-
> > From: Ben Koshy [mailto:benlist@;w3media.net]
> > Sent: Friday, October 18, 2002 12:50 PM
> > To: CF-Talk
> > Subject: MX Installation: Wrong
Naah, then you'd get people using the Developer version to host Internal
Intranet Apps.
At 10:53 AM 10/18/2002 -0700, you wrote:
>Perhaps the IP's could be limited to sanctioned non-external IP's?
>192.168.x.x - etc
> -
>-Original Message-
>From: Dick Applebaum [mailto:dicklacara@;mac.
Tim;
What exactly is you are wanting to end up with?
If you are providing a number as the month such as:
month = 10
and you are wanting the String representation of such
then MonthAsString(month) is all you need to give you:
October
else if you want just the first Three letters of MonthAsStri
Just so you know it's not just you...the first time I clicked on the
crackpipe link in your post, gundam.com came up. I refreshed and
the crackedpipe site came up.
--
jon
mailto:jonhall@;ozline.net
Friday, October 18, 2002, 12:50:20 PM, you wrote:
BK> I have a site at:
BK> http://www.crackedp
hello,
I was wondering if anyone had experience invoking UPS' web services (particularly
the package tracking functionality) using CFMX. The sample code from UPS
includes examples of VB and Java code, neither of which I am fully comfortable
with.
I can't find reference to any WSDL file on the U
Tim -
try:
#MonthAsString(month)# --- there is no masking.
If you really want to mask:
#DateFormat(CreateDate(2002, month, 1), "MM")#
Mike Wokasch
UW-Extension
more coldfusion help Efnet #ColdFusion
At 12:30 PM 10/18/2002 -0400, you wrote:
>Is there a way to format a number value retrieved for
Right, browse to here:
CFusionMX\runtime\servers\default\SERVER-INF
Open this file:
jrun.xml
Change the value of the following option from true to false (towards the
bottom):
true
-Original Message-
From: Ben Koshy [mailto:benlist@;w3media.net]
Sent: Friday, October 1
You could just create a small array.
monthAsString[1]= "Jan"
monthAsString[2]= "Feb"
etc..
I guess the reason there is not prefab-format option is for Months like
"June" and "April". Not really a common 3 letter abbrv. for short month
names.
Adam Wayne Lehman
Web Systems Developer
Johns Hopkins
We had this happen on our server as well. We were running Win2k with multiple sites.
Ocassionally when trying to access a site, you'd get the homepage of another with
broken images.
I don't have the link onhand, but there is an article at macromedia.com (either a tech
note or on the forums) abo
Try this instead:
onclick="javascript:BoogieOn('enc2.cfm?URL_Encryption=#urlencodedformat(Stan
dard_Encryption)#';"
Get rid of the JSStringFormat.
You don't need JSStringFormat here. All quotes and stuff are already
escaped with %xx codes. JSStringFormat does nothing.
-Original Messag
I'm running CFMX (with the updater installed) on win2k sp3. Everything was
running fine, but now, at least one a day, the server freezes. Its the
strangest thing. The CPU and/or Memory do not spike or accumulate. The
services are still running and their are no errors in the log!
I've seen two thin
Do you know what version of MDAC is on the server?
> -Original Message-
> From: Andy Clary [mailto:aclary@;teleplanwireless.com]
> Sent: Friday, October 18, 2002 2:08 PM
> To: CF-Talk
> Subject: RE: cfstoredproc behavior
>
>
> Isaac,
> Thanks for the info, and to the previous poster - the
It really doesn't matter what the external IP addresses are --
The fact that the "CF Application Server" would need to be recycled
after hits from the 5th unique IP makes it unsuitable for any kind of
production use (be it by developers or end users).
The way Macromedia has implemented this for
> Fairly regularly after a cfml script to update a database
> runs for a while jrun ... goes mad. Even after the script
> stops and it shouldn't be doing anything, it continues to
> allocate more and more virtual memory, thrashing the hard
> drive.
>
> It'll do this for an hour or so until it
Larry thanks a bunch I just didn't know the correct syntax
Tim
-Original Message-
From: Larry Juncker [mailto:larry@;heartlandinternet.com]
Sent: Friday, October 18, 2002 3:40 PM
To: CF-Talk
Subject: RE: formatting #MonthasString
Tim;
What exactly is you are wanting to end up wi
Nate,
You are still able to end your session in this manner. A couple points
that should be mentioned:
- ColdFusion deletes expired session variables every 10 seconds to save
processing time. If you cfdump the session structure after CF executes
your cfapplication tag (say further down on the sam
Does Macromedia know this is a bug? Was this corrected in CFMX?
-Original Message-
From: Dave Watts [mailto:dwatts@;figleaf.com]
Sent: Friday, October 18, 2002 2:52 PM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'
Subject: RE: cfstoredproc behavior
> The parameters aren't in the same
> Does Macromedia know this is a bug?
Macromedia is aware of this behavior, since it was specifically mentioned in
the old ACFD curriculum, if I recall correctly. I don't know if it's their
issue, or a problem with the database drivers, which are supplied by
DataDirect.
> Was this corrected in CF
Good point.
Sorry I keep thinking people have honor. Bites me in the arse everytime...
10 PRINT "I am old"
20 GOTO 10
:wq
:)
-Original Message-
From: Jeffry Houser [mailto:jeff@;farcryfly.com]
Sent: Friday, October 18, 2002 12:38 PM
To: CF-Talk
Subject: RE: CFMX Developer Edition wish
> The parameters aren't in the same order as in the
> stored procedure, but is there any way to get
> around this "feature". That sounds like a severe
> limitation of the tag. I'd rather not have to put
> the parameters in order, that is what the dbvarname
> attribute is for. Does this happen a
I got rich on just .02 .. ;)
| -Original Message-
| From: William Wheatley [mailto:bill@;ediets.com]
| Sent: Friday, October 18, 2002 12:59 PM
| To: CF-Talk
| Subject: Re: Thanks for the chastising
|
|
| If i had a nickel for every person who whined and complained
| instead of hitting
We just finished a Cold Fusion based system which completely covers
every offering from the e-suite of tools for a client from shipping to
tracking to proof of delivery stuff. It's a load of fun if you were in
the dark like us. We'd be glad to offer suggestionswe implemented
on a CF 5 system,
They can already do that by simply placing a proxy server between the CF box
and the rest of the network. (someone already mentioned this a couple days
ago)
I'm sure one could also use a Cable/DSL router and accomplish the same thing
very easily. Obviously it's against the license agreement... b
Is there any way to track the total number of sessions on a web site or
even the entire web server?
This way you could put a little thing in on the web site that says
"543 users currently online".
~|
Archives: http://www.house
Where did you see a reference to web services on UPS's site? I keep
hearing about it but can never seem to locate it on their site.
--
jon
mailto:jonhall@;ozline.net
Friday, October 18, 2002, 3:24:43 PM, you wrote:
ccc> hello,
ccc> I was wondering if anyone had experience invoking UPS' web s
This is a multi-part message in MIME format.
--=_NextPart_000_0013_01C276CB.81F39C60
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Preferable free, and professional looking , my artistic skills are =
poor, hell the old lady says I cant ma
Has anyone done anything like this? The code below works with MSXML, but I
want to dump that
in favor of a J2EE compatible call.
I want to send an XML stream to a service and read the response from that
service without using
Microsoft's MSXML service.
-- I set a variable equal to list of command
Thanks Dave, That resolved that issue!
Now one last bug is holding me up again:
Site: http://www.gundam.com Uses extensive use of client variables.
However, after a client variable is set, I can't seem to "update" it.
This is most evident when a user logs in and is unable to log out. My
logout
Hey Bryan,
I checked on this. There was some issue with Raymond's address and the e-mail system.
If you're trying to reach Raymond, you can send to [EMAIL PROTECTED]
Why the e-mail: We wanted to make the process as easy for partners as possible, which
is why we asked them to update the email.
Sorry this is so far off topic, but...
I am working with an application that generates XML. We are using xml to
integrate a CF application with some perl wrappers we are developing.
We reached a point where we are wondering if we made the right decision.
XML is SO verbose! With such limited functi
Howdy,
This is directed to anyone who has used PayPal with CF-based shopping
carts...
I have read over the PayPal Instant Payment Notification (IPN) docs and
think I have a fairly firm grasp on how this works for payment
verification, etc. But what I haven't nailed down is if it is possible
to us
I may be wrong, but I do not believe they have a Web Service. They have
a series of XML interfaces that are not trivial to use (not terribly
complex either though).
I started building a CFC to encapsulate their XML API's, but have a way
to go yet. I'll try get something working over the weekend so
It finishes processing, but my error catching emails me that winzip
timed out before completion, so I end up with only the first 24 files in
the directory.
-Original Message-
From: Turetsky, Seth [mailto:seth.turetsky@;csfb.com]
Sent: Friday, October 18, 2002 1:38 PM
To: CF-Talk
Subject:
Go into your jrun.xml file
(\runtime\servers\default\SERVER-INF).
Look for this:
false
Restart the CF service (or the server, if you'd really like to be
thorough). That will correct it.
Lee
| -Original Message-
| From: Jonathan Mauney [mailto:jmauney@;jpc.com]
| Se
They are stored in the registry, but you should be able to remove them from the UI.
Have you tried removing the RDS server in the Macromedia FTP & RDS subtree in the
files tab? Go to the files 1 or 2 tab, drill down to Macromedia FTP & RDS, and RMB
over the RDS server and select the "Delete Serv
Programmers File Editor is a long-time fave. If you can find it you
might like it for Perl.
I also find I'm using EditPad Pro a lot these days. It has a variety
of modules for color coding and formatting in different "languages"
- Perl, ASP, CFML, SQL, etc.
Stephen
> Does anyone know if HomeS
Adrocknaphobia Jones writes:
> You could just create a small array.
>
> monthAsString[1]= "Jan"
> monthAsString[2]= "Feb"
> etc..
>
> I guess the reason there is not prefab-format option is for Months like
> "June" and "April". Not really a common 3 letter abbrv. for short month
> names.
Sur
Two ways:
1) Go to the Files tab in Studio, then choose FTP/RDS from there. From that location,
when you right click, you can delete that server.
2) Delete the specific key for the RDS server from the registry under
HKEY_CURRENT_USER\Software\Macromedia\RemoteServers\
Debbie
-Original Messa
Some people on the list have said that updating to a different JRE has
helped with the database drivers. Maybe the issue isn't so much CFMX as the
JDBC drivers. What database are you on. If it's SQL 7 that could be a JDBC
issue.
Robert Everland III
Web Developer Extraordinaire
Dixon Ticonderoga Co
> Now, in Dreamweaver, whenever you start it in "Homesite"
> style, there's a
> narrow arrow there on the line between the leftmost panels
> and the working
> editor window. If you click on that arrow, it 'hides' your left panels
> groups and leaves you with your Insert menu and your properties
Fairly regularly after a cfml script to update a database runs for a
while jrun ... goes mad. Even after the script stops and it shouldn't
be doing anything, it continues to allocate more and more virtual
memory, thrashing the hard drive.
It'll do this for an hour or so until it finally crashes th
People fear change. They'll get over it.
It's an just an IDE. Perhaps because I've used so many IDEs/editors in my
short career that I am immune. I like studio, but studio is not that cool -
and it's features are not rare.
It freezes, sometimes truncates files, and causes GPFs just like other
pr
OK... I was just trying to convert the month number (ex 10 for October)
into Oct instead of October
-Original Message-
From: Randell B Adkins [mailto:AdkinsR@;GAO.GOV]
Sent: Friday, October 18, 2002 1:10 PM
To: CF-Talk
Subject: Re: formatting #MonthasString
if the field: MONTH is numeric
No, you can't specify formatting within the MonthAsString() function.
Instead, you might consider using DateFormat() as in:
#DateFormat(myDate, "mmm")#
--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 625-9191
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.co
Just as I sent this...
You go to Macromedia FTP & RDS under the files tab and can delete or edit
the servers this way... been using DreamweaverMX too much forgot about that.
Andrew Middleton
Software Developer
Macromedia ColdFusion Certified Developer
AT&T Government Solutions
703 506-5266
[EMAI
1 - 100 of 277 matches
Mail list logo