Re: FCK Editor Issue

2008-02-17 Thread Michael Bramwell
Check your dir permissions.

Mike.

Bruce Sorge wrote:
 Good morning/afternoon everyone.
 So I pretty much have  my FCK Editor working on our site but one issue 
 is still puzzling me. When I try to load a document (word doc in this 
 case), I get an error invalid file. I updated the config.js pages to 
 allow the following files:
 config.allowedExtensions[File] = doc,rtf,pdf,ppt,pps,xls,csv,vnd,zip;
 and still I get the error. I checked on-line and cannot find the answer 
 to this issue. All others have been answered by Google.

 Thanks and have a happy Presidents Day in the US and happy Family Day to 
 our friends up North.

 Bruce

   



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:299243
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Beyond Captcha

2008-02-11 Thread Michael Bramwell
CFFormProtect looks pretty thorough, I have up until now used just one 
of the techniques formProtect uses; the hidden form field method rather 
then using captcha, seems to do the job for the most part.

Mike.

Billy Cox wrote:
 My primary objection to captcha is that it adds speed bumps to the user
 experience (extra keystrokes).

 I feel smarter just having reviewed the cfformprotect code. I suspected
 before that captcha would be going away (good riddance), now I am sure of
 it.

   



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298759
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


SetLocale problems

2007-11-09 Thread Michael Bramwell
Hi,

I have been using the SetLocale function successfully on a xp box
running CF8 dev edition. However the exact same code is not changing
the output language when it is run on a linux box using CFMX 6.1.

Heres the code:

cfset SetLocale(French (Standard))

Month text is being outputted using monthasstring() function.

Anyone come across this issue before?

Mike.

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293014
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Stumped on outputting a report

2007-07-26 Thread Michael Bramwell
Hi All,

I am trying to output a report from a query. The report basically
needs to list for each  month the number of people seen per doctor.

e.g

ClientJan, Feb, Mar, April, May Jun, Jul, Aug, Sept, Oct, Nov, Dec

Doctor A-  0,0,12,40, 0,12,   50,20, 25,0,
   5, 13
Doctor B-  0,23,  12,40, 0,12,   50,  35, 25,
0,5,13
Doctor C ect...

The problem is I am not sure how to go about outputting this as per
the format of the above example.

The query which works looks something like this (mysql):

SELECT users.userID, users.userFirstName, users.userSurname,
reviewing_doctors.reviewing_doctor_id, MONTH(dateSent) AS ReportMonth,
YEAR(dateSent) AS YEAR,
MONTHNAME(dateSent) AS month_name, COUNT(*) AS total FROM doctor_review
INNER JOIN reviewing_doctors
ON doctor_review.reviewing_doctor = reviewing_doctors.reviewing_doctor_id
INNER JOIN users
ON reviewing_doctors.reviewing_doctor_UserID = 1
WHERE dateReceived  '2004-09-12'
AND dateReceived  '2007-09-12'
GROUP BY ReportMonth, reviewing_doctor
ORDER BY users.userFirstName;

Any help/ideas will be much appreciated as I have not got very far on this one.

Thanks,

Mike.

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284616
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfEclipse :: Find closing tag

2007-06-05 Thread Michael Bramwell
Hi AJ,

Ctrl + M

Mike.

On 6/5/07, AJ Mercer [EMAIL PROTECTED] wrote:
 Can cfEclipse find closing tags?

 So if I select cfif
 it will find for me /cfif

 TIA


 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:280080
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Calling Oracle Stored Procedures from CF

2005-12-08 Thread Michael Bramwell
Thanks to James, Tanguy, Andrew and Deanna for your help.

It appears that the explicit cursor is the way to go.

Now Ive got the procedure working it appears that the jdbc thin driver is
not up to the job when calling the sp's from cf. Goddang.

Michaelb.

- Original Message - 
From: James Holmes [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, December 09, 2005 7:53 AM
Subject: Re: Calling Oracle Stored Procedures from CF


 No I never said that it was bad - I said that it simply won't work if
 the query returns more than one row, which it looks like it does.

 On 12/8/05, Dave Carabetta [EMAIL PROTECTED] wrote:

  Just a side note on your cursor comment, as you seem to suggest that
  not using an explicit cursor is somehow bad. I would actually advise
  *against* explicit cursors in almost all cases. Here's supporting
  evidence from Oracle guru Tom Kyte himself, who demonstrates
  conclusively with thorough test cases that implicit cursors actually
  perform *better* than explicit cursors:

 --
 CFAJAX docs and other useful articles:
 http://jr-holmes.coldfusionjournal.com/

 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226650
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Calling Oracle Stored Procedures from CF

2005-12-07 Thread Michael Bramwell
Hi

I am having troubles getting even basic Oracle sp's to call from my coldfusion 
pages.

Heres the procedure:

CREATE OR REPLACE PROCEDURE selRandomQuestionIDs() AS
IS
BEGIN
SELECT quizQuestionID, RANDOM_ORDER 
FROM random_number
WHERE rownum = 20
END;

Heres the call:

cfquery name=selRandomQuestionIDs datasource=#datasourceName#
BEGIN selRandomQuestionIDs(); END;
/cfquery

The error being returned is as follows:

[Macromedia][Oracle JDBC Driver][Oracle]ORA-06550: line 1, column 7: PLS-00905: 
object SYSTEM.SELRANDOMQUESTIONIDS is invalid ORA-06550: line 1, column 7: 
PL/SQL: Statement ignored

Any help will be most appreciated.

Cheers,

Michaelb.




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226525
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Disabling Flash Links

2005-10-10 Thread Michael Bramwell
The only way I have overcome this is by getting the client to put in the
tracking link within the swf. And when they managed to get that wrong I used
Kintetic Fusion to decompile the swf, change the links my self, then
recomplile the swf.

Good luck,

Mike.


- Original Message - 
From: Jim McAtee [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Tuesday, October 11, 2005 8:50 AM
Subject: Re: OT: Disabling Flash Links


 - Original Message - 
 From: John Dowdell [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Monday, October 10, 2005 6:22 PM
 Subject: Re: OT: Disabling Flash Links


  Jim McAtee wrote:
  Is
  there any way to place a Flash movie on a web page and replace or
  disable
  all embedded links, so that we can force the link to go through our
  click.cfm script and record the click-through?
 
  It might be easier to talk with the client, have them grab their
  button's links from parameters in the HTML you supply. (If you check the
  markup of banner ads then the target URL is usually either in PARAMs or
  as query terms to the calling URL, both of which can be accessed by the
  SWF.)
 
  One way to actually break clicks in any SWF is to put something atop it,
  but then you get into browser differences... which browsers will draw
  their markup instructions atop plugin content, which ones let clicks go
  through, and so on.
 



 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220631
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Studio 8 announced

2005-08-11 Thread Michael Bramwell
Between Macromedia live docs, HOF lists and a few other sites I think CF is
fairly well covered. While it is sometimes helpful do you really need
millions of free and mostly useless scripts, whether it be php,asp,js, or
whatever.

Michael B.


- Original Message - 
From: Russ Michaels [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, August 12, 2005 9:33 AM
Subject: RE: Studio 8 announced


 Don't pick on cf developers.
 Eveyone else is the same, why do you think PHP has such a big community.
 Altho what does suck, is that no-one gives anything away for FREE in CF.
 Thus why we have millions of free PHP/ASP scripts and like 2 free cf
 scripts.
 There is only 1 free cf forum I know of, and ALL cf forums free or not,
are
 crap compared to the PHP/ASP solutions.

 Russ

 -Original Message-
 From: dave [mailto:[EMAIL PROTECTED]
 Sent: 12 August 2005 00:44
 To: CF-Talk
 Subject: RE: Studio 8 announced

 would you like it to come with your name etched in gold on the cd and the
 box customized with your pic and have it hand delivered to your door and
 only include the features you want in it. And if they did and you had to
pay
 more than a nickle for it you'd still bitch about it.

  It was funny the other night at our cfug we were talking about how
frickin
 cheap cfm developers are, whining and crying if they gotta spend more than
a
 buck for anything and its so true!!! Most of you are even too cheap to buy
 one of Wills cfm shirts and show your support, I mean really, It's
PATHETIC,
 people be ashamed of yourselfs because this is what hurts our community.
If
 WIll made PHP or Flash or .crap shirts they'd be all bought up in a heart
 beat. Lets be real you guys make good money but you act so broke, come
 on! We figured in our our area (denver) that $45 an hour was
fairly
 low for cfm dev'r too make. grrr

  I may whine about ms but at least I spent money on it and therefore have
a
 reason but this crap with you guys bitching about stuff and it not being
 free is really lame..

   but now it costs too much money.
  So you make multi-million dollar apps but can't spend a couple of bucks
on
 something that helps you make a living???
  Or you cant take 5 minutes to download the plugins you want? btw~ doesnt
 rob have a package download for cfm?
  Thats pathetic period!!!

 ~Dave the disruptor~
 A criminal is a person with predatory instincts who has not sufficient
 capital to form a corporation.

 
 From: Micha Schopman [EMAIL PROTECTED]
 Sent: Tuesday, August 09, 2005 8:31 AM
 To: CF-Talk cf-talk@houseoffusion.com
 Subject: RE: Studio 8 announced

 But does that zip contain a full IDE implementing the list I mentioned?
 I haven't seen one yet. When someone stands up, and builds an installer
 encapsulating this all you have a winner, but now it costs too much money.

 Micha Schopman
 Project Manager

 Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax
 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

 
 
 -
 Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren de
 interactie met uw doelgroep.
 Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
 informatie zie www.modernmedia.nl
 
 
 -
 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]
 Sent: dinsdag 9 augustus 2005 9:51
 To: CF-Talk
 Subject: RE: Studio 8 announced

 Installer? What can simpler than downloading a zip - unzip it, copy it to
a
 folder and click on Eclipse.exe - no reg keys, not added bloat.

 -Original Message-
 From: Micha Schopman [mailto:[EMAIL PROTECTED]
 Sent: 08 August 2005 20:55
 To: CF-Talk
 Subject: RE: Studio 8 announced

 The lack of a descent one in all installer is currently holding back
 Eclipse. People don't have the time to go through the entire process, of
 downloading Eclipse, downloading the Web toolkit, downloading the
 prequisites of that toolkit, downloading CFEclipse, etc.

 If they managed to put this all into one package, so that you get easily
 started with an Eclipse installation where you can edit
 xml,xsl,javascript,(x)html,css,cfml,php without going to that proces.
 And
 maybe it is there already, and I just did not searched good enough ;)

 As far as DW 8 concerned. For me personally the real good feature is code
 collapse, but I hope they didn't took the CFStudio/Homesite codebase for
 this functionality, because everybody who used it in those old products,
 knows that when you collapsed a large amount of code, scrolling the
document
 was a pain in the ass. So at least I hope that they did look at this
 feature.

 I like 

Re: Short URL / URL redirection

2005-05-19 Thread Michael Bramwell
You can try something like this

http://www.ibc.com.au/fwd/l.cfm?lID=invest20050509

which points to this code in l.cfm

cfparam name=lID default=
cfscript
links = StructNew();
StructInsert(links, emailPrivacy20050509,
http://asia.tech.yahoo.com/050504/afp/050504082225aht.html;);
/cfscript

cfif lID eq all
 cfset keyArray = StructKeyArray(links)

 table cellpadding=0 cellspacing=0 border=0
 cfloop from=1 to=#arraylen(keyArray)# index=i
  tr
   cfoutput
   td#keyArray[i]#nbsp;/td
   td#links[keyArray[i]]#/td
   /cfoutput
  /tr
 /cfloop
 /table

cfelseif lID neq 
  cfif StructKeyExists(links, lID)
  cflocation url=#links[lID]#
cfelse
  cflocation url=http://www.ibc.com.au/fwdFailed.asp;
 /cfif
cfelse
 cflocation url=http://www.ibc.com.au/fwdFailed.asp;
/cfif

- Original Message - 
From: Jim McAtee [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, May 20, 2005 8:44 AM
Subject: Re: Short URL / URL redirection


 It's easily done, but I'm not sure why using application.cfm is necessary.
 Why not do both the db lookup and server side redirect in one CF file?


 - Original Message - 
 From: Robert Munn [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Thursday, May 19, 2005 5:02 PM
 Subject: RE: Short URL / URL redirection


  tinyurl is great for posting on forums and the like, but I don't think I
  would use it for commercial purposes.
 
  I'm not sure the way their system works, but it seems like it would be
  easy to make a  URL-forwarding system using nothing but application.cfm
  and index.cfm. application.cfm would contain a lookup system that would
  intercept the incoming url and look it up against a database of
  short-to-long url conversions. index.cfm would do a server-side
  re-direct to the long url. simple.
 
 http://tinyurl.com/
 
 -Original Message-
 From: Mark Leder [mailto:[EMAIL PROTECTED]
 Sent: May 19, 2005 14:07
 To: CF-Talk
 Subject: Short URL / URL redirection
 
 
 Hi all,
 
 I'm wanting to figure out how to take a long CF URL and convert to a
 short
 URL for use in emails, etc.  Any methods, best practices, etc.  I really
 don't know where to start.
 
 Thanks,
 Mark
 
 

 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207236
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CSS problems

2005-05-16 Thread Michael Bramwell
Its probably just a syntax error. Are you migrating from a windows to linux
server? If so just check your casing, e.g if your style sheet is called
myStyle.css and it is being referenced as MyStyle.css then its not going to
display at all on a linux server.

- Original Message - 
From: Cutter [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Tuesday, May 17, 2005 9:58 AM
Subject: SOT: CSS problems


 OK, I figured one of you could help me here. I've been developing a new
 site. I recently migrated all of my files from my development server to
 a test server more on line with the production server it would
 eventually be housed on. And here's where the fun begins.

 My site's pages call two separate style sheets. The first is a global
 style sheet defining elements common throughout the site. The second
 sheet is page specific, defining elements only found on that page. Since
 migrating the site to the test server it appears that the second style
 sheet is never loaded. I can not peg down any reason why. I really don't
 see any reason why the server would make a difference, but the same
 pages do appear differently between the two different machines. The test
 server is here: http://s05.seacrets.com

 Cutter

 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206819
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: What makes a programmer look low level

2005-05-11 Thread Michael Bramwell
I agree, that
CFSET variables.a = 1
CFSET variables.b = 1

 is complete overkill, it is much more readible to use commenting:
cfscript
// some variables with dodgy names
a = 1;
b = 2;
/cfscript

Where I work we don't use cfform at all as it messes with our javascript
validation functions.
As for cfinsert and the like, I have never used these as normal sql seems so
much easier, anyway security and performance wise its much better to use
stored procedures or functions (if you happen to be using postgresql).

- Original Message - 
From: Glenn Saunders [EMAIL PROTECTED]
To: CF-Jobs-Talk cf-jobs-talk@houseoffusion.com
Sent: Thursday, May 12, 2005 11:02 AM
Subject: Re: What makes a programmer look low level


 At 01:10 PM 5/9/2005, you wrote:
 Like I said I knew people would disagree, and I understand that which
 is why I scope everything b/c I dislike being a black sheep :) But
 I'll ask why are people so adamant about it?

 Because CF has to interrogate memory on unscoped variables based on a
 predefined order of precedence and this takes a little more time than
 prescoping the variables.  I don't know offhand whether it shuffles the
 order of priority based on context (i.e. inside a CFLOOP or
 CFOUTPUT).  You'd think it would be a good idea if it did.

 But for most CF applications, that degree of optimization is overkill in
 comparison to the extra keystrokes it takes to do variables.  I find this
code:

 CFSET variables.a = 1
 CFSET variables.b = 1
 CFSET variables.c = 1
 CFSET variables.d = 1
 CFSET variables.e = 1

 much harder to read than

 CFSET a = 1
 CFSET b = 1
 CFSET c = 1
 CFSET d = 1
 CFSET e = 1

 You read left to right so you mentally have to filter out the variables.
 noise words everywhere in order to differentiate the real variable names.

 So that's why I don't follow that guideline 100%.



 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:11:2603
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/11
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:11
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Excel sheet datasource in CFMX7

2005-05-05 Thread Michael Bramwell
If your using a windows box i reckon you can install the excel datasource as
an obdc datasource without using cf admin
start - control panel - administrative tools - datasources (obdc) -
system dsn - add - choose microsoft excel driver - next steps are pretty
obvious.

Haven't tried this for excel files but have had success with access
databases via this method.

- Original Message - 
From: Duncan [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, May 06, 2005 12:50 PM
Subject: Excel sheet datasource in CFMX7


 I had a datasource set up in cf 4.5 for an ms excel sheet and it was
 very straight forward.. In CF 7 it doesnt have excel sheet defined
 readily, and the other option requires JDBC class paths and things.

 Can someone give me the settings etc I need for the class path - or is
 there a better way to do this?

 Thanks

 -- 
 Duncan I Loxton
 www.sixfive.co.uk
 [EMAIL PROTECTED]

 I can only please one person per day. Today is not looking good.
 Tomorrow  isn't looking much better. Dilbert

 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205820
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: defaultCharset not working

2005-05-04 Thread Michael Bramwell
I dont' know much about page encoding but if you have a master
application.cfm file simply puting the cfprocessingdirective
pageencoding=iso-8859-1 tag into this file should effect all child pages.
At least that would be the first thing that I would try.


- Original Message - 
From: Neculai Macarie [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, May 04, 2005 4:47 PM
Subject: defaultCharset not working


 Hi!

 I have the task of moving 20+ websites from CF5 to CFMX 7. All the sites
use
 ISO-5589-1 as encoding (files + database). On the new server I setup the
 defaultCharset to ISO-8859-1, but the special characters (for example
German
 umlauts) don't show up correctly. Putting cfprocessingdirective
 pageencoding=iso-8859-1 in each and every file will give me enough work
 for a week so I want to avoid it as much as possible.

 The server is Linux Debian Sarge, if it makes a difference and the pages
are
 ok on my Windows development box.

 -- 
 mack /


 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205496
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CF Error weirdness

2005-05-03 Thread Michael Bramwell
This is a strange and frustrating problem, I have successfully implemented 
cferror on our linux staging server, the problem is that the exact same code 
seems to be getting completely ignored on the clients linux staging server. 
What I am wondering is if there are any settings within cfide admin that 
disable cferror? If not any other suggestions will be more than welcome as I am 
completly stumped on this one and have had no responses in other coldfusion 
forums.

Cheers,

Mike.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205353
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF Error weirdness

2005-05-03 Thread Michael Bramwell
Hi Tanguy

I'm not sure so I shall check it out and get back to you.
Cheers for the tip.

Mike.

- Original Message - 
From: RADEMAKERS Tanguy [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Tuesday, May 03, 2005 6:17 PM
Subject: RE: CF Error weirdness


 Mike,

 Do they perchance have a site wide eror handler defined in the
 Settings section?

 /t

 -Original Message-
 From: Michael Bramwell [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, May 03, 2005 11:25 AM
 To: CF-Talk
 Subject: CF Error weirdness
 
 This is a strange and frustrating problem, I have successfully
 implemented cferror on our linux staging server, the problem
 is that the exact same code seems to be getting completely
 ignored on the clients linux staging server. What I am
 wondering is if there are any settings within cfide admin that
 disable cferror? If not any other suggestions will be more
 than welcome as I am completly stumped on this one and have
 had no responses in other coldfusion forums.
 
 Cheers,
 
 Mike.
 
 

 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205481
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54