img serving images from different domin, good or bad for preformance, any suggestions?

2004-10-05 Thread Nurettin Omer Hamzaoglu
Hi, I've heard that serving images from a different domain like www.images.com is better for CF Apllication Server performance. For example I've domain called www.myproject.com and I'm calling images img src=""> I'm gonna create a new domain www.myprojectimages.com and serve images from there img

Re: img serving images from different domin, good or bad for preformance, any suggestions?

2004-10-05 Thread dave
ummm i could be wrong but i sure cant see how making the app do more work is gunna speed it up just has to go farther to find it, logically it would slow it down. -- Original Message -- From: Nurettin Omer Hamzaoglu [EMAIL PROTECTED] Reply-To: [EMAIL

Coldfusion and C++

2004-10-05 Thread Simon Smith
Hi, I'm an experienced CF/Java/Php developer creating a framework for API calls in C++ (it needs to be in C++ for historic reasons) Are there any pitfalls using the cfx tags to integrate Coldfusion and C++? Has anyone got any advice on this ? Legal Marketing Services Ltd. LMS House, Lloyd

RE: Dynamic List/Menu

2004-10-05 Thread James Smith
Your form tags are around the submit button but not the select boxes, move the CFFORMtag above the TABLE and the /CFFORM to below the /TABLE and all should be well. -- Jay -Original Message- From: Donna French [mailto:[EMAIL PROTECTED] Sent: 04 October 2004 22:35 To: CF-Talk

Re: img serving images from different domin, good or bad for preformance, any suggestions?

2004-10-05 Thread Andy Jarrett
I'd be interested in where you heard that. As far as i am aware this should not affect CF at all as the img tag will never get processed by CF server. If anything it could stiffle the loading of the original HTML page because it has to do a call across domains and if the other domain is down, or

RE: img serving images from different domin, good or bad for preformance, any suggestions?

2004-10-05 Thread Micha Schopman
ColdFusion Server has nothing to do with this. ColdFusion doesn't know anything about serving images, it only knows about parsing CFM and CFC files, and returning that result to the webserver which upon serves the files to the client. Images are handled by the webserver, unless you specifically

Re: img serving images from different domin, good or bad for preformance, any suggestions?

2004-10-05 Thread Jochem van Dieten
Nurettin Omer Hamzaoglu wrote: I've heard that serving images from a different domain like www.images.com is better for CF Apllication Server performance. For example I've domain called www.myproject.com and I'm calling images img src=""> I'm gonna create a new domain www.myprojectimages.com

Re: img serving images from different domin, good or bad for preformance, any suggestions?

2004-10-05 Thread Thomas Chiverton
On Tuesday 05 Oct 2004 08:26 am, Nurettin Omer Hamzaoglu wrote: Any of you know if this improves the performance of the CF Application Server, any suggestions? It won' no. It may speed up your page load times, however, as you can tune the server serving the static pages to be good at that

ERROR

2004-10-05 Thread Daniel Kessler
It sounds as if something, a complex object, has quotes around it. That designates it as a string and it's saying that the object can't be converted to a string.So, check to see why the object is more complex than you think or remove the quotes. At 4:01 PM -0500 10/4/04, CF-Talk wrote: I am

Re: img serving images from different domin, good or bad for preformance, any suggestions?

2004-10-05 Thread Nurettin Omer Hamzaoglu
Hi, I've heard this performance improvment idea from a CF Developer, he said he read it somewhere on Macromedia site. I've searched for it at Macromedia and Yahoo but can't find anything. I think some of you have read about it, but it seems like there is no article on this story :) Maybe as Micha

RE: ERROR

2004-10-05 Thread Tim Blair
I am testing a site I switch from ACCESS to MySql and I ma getting the following error. ByteArray objects cannot be converted to strings. For some reason the result of some MySQL queries (especially those using MySQL date functions like DATE_ADD() and DATE_FORMAT()) is treated as a binary

Proxy Server Problem

2004-10-05 Thread Patrick Whittingham
Hi All, I have a customer(another company) which is using a proxy server to access our app on our extranet? Since they are coming through a 'single-IP', is there a way to tell the difference between each user coming from into my app. I don't want to use cookies if possible. On a side note, is

Re: Proxy Server Problem

2004-10-05 Thread Thomas Chiverton
On Tuesday 05 Oct 2004 12:51 pm, Patrick Whittingham wrote: 'single-IP', is there a way to tell the difference between each user coming from into my app. I don't want to use cookies Nope, unless you maintain some sort of unique session token in all URLs. This is a pain - use cookies. is

Re: img serving images from different domin, good or bad for preformance, any suggestions?

2004-10-05 Thread Simon Smith
However you could have a web server optimised for images ( no CF server etc ) whose only job IS serving images which MAY improve overall performance from the perception of the end user lots of variables in there, and deployment of an application could become a pain in the arse I'd be

Re: Text driver for MX?

2004-10-05 Thread Shawn Lavelle
We've got some old user-administered text databases.Pipe- and comma-delimited and such.We're upgrading from 4.0 to MX on this box, and I can't figure out how to keep the datasources intact for these users.We'd previously use the Intersolv/FoxPro drivers to talk to flat text files, but

Re: Dreamweaver Templates..?

2004-10-05 Thread Irvin Gomez
[1] Can you share that code for the logic btw? Bob, I'm just getting the current directory's name. Then, if it matches any of the links in the navigation bar, I change the class. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

looping query

2004-10-05 Thread Adam Haskell
Ok so I inherited an application to update and I am trying to clean it up a little bit,or maybe a lot, but I keep running into this: cfloop query=MyQuery cfset revBy=MyQuery.rev_by cfset revDt=MyQuery.rev_dt /cfloop why oh why would some one do this? Is there a good explanation? Since the code

Re: Coldfusion and C++

2004-10-05 Thread Howie Hamlin
The CFX API has its limits but works well.I would suggest heading over to www.intrafoundation.com - they have tons of open source C++ CFX tags that you can play around with. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server

RE: Coldfusion and C++

2004-10-05 Thread Guy Rish
Simon, The CFX API has a number of different limitations that might hamper certain solutions but there are some established work arounds to those limitations. Likewise, as you are certainly aware, your C++ solution may not be the most portable if you must address a cross platform solution.All of

Re: Proxy Server Problem

2004-10-05 Thread Patrick Whittingham
What if the multiple browsers are the same (ie., IE 6) ? Hope that clarifies my statement...:) TIA, Pat Nope, unless you maintain some sort of unique session token in all URLs. This is a pain - use cookies. is there a way to determine if a user opens an app from multiple browsers? They'll

Re: Proxy Server Problem

2004-10-05 Thread Jochem van Dieten
Patrick Whittingham wrote: What if the multiple browsers are the same (ie., IE 6) ? Hope that clarifies my statement...:) If they are the same process (windows opened through Alt-N) they share cookies, if they are different processes (windows opened through a shortcut) they don't share

OT: SQL null bit

2004-10-05 Thread Dave Francis
Help, I'm going mad. (This is a 2 part question) SQL 2k, CF5.0 I have a db with a column defined as bit and I'd like to change null values to 0. But I can't find a way to select just the null values. SELECT COUNT(*) AS ct2 FROM table GROUP BY sw gives me three separate counts. Fine. But

Re: UML Modeling

2004-10-05 Thread Dan O'Keefe
Hi Mike, Following up on this thread. I downloaded your converter and I am going to give it a try. Has any more happened on this project? Did you decide if you were going to move it to SF or not? Many thanks, Dan On Sat, 28 Aug 2004 00:18:12 -0700, Michael Wolfe [EMAIL PROTECTED] wrote: I

RE: looping query

2004-10-05 Thread Cornillon, Matthieu (Consultant)
Adam, I think that it is just bad coding.I have seen a fair amount of confusion on the point of getting values out of a query (e.g., people often seem refer to MyQuery.ColName without looping, unintentionally getting nothing but the first value).Also, I think people often don't know array

Win XP SP2 and Google Toolbar problems?

2004-10-05 Thread Burns, John D
All, I recently was trying to log in to my online banking with Suntrust (https://internetbanking.suntrust.com) and everytime I went to the page, I got a blank page with a _javascript_ error in IE.When I opened the _javascript_ error, the message said Permission Denied and the line it referenced

CFMX and Flash MX sharing variables

2004-10-05 Thread Phill B
I'm in a pinch and need to figure this out as fast as possible. I want to be able to pass variables between Flash MX Pro and CFMX. I need to grab vars from a database and pass it to Flash. Then I need to make sure that after the user is done in Flash the info gets put back into the database. Can

Re: OT: SQL null bit

2004-10-05 Thread Phill B
Can't you use this? WHERE sw IS NULL -- Phillip B. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: OT: SQL null bit

2004-10-05 Thread Anders Green
At 10:06 AM 10/5/2004, you wrote: Second question. When checking directly against a database, date(timestamp) fields can be compared ok. But if I issue the same code against a Q-o-Q, I am getting errors. Is there some trick to Q-o-Q dates? Just a guess: against a DB requires ODBC compliant

RE: CFMX and Flash MX sharing variables

2004-10-05 Thread Burns, John D
Look up Flash Remoting. John Burns -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 9:38 AM To: CF-Talk Subject: CFMX and Flash MX sharing variables I'm in a pinch and need to figure this out as fast as possible. I want to be able to pass

RE: looping query

2004-10-05 Thread Micha Schopman
To dereference the query variables in a nested query loop? :-) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription] [Fast

CFMX 6.1 Bug? WEB-INF directory showing up in my CF site.

2004-10-05 Thread Jamie Jackson
Looks like JRun dumps a WEB-INF directory (full of generated classes) inside www roots that happen to be named www. (Linux box.) Seems that this has been happening since the JRun CFMX updater that we ran on Aug 30. Can anyone shed light on this? Thanks, Jamie [Todays Threads] [This Message]

ColdFusion MX 6.1 Enterprise as JRun J2EE EAR connected to IIS

2004-10-05 Thread Chris Peters
Has anyone ever installed CF under this configuration? I have installed several ColdFusion instances on top of JRun and connected each instance to a respective IIS web site. I then created a custom jvm.config file for one of the instances and set -XX:MaxPermSize=256m. I set up a new Windows

RE: User to upload to their site

2004-10-05 Thread Lawrence Ng
hello there, That's funny. I've just been using fckEditor for the last few weeks and notice that it does work mozilla and netscape.. haven't tried firefox yet but since it's also from the mozilla folks, I suspec it should work. Haven't tried Safari either =) [Todays Threads] [This Message]

Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Don
tia/ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: OT: SQL null bit

2004-10-05 Thread Kwang Suh
IS NULL would be the correct syntax. Help, I'm going mad. (This is a 2 part question) SQL 2k, CF5.0 I have a db with a column defined as bit and I'd like to change null values to 0. But I can't find a way to select just the null values. SELECT COUNT(*) AS ct2 FROM table GROUP BY sw gives

Re: ColdFusion MX 6.1 Enterprise as JRun J2EE EAR connected to IIS

2004-10-05 Thread Lawrence Ng
I'm not sure this helps but may be related with how Windows manages memory I found that Windows doesn't really USE all the RAM we give it very much - that's why it doesn't seem to care.I experienced this with my laptop - it was fine under Windows but when I started using VMWare and had a few

RE: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Tangorre, Michael
From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Subject: Slightly OT: Name top 5 CF developers you know one way or another 1. cf-community 2. cf-community 3. cf-community 4. cf-community 5. cf-community [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: CFMX 6.1 Bug? WEB-INF directory showing up in my CF site.

2004-10-05 Thread Gavin Brook
I have seen the same thing on a windows installation. I ran the latest updater and it now places the cached class files into a web-inf directory in the webroot of my application. Mine root isn't called www either. Very weird. Gav -Original Message- From: Jamie Jackson [mailto:[EMAIL

RE: LDAP inconstancies

2004-10-05 Thread Ian Skinner
What seems to be the problem?I don't know the guts of it, but I have a bit of experience with LDAP and Active Directory. Well, it is not really a Problem since all the groups we need for the web are consistently returned.But for some reason we get a different lists of groups for specific users

RE: OT: SQL null bit

2004-10-05 Thread Dave Francis
That's it! *very red-faced* -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 10:18 AM To: CF-Talk Subject: Re: OT: SQL null bit Can't you use this? WHERE sw IS NULL -- Phillip B. [Todays Threads] [This Message] [Subscription] [Fast

RE: Win XP SP2 and Google Toolbar problems?

2004-10-05 Thread Paul Vernon
Didn't I read somewhere that suntrusts eBanking had been compromised with a code injection flaw because it uses frames in the last few weeks??? That may be part of your problem it its true! http://www.millersmiles.co.uk/identitytheft/082704-SunTrust-Bank-Notificatio

Re: Dreamweaver Templates..?

2004-10-05 Thread Bob Haroche
Irvin Gomez wrote: I'm just getting the current directory's name. Then, if it matches any of the links in the navigation bar, I change the class. Thanks. That's how I've been doing something similar as well with cfm logic; I was just wondering if there was another way. BTW, back to templates

RE: SQL null bit

2004-10-05 Thread Pascal Peters
1. Nulls are not taken into consideration when using inequality in the WHERE ! Use WHER sw IS NULL Pascal -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: 05 October 2004 16:07 To: CF-Talk Subject: OT: SQL null bit Help, I'm going mad. (This is a 2 part

Re: ColdFusion MX 6.1 Enterprise as JRun J2EE EAR connected to IIS

2004-10-05 Thread Douglas Knudsen
IIRC, -XX:MaxPermSize=256m sets the max size of the perm generation. Wouldn't -Xmx640m set the max size? http://www.petefreitag.comand http://www.bpurcell.org/blog has some good stuffs on this.There is a macromedia tech note on performance too...I don't have that handy though. Doug On Tue, 05

Naïve Dual Processor Question

2004-10-05 Thread Claremont, Timothy
Our test server is a lowly Compaq ProLiant 1600 single processor 450 MHZ machine with 512 mb of RAM, which will soon be upgraded to it's max of 1 GB of RAM. The mobo is upgradable to dual processors, and the processors are pretty cheap for such a vintage machine. What kind of performance benefit

file name with no extensions

2004-10-05 Thread Daniel Farmer
We have a request to create an opening page like so... Welcome with no extension. for example www.somesite.com/Welcome How is this done?.. something I've never tried. We need it setup so that when a client types in the above address they are taken to the right page. Thanks mates. [Todays

RE: Dreamweaver Templates..?

2004-10-05 Thread James Holmes
I developed a full menu system that works via an XML config file. IT uses tabs, menus and submenus and allows the nav structure across an entire site to be changed in one file. It works by matching the URL to a particular node in the XML file and dynamically generates the menu around that.

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Don
OK, Michael.Don From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Subject: Slightly OT: Name top 5 CF developers you know one way or another 1. cf-community 2. cf-community 3. cf-community 4. cf-community 5. cf-community [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

RE: Naïve Dual Processor Question

2004-10-05 Thread James Holmes
It means you can raise (possibly double) the number of simultaneous requests processed by CF, a big help when many visitors are hitting your sites. Whether it helps with many queries depends on whether the DB is on the CF server box or another box. -Original Message- From: Claremont,

Headache with # in table colors

2004-10-05 Thread Donna French
Is there an easy way to go about handling table rows/columns colors as I am doing my page design/layout? -- Donna French [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Naïve Dual Processor Question

2004-10-05 Thread Lawrence Ng
depending on your budget, timeline and importance of the app and its intended usersr, I'd forget about that project... I know someone who had dual 800 running with 1gb of ram and only with win2K and performance was slow. Its running cfmx. Better to buy dual 2.6 or 2.8 at this time. if u can

Re: file name with no extensions

2004-10-05 Thread Lawrence Ng
huh? why not just create a directory called Welcome and in it have an index page the redirects them to wherever you want... unless I misunderstood your query. [EMAIL PROTECTED] 10/5/2004 8:52:58 AM We have a request to create an opening page like so... Welcome with no extension. for example

Re: file name with no extensions

2004-10-05 Thread Howie Hamlin
Make Welcome a subdirectory of the main site folder and put a template in there that is a default template in your web site. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server

Re: Headache with # in table colors

2004-10-05 Thread Patricia Lee
Double up on the pound signs ##fff000 -or- Leave off the pound signs all together fff000 Is there an easy way to go about handling table rows/columns colors as I am doing my page design/layout? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: SQL null bit

2004-10-05 Thread Don
There's a native SQL command, IsNumeric, at least, MS SQL Server has it. 1. Nulls are not taken into consideration when using inequality in the WHERE ! Use WHER sw IS NULL Pascal null Q-o-Q, I am getting errors. Is there some trick to Q-o-Q dates? Thanks in advance to any and all

Re: file name with no extensions

2004-10-05 Thread Cutter (CF related)
http://www.somesite.com/Welcome/index.cfm will appear if only http://www.somesite.com/Welcome is typed in Daniel Farmer wrote: We have a request to create an opening page like so... Welcome with no extension. for example www.somesite.com/Welcome How is this done?.. something I've

Re: Headache with # in table colors

2004-10-05 Thread Andy Allan
Use CSS :) Andy On Tue, 5 Oct 2004 10:55:22 -0500, Donna French [EMAIL PROTECTED] wrote: Is there an easy way to go about handling table rows/columns colors as I am doing my page design/layout? -- Donna French [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription]

Re: Naïve Dual Processor Question

2004-10-05 Thread Damien McKenna
Claremont, Timothy wrote: The mobo is upgradable to dual processors, and the processors are pretty cheap for such a vintage machine. What kind of performance benefit can I expect from this upgrade in a typical intranet CF project with LOTS of queries? You will gain some CPU improvements but

RE: Headache with # in table colors

2004-10-05 Thread Tangorre, Michael
From: Donna French [mailto:[EMAIL PROTECTED] Is there an easy way to go about handling table rows/columns colors as I am doing my page design/layout? Double them up:color=##FF when inside a cfoutput. I go with using external stylesheets to avoid all that double pound here, single pound

Re: CFMX 6.1 Bug? WEB-INF directory showing up in my CF site.

2004-10-05 Thread Greg Stewart
Same problem at our end on Solaris. It looks like the updater has to re-compile all CFCs but somehow gets the location wrong and dumps them into the web root. We backed them up (just in case) and deleted them and they haven't come back since. On Tue, 5 Oct 2004 16:16:24 +0100, Gavin Brook [EMAIL

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Mark Drew
Are CF Developers the new idols then? I better start doing my situps to get my 6 pack back for the photoshoots :D MD On Tue, 05 Oct 2004 11:55:55 -0400, Don Chunshen Li [EMAIL PROTECTED] wrote: OK, Michael.Don From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Subject: Slightly OT: Name

RE: Headache with # in table colors

2004-10-05 Thread Cornillon, Matthieu (Consultant)
Is there an easy way to go about handling table rows/columns colors as I am doing my page design/layout? Donna, I'm not sure if this is what you're going for, but here's a stab: between CFOUTPUT tags, use ## instead of #. HTH, Matthieu [Todays Threads] [This Message] [Subscription]

Re: Headache with # in table colors

2004-10-05 Thread Greg Stewart
I'd say Stylesheets all the way G On Tue, 5 Oct 2004 10:55:22 -0500, Donna French [EMAIL PROTECTED] wrote: Is there an easy way to go about handling table rows/columns colors as I am doing my page design/layout? -- Donna French [EMAIL PROTECTED] [Todays Threads] [This Message]

Re: Naïve Dual Processor Question

2004-10-05 Thread Kwang Suh
You'll have to run some tests to find out for sure, but it won't be 100% faster, due to processor synchronization overhead. One thing to watch out for, your second processor may not be fully compatible with your current one, so you might have to go through a couple to find one that works.Intel

Re: Naïve Dual Processor Question

2004-10-05 Thread Damien McKenna
Lawrence Ng wrote: if u can invest in xeon processors.. they are worth the money imho. =) Due to the system architecture, you are better off with an Opertorn system for multi-processor work, particularly for I/O (which really sucks on Xeons in comparison).Take a look at AnandTech for their

form variables without forms?

2004-10-05 Thread Cornillon, Matthieu (Consultant)
Hello, all. I have to submit some values to a form action page.I have no choice on the far end: it is expecting POSTed form variables.On my end, though, this is kind of a pain, because I need to do an intermediate, non-user step before the submission.So my situation is: UserForm - page on which

Re: Naïve Dual Processor Question

2004-10-05 Thread Lawrence Ng
i agree... opterons are good too but we decided on xeons because we simply found them to be pretty stable since we started using them when they first came out and stuck with them that's all.. heck even the g5 I have (for my creative side =) is good too but man are they LOL [EMAIL

Re: form variables without forms?

2004-10-05 Thread Lawrence Ng
have you tried cfhttp? [EMAIL PROTECTED] 10/5/2004 9:12:44 AM Hello, all. I have to submit some values to a form action page.I have no choice on the far end: it is expecting POSTed form variables.On my end, though, this is kind of a pain, because I need to do an intermediate, non-user step

RE: CFMX 6.1 Bug? WEB-INF directory showing up in my CF site.

2004-10-05 Thread Gavin Brook
My setup seems to have permanently changed. Do you know where the configuration is to cause the CFC's to generate into the previous folder? -Original Message- From: Greg Stewart [mailto:[EMAIL PROTECTED] Sent: 05 October 2004 17:01 To: CF-Talk Subject: Re: CFMX 6.1 Bug? WEB-INF directory

Re: Interacting with GoldMine data with ColdFusion

2004-10-05 Thread Scott Brady
I can tell you what I've been told about our setup. The database is offficially SQL Server, but if you look at the actual server, they're really just dBase data files that SQL Server is pulling from.(The person in my company who chose GoldMine says the company says SQL Server for marketing

versioning of db records

2004-10-05 Thread Hugo Ahlenius
Hi all, I have a little rdbms question: Let's say I am creating a simple CMS and I want to be able to keep the history of changes (versioning). A typical record in the main content table would have things like id, title, body text and timestamp, the latter would be when it was saved, and

RE: Naïve Dual Processor Question

2004-10-05 Thread Gavin Brook
One thing to bear in mind is that upgrading to dual processors may affect software licences. For instance, SQL Server 2000 can be licensed on a per processor basis. It might be worth checking licences for software on the box prior to adding a second processor. With regards to that, if licences

RE: Win XP SP2 and Google Toolbar problems?

2004-10-05 Thread Burns, John D
Paul, I don't think that's the problem.After submitting my problem to Suntrust I got the email about the Google toolbar and when I unchecked the Auto Fill option in the Google toolbar, everything works fine. John -Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent:

RE: versioning of db records

2004-10-05 Thread James Holmes
I uise a status flag column in the DB, so that the current version has the status Current and all the previous versions have the status Archive. This makes selecting the current version so much easier and avoids extra tables etc. -Original Message- From: Hugo Ahlenius [mailto:[EMAIL

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread S . Isaac Dealey
tia/ people we know personally or people who are popular? popular hal helms ray camden rob brooks bilson simon horwith sean corfield (could be on either list) personally mike brunt matthew walker matthew woodward ben doom cassius seeley jeff houser (could be on either list) ... lots more of

RE: Win XP SP2 and Google Toolbar problems?

2004-10-05 Thread Paul Vernon
I hope so... I found the actual link discussing the latest suntrust compromise http://news.netcraft.com/ Paul [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CFMX 6.1 Bug? WEB-INF directory showing up in my CF site.

2004-10-05 Thread Jamie Jackson
Well, I know one way that you won't get it back. It's to uncheck Save Class Files* in the CF Admin. However, I'd like to know how to *really* fix this (have the classes be saved in the normal spot under cfusion's WEB-INF directory, not in my Web root(s)). I posted a bug to MM, but I don't know

Client Variable Question in CF MX

2004-10-05 Thread Jacob
I am in the process of migrating from CF5 to CF MX 6.1. === BEGIN APPLICATION.CFM === I have an application.cfm for one of my websites which is as follows: cfapplication name=#server_name# clientmanagement=YES applicationtimeout=#createtimespan(0,0,30,0)# setdomaincookies=Yes cfparam

Re: Client Variable Question in CF MX

2004-10-05 Thread Jacob
Nevermind.Fixed it. The variable #server_name# was the IP address of the server. I gave the cfapplication an actual name. Jacob At 09:45 AM 10/5/2004, you wrote: I am in the process of migrating from CF5 to CF MX 6.1. === BEGIN APPLICATION.CFM === I have an application.cfm for one of my

RE: Dreamweaver Templates..?

2004-10-05 Thread Dave Watts
Dreamweaver templates are not something to be recommended, if anything for the simple reason they don't offer anything that can't be done without them and tie the current (and future!) developers to Dreamweaver. That's a biggie, right there. I wouldn't recommend them for CF development,

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Don
Does one see himself as a pig when he looks into a mirror? Are CF Developers the new idols then? I better start doing my situps to get my 6 pack back for the photoshoots :D MD On Tue, 05 Oct 2004 11:55:55 -0400, Don Chunshen Li [EMAIL PROTECTED] wrote: [Todays Threads] [This Message]

Determining Form Origin

2004-10-05 Thread Tangorre, Michael
What are some of the methods people use to ensure that a form is not being submitted outside the site in question. I know you can check the CGI.HTTP_REFERER but not all servers/proxy servers set this... Ideas? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Don
It's a good start, thank you. tia/ people we know personally or people who are popular? popular hal helms ray camden rob brooks bilson simon horwith sean corfield (could be on either list) personally mike brunt matthew walker matthew woodward ben doom cassius seeley jeff houser (could be on

RE: Determining Form Origin

2004-10-05 Thread Paul Vernon
set a session var on each page that sets specifically the page you are on. when the form is submitted, check against that session var... Paul [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Dick Applebaum
Does wearing a T-shirt with Ben Forta's picture count as a vote? Dick ... in the event an erection lasts more than 4 hours, you should , at least, send a thank you note. --Erectile Disfunction TV commercial [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: User to upload to their site

2004-10-05 Thread Matt Robertson
lawrence wrote: That's funny. I've just been using fckEditor for the last few weeks and notice that it does work mozilla and netscape.. haven't tried firefox You must be using v2.0, which is only at beta 2.It doesn't have some necessary stuff like image managers that work in CF.Necessary for

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Judith Dinowitz
I'm doing top 10, not top 5: Top 10 CF Developers: Raymond Camden Michael Dinowitz Hal Helms Rob Brooks-Bilson Dave Watts Simon Horwith Charlie Arehart Ben Forta Jochem van Dieten Sean Corfield There are just too many amazing CF developers for me to stop at 5! Judith It's a good start, thank

Re: file name with no extensions

2004-10-05 Thread Tony Weeg
daniel is that you mean, or do you actually want a file with no extension called welcome, to be the file that is parsed and brought back to the browser by the cfmx server? tw On Tue, 05 Oct 2004 12:03:26 -0400, Cutter (CF related) [EMAIL PROTECTED] wrote:

Oracle PL/SQL connection through ColdFusion

2004-10-05 Thread Wach, Samson
The organization where I work is currently using ColdFusion 5 Enterprise on the Windows 2000 Advanced Server platform. We are accessing an Oracle database using an ODBC driver from Data Direct. When I attempt to add PL/SQL commands (ex. BEGIN) I receive a message indicating that the SQL expects

Re: User to upload to their site

2004-10-05 Thread Lawrence Ng
yes that is correct... i personally prefer mozilla myself.. [EMAIL PROTECTED] 10/5/2004 10:30:00 AM lawrence wrote: That's funny. I've just been using fckEditor for the last few weeks and notice that it does work mozilla and netscape.. haven't tried firefox You must be using v2.0, which is

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Howie Hamlin
Hey - equal time for the bottom! - Original Message - From: Judith Dinowitz To: CF-Talk Sent: Tuesday, October 05, 2004 1:34 PM Subject: Re: Slightly OT: Name top 5 CF developers you know one way or another I'm doing top 10, not top 5: Top 10 CF Developers: Raymond Camden Michael

RE: Oracle PL/SQL connection through ColdFusion

2004-10-05 Thread Yexley Robert D Contr AFRL/PROE
Put the PL/SQL in the database in the form of a function, procedure or package, and then use cfstoredproc ... / to run it. // YEX // _ From: Wach, Samson [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 1:35 PM To: CF-Talk Subject: Oracle PL/SQL connection

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Aaron Rouse
Philip Arnold (Mr Fill) Philip Arnold (Mr Fill) Philip Arnold (Mr Fill) Philip Arnold (Mr Fill) Philip Arnold (Mr Fill) Philip Arnold (Mr Fill) Philip Arnold (Mr Fill) Philip Arnold (Mr Fill) Philip Arnold (Mr Fill) Philip Arnold (Mr Fill) On Tue, 05 Oct 2004 13:34:58 -0400, Judith Dinowitz

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Matt Woodward
I'll have to list several as well, in no particular order: 1. Sean Corfield 2. Hal Helms 3. Ray Camden 4. Nate Weiss 5. Isaac Dealey 6. Ben Forta 7. Rob Brooks-Bilson 8. Arman Danesh I'm sure I'll think of others right after I post this ... [Todays Threads] [This Message] [Subscription]

RE: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Eric Dawson
How about the guy that brought us Site Objects. The guy that created Fuse Objects (fusiontrio). Dave Watts - does he actually code? is that a requirement? and of course Ray Camden and Hal Helms The charter BlueDragon crew should probably get a mention as well. _ From: Dick Applebaum

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Matt Woodward
I knew I'd forget someone: 9. Simon Horwith [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Dreamweaver Templates..?

2004-10-05 Thread Irvin Gomez
They don't tie you to Dreamweaver - you're free to use whatever editor you like if you're willing to forego the benefits of templates in the future. Your statement can be re-worded like this: The moment you sever your ties to Dreamweaver, the benefits of templates are not available to you

RE: ColdFusion MX 6.1 Enterprise as JRun J2EE EAR connected to IIS

2004-10-05 Thread Peters, Chris
New Development: I tried running the memory usage stats script Pete Freitag describes here: http://www.petefreitag.com/item/115.cfm And it displays this info: Free Allocated Memory: 250mb Total Memory Allocated: 253mb Max Memory Available to JVM: 253mb % of Free Allocated Memory: 99% % of

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Don
OK. Just want to thank those contribute to the answer of the question. I'll post another related thread as a follow-up. tia/ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-05 Thread Tony Weeg
you kinda have to remove the cf team from any list, as they should be defaults in the 0.1 - 0.99 category of good/popular, whatever. thats a given. tw On Tue, 05 Oct 2004 14:18:12 -0400, Matt Woodward [EMAIL PROTECTED] wrote: I'll have to list several as well, in no particular order: 1. Sean

  1   2   >