Surely wiping the servers and deleing your apps would not be allowed by the
bosses ? surely they need those apps.
-Original Message-
From: Ken Hammond [mailto:khamm...@saleminc.com]
Sent: 04 May 2011 16:08
To: cf-talk
Subject: Re: Help us Please - CF 5 Server Licenses
HAHA - I was
If you cannot get any help from Adobe, you may want to consider using one of
the open source CFML engines like Open BlueDragon
(http://www.openbluedragon.org/) or Railo (http://www.getRailo.com).
Unless there is something very weird about your setup, after recreating your
data sources, and
HAHA - I was thinking the same thing!
-Original Message-
From: Pete Ruckelshaus
To: cf-talk
Date: Wed, 4 May 2011 11:02:05 -0400
Subject: Re: Help us Please - CF 5 Server Licenses
Sounds like your new IT manager is a tool. I hope he has a plan to rewrite
those legacy apps!
On
rsions of CF
> server? Or locate something official that states ownership of CF Server
> Software boxes with CDs and Serial Codes are sufficient proof of lincense?
>
> Please help!
>
> Thank-you,
>
> Ralph
> ho...@littleleaf.org
>
>
tware boxes with CDs and Serial Codes are sufficient proof of lincense?
>
> Please help!
>
> Thank-you,
>
> Ralph
> ho...@littleleaf.org
>
>
~|
Order the Adobe Coldfusion Anthology now!
onmuse.com
www.necfug.com
-Original Message-
From: Ralph B Littleleaf [mailto:ho...@littleleaf.org]
Sent: Wednesday, May 04, 2011 7:59 AM
To: cf-talk
Subject: Help us Please - CF 5 Server Licenses
Our department has several legacy CF servers running CF 5. They have worked
great for us which is good
> Unfortunately, our department has been under budget
> constraints for the past three years. We cannot afford
> to buy new CF licenses even with an educational
> discount nor hire new programmers to modify our
> legacy CF code to work with the lattest CF platform.
Hi Ralph, I unfortunately do no
orm.
Does anyone know where we can purchase CF licenses for past versions of CF
server? Or locate something official that states ownership of CF Server
Software boxes with CDs and Serial Codes are sufficient proof of lincense?
Please help!
Thank-you,
Ralph
ho...@litt
answer why this now works, but I dont hold out any hope of
finding out why it works.
Thanks for your help!
Dunc
On Tue, Apr 12, 2011 at 6:15 PM, James Holmes wrote:
>
> Just the two CAs from Geotrust will be fine. The intermediate cert was
> issued in 2010, so it's very likely that it
;); }
});
});
});
HTML:
GA
FL
TN
USA
check all boxes
-Original Message-
From: Greg Morphis [mailto:gmorp...@gmail.com]
Sent: Friday, April 15, 2011 12:20 PM
To: cf-talk
Subject: SOT: jQuery help
I have a page with a bunch of groups of checkboxes.
I'm trying to ad
beautiful!
I modified it a little to:
function jqCheckAll3(id,name) {
$("input[name='" + name + "']").each(function() {
$(this).attr('checked', $('#' + id).is(':checked'));
})
}
so it follows the checkbox beside the states. Thanks!!!
On Fri, Apr 15, 2011 at 12:09 PM, Steve Milburn wrote:
>
Try this:
function jqCheckAll2(id,name) {
$("input[name='" + name + "']").each(function() {
$(this).attr("checked",true);
})
}
Hope this helps
Steve
On Fri, Apr 15, 2011 at 12:20 PM, Greg Morphis wrote:
>
> I have a page with a bunch of groups of checkboxes.
> I'm trying to add functi
I have a page with a bunch of groups of checkboxes.
I'm trying to add functionality so the user can do a "check all" and
it would in turn check all the boxes.
I found this via a google search but it's selecting EVERY checkbox on
the page, not just the ones names "state_abbr".
function jqCheckAll2
Just the two CAs from Geotrust will be fine. The intermediate cert was
issued in 2010, so it's very likely that it's not in your CA store.
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/
On 12 April 2011 16:08, Duncan wrote:
>
> Hi James - Thanks for the quick response!
>
Hi James - Thanks for the quick response!
"Yes. " Is that a yes because its a new fancy certificate, or I need all the
certs?
When I look at the hierarchy, there are 3 each with different serials.
Do I need just the two geotrust ones, or the securepay one too?
On Tue, Apr 12, 2011 at 6:01 PM
Yes. Vist the URL for the test site in your browser and view the cert
details. Go to the certification path and you'll see it's a chained
cert with two CAs in the path. You need to export both of them from
your browser and then bring both into the CA keystore with keytool.
--
WSS4CF - WS-Security
Hi Everyone,
Securepay.com.au issued a new SSL certificate on their test environment
7/4/2011 and it has had an effect on our code when running in test mode. I
have isolated it to be related to the I/O Exception: peer not authenticated
issue as detailed by Rob Gonda and Steven Erat
- http://www.t
on the server
called 'members'. How do you target a different contact list using coldfusion
cfexchange tags.
Your help is appreciated
~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-
reason, it
really didn't like it.
This set up has worked well for 2 + weeks, and now we seem to be at a happy
point where the norm is requests under 500ms, with a select few taking 2
seconds.
Thanks for all the help.
On Wed, Feb 23, 2011 at 5:44 PM, Carl Meyer wrote:
>
> Did a
Did any of those suggestions with NewGen, Thread Cores or Low Pause GC help?
Regards, Carl.
> Hi everyone,
>
> thanks for all the good feedback.
>
> Let me first tell you WHY I think its a JVM issue, then show you what
> results I have had.
>
> We took the exact same c
Some Java / CF systems I have seen have done well to change the collector in
use. Currently you are running -XX:+UseParallelGC which is a throughput GC.
Perhaps you can experiment with changing to a low pause GC? Caveat
UseParallelGC may be working well for the environment and changing collecto
Where else to make gains in JVM? You say the server is Quad Core CPU. Suggest
allow the Garbage Collector in your case -XX:+UseParallelGC to multi thread
and use all those cores. The JVM is going to GC so reduce the time of the
GCâs is desirable especially for the Full GC as part of the cycl
NewGen can sometimes be a problem. The temptation with 64 bit is setting a
large initial heap size -Xms4096m. This can be quite fine however can lead to
problems in JVM performance since the JVM is not making good decisions how to
size the New Generation (which is made up of Eden and two surviv
On Wed, Feb 16, 2011 at 1:34 PM, Duncan wrote:
> java.args=-server -Xms4096m -Xmx8192m -Dsun.io.useCanonCaches=false
One thing I would be cautious about here: a heap that large can be
susceptible to "stop the world" GC sweeps and if the heap ever grows
near the 8GB max, those sweeps will take a
esday, February 16, 2011 10:11 AM
> To: cf-talk
> Subject: Re: JVM help!
>
>
> Duncan,
>
> Sorry about _MY_ confusion. I was reading and responding to your request,
> while 'out', with my phone and the small screen sometimes jumbles up a
> message enough to
When you get varied response times like that I often take a closer look at the
network (duplexing, flow control etc).
-Original Message-
From: Wil Genovese [mailto:jugg...@trunkful.com]
Sent: Wednesday, February 16, 2011 10:11 AM
To: cf-talk
Subject: Re: JVM help!
Duncan,
Sorry
perhaps be
> able to make some better decisions.
>
> Can you help expand on what we are looking for?
>
> Thanks!
>
> On Wed, Feb 16, 2011 at 4:09 PM, Wil Genovese wrote:
>
>>
>> Set min max heap to be equal.
>>
>> Set gc intervals to 1
>
com]
Sent: Wednesday, February 16, 2011 4:43 AM
To: cf-talk
Subject: Re: JVM help!
Why do you believe this is a JVM problem?
Jochem
--
Jochem van Dieten
http://jochem.vandieten.net/
~|
Order the Adobe Coldfusion Anthology
-talk
Subject: Re: JVM help!
Hi Duncan, you do not have a -XX:PermSize=m set on your new 64 bit. Apply other
suggestions mentioned plus a minimum setting for Perminant Generation as
without one it can try size down to Java default. What size? The value depends
perhaps with the MaxPermSize you have
Why do you believe this is a JVM problem?
Jochem
--
Jochem van Dieten
http://jochem.vandieten.net/
~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
A
Hi Duncan, you do not have a -XX:PermSize=m set on your new 64 bit. Apply other
suggestions mentioned plus a minimum setting for Perminant Generation as
without one it can try size down to Java default. What size? The value depends
perhaps with the MaxPermSize you have set already use say half
the exact same data works faster
on the old 32bit machine. If I can put some logic around this, on the
possible causes and how that relates to the JVM settings, I will perhaps be
able to make some better decisions.
Can you help expand on what we are looking for?
Thanks!
On Wed, Feb 16, 2011 at 4
Set min max heap to be equal.
Set gc intervals to 1
And try again. These are not hard set numbers but in many cases works good
enough to start figuring out what is really happening.
You should install monitoring package and look for the cause of the memory
issue. Typically it's unexpec
Hi Everyone,
We have recently put together a new CF server, moving from 32 bit, 4Gb RAM
Windows over to 64bit, 16Gb RAM Windows.
We have pretty much done a default set up, and placed the same set of
applications on the new server, and have run in the machine for a bit. After
a few weeks we have
FYI I figure it out
was simple once you looked at the content. since it is all in commented tags
ReReplaceNoCase(str,"", "", "ALL");
Just incase anyone else has this issue.
> I am having an issue creating a regex to strip out the XML content
> that Word 2007 is adding our HTML editor.
> w
I am having an issue creating a regex to strip out the XML content that Word
2007 is adding our HTML editor.
we are using TINYMEC and when one of our client upgraded recently it has
created a large number of issues.
what we need to do is to pull out the flowing content.
it starts with
th
> The source file has errors.
> I'm trying to work through them.
Uggh! Sorry.
You may have to do search/replace and rewrite the source file to a temp file to
get it straight. That's always fun. I feel your pain.
Robert B. Harrison
Director of Interactive Services
Austin & Williams
125
The source file has errors.
I'm trying to work through them.
-
Patrick Kerley
kerl...@yahoo.com
-
From: Robert Harrison
To: cf-talk
Sent: Tue, February 8, 2011 4:16:18 PM
Subject: RE: (ot) Find and Replace Help
the d
the dog is > than the cat
This is definitely NOT a valid XML file if you are working with this. Where is
this coming from. If it's an XML file the problem is that the source XML file
has errors.
Robert B. Harrison
Director of Interactive Services
Austin & Williams
125 Kennedy Drive, Suit
> First, if you have something in a document, it's not XML.
I meant to write, "if you have something LIKE THAT in a document, it's not XML."
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/
Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA
> I'm trying to parse XML and I've hit a problem where inbetween my XML of
>
>
> There is occasionally some math values or thing like
>
>
> the dog is > than the cat
>
>
> I've got 3500 of these documents to run through an insert into a DB. Does
> anyone know how or in what program I could
I'm trying to parse XML and I've hit a problem where inbetween my XML of
There is occasionally some math values or thing like
the dog is > than the cat
I've got 3500 of these documents to run through an insert into a DB. Does
anyone know how or in what program I could issue a Find an
ments ...
From: "Stefan Richter"
Sent: Monday, January 31, 2011 3:21 PM
To: "cf-talk"
Subject: Re: Query of query help
I was trying something like this:
select * from roomList
WHERE name = 'x'
OR roomList.name = '#ro
Ah great, an interesting approach. Many thanks.
Stefan
On 31 Jan 2011, at 20:10, Jason Fisher wrote:
>
> Stefan,
>
>
> This might work ... can't remember if the IN () function works in QoQ or
> not.
>
>
>
>
>
>
>
>
>
> SELECT *
> FROM roomList
> WHERE name NOT I
I was trying something like this:
select * from roomList
WHERE name = 'x'
OR roomList.name = '#roomid#'
I think I am getting somewhere with it. Anything inherently wrong with this?
Stefan
On 31 Jan 2011, at 17:54, Raymond Camden wrote:
>
> Um, did you try the where clause? You said
PM
To: "cf-talk"
Subject: Re: Query of query help
Thanks.
Guess what I was trying to avoid was a loop with 35,000 queries... I was
trying to come up wit a clever way to do this in one SQL statement. One
issue I noticed is that QoQ does not to seem to (easily?) support joins.
Then again I
Thanks Dave,
listing the folders performs a lot better than I expected, so that's not my
issue here.
Cheers
Stefan
On 31 Jan 2011, at 17:57, Dave Watts wrote:
>
>> I've got a folder which contains 35,000 folders.
>
> Setting aside your QoQ question, you may have problems simply
> traver
Thanks.
Guess what I was trying to avoid was a loop with 35,000 queries... I was trying
to come up wit a clever way to do this in one SQL statement. One issue I
noticed is that QoQ does not to seem to (easily?) support joins.
Then again I'm no SQL ninja by any means.
S
On 31 Jan 2011, at 17
> I've got a folder which contains 35,000 folders.
Setting aside your QoQ question, you may have problems simply
traversing a folder with this many items in it.
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/
Fig Leaf Software is a Veteran-Owned Small Bus
Yes, QoQ will work here.
SELECT roomid
FROM rooms
SELECT name
FROM roomsDB
WHERE roomid = '#name#'
Um, did you try the where clause? You said it didn't work - how did it
not work? Can you show us the full code and the error?
On Mon, Jan 31, 2011 at 11:48 AM, Stefan Richter
wrote:
>
> Hi all,
> hoping for some advice with querying a query - at least I think that's what's
> a good fit here bu
yntax. The resultset from
orphanRooms should contain all the records that are in roomList but not in
roomsDB.
Any help appreciated.
Stefan
~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Ant
You're welcome :o)
Mark
On Wed, Jan 26, 2011 at 1:25 AM, Stefan Richter wrote:
>
> Works. A. treat.
>
> Thank you, and thanks Mark Mandel.
>
> Stefan
>
>
>
> On 24 Jan 2011, at 14:42, Leigh wrote:
>
> >
> >> But the fact that the two jars seem to conflict with one
> >> another throws a real spa
Works. A. treat.
Thank you, and thanks Mark Mandel.
Stefan
On 24 Jan 2011, at 14:42, Leigh wrote:
>
>> But the fact that the two jars seem to conflict with one
>> another throws a real spanner into the works... Is there any
>> way I could separate them and have both present in CF?
>
> Try
umns, so I could actually have 20 rows with this
>> situation. They all merge into one though.
>>
>> Sorry for the confusion, I just redact true data whenever possible.
>>
>> -Original Message-
>> From: Greg Morphis [mailto:gmorp...@gmail.com]
>> Sent:
t: Monday, January 24, 2011 2:00 PM
> To: cf-talk
> Subject: Re: Need a little sql help...
>
>
> How do you know the 2 Steve's are the same Steve?
> What if there was another Steve who was also 40 but lived elsewhere?
> Can you provide some more
o: cf-talk
Subject: Re: Need a little sql help...
How do you know the 2 Steve's are the same Steve?
What if there was another Steve who was also 40 but lived elsewhere?
Can you provide some more realistic data? And how you'd know they were
the sam
How do you know the 2 Steve's are the same Steve?
What if there was another Steve who was also 40 but lived elsewhere?
Can you provide some more realistic data? And how you'd know they were
the same Steve? or whomever?
On Mon, Jan 24, 2011 at 12:57 PM, DURETTE, STEVEN J (ATTASIAIT)
wrote:
>
> Hi
Hi all,
My SQL mojo seems to have left me. Here is the situation, I have 1
table. In this table there are some times two rows that should have
actually been one. Here is an example to explain.
Table: Name, Age, address one, address two
Row 1: Steve,40,123 Anystreet,NULL
Row 2: Steve
> But the fact that the two jars seem to conflict with one
> another throws a real spanner into the works... Is there any
> way I could separate them and have both present in CF?
Try using the javaLoader
http://javaloader.riaforge.org/
~~
I've figured out the Java image part:
This works.
But the fact that the two jars seem to conflict with one another throws a real
spanner into the works... Is there any way I could separate them and have both
present in CF?
Regards,
Stefan
On 24 Jan 2011, at 13:30, Stefan Richter wrote
Should be org.jpedal. rest of path
On Jan 24, 2011 7:18 AM, "Stefan Richter" wrote:
>
> I'm trying to use a Java library called jpedal (http://www.jpedal.org) in
order to convert PDF files to images. The following works great from the
commandline on my Mac:
>
> java -cp ./jpedal_trial.jar
org/jpe
I'm trying to use a Java library called jpedal (http://www.jpedal.org) in order
to convert PDF files to images. The following works great from the commandline
on my Mac:
java -cp ./jpedal_trial.jar org/jpedal/examples/images/HiResThumbnailExtractor
"test.pdf" "jpg"
However I'm not sure how to
I'm working on a CF site and converting the standard url strings to SES urls.
So far we have most of it working. But I'm working on this rewrite rule and I
can not figure out why this fails when I try to add product paging.
Here is the rule
RewriteRule ^([^/]*)/parts/([\w&\-/]+)?$
/mypage.cfm
urse, now the calendar icons are rolling down to the nextline...;)
Steve 'Cutter' BladesAdobe Certified ExpertAdvanced Macromedia ColdFusion
MX 7 Developerhttp://blog.cutterscrossing.com"The best way to
predict the future is to help create it"
On 1/14/2
Steve,
I already replied to your email, but since you opened this thread, I will
copy that reply here. :-)
1) If by "add" trigger you mean dynamically adding/removing fields, then
perhaps this link will help:
http://www.quackfuzed.com/demos/jQuery/dynamicField/cfUniFormIntegration.c
do this? Ordo I need to hack my datefields
directly?
-- Steve 'Cutter' BladesAdobe Certified ExpertAdvanced Macromedia
ColdFusion MX 7 Developerhttp://blog.cutterscrossing.com"The best
way to predict the future is to help create it"
~
Wonderful. And just in time for the weekend.
On Fri, Jan 14, 2011 at 8:33 AM, Jay Birdsell wrote:
>
> > Here's what Google tells me regarding days between "now()" and a
> > database
> > column value.
> >
> > select extract(day from (sysdate - dte_2dlcl))
> >
> > I have no idea if that's correc
> Here's what Google tells me regarding days between "now()" and a
> database
> column value.
>
> select extract(day from (sysdate - dte_2dlcl))
>
> I have no idea if that's correct and can't test. I think it's a step
> in the
> right direction.
>
> Here's the reference:
> http://stackoverflo
Here's what Google tells me regarding days between "now()" and a database
column value.
select extract(day from (sysdate - dte_2dlcl))
I have no idea if that's correct and can't test. I think it's a step in the
right direction.
Here's the reference:
http://stackoverflow.com/questions/1646001/ho
Wait. I don't think Oracle 11g even has a dateDiff function. Does it?
On Fri, Jan 14, 2011 at 7:53 AM, Jay Birdsell wrote:
>
> >I suspect dte_2dlcl is the name of a date/time column in his database.
> >Though it shouldn't be surrounded in single quotes if that's the case.
> >
> >On Thu, Jan 13
>I suspect dte_2dlcl is the name of a date/time column in his database.
>Though it shouldn't be surrounded in single quotes if that's the case.
>
>On Thu, Jan 13, 2011 at 3:23 PM, Russ Michaels wrote:
>
>>
Thank you everyone for your input. I'm using an oracle 11g db, dte_2dlcl is a
date fiel
>Wait, I'm confused, are you trying to use the CF dateDiff() function, or
>a database's dateDiff() function?
Actually Eric , I tried both. I'll try the quotes around TODAY see what that
yields.
~|
Order the Adobe Coldfusion
> try # 3
> select dte_2dlcl from execcoresp000.correspondence
> where dateDiff('d',#today#,'dte_2dlcl')< 8
Keep in mind it is often more efficient to rewrite the query using a basic date
comparison. (Functions can sometimes impede the database's use of index
nt: 13 January 2011 19:41
> To: cf-talk
> Subject: help w/ DateDiff() please
>
>
> The dateDiff () is killing me! can someone please look at this and help me
> clear my head.
>
> What I have is a db that tracks executive correspondence when drafts are
> due and when the fi
[mailto:john_birds...@hotmail.com]
Sent: 13 January 2011 19:41
To: cf-talk
Subject: help w/ DateDiff() please
The dateDiff () is killing me! can someone please look at this and help me
clear my head.
What I have is a db that tracks executive correspondence when drafts are
due and when the final response
> a database's dateDiff() function? If you're using a
> database's, then I
> think you need to wrap #today# in quotes.
Depends on whether it is a date string or date object. Though using
cfqueryparam would negate the need for quotes.
~
ars.com
>
>
> On 1/13/2011 1:41 PM, Jay Birdsell wrote:
>> The dateDiff () is killing me! can someone please look at this and help me
>> clear my head.
>>
>> What I have is a db that tracks executive correspondence when drafts are
>> due and when the final re
ot.com/
--- On Thu, 1/13/11, Jay Birdsell wrote:
> From: Jay Birdsell
> Subject: help w/ DateDiff() please
> To: "cf-talk"
> Date: Thursday, January 13, 2011, 7:41 PM
>
> The dateDiff () is killing me! can someone please
> look at this and help me cle
g me! can someone please look at this and help me
> clear my head.
>
> What I have is a db that tracks executive correspondence when drafts are due
> and when the final response is due. I need a report that will list any
> correspondence that has a draft or final date within
The dateDiff () is killing me! can someone please look at this and help me
clear my head.
What I have is a db that tracks executive correspondence when drafts are due
and when the final response is due. I need a report that will list any
correspondence that has a draft or final date
We are ignoring certain types of files this exact way. Have you tried
stripping out all the other rules but the scripts ignore one? i.e. to debug,
make your entire rewrite script look like this:
RewriteEngine on
RewriteRule ^/scripts/(.*)$ /scripts/testing/$1 [I,R=301]
# i.e. the rule above shoul
Nope... no dice...
http://www.classicindustries.com/scripts/admin_newProductscarline.js
Notice the "P" is upper case. When you fire this in a browser it does a 301
and redirects to the this
http://www.classicindustries.com/scripts/admin_newproductscarline.js
I put my rule above the rule for
3:41 PM
To: cf-talk
Subject: Re: help with a rewrite rule
I would think it would be something like this:
RewriteRule ^/scripts/(.*) /scripts/$1 [L]
That's Apache style, but they're similar, right?
HIH!
:Den
--
The omission of good is no less reprehensible than the commission of
I would think it would be something like this:
RewriteRule ^/scripts/(.*) /scripts/$1 [L]
That's Apache style, but they're similar, right?
HIH!
:Den
--
The omission of good is no less reprehensible than the commission of evil.
Plutarch
On Fri, Dec 10, 2010 at 2:30 PM, Mark A. Kruger wrote
Might need to escape that slash:
RewriteRule ^\/scripts\/(.*) /scripts/$1 [L]
On Fri, Dec 10, 2010 at 2:41 PM, denstar wrote:
> I would think it would be something like this:
>
> RewriteRule ^/scripts/(.*) /scripts/$1 [L]
>
> That's Apache style, but they're similar, right?
>
> HIH!
>
> :D
PM
To: cf-talk
Subject: RE: help with a rewrite rule
Maybe I need:
RewriteCond something...
Followed by
RewriteRule (?!/scripts.*) /scripts.* [L] ... I just don't want it to do
anything at all... I just want it to STOP processing if the file is in the
"scripts" director
2) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com
-Original Message-
From: Mark A. Kruger [mailto:mkru...@cfwebtools.com]
Sent: Friday, December 10, 2010 12:25 PM
To: cf-talk
Subject: RE: help with a rewrite rule
Anyone?
-Original Me
Bueller.
On Fri, Dec 10, 2010 at 1:25 PM, Mark A. Kruger wrote:
>
> Anyone?
>
>
> -Original Message-
> From: Mark A. Kruger [mailto:mkru...@cfwebtools.com]
> Sent: Friday, December 10, 2010 11:28 AM
> To: cf-talk
> Subject: RE: help with a rewrite rule
>
&
Anyone?
-Original Message-
From: Mark A. Kruger [mailto:mkru...@cfwebtools.com]
Sent: Friday, December 10, 2010 11:28 AM
To: cf-talk
Subject: RE: help with a rewrite rule
So maybe...
RewriteRule (?!/scripts.*) /scripts.* [L]
??
Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
, 2010 11:22 AM
To: cf-talk
Subject: RE: help with a rewrite rule
Ok... I tried the following:
RewriteRule (?!/scripts.*) [L]
But instead of ignoring it it actually redirecte to [L] ... so it's
rewriting to blank eh?
Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markak
ginal Message-
From: Mark A. Kruger [mailto:mkru...@cfwebtools.com]
Sent: Friday, December 10, 2010 10:54 AM
To: cf-talk
Subject: help with a rewrite rule
Rewrite gurus and afficianados,
I have the following rewrite rule (uses helicon)..
RewriteEngine on
#- IGNORE DIRECTO
%{REQUEST_URI} [A-Z]
RewriteRule (.*) ${lc:$1} [R=301,L]
The "Force lower case" rule is wreaking havoc with Ajax CFC POST requests.
It redirects them and (naturally) loses the post data.
I need a rule to "exclude" CFCs from further rewrite rules. Can someone
help?
> I'm getting somewhere but have given up on GetThumbnail for now. The .NET
> libs also contain a method to save SVG files so now I do this:
>
>
>
>
>
>
>
>
>
> I'm then using Batik to convert to PNG. This produces some pretty good
> results. The Batik ins
> I'd like to do the equivalent in CF. BTW I tried to use
>
> which threw an error but
>
> seemed to work. Am I correct up to that point?
The "1f" syntax in C# indicates a literal floating point value. CF
doesn't have anything comparable thanks to its loose typing, so you
should be able to just
Thanks all.
I'm getting somewhere but have given up on GetThumbnail for now. The .NET libs
also contain a method to save SVG files so now I do this:
I'm then using Batik to convert to PNG. This produces some pretty good results.
The Batik
Stefan,
To back track a little:
1) Can you instantiate the object?
2) If you can instantiate the object, do a cfdump and that will tell
you which methods are available to CF, from there you'll have a better
idea of what you can and can't do with the assembly
hope this helps
On Wed, Nov 3, 201
On 11/3/2010 5:50 PM, Stefan Richter wrote:
>
by no means a dotnet expert so this is WAG but maybe system.drawing is a UI
class & cf dotnet integration can't access it?
in that case you'll have to fiddle with the contents of that object returned by
getThumbnail().
~~~
On 11/3/2010 5:50 PM, Stefan Richter wrote:
> Obviously I am lacking understanding how the .NET dlls work. When I run
>
>
> it throws an error
> Class System.Drawing.Imaging.ImageFormat.Jpeg not found in the specified
> assembly list.
if you upgraded the dotnet bits *after* installing cf, you'l
On 11/3/2010 4:57 PM, Stefan Richter wrote:
>
> Ok I tried CFFILE and that did indeed write a JPG, but it was only 23bytes in
> size and my local machine moaned about it not being a valid JPG file. I'm
> sure I am missing something.
no, could be that object isn't a valid jpeg. did you try BMP, et
301 - 400 of 12479 matches
Mail list logo