James Holmes wrote:
> Is that something FCK does much better?
>>> TinyMCE is pretty good too. I prefer it to FCK.
>> TinyMCE's i18n bits are for the birds.
in my opinion, yes.
~|
Introducing the Fusion Authority Quarterly Updat
Is that something FCK does much better?
On 9/1/06, Paul Hastings <[EMAIL PROTECTED]> wrote:
> Scott Stroz wrote:
> > TinyMCE is pretty good too. I prefer it to FCK.
>
> TinyMCE's i18n bits are for the birds.
>
>
~|
Introducing
Scott Stroz wrote:
> TinyMCE is pretty good too. I prefer it to FCK.
TinyMCE's i18n bits are for the birds.
~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by you
I agree and it should meet all of these requirements too. I recently
added it to my BlogCFC install so I know it works well on shared
hosting.
On 9/1/06, Scott Stroz <[EMAIL PROTECTED]> wrote:
> TinyMCE is pretty good too. I prefer it to FCK.
>
> On 8/31/06, Tom King <[EMAIL PROTECTED]> wrote:
>
More correctly, the detailed file version numbers are 4.0.6.106363 replaced by
4.0.3.81731.
Cheers,
Alan
~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your
More correctly, the detailed file version numbers are 4.0.6.106363 replaced by
4.0.3.81731.
Cheers,
Alan
> We have the same problem on a client's server and later have it fixed.
> We isolated the issue to jrun_iis6_wildcard.dll. The same problematic
> dll file also caused the css and an imag
Well, I guess is there are exclusive server scope locks like this one
all over the place, you are basically single threading the entire
server in multiple points, including all apps. Under the right load I
suppose that could slow things down enough to start queueing threads
and bring the server do
We have the same problem on a client's server and later have it fixed. We
isolated the issue to jrun_iis6_wildcard.dll. The same problematic dll file
also caused the css and an image not to load sometimes on another CF
application. The version of the problematic jrun_iis6_wildcard.dll that we
>That code doesn't have the power to crash anything, it's just dumb code.
Are you sure? I'm wondering what that really long timeout is going to do. If
for any reason a thread isn't able to obtain a lock, it's going to be waiting a
*very* long time before timing out. I agree it's unlikely, but co
Im a beginner for coldfusion but have to rush out a simple program for point of
sales. The program has to include an order table with one row as default (data
entered are product description, product id, quantity, unit price and total
price) and a button or enter key pressing that includes funct
chr(10) chr(13) isn't it?
> -Original Message-
> From: Doug Brown [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 31, 2006 6:44 PM
> To: CF-Talk
> Subject: Re: Quick Question
>
>
> Thanks for the help from all of you on the list question I had. I have one
> more if you do not mind. Is t
That code doesn't have the power to crash anything, it's just dumb code.
-Cameron
On 8/31/06, Ken <[EMAIL PROTECTED]> wrote:
> Sorry guys. We are using CF MX 7.
>
> So, do we agree that this code does not need the locking, and also
> that this code has the power to crash a CF server under high tr
#chr(13)# is the code for CR.
#chr(10)# is the code for LF.
#chr(13)##chr(10)# is the combination of the two.
M!ke
-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 31, 2006 5:44 PM
To: CF-Talk
Subject: Re: Quick Question
Thanks for the help from all
http://www./upload.html"; username=""
password="" resolveurl="yes" multipart="Yes">
--
Alan Rother
Macromedia Certified Advanced ColdFusion MX 7 Developer
~|
Introducing the Fusion Authority Quarterly Updat
I was trying to upload a zip file through HTTP, my code is:
http://www./upload.html"; username=""
password="" resolveurl="yes">
It upoladed fine, and the response status is OK. but when I receive the upload
reports, it says the zip file is either empty or crruped.
The
The tag description says it can be *slightly* altered to work with
4.5...we'll
just have to see how much *slightly* really is.
Rick
-Original Message-
From: Crow T. Robot [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 31, 2006 7:15 PM
To: CF-Talk
Subject: Re: Method for printing label
I installed 7 on my laptop, along with Apache, but my production
server is still 4.5...I'm waiting for Adobe to offer me a 75% discount
on 7 so I can feel like it was a wise upgrade investment. ;o)
Hmmm...maybe it would be worth $1300 if it would print labels...
Rick
-Original Message-
I searched for a solution for oyu and I found another PDF java library
http://www.pdfbox.org/
This Java program allows to add structured bookmarks to an existing pdf
file. The bookmarks are defined in a separate text file.
http://www.physik.fu-berlin.de/~goerz/programme_en.html#pdfwritebookmarks
That code is the same as:
and as others have pointed out, locking isn't required for this case in CFMX.
-Cameron
On 8/31/06, Ken <[EMAIL PROTECTED]> wrote:
> Hi. I am analyzing another programmers code for possible code problems
> that may be causing our servers to crash every so often, espec
Sorry guys. We are using CF MX 7.
So, do we agree that this code does not need the locking, and also
that this code has the power to crash a CF server under high traffic?
Please let me know.
Thanks,
K
On 8/31/06, Mary Jo Sminkey <[EMAIL PROTECTED]> wrote:
> >I would argue that that is not only
HrmI am not sure it'll work with CF4.5. I *think* it uses a COM object
to utilize Word, but I'm not sure about that. It's been a long time since I
used 4.5, so maybe someone else can clarify.
I thought you gave in and upgraded to 7 recently? :)
Ray
On 8/31/06, Rick Faircloth <[EMAIL PROTE
By the way, I'm in the process of taking over cfquickdocs.com. This
domain points to cfQuickDocs right now, but some of the features don't
work because the domain is not local to my server. Once I get the
domain pointed, I'll drop a note on my blog, and you guys won't have to
remember the funny d
Thanks for the help from all of you on the list question I had. I have one
more if you do not mind. Is there a way to use a carriage return as a
delimeter in CF? I have a text document that lists categories that I am
inserting into my DB
IE:
And I am hating inserting the delimeter by hand. Ther
>I would argue that that is not only a horrible abuse (LOCKING on SEVER to
>set something in SESSION), but that this situation doesn't even need a lock
>at all.
That's assuming that the server is CFMX, not CF5 (which the OP didn't specify),
otherwise a lock is indeed needed. Pretty awful code reg
> I would argue that that is not only a horrible abuse (LOCKING
> on SEVER to set something in SESSION), but that this
> situation doesn't even need a lock at all. The race condition
> here seems unimportant. In fact, it is locking for one CFSET
> but not the other. Get rid of this lock.
Not t
I would argue that that is not only a horrible abuse (LOCKING on SEVER to
set something in SESSION), but that this situation doesn't even need a lock
at all. The race condition here seems unimportant. In fact, it is locking
for one CFSET but not the other. Get rid of this lock.
...
Hi. I am analyzing another programmers code for possible code problems
that may be causing our servers to crash every so often, especially
under high traffic.
Can someone please tell if the code below is abusing the cflock. I am
thinking the cflock scope should be set to session instead of server
Another question for the iText experts:
Making a copy of a PDF document (I'm actually looping through a list
of documents, and putting them all together), after setting up my
reader, and writer, I'm trying to add a bookmark for each page (for
instance). I'm getting the bookmarks, but they don't li
Thanks for the tip, Ben...I'll check into it...
Rick
-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 31, 2006 3:57 PM
To: CF-Talk
Subject: RE: Method for printing labels from browser?
Sometimes, to print labels, I do them all in a table then stream i
Sometimes physical servers do have exceptions on licensing. I believe MS
allows you to use the same license for a failover box for sql (at least
that's what I remember reading somewhere).
I don't see why you can't just install the developer version of CF, and have
that waiting for a failover, an
Thanks, Ray...couldn't be just what I need.
Hopefully, the tag works with CF 4.5. :o)
Rick
-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 31, 2006 4:01 PM
To: CF-Talk
Subject: RE: Method for printing labels from browser?
There's a CFAvery custo
In addition to that, it's per physical processor, so if you have 2 virtual
machines, they can both use the same license (as long as they are both on
the same physical box).
Russ
> -Original Message-
> From: Casey Dougall [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 31, 2006 4:43 PM
My story, back in CF4 days, I wrote this particularly nasty code, something
like this:
basically, the solution would have been:
Sad, really, that the site is still up and unaltered:
http://www.tundracomics.com/pages/comic.cfm
And my sincere future apologies to whoever has to maintain it in t
MX7 License is per processor, not per box.
~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four
times a year.
http://www.fus
Cheers Rey, sterling work.
"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540. It contains information which is
confidential and may also be privileged. It is for th
I also recommend http://techfeed.net/cfQuickDocs/ , which is an AJAX widget
that acts similar to live docs.
Teddy
--
Blog: http://cfpayne.wordpress.com/
Atlanta CFUG: http://www.acfug.org
~|
Introducing the Fusion Authority Q
I have not heard of this premise before. The whole purpose of a failover is
to be online and waiting for a failure from a primary server. Having the
server turned off would defeat the speed of a failover box. Unless you are
dealing with Virtual servers failovers where licensing can get grey,
phy
Has anyone worked with this? I downloaded a tutorial and it works fine until
you need anything to shift up if a field is blank. H-E-L-P! I love the control
but it seems that it can't handle the simple art of maintaining the band height.
One thought I had was to build it outside of the report wit
Hi,
I'm on MX 6.1.
I have an index that has a value indexed in it like this:
Greeting - Retail
When I do a cfsearch with this criteria, I get the desired result:
Greeting-Retail
Greeting -Retail
Greeting- Retail
However, when I search this criteria, I get ZERO results:
Greeting - Retail
So,
I'd like to preface this response by saying, "I don't really know, I'm just
guessing."
With that in mind, I would say no, you can't do that. If you have the thing
turned on and running, with all of the software installed waiting for a
failover, I think you would need a seperate license. Now if you
There's a CFAvery custom tag laying around somewhere that does just this. I
haven't use it in a long time, but it rocked when I needed it.
No CSS hacks, no page breaks, just plug in an Avery label number, and
blammo! Instant labels.
Actually, it's called CF_AveryRTF now. I remember:
http://ti
Sometimes, to print labels, I do them all in a table then stream it to the
browser as an .MHT file. This is a web archive file that Microsoft Word will
open. MS Word should handle the lining up of the TDs well through out the
entire document.
This only works if you are willing to open up MS word
TinyMCE is pretty good too. I prefer it to FCK.
On 8/31/06, Tom King <[EMAIL PROTECTED]> wrote:
>
> Hi All,
>
> Has anyone come across a Rich Text Editor which meets the following
> requirements:
>
> - Doesn't use inline styles, i.e p,em,i,h1,h2,h3,h4,h5,h6 only
> - Could load an external CSS sty
Hi, all.
I'm running a CF query and populating a browser with addresses
using the MOD 3 code on a cell to create 3 columns, then trying to use
a css page-break-after command when the rows reach 30,
(3 columns of 10 labels per page) and trying to use MOD 30
to trigger the page break.
I'm having tr
Cookies are based upon domains. AFAIK, Active Directory bridges domains
together for single authetication, so you may want to approach the
possibility that cookies are not being set the way you would like.
Teddy
On 8/31/06, Earl, George <[EMAIL PROTECTED]> wrote:
>
> Is there any reason why movi
Go to my blog:
http://www.reybango.com
I've kept a list there.
Rey...
Robertson-Ravo, Neil (RX) wrote:
> Has anyone done a definitive list of the best frameworks we are all using?
~|
Introducing the Fusion Authority Quarterly
Is there any reason why moving a Windows 2000 Advanced Server into
Active Directory would break CF code that checks for a cookie in MSIE 6
and then proceeds based on whether or not it finds that cookie?
We have a production intranet app where this code has been running fine
for about three years.
Go to my blog:
http://www.reybango.com
I've kept a list there.
Rey...
Robertson-Ravo, Neil (RX) wrote:
> Has anyone done a definitive list of the best frameworks we are all using?
>
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
> Richmond, Surrey, TW9
Joe,
I am facing the same problem,
would appreciate if you can share that hows was your problem resolved.
Thanks,
Vinay
> I am working with Cybersource (such a pain!) and I took their ASP code
> and
> re-wrote it line by line in CF, and I got SO close to making it work..
> They have a COM o
Has anyone done a definitive list of the best frameworks we are all using?
"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540. It contains information which is
con
IANAL, but I believe you should be able to just use the same license on the
second server, as long as you're using it strictly for failover. If you're
only serving pages from one server at a time, you're probably ok as far as
licensing goes, and there's nothing that prevents you from using the sam
http://www.forta.com/blog/index.cfm?mode=entry&entry=A61BCF42-3048-80A9-EFC9E0BF299318F9
Teddy
On 8/31/06, Rick Faircloth <[EMAIL PROTECTED]> wrote:
>
> Ben...what's a cfdoc IM bot?
>
> Rick
>
>
> -Original Message-
> From: Ben Forta [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 31,
Thanks, Al. I knew I had seen it somewhere, I think it was one of the
examples given during a session at CFUNITED.
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 31, 2006 3:16 PM
> To: CF-Talk
> Subject: RE: directory listener
Maybe there are some possible solutions using flash forms or something
outside the bounds of the normal tag...
-Robert
-Original Message-
From: Casey C Cook [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 31, 2006 2:03 PM
To: CF-Talk
Subject: File attachment after user error
Once agai
Basically, it can't be done. Not with HTML and JavaScript, anyway. It's
a security issue. What you're seeing is by design.
You'd have to use something other than .
-Original Message-
From: Casey C Cook
Sent: Thursday, August 31, 2006 3:03 PM
To: CF-Talk
Subject: File attachment after use
One of the sample asynchronous gateways that ships with CFMX 7 is a
directory watcher.
-Original Message-
From: Crow T Robot
Sent: Thursday, August 31, 2006 3:14 PM
To: CF-Talk
Subject: directory listener
Anyone know of a way to create a "listener" that would listen to a
directory and s
Anyone know of a way to create a "listener" that would listen to a directory
and send an email out when a file is modified/created?
I have a client who is insisting on getting FTP access, and considering
their level of expertise ("I know DreamWeaver! I can write my own code
now!"), I'd like to
I am wondering if anyone has run into the problem I describe below and found a
resolution that doesn't involve moving files around.
The following is exemplar of my setup.
COLDFUSION MAPPING: C:\root (as /root)
CUSTOMTAG PATH: C:\root\cfcs
I have the CFCs with the following methods:
p
Ahhh... this is a *huge* improvement over that awful frames/heavy/Flash?
CFDocs page that is installed locally or that you have to navigate via
CFLiveDocs. Half the time I try to go there, it doesn't work in
Firefox, anyway...
Thanks for the link!
Scott Stroz wrote:
> Also, on top of using th
Once again Ive run into one of those "seems so easy, yet its so hard"
situations.
Basically, a user has the ability to attach up to 3 files on a form . If the user throws an error, such as forgetting to input a
required field, the form will submit and go through validation.cfm since
they didnt
Put that at the top of any page where you want to override the request
timeout.
Also, if you are using CF7, check out asynchronous gateways.
On 8/31/06, Smith, Daron [PA] <[EMAIL PROTECTED]> wrote:
>
> Is there a way to override the timeout setting in the CF administrator?
> I want the setting
You could place a cfsetting at the top with a high request timeout
Would allow the page to run for 5 mins
hth
~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information
Also, on top of using the bot, you can use http://techfeed.net/cfQuickDocs/.
I ahve this in my FF Bookmark toolbar and use it just about every day.
On 8/31/06, Scott Stroz <[EMAIL PROTECTED]> wrote:
>
> To add a little bit more to Ricks suggestion. The functions are typically
> named similarly as
To add a little bit more to Ricks suggestion. The functions are typically
named similarly as well. Alll list functions begin with 'list', such as
listLen(), listGetAt(), ListFirst(). Same goes for function dealing with
structures, arrays, queries, xml
On 8/31/06, Rick Root <[EMAIL PROTECTED
How about:
http://livedocs.macromedia.com/coldfusion/6/Developing_ColdFusion_MX_Applications_with_CFML/appFramework5.htm
The requesttimeout attribute specifically.
On 8/31/06, Smith, Daron [PA] <[EMAIL PROTECTED]> wrote:
>
> Is there a way to override the timeout setting in the CF administrator
Terrence Ryan
Senior Systems Programmer
Wharton Computing and Information Technology
E-mail: [EMAIL PROTECTED]
-Original Message-
From: Smith, Daron [PA] [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 31, 2006 2:50 PM
To: CF-Talk
Subject: Overiding the Timout setti
Is there a way to override the timeout setting in the CF administrator?
I want the setting there for almost all requests, except my page that
indexes my website. Any thoughts?
Thanks,
Daron Smith
"PSEA E-mail Firewall" annotation on Thu Aug 31 2006 14:50:27
---
Sure. Can you be more specific about your questions? Do you want to
know *why* I'm doing something or *what* I'm doing? Do you want a
larger snippet, etc.?
On 8/31/06, Nick Cappadona <[EMAIL PROTECTED]> wrote:
> Hi Rob,
>
> Do you care to elaborate on that snippet for those of us (possibly only
Does anyone know if there is any allowance to run a Coldfusion MX7
Enterprise in a 'warm spare' mode, where it's running but not serving
any requests (just running to allow daily syncing of source), and if we
were to loose our main site we could swap to the backup server? Or
would I just have to
parent::title matches only if the parent tag of the current node is a .
I would grab title sibling the way you did it.
Jon
On 8/30/06, Ian Skinner <[EMAIL PROTECTED]> wrote:
> Ok I got this to work, but I'm not sure why this way works but my original
> does not.
>
> This works:
>
>
> This does
> Hi all. I need to make the RSA encryption algorithm available within
> CF in order to connect with a client using Single Sign On.
Hopefully, you're running MX 7. If not, disregard this, because your life will
be much harder. :-(
I'd recommend you read through this article:
http://www.adobe.co
Ben...what's a cfdoc IM bot?
Rick
-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 31, 2006 9:34 AM
To: CF-Talk
Subject: RE: Quick Question
Wouldn't help, I'd need to carry a big old wall with me wherever I went, not
practical.
But what does help is
By 0 to 60 I am referring to the learning curve. Backbase has a steep one.
Exactly on the pricing. If they had reasonable pricing for not just large
corp's, they might have a better adoption because it is very robust.
- Original Message -
From: "Robertson-Ravo, Neil (RX)" <[EMAIL PROTEC
Or just use ListAppend() instead of trying to make a list manually...
Russ
-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED]
Sent: 31 August 2006 04:38
To: CF-Talk
Subject: RE: YesNoFormat() is cool!
Here's my little, cool, BIF tip:
If you have a loop to build a stri
LOL, even I missed that one, and I did learn all the CF tags and functions
long ago.
Russ
-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED]
Sent: 31 August 2006 03:07
To: CF-Talk
Subject: Re: YesNoFormat() is cool!
See, you failed to ask, "What would Ben do?" He'd RTFM, r
You can roll your own using Java... I've never done it myself, but looks
fairly simple from the looks of it.
http://www.aviransplace.com/2004/10/12/using-rsa-encryption-with-java/1/
Of course you can always pay me 10 grand and I'll do it for you :-P
As far as whether you'll be losing anything w
The docs of course. :)
On 8/31/06, D F <[EMAIL PROTECTED]> wrote:
> Hi Raymond, thanks for this.
>
> Where can I find this 'Admin API provided in CF7' ?
>
>
~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-
If you bought JRUN, probably no point using Railo... Maybe run it on Tomcat?
Russ
> -Original Message-
> From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 31, 2006 1:06 PM
> To: CF-Talk
> Subject: Re: Getting started with Railo
>
> Kevin Roche wrote:
> > I am jus
Hi all. I need to make the RSA encryption algorithm available within CF in
order to connect with a client using Single Sign On. The two options I see at
this point are:
1. extend the encryption algorithms available to the Encrypt function;
2. purchase a custom tag and put it in place for use
I
If you read the email entry for the use of [EMAIL PROTECTED], you put the
word "list" without the double quotes and it will return to you all
functions that start with the word "list." When you type the word "list" in
the g-talk enabled window you get:
Perhaps you meant:
ListAppend,ListChangeDeli
I'd use wrote:
>
>
>
>
> #myNewlist#
>
> You had it backwards. It is new delimeter then old delimeter.
>
> Teddy
>
>
> On 8/31/06, Doug Brown <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> >
> > #myNewlist#
> >
> >
> > Why is it not working?
> >
> >
> > - Original Message -
> > From: "Ben F
Kevin Roche wrote:
> I am just getting started with railo and have installed railix live. Can't
> see any documentation anyone out there using it?
There are certainly people using it. Documentation is a bit scarce. For the
CFML language features you can just use the Adobe documentation and for th
Yep, I have used it extentively and I love it. You described it to a tee. It
is an application framework not a library in the sense of other listings. It
is a Flex HTML rival. It is not aiming to be an plug n play js library.
What is all this nonsense about 0 to 60? :-)
It's debugging is amazin
On 8/31/06, Jim Wright <[EMAIL PROTECTED]> wrote:
>
> >
> > - Doesn't use inline styles, i.e p,em,i,h1,h2,h3,h4,h5,h6 only
> > - Could load an external CSS stylesheet so what you see in the RTE
> > window takes on the necessary styles of the website in which you're
> > trying to edit
> > - Filters
Neil, Backbase is more robust, I'll give it that, but have you used it.
Speaking specifically about 0 to 60, Backbase is horrible. It takes you
completely away from your normal way of handling xhtml and attempts to
provide MXML/XAML functionality. The things it can do are pretty
amazing/great b
Another low tech approach to this problem would be to use cfdirectory to
poll these directories directly.
Terrence Ryan
Senior Systems Programmer
Wharton Computing and Information Technology
E-mail: [EMAIL PROTECTED]
-Original Message-
From: D F [mailto:
I am HUGE fan of XStandard.
www.xstandard.com
And my thoughts / experiences on it...
http://www.bennadel.com/blog/tags/15-XStandard-WYSIWYG-blog-entries.htm
...
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer
Need Help?
www.bennadel.com/ask-ben/
>
> - Doesn't use inline styles, i.e p,em,i,h1,h2,h3,h4,h5,h6 only
> - Could load an external CSS stylesheet so what you see in the RTE
> window takes on the necessary styles of the website in which you're
> trying to edit
> - Filters out cut and pasted formatting (but more specifically, word)
You can get the status of the mailserver from the Factory...
-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: 31 August 2006 16:19
To: CF-Talk
Subject: Re: CF Mail - What info available...
While I don't think it has _this_ specific bit of info, you want to
look i
Hi,
I am just getting started with railo and have installed railix live. Can't
see any documentation anyone out there using it?
I have added some cfm files to the siote and they are being served OK by the
built in server but images are not being served is there some mapping I need
to change to se
Hi All,
Has anyone come across a Rich Text Editor which meets the following
requirements:
- Doesn't use inline styles, i.e p,em,i,h1,h2,h3,h4,h5,h6 only
- Could load an external CSS stylesheet so what you see in the RTE
window takes on the necessary styles of the website in which you're
try
Hi Raymond, thanks for this.
Where can I find this 'Admin API provided in CF7' ?
~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your d
While I don't think it has _this_ specific bit of info, you want to
look into the Admin API provided in CF7. It gives you insider info.
Using the ServiceFactory may work - but is a bit dangerous as it is
not supported.
On 8/31/06, D F <[EMAIL PROTECTED]> wrote:
> Is there anything built into CF (
Is there anything built into CF ( such as java classes ) OR otherwise... that
will tell me current status of CF's mailing feature.
For example...
to poll how many emails are in the CF Spool directory.
I've used the following before and found it useful for getting information on
CF's schedule
+1 - I just added this to my gmail chat contacts. Thanks heaps Ben.
On 8/31/06, Crow T Robot <[EMAIL PROTECTED]> wrote:
> That rocks! I never knew such a beast existed. Thanks Ben.
>
> > -Original Message-
> > From: Ben Forta [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, August 31, 2006
Arjun is actively developing MXAJAX now.
On 8/31/06, Rey Bango <[EMAIL PROTECTED]> wrote:
> Hi James,
>
> Whose behind the development of MXAjax? Is that you? I think that one of
> the things that prevented further adoption of CFAjax was a lack of
> support from the creator including some security
Agreed. Everything IS a learning experience. I just hope that I don't start
forgetting the things I learned.
...
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer
Need Help?
www.bennadel.com/ask-ben/
-Original Message-
From: Robert Feyerherm [mail
On Wednesday 30 August 2006 01:21, Crow T. Robot wrote:
> This may spark a huge debate,
There's a debate needed :-)
--
Tom Chiverton
Helping to seamlessly maintain synergistic schemas
This email is sent for and on behalf of Halliwells LLP.
Ben,
You know everything is a learning experience, even if you learned that
you might want to check cflib first...hehe
-Robert
-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 31, 2006 9:45 AM
To: CF-Talk
Subject: RE: YesNoFormat() is cool!
Yeah, I do
Yeah, I do that a good amount :(
Just the other day I came across RemoveChars(), which is exactly what my UDF
MidDelete() did ... It's sad to remake things just cause I don't know they
already exist .
...
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer
N
1 - 100 of 146 matches
Mail list logo