RE: [ cf-dev ] Trying not to use absolute paths

2003-10-24 Thread Ellwood
If you used fusebox it would be easy. One of the variables that is stored in the core gets the path. A friend of mine sets the path at the top of each page as a CFPARAM such as This can be quite tedious though and I wouldn't recommend it as an ideal solution -Original Message- From: J

[ cf-dev ] Trying not to use absolute paths

2003-10-24 Thread Jolly Green Giant
Hi All, I have an image I want to put in various places on my website. Well it's actually a spliced up image held together by a table. I want to avoid using absolute paths. What do you guys do for this situation? I could make a tag that counts how many directories there are back to the main

RE: [ cf-dev ] CFAdmin: ODBC Service Not Running

2003-10-24 Thread Russ 'Snake' Michaels
Yes. You must install the latest MDAC. -Original Message- From: Jolly Green Giant [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 16:53 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] CFAdmin: ODBC Service Not Running Is there anyone who can help me with this? __/ Jolly Green G

[ cf-dev ] Spool interval settings in administrator

2003-10-24 Thread Sandeep Shetty
Hi, Is there a recommended setting for the spool interval setting in administrator? We have noticed that the mails remain in cf spool for much longer than the time specified in the administrator resulting in emails being delayed a lot. Anyone know why this happens? Also, would like to know what sp

RE: [ cf-dev ] CFAdmin: ODBC Service Not Running

2003-10-24 Thread Paul Fennell
I seem to recall Dave Watts from Fig leaf posting about this before Regarding MDAc updating try searching on houseoffusion lists http://www.houseoffusion.com/cf_lists/ Id search for you but tis Friday and I need painkillers for my teeth Good luck -Original Message- From: Jolly Gre

RE: [ cf-dev ] CFAdmin: ODBC Service Not Running

2003-10-24 Thread Jolly Green Giant
Is there anyone who can help me with this? __/ Jolly Green Giant \__ When I installed CF MX, it told me that my MDAC wasn't current. could this be causing the error/problem below? If so, how do I fix it? I can install the new mdac, but do I need to do anything in CF? _

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Robertson-Ravo, Neil (RX)
If anyone wants a suite of the following List functions for use in SQL 2000...let me know offlist.. listAppend listDeleteAt listFirst listGetAt listInsertAt listLast listLen listPrepend listSetAt listToTable -Original Message- From: Justin [mailto:[EMAIL PROTECTED] Sent: 24 Octobe

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Paul Fennell
Yay its Friday And Adrian and I have been helpful.. . next it will be Christmas :) lol -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 15:49 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] OT ValueList() in T-SQL that could be incredibly useful

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Paolo Piponi
And I wouldn't disagree. However, choose what's best and don't take for granted someone else's method. You can benefit from their method but their method can often benefit from your amendments. Paolo > -Original Message- > From: Adam Reynolds [mailto:[EMAIL PROTECTED] > Sent: 24 October 2

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Adrian Lynch
Have a look at the BOL entry for what it's use is, "Returns the first nonnull expression among its arguments.". -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 15:49 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] OT ValueList() in T-SQL that could be i

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Rich Wild
that could be incredibly useful > -Original Message- > From: Adrian Lynch [mailto:[EMAIL PROTECTED] > Sent: 24 October 2003 15:48 > To: '[EMAIL PROTECTED]' > Subject: RE: [ cf-dev ] OT ValueList() in T-SQL > > > I've never used it in this manor before, but here's a quick example...

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Justin
That is sweet!!! Thanks Adrian. declare @Emaillist varchar(8000) SELECT @Emaillist = COALESCE (@Emaillist + ', ', '') + CAST(Email AS varchar(250)) FROM Notification select @Emaillist Only thing is to remove duplicates Work distinct in tere somewhere... Justin -Origin

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Adrian Lynch
I've never used it in this manor before, but here's a quick example... CREATE TABLE #temp ( Email VARCHAR(100) ) INSERT INTO #temp ( Email ) VALUES ( "email1" ) INSERT INTO #temp ( Email ) VALUES ( "email2" ) INSERT INTO #temp ( Email ) VALUES ( "email3" ) INSERT INTO #temp ( Email ) VALUES ( "e

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Adrian Lynch
I'm suprised I got such a good response from this search "SQL making a comma delimited list from rows" in google :OP -Original Message- From: Paul Fennell [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 15:41 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] OT ValueList() in T-SQL Heheh Adr

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Adam Reynolds
Erm, And there I was thinking it had more to do with the fact that other developers using fusebox would be able to contribute to your development process and would be working with a similar mindset. Why do you think application developers sometimes request that somebody develops using UML. It's al

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Paul Fennell
Heheh Adrain I was looking for that url :) -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 15:37 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] OT ValueList() in T-SQL Scroll to the bottom... http://www.sqlteam.com/item.asp?ItemID=2368 Ade

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Rich Wild
ooo - that's nice. > -Original Message- > From: Adrian Lynch [mailto:[EMAIL PROTECTED] > Sent: 24 October 2003 15:37 > To: '[EMAIL PROTECTED]' > Subject: RE: [ cf-dev ] OT ValueList() in T-SQL > > > Scroll to the bottom... > > http://www.sqlteam.com/item.asp?ItemID=2368 > > Ade > > -

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Adrian Lynch
Scroll to the bottom... http://www.sqlteam.com/item.asp?ItemID=2368 Ade -Original Message- From: Justin [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 15:33 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] OT ValueList() in T-SQL > You could use COALESCE to build a valid list. > If your

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Justin
Need to do in SQL. I want to pass a list of email address to a COM as a string (list) Eg. "[EMAIL PROTECTED],[EMAIL PROTECTED]" Thanks Justin -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 15:23 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] OT Valu

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Paolo Piponi
Fusebox evangelists are control freaks who just like the sound of their own voice. Take what you want from the fusebox method and ditch what looks stupid (it probably is). Just make sure you do something methodical and make some sort of documentation of the structure. Paolo -- ** Archive: http:/

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Justin
> You could use COALESCE to build a valid list. > If your on mssql. I am. Version 7. Not sure how to that? If I have Email - [EMAIL PROTECTED] [EMAIL PROTECTED] How do I get [EMAIL PROTECTED],[EMAIL PROTECTED] SELECT EMail From Table Thanks -Original Message- From:

RE: [ cf-dev ] cffile - Append

2003-10-24 Thread duncan . cumming
you'll end up with a rather long file if you use method 2! unless you miss out step 2, and change it to create a new file with line and append log.log.tmp. Duncan Cumming IT Manager http://www.alienationdesign.co.uk mailto:[EMAIL PROTECTED] Tel: 0141 575 9700 Fax: 0141 575 9600 Creative solut

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Adrian Lynch
What do you need in for, there may be another way around it if you're doing it for some sort of report... got any more details? Ade -Original Message- From: Justin MacCarthy [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 15:14 To: Cfuk Subject: [ cf-dev ] OT ValueList() in T-SQL Hi al

RE: [ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Paul Fennell
You could use COALESCE to build a valid list. If your on mssql. -Original Message- From: Justin MacCarthy [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 15:14 To: Cfuk Subject: [ cf-dev ] OT ValueList() in T-SQL Hi all, Anyone know of T-SQL to do the same as ValueList() ??? Am I stu

RE: [ cf-dev ] cffile - Append

2003-10-24 Thread Justin
Random thoughts ... AFAIK Not without reading the whole file first and using listprepand(newline,filecontents, "#NEWLINE#") and write it or rename log.log to log.log.tmp append line to log.log append log.log.tmp >> log.log Yuck. If it is a case of reading the log file, learn how to use "tail"

RE: [ cf-dev ] cffile - Append

2003-10-24 Thread Rich Wild
spot the double .. typo. > -Original Message- > From: Rich Wild [mailto:[EMAIL PROTECTED] > Sent: 24 October 2003 15:15 > To: '[EMAIL PROTECTED]' > Subject: RE: [ cf-dev ] cffile - Append > > > > the bottom. Can I make the most recent at the top? > > variable="logfile"> chr(13) & c

RE: [ cf-dev ] cffile - Append

2003-10-24 Thread Rich Wild
> the bottom. Can I make the most recent at the top? -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED]

[ cf-dev ] cffile - Append

2003-10-24 Thread Paul_Swingewood
Is there a way to make the cffile append to the top rather than the bottom. I am using it record admin functions like who did what and when in a log. its a pain keep scrolling to the bottom. Can I make the most recent at the top? Regards - Paul

[ cf-dev ] OT ValueList() in T-SQL

2003-10-24 Thread Justin MacCarthy
Hi all, Anyone know of T-SQL to do the same as ValueList() ??? Am I stuck with a cursor? Thanks Justin -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-ma

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Adrian Lynch
I thought it was associative array notation, but I think I'm confusing it with something else, I reckon it's just array notation, anyone? Ade -Original Message- From: Lovelock, Richard J [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 14:51 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ]

Re: [ cf-dev ] variable in a variable

2003-10-24 Thread Stephen Moretti
Best to try the other suggestions and try to avoid evaluate() You don't want Raymond Camden shouting at you... ;oD #variables["match"&id]# Of course if you're on CFMX, you could just dump the whole of the scope. Stephen Lovelock, Richard J wrote: hmm that one didn't work - will try the other

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Lovelock, Richard J
for info... didn't work :o( worked a treat as did Var="#Variables['match' & id]#" - cheers guys - Adrian whats the proper name for this syntax - you said associwhatsit - but i woul

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Lovelock, Richard J
hmm that one didn't work - will try the other suggestions ___ * Regards, Richard Lovelock Westminster City Council - Web Support Cap Gemini Ernst & Young Southbank 95 Wandsworth Road London SW8 2HG ( 0870 906 7482 _

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Douglas Humphris
Correct me if I'm wrong, I believe you can do this: Var="#Variables['match' & id]#" D -Original Message- From: Lovelock, Richard J [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 14:34 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] variable in a variable yes that works great thanks -

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Adrian Lynch
Use associwhatsit notation, VARIABLES["match#id#"] or FORM["match#id#"] or URL["match#id#"], you get the picture... Ade -Original Message- From: Kevin Faulkner [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 14:34 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] variable in a variable

RE: [ cf-dev ] where to now WAS MVC/Methodologies WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Duncan Fenton
Even before (if ever) we reach the nirvana of an obviously best practice, including the scalability and 'get off at any floor' factors, there is another social factor at work besides 'let's rip it off'. That is the attempt to 'make programming simple'. It isn't, and never will be, period. I'm

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Kevin Faulkner
I think that this will work with an evaluate, try Worth a try at least! -Original Message- From: Lovelock, Richard J [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 14:34 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] variable in a variable yes that works great

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Lovelock, Richard J
yes that works great thanks - but i have another situation where i don't think that works i have 6 queries (for debugging) called match1 through to match6. I want to output the contents of each one after the other, so I am trying: I know that that is completely wrong syntax but i don

Re: [ cf-dev ] variable in a variable

2003-10-24 Thread Ian Westbrook \(ASE\)
#createtimespan(variables.id,0,0,0)# ? Ian W - Original Message - From: "Lovelock, Richard J" <[EMAIL PROTECTED]> To: "'cflist'" <[EMAIL PROTECTED]> Sent: Friday, October 24, 2003 2:22 PM Subject: [ cf-dev ] variable in a variable > how do you output a variable within a variable? > >

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Stephen Pope
Ignore that im freakin crazy today -Original Message- From: Stephen Pope Sent: 24 October 2003 14:24 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] variable in a variable #Createtimespan(Evaluate(id&",0,0,0"))# will that work ? -Original Message- From: Lovelock, Richard J [mailt

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Stephen Pope
#Createtimespan(Evaluate(id&",0,0,0"))# will that work ? -Original Message- From: Lovelock, Richard J [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 14:22 To: 'cflist' Subject: [ cf-dev ] variable in a variable how do you output a variable within a variable? e.g. if I want to achieve

RE: [ cf-dev ] variable in a variable

2003-10-24 Thread Kevin Faulkner
Just don't have the inner set of #'s, within CFOUTPUT's that will resolve fine -Original Message- From: Lovelock, Richard J [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 14:22 To: 'cflist' Subject: [ cf-dev ] variable in a variable how do you output a variable within a variable? e.g.

[ cf-dev ] variable in a variable

2003-10-24 Thread Lovelock, Richard J
how do you output a variable within a variable? e.g. if I want to achieve #createtimespan(5,0,0,0)# but I want the 5 to come from a variable (e.g. id) i tried #createtimespan(#id#,0,0,0)# but it doesn't like that - how do i get round this? __

RE: [ cf-dev ] where to now WAS MVC/Methodologies WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Paul Johnston
The thing is, that we all use some form of methodology based on CF... Try imagine what would happen if there was no "web framework software" to build around (and yes I do realise that this happened about 10 years ago). We have n-tier models of applications and we have different layers that we sho

RE: [ cf-dev ] where to now WAS MVC/Methodologies WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Adam Reynolds
I think when business decides on 'one method is best' then this will happen. Each business has a unique approach to its processes and managers, by their very nature, like to 'improve' proceses. > -Original Message- > From: Damian Watson [mailto:[EMAIL PROTECTED] > Sent: 24 October 2003 13

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Adam Reynolds
I like overkill :) It forces you to think in a specific way and gives you an event driven model that lends itself well to the design process. Coming from a background in developing Xwindows, OpenRoad and VB, I find this useful. The concepts that it provides allows for development of complex busin

Re: [ cf-dev ] where to now WAS MVC/Methodologies WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Damian Watson
On a more serious note, whatever the preferences it does seem that everyone is agreed with the fact that methodologies are a good idea. I'm interested to know what's likely to happen in the future- this kind of conversation is really a demonstration of how internet applications are beginning to be

Re: [ cf-dev ] MVC/Methodologies WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Damian Watson
> PS Fusebox people smell like tramps wee.. dammit its started! Well that's what happens if you stay in a box all day, you start smelling. Ask David Blaine. *duck* - Original Message - From: "Stephen Pope" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 24, 2003 12:55

RE: [ cf-dev ] MVC/Methodologies WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Stephen Pope
I think the good thing is that it shows all the levels of the methodology and how you can implement its in a simple or complex form depending on the scale of the project .. and you can say 'hey I wanna get off now' at any point during the process and you would still have something workable ! :¬)

RE: [ cf-dev ] MVC/Methodologies WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Ellwood
Yeah, I saw this demo/presentation at CF_Europe. Unfortunately Benoit English managed to confuse the difficult subject he was trying to explain. The breeze slides are a little easier to understand without his lecture but I would love to talk to the guy on a one to one because I am sure he would tot

Re: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Stephen Moretti
I've been using Fusebox since not long after Steve Nelson produced and published his white paper on Fusebox, based on lessons learned by himself and others while building ebags.com. I was involved in the community right up until they started on FB3, when I disagreed with the way things were goi

RE: [ cf-dev ] Toast and marmite?

2003-10-24 Thread Ellwood
Well, I suppose its how you feel on the day. Somedays, marmite can be quite nice but only on toast. On ordinary, run of the mill bread then I would agree. However, most days marmite is vile but then I have yet to try it as a drink as a lot of people use it like a beef drink. -Original Message-

RE: [ cf-dev ] MVC/Methodologies WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Stephen Pope
http://www.benorama.com/coldfusion/index.htm I think this is a great website for doing MVC in CF .. I certainly learned a lot from this site in applying this methodology to CF. (I know its been posted here before but I keep going back to this one !) -Original Message- From: Paul Johnston

[ cf-dev ] MVC/Methodologies WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Paul Johnston
> Does anyone use MVC? And if so, how does this differ from > fusebox because the way I see it M = Model = Query, V = View > = display, C = Controller = Fusebox/Actions. I have got massively into looking at different methodologies mainly because I have some of the changes in the FB community and

Re: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Taz
I'm a fusebox developer of sorts, but as I've always said: I never stick to any of the fusebox versions in full. I like to call my version of the methodology "Extended Fusebox (Taz edition)" Steve likes to call it "Tazbox Fusabix 2.999..." What it means is that I've taken a bunch of the core conc

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Ellwood
Fusebox is a methodology. If you're methodology although based on fusebox works then use it. I have used both fusebox and standard development methods. Fusebox doesn't make it any quicker to develop but boy does it make it easier to maintain. I like the idea of XFA's but again this can be adopted o

Re: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Robin Griffiths
Yep - I use it. I like a.. that it makes other people's code more transparent b.. that it makes it easier to extend the app at a later stage. c.. that it forces a lazy s*d like me to actually do some design ;-) No evangelism, though, if you've got good reasons not to use it, don't. CF is f

[ cf-dev ] Why Fusebox? WAS RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Paul Johnston
Well... I was a massive advocate of Fusebox and some of my best websites are written in fusebox. Some pros and cons: Pros: 1) Easy to maintain You can go back to an FB site and find bugs and things very easily 2) Clear and community supported methodology Cons: 1) Overkill for small sites (which i

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Kevin Faulkner
I agree, and have my own 'loose' methodology. I like the naming convention concept, and the single index file, and of course the code re-use, but tend not to get over restricted with the overkill stuff -Original Message- From: Stephen Pope [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 11

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Paul Fennell
It does have some good ideas But boy is it over kill -Original Message- From: Stephen Pope [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 11:15 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] Any fusecoders on the list? I'm curious just how many people on this list use fusebox ? Person

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Stephen Pope
I'm curious just how many people on this list use fusebox ? Personally I hate the thing, I like the ideas involved and but I prefer to adapt the methodology to my own code in my own way. I'm not having a go at fusebox coders (although I do kinda think Mach II is a bit hilarious) I just think th

Re: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Damian Watson
aarrr my brain's fused I thought fusebox was meant to be simple ;0) - Original Message - From: "Adam Reynolds" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 24, 2003 10:48 AM Subject: RE: [ cf-dev ] Any fusecoders on the list? > I've actually found that glob

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Adam Reynolds
I've actually found that globals is not that good an idea as it makes maintenance a pain. If you do require includes from another fuse, then work the path out and include (../security/queries/qry_member_details_select.cfm) BUT There is no hard and fast rule. What I would say is that if your fus

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Kola Oyedeji
Be aware that when calling the fusebox as a custom tag you have the overhead of the fusebox core file being re-executed which can impact performance. With fusebox 4 I believe you can chain fuseactions without the extra overhead. Kola >> -Original Message- >> From: Paul Johnston [mailto:[

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Ellwood
True, I hadn't thought of that. If I wish to drag my circuit to another application then it will fail because of the globals being missing. This is why I asked the question in the first place. Thanks for your valuable input I will rethink my strategy. Although I am currently wondering if there wil

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Paul Johnston
> checkloggedin="#session.user#" etc...> Half asleep... Should read: :D Paul -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED]

RE: [ cf-dev ] URL for MM bugbase?

2003-10-24 Thread Aidan Whitehall
> Its an MM eyes only thing... > > They have two kinds of bugbasesone internal for managing and tracking > their own bugs/known issues and one which is linked for Alpha/Beta members > etc > > What do you need to check? Ah, thanks. Well, I got a reply from Sean Corfield about the "CFMX ve

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Paul Johnston
> Right. The concensus is then, that we have a globals > directory. That is the way I have been going anyway but just > wanted to check out the combined brain power of this list I would suggest that this isn't a good idea. The whole point of fusebox is that you can effectively "drag and drop" d

RE: [ cf-dev ] DWMX problem

2003-10-24 Thread Julian Tedstone
Thanks Barry Somehow this all seemed so much easier in Studio... J At 23:13 23/10/2003, you wrote: not this exactly but here's a few tips. 1) set the testing server up to be the same as the remote server as well 2) check your internet options (in the browser) to make sure you're getting the la

RE: [ cf-dev ] URL for MM bugbase?

2003-10-24 Thread Robertson-Ravo, Neil (RX)
Its an MM eyes only thing... They have two kinds of bugbasesone internal for managing and tracking their own bugs/known issues and one which is linked for Alpha/Beta members etc What do you need to check? N -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED] Sen

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Ellwood
Right. The concensus is then, that we have a globals directory. That is the way I have been going anyway but just wanted to check out the combined brain power of this list ;-) -Original Message- From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: 24 October 2003 09:27 To: [EMAIL PROTECTED]

RE: [ cf-dev ] Any fusecoders on the list?

2003-10-24 Thread Tim Blair
> Makes sense, but what is the correct way? What should a PURE > fusecoder do? No idea about a *pure* fusecoder, but... Depends what you're trying to do. If it's just a single qry fuse or similar then you could set up a separate "include" directory, point to it in the fbx_Settings.cfm file (e.

[ cf-dev ] URL for MM bugbase?

2003-10-24 Thread Aidan Whitehall
Does anyone have said URL or is it a MM-eyes-only thang. Can't find it via Google or the MM site. Thanks. -- Aidan Whitehall Macromedia ColdFusion Developer Fairbanks Environmental Ltd +44 (0)1695 51775 Queen's Awards Winner 2003

RE: [ cf-dev ] passsing stuff around

2003-10-24 Thread Peter Harrison
Beware of scripting vulnerabilities with the code you are currently writing. An example URL to extract a user's password, all they have to do would be to click on this link (or a short link of it), enter their details on the web site (innocently), and bang! you have stolen their password by collec