RE: date field

2001-07-25 Thread Stuart Miller
You want to use your CF Date functions here... cfif IsDate(DateField) cfset TheDate = DateFormat(DateField [, mask ]) cfelse cfset TheDate = DateField /cfif cfoutput #DateField# /cfoutput Stuart Miller Rocom New Media t: 01937 487492 e: [EMAIL PROTECTED]

Test Ignore

2001-07-25 Thread Jerry Staple
Please Ignore Just Testing Jerry Staple Web Applications Developer BizNet Solutions 133 - 137 Lisburn Rd Belfast BT9 7AG Tel: +44 (0)28 9022 3224 Fax: +44 (0)28 9022 3223 www.biznet-solutions.com ~~ Structure your ColdFusion code with

OT: SQL Server 7, Windows 95 and Service Manager

2001-07-25 Thread Aidan Whitehall
In Windows 95, how do you change the account the Service Manager uses to try and start SQL Server on boot up, bearing in mind there is no Services option (as is the case with NT)? Thanks -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental +44 (0)1695

RE: SQL Server 7, Windows 95 and Service Manager

2001-07-25 Thread Neil Clark
I would assume it is a switch within the shortcut? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Fusebox and Search Engines/Statistics

2001-07-25 Thread Thomas Chiverton
Anyhow, I'm intrested too if a cfinclude template=/comp/welcome.html would count as a hit on welcome.html with IIS stastics? Probably not - the include will be done by CF before the output reaches the client - in no way will another request to the HTTP server occur.

RE: new window

2001-07-25 Thread Thomas Chiverton
When user click at one of the value on the list.The value should pass back the data to window 1.But diffrent file. Something like onClick=window.opener.location.href='thisthattheother.cfm?rar=wibble' do you ? ~~ Structure your ColdFusion code

RE: CF6.0 phase out Jrun?

2001-07-25 Thread Thomas Chiverton
Well, I heard that CF6 will basicly parse CFML into JSP, and then server them out via a servlet server, so its more like CF is being discontinued in favour of Jrun :-) ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Out of US install support (was RE: CM: Macromedia Cold Fusion Com munity Manager)

2001-07-25 Thread Thomas Chiverton
will take that and see what the procedure is for someone out of the country. If you do find a procedure, could you share it ? If its half as helpful as the bods who run the devx, it will be very useful ! ~~ Structure your ColdFusion code with

RE: Macromedia Cold Fusion Community Manager

2001-07-25 Thread Philip Arnold - ASP
Just as a matter of point, the installation lies - it says it only needs a small amount of space to install into, but it actually needs roughly 80-100Mb The full install or the scratch space to unpack the installer files. I have seen the later a lot all over the industry. Only need 32k

RE: SQL Query

2001-07-25 Thread Stuart Miller
Can you post the SQL statments from your query, please? -Original Message- From: David Clay [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 9:50 PM To: CF-Talk Subject: SQL Query I am looking for help on a way to query a table fast and efficiently. I am currently using a ODBC

Re: GENEALOGY SEARCH CODING CONTEST

2001-07-25 Thread Dave Hannum
LOL - I was just tuggin' your chain. Yes, I am Appalachian (and proud of it - a regular 'High Tech Red Neck') - but you were closer to the truth. That's why I have my day job and do projects on the site too! But the quality of life IS GOOD! From the time I leave my house, it's about 25 miles

RE: SQL Server 7, Windows 95 and Service Manager

2001-07-25 Thread Dave Watts
In Windows 95, how do you change the account the Service Manager uses to try and start SQL Server on boot up, bearing in mind there is no Services option (as is the case with NT)? There are no accounts on a Windows 95 machine. The use of logins is solely for accessing network resources.

RE: Macromedia Cold Fusion Community Manager

2001-07-25 Thread Will Swain
Just as a point, I tried to upgrade a server on the weekend, there was around 50-60Mb free on the C drive - Surely you need more than that anyway, for swap/temp files etc? ~~ Structure your ColdFusion code with Fusebox. Get the official book

NT Challange Response and CFFILE

2001-07-25 Thread Declan Maher
Hi, I am currently using CFFile to write a .pdf file inside a directory where I have full access permissions. This was working fine on the server until NT Challange Response was turned on. Now it fails to write the pdf file and a message comes up 'Access Denied' when I try to open the files in

cfmail

2001-07-25 Thread Tim Bahlke
We have a serious problem with regards to sending email through cf. Every once and again we will get a call from someone informing us that they have received hundreds of copies of the same email. Upon investigation, we find entries stuck in the spool.ini file, emails that have been sent but

RE: Backing up large database

2001-07-25 Thread Justin Greene
A few thoughts 1. .zip does have a file size and file count limit. Sound like you are hitting the former. I understand the RAR does not have this limitation, but have not worked with it. 2. Perhaps you can download the file using a protocol that compresses dynamically (like zmodem) rather

RE: Macromedia Cold Fusion Community Manager

2001-07-25 Thread Philip Arnold - ASP
Just as a point, I tried to upgrade a server on the weekend, there was around 50-60Mb free on the C drive - Surely you need more than that anyway, for swap/temp files etc? I didn't realise it was that low until half-way through the install - by that time it was too late Surely an

RE: SQL Query

2001-07-25 Thread Philip Arnold - ASP
I am looking for help on a way to query a table fast and efficiently. I am currently using a ODBC connection to SQL2000 Server with a simple CFQUERY tag doing the query. For a table with 18K records, it takes 14 seconds. I know this is not doing something correct!! Any help designing

RE: SQL Query

2001-07-25 Thread Thomas Chiverton
Index the table to hell and back Indexing too many fields, or the wrong combinations, can actualy hurt performance. It's best to put a few benchmarks in place, and add a few indices at a time. Never use SELECT * Unless in your database 'select *' is quicker than 'select field,wibble,rar'.

RE: SQL Query

2001-07-25 Thread Andy Ewings
Index the table to hell and back Indexing too many fields, or the wrong combinations, can actualy hurt performance. It's best to put a few benchmarks in place, and add a few indices at a time. True.indexes improve speed of selects but slow down inserts,updates and deletes as the whole

Re: Macromedia Cold Fusion Community Manager

2001-07-25 Thread Aaron Rouse
Besides that, 50-60mb free on a C drive is kind of a bad thing anyways. Sure you can redirect swap files to another drive, but it is not leaving much even with that. I have always been a firm believer in programs being installed to another drive(partition) when using NT, since NT usually has a

RE: SQL Query

2001-07-25 Thread Neil Clark
Query of Query in CF5 is always a good one too. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: SQL Query

2001-07-25 Thread Thomas Chiverton
Index the table to hell and back Indexing too many fields, or the wrong combinations, can actualy hurt performance. It's best to put a few benchmarks in place, and add a few indices at a time. True.indexes improve speed of selects Mostly. Theres no point indexing

Re: Backing up large database

2001-07-25 Thread Bud
On 7/24/01, Al Musella, DPM penned: SNIP Worked fine until today. It seems the data file got too large to zip. Does CF_ZIP have a size limit? The file is 2.1 gigs unzipped (200 megs zipped - goes very fast with my cable modem:). I have over 20 gigs of free hard disk space on the server. Is

RE: Using function inside Select statement

2001-07-25 Thread Jason Blum
Russel!!! That's it man! Thank you SO much. I knew it had to be this simple. Literally spent the last two days combing through books on SQL, CF, Allaire and Forta's sites - ugh! This list is just the best resource out there! Thank you again! -- From: Russel Madere

Re: SQL Query

2001-07-25 Thread Wjreichard
No ... having too many indexes can actually lead to decreased selection speed. This is because SQL generates an execution plan in which it examines the available indexes and picks the one(s) it thinks is best. The way to maximize selection speed for a single query is to create and test

CFFile

2001-07-25 Thread Graham Pearson
List: Is their anyway to see when a file has been created in a .cfm page. I am using CFHTTP to acquire a web page and saving it on my local drive. I want to test the date of the file and if the date of the saved file is greater than 7 days acquire a new copy and save it again on my drive. Any

Re: SQL Query

2001-07-25 Thread G
- Original Message - From: Philip Arnold - ASP [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 6:55 AM Subject: RE: SQL Query I am looking for help on a way to query a table fast and efficiently. I am currently using a ODBC connection to SQL2000

RE: CFFile

2001-07-25 Thread Duane Boudreau
Use CFDirectory to check for the file date. Duane -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 8:58 AM To: CF-Talk Subject: CFFile List: Is their anyway to see when a file has been created in a .cfm page. I am using CFHTTP

Re: SQL Query

2001-07-25 Thread David Fafard
From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 8:36 AM Subject: Re: SQL Query snip Also, SQL provides the Index Tuning Wizard which allows you to select and create an optimal set of indexes. Cheers, Bill /snip I agree.. typically I save all my web

RE: CFFile

2001-07-25 Thread Ben Forta
Use CFDIRECTORY. Or, if you are using CF5 on Windows, go to www.cflib.org, there is a File I/O library with functions that return that info. --- Ben -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 8:58 AM To: CF-Talk Subject: CFFile

RE: CFFile

2001-07-25 Thread Raymond Camden
On Windows, you can use a COM object with UDF as another option. http://www.cflib.org/udf.cfm?id=126 === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email : [EMAIL PROTECTED] ICQ UIN : 3679482 My

RE: CFFile

2001-07-25 Thread Thomas Chiverton
I want to test the date of the file and if the date of the saved file is greater than 7 days acquire a new copy and save it again on my drive. cfdirectory should solve the file creation date problem. ~~ Structure your ColdFusion code with

Recall: CFFile

2001-07-25 Thread Thomas Chiverton
Thomas Chiverton would like to recall the message, CFFile. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Re: cfexecute through multiple dirs

2001-07-25 Thread W Luke
Fantastic - just what I needed. Cheers. -- Will new media discussion for Berkshire -=- http://bnm.lukrative.com local classifieds -=- http://www.localbounty.com e: [EMAIL PROTECTED] icq: 31099745 Try this File Recurser. I think it is exactly what you need.

RE: SQL Query

2001-07-25 Thread Andy Ewings
Yep I realise thisjust trying to make the point as to when and why you'd use indexesI also think you should limit the amount of fields use in your index. Don't just put them in their for the hell of it. If you include fileds in your where clause that are in an index then this will

CF 4.5.2, Win2K SP1, and Oracle 8i

2001-07-25 Thread Debbie McDaniel
For the past couple of days the following has happened on our production server: Unknown connection error for the data source We are using the native driver to connect to the Oracle database. We have been using the same connection for over a year without this error. Once the error

RE: Using function inside Select statement

2001-07-25 Thread Russel Madere
If you run MS SQL server, install the client tools and the Books Online on your machine. Those 2 components have saved my tail during deadline situations more often that I care to count. They are where I turn to on almost every SQL problem I have. They have also kept our DBA sane because he

Re: CF6.0 phase out Jrun?

2001-07-25 Thread Matt Brown
Mak Wing Lok wrote: I read this from a book review at amazon.com, is it true? JRUN is being phased out because ColdFusion 6.0 is being written in Java. You'll have the power of ColdFusion and Java in the same application server As i'm planning to get myself a copy of JRun, in this case

RE: Backing up large database

2001-07-25 Thread Dave Watts
Man, what do you have in that database? LOL I've got databases on my SQL Server that aren't HUGE, but they do have some rather large tables (30 fields or so) with several thousand records in them and they're only 11-12 MB. Do you have the database options set to Auto-Shrink? In

RE: SQL Query

2001-07-25 Thread Thomas Chiverton
Yep I realise thisjust trying to make the point as to when and why you'd use indexes Well, you should always start any performance tuning by deciding on some metrics. ~~ Structure your ColdFusion code with Fusebox. Get the official

RE: cfmail error with attachment

2001-07-25 Thread Dave Watts
any other alternative solution where i can do without uploading file? Not really. If you want to send mail with attachments from the server, the attached files will have to be on the server, at least temporarily. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496

Re: Macromedia Cold Fusion Community Manager

2001-07-25 Thread Matt Brown
Philip Arnold - ASP wrote: I had to clear off around 100Mb to install a 30Mb program - isn't that just a little excessive? I sure think it is. I will make sure this comes up in the meeting. Realistically it won't get fixed till the next release even if everyone agrees because it needs a

RE: CF6.0 phase out Jrun?

2001-07-25 Thread Ben Forta
Well said, Matt. :-) Oh, and don't forget Generator, that is built on JRun too. -Original Message- From: Matt Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 9:05 AM To: CF-Talk Subject: Re: CF6.0 phase out Jrun? Mak Wing Lok wrote: I read this from a book review

Re: cfmail error with attachment

2001-07-25 Thread tom muck
Upload the file send the email delete the file tom Mak Wing Lok [EMAIL PROTECTED] wrote in message 020e01c114b4$1bbfada0$06646464@makwinglok">news:020e01c114b4$1bbfada0$06646464@makwinglok... any other alternative solution where i can do without uploading file?

Sitespring

2001-07-25 Thread Neil Clark
Anyone have any idea of how much SiteSpring is? and is there any plans to integrate it with CF? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Re: javascript vars to cf vars?

2001-07-25 Thread corrigan
I've actually found a unique way to do it with our implementation. I just started here and the current implementation is very messy (There is not a comment in sight. not even a bad one!). What was being attempted was to create a form full of hidden input types and then setting the values of

Delete session when browser is closed.

2001-07-25 Thread Bosky, Dave
How can I delete all session variables(user/pass) when a user closes their browser? I have a logout option that works but if they don't use it, they are still logged into the system. Thanks, Dave ~~ Structure your ColdFusion code with

RE: Delete session when browser is closed.

2001-07-25 Thread Raymond Camden
Rewrite the cookies so that they are deleted when the browser closes. Here is one article describing how to do it: http://www.allaire.com/Handlers/index.cfm?ID=21079Method=Full and sample code... !--### With Session Management Enabled ###-- CFAPPLICATION NAME=myCFApp SESSIONMANAGEMENT=YES

RE: Delete session when browser is closed.

2001-07-25 Thread Noel Flatters
If you go to Hal Helms' site (http://www.halhelms.com) I think he has a pretty good tutorial about this exact problem Cheers | Noel. How can I delete all session variables(user/pass) when a user closes their browser? I have a logout option that works but if they don't use it, they are

RE: Delete session when browser is closed.

2001-07-25 Thread Thomas Chiverton
Use the body onUnload method to call the logout page, or just add the following to your Application.cfm -- cfcookie name=cfid value=#session.cfid# cfcookie name=cftoken value=#session.cftoken# -- How can I delete all session variables(user/pass) when a user closes their browser? I have a

Re: OT: SQL Server 7, Windows 95 and Service Manager

2001-07-25 Thread Stephen Hait
On Win98, I have a shortcut in the startup folder: drive:\MSSQL7\Binn\scm.exe -Action 1 -Silent 1 Stephen In Windows 95, how do you change the account the Service Manager uses to try and start SQL Server on boot up, bearing in mind there is no Services option (as is the case with NT)?

Big, Very BIG

2001-07-25 Thread Michael Lugassy
I'm looking for a big search engine solution. Not a simple verity collection, something very big (10-20 million rows of text). I've looked into SQL full text search but it has it disadvantages. can someone help in reffering me to some solution? maybe outsource or a 3rd party which is

RE: Macromedia Cold Fusion Community Manager

2001-07-25 Thread Will Swain
I completely agree with you Philip. I would expect that the install program would be 'smart' enough to tell you there isn't enough space. All I meant was that I wouldn't like to have that little space left on my c drive anyway, whether or not I needed it for an install. Will -Original

RE: Backing up large database

2001-07-25 Thread Bud
On 7/25/01, Dave Watts penned: Man, what do you have in that database? LOL I've got databases on my SQL Server that aren't HUGE, but they do have some rather large tables (30 fields or so) with several thousand records in them and they're only 11-12 MB. Do you have the database options

SQL Server memory use grows

2001-07-25 Thread John Fix 3rd
I finally moved some of our Cold Fusion Access databases to SQL Server 7 on a separate server. Things are running well, but I notice that over several days SQL uses more and more memory. It starts at about 40mb but is now running at about 90mb. When I restarted the service a few days ago, it

RE: SQL Query

2001-07-25 Thread Bud
On 7/25/01, Philip Arnold - ASP penned: Try to only search on Indexed fields Never use SELECT * I usually get quicker queries when using SELECT * if I need to get the values of all or most of the fields. Of course it's the other way around of you've got 20 columns in your table and only need

RE: Delete session when browser is closed.

2001-07-25 Thread Russel Madere
You can use the onUnload() event handler in JavaScript to call a page that kills the session variables. But that will only work if the user has JavaScript enabled. -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 9:11 AM To: CF-Talk

RE: SQL Query

2001-07-25 Thread Andy Ewings
yeh but what happens if the table grows with time? -- Andrew Ewings Project Manager Thoughtbubble Ltd http://www.thoughtbubble.net -- United Kingdom

RE: SQL Server memory use grows

2001-07-25 Thread Dylan Bromby
140MB? that sounds like SQL, not a memory leak. you can restrict the amount of memory (or range thereof) SQL uses. how much RAM is on your SQL server? it really shouldn't be less than 512MB and ideally, 1GB+. -Original Message- From: John Fix 3rd [mailto:[EMAIL PROTECTED]] Sent:

RE: Delete session when browser is closed.

2001-07-25 Thread Bosky, Dave
Thanks.. Actually I has that code in my application file but for some reason I had it wrapped in an NOT IsDefined function. Dave -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 10:18 AM To: CF-Talk Subject: RE: Delete session when

Re: Fusebox and Search Engines/Statistics

2001-07-25 Thread Frank Mamone
Basically, we would like the site to work with our existing commercial stats package and not interested in writing a new one as that would be quite intensive considering all the repors required. - Original Message - From: Michael Lugassy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

SmServAz.exe...cf server?

2001-07-25 Thread corrigan
Hello, We just had our server upgraded to CFServer 5.0 yesterday. This morning, when we connected via pcanywhere, we get the system is busy or waiting for a response message and the app that it's referring to is SmServAz.exe. Is that an exe file in CF server 5.0? Our servers are hosted

RE: jsp - cfhttp equivalent

2001-07-25 Thread Scott Mulholland
Thanks for all the replies, I am at least pointed in the right direction now. -Original Message- From: Joel Parramore [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 5:32 PM To: CF-Talk Subject: RE: jsp - cfhttp equivalent Scott: You can do an HTTP GET or POST using Java

Re: [Big, Very BIG]

2001-07-25 Thread Alex
http://www.google.com/services/ Michael Lugassy [EMAIL PROTECTED] wrote: I'm looking for a big search engine solution. Not a simple verity collection, something very big (10-20 million rows of text). I've looked into SQL full text search but it has it disadvantages. can someone help in

RE: query headache

2001-07-25 Thread Jones, Becky
hey kevan, that didnt seem to work either. i think it may have to do w/the listing_id not the appid. but i am not sure how to get it to loop thru a list of listing ids. i tried this...but obviously, it adds the extra AND at the end...therefore making my statement invalid. WHERE cfloop

CF Certification

2001-07-25 Thread Tangorre, Mike
Hi everyone. I am a college senior about to graduate with a degree in computer Science. I was wondering how valuable having CF certification is. I intend to get it very soon, and was curious to know if anyone has it and if it has helped them in the job market at all. Thanks, Mike

RE: Delete session when browser is closed.

2001-07-25 Thread Kevin Mansel
check this one out. http://www.teratech.com/coldcuts/cutdetail.cfm?cutid=229 ~ Kevin Mansel Senior Web Developer Fox Communications [EMAIL PROTECTED] DL : 425-649-1321 C : 425-346-7221 -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: CFX and the caller scope?

2001-07-25 Thread Sutton Yamanashi
I am just getting into CFX tags myself, but if they deal with scopes the same way as cf_ custom tags you may want to try using the Request scope for variables. From what I understand, the request scope is accessable be custom tags, even if the are set in Application.cfm. (Someone please

Re: SmServAz.exe...cf server?

2001-07-25 Thread Don Vawter
Doesn't exist on my server - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 8:54 AM Subject: SmServAz.exe...cf server? Hello, We just had our server upgraded to CFServer 5.0 yesterday. This morning, when we connected via

Automatically unzipping uploaded files?

2001-07-25 Thread Bosky, Dave
If I upload a zipped file is there a way I can automatically unzip that file into the same directory? I have a user that uploads a lot of images and its easier to send a single file. Currently I manually unzip the file. Any suggestions? Thanks, Dave

RE: CFFile

2001-07-25 Thread Graham Pearson
Somewhere I am missing something. Here is some code: CFSET ThisPath = ExpandPath(*.*) CFSET ThisDirectory = GetDirectoryFromPath(ThisPath) CFSET HTTPSaveFile = doeivinfaq.html CFIF NOT FileExists(#ThisDirectory#/#HTTPSaveFile#) CFHTTP

RE: SmServAz.exe...cf server?

2001-07-25 Thread Thomas Chiverton
SmServAz.exe. Is that an exe file in CF server 5.0? Yeah, part of the Advanced Security SiteMinder stuff. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: SmServAz.exe...cf server?

2001-07-25 Thread Matthew Fusfield
Michael, SmServAz.exe is one of the SiteMinder executables that is used to implemented advanced security in ColdFusion. Do you used advanced security, and if so, is it configured correctly? Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July

RE: query headache

2001-07-25 Thread Thomas Chiverton
i tried this...but obviously, it adds the extra AND at the end...therefore making my statement invalid. WHERE cfloop query=qryappdetails cfoutputqryIAPeople.Listing_ID #listing_id# AND /cfoutput /cfloop So re-write your code where cfloop query=qryappdetails

Re: SmServAz.exe...cf server?

2001-07-25 Thread Deb Dickerson
It's one of the SiteMinder executables used for Advanced Security. Deb - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 10:54 AM Subject: SmServAz.exe...cf server? Hello, We just had our server upgraded to CFServer 5.0

Re: SmServAz.exe...cf server?

2001-07-25 Thread Stephenie Hamilton
michael, this service is used for SiteMinder, which is only used for Advanced Security in CF... if you are not using advanced security, then you can safely disable this service. ~~ Stephenie Hamilton Allaire Certified ColdFusion Professional - Original Message - From: [EMAIL PROTECTED]

RE: SmServAz.exe...cf server?

2001-07-25 Thread Garza, Jeff
This is the SiteMinder service for Advanced Security. It may be that the datasource for the server (initially an access .mdb file) is corrupt or not accessible. Don't know what else to tell you. HTH, Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED]

Re: Automatically unzipping uploaded files?

2001-07-25 Thread Critter
Hello Dave, cfx_zip from Forta...at the gallery or cfxtras.. -- Best regards, Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOp Network=EFNet Channel=ColdFusion --- Wednesday, July 25, 2001, 11:12:29 AM, you wrote: BD If

Re: SmServAz.exe...cf server?

2001-07-25 Thread Norman Elton
SmServAz.exe has to do with SiteMinder, which is part of ColdFusion's Advanced Security. If you're not using advanced security, you probably won't see it. I thought (i could be wrong here) that it also ran under 4.5. Perhaps you weren't running advanced security then? Norman Quoting Don

RE: SmServAz.exe...cf server?

2001-07-25 Thread Thomas Chiverton
Doesn't exist on my server Do you have advanced security ? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Re: CF Certification

2001-07-25 Thread G
Some will say yes, some will say no, Mike. I believe that any certification can carry SOME value, in that there will always be employers stuck on the notion that a certified applicant carries some magical power over someone without the piece of paper. So if you can afford it, and have the time,

Re: Automatically unzipping uploaded files?

2001-07-25 Thread Howie Hamlin
Here's the best way: http://devex.allaire.com/developer/gallery/info.cfm?ID=CA347298-2830-11D4-AA9700508B94F380method=Full Other than that you can also use CFExecute to call pkunzip or winzip. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com

Sending 12,000 Emails Via CF 4.5 WOULD CF5 help?

2001-07-25 Thread William J Wheatley
Ok heres the issue i am having and email is driving me nuts. I have a process that nightly finds members that have had there resumes searched on and i have it send out a daily email but there are 12000 emails that go out and its in a giant CF LOOP and i see the mails in the

Re: CFFile

2001-07-25 Thread Don Vawter
Don't you want a backslash instead of forward slash? DIRECTORY=#ThisDirectory#\#HTTPSaveFile# - Original Message - From: Graham Pearson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 9:35 AM Subject: RE: CFFile Somewhere I am missing something. Here is

RE: Automatically unzipping uploaded files?

2001-07-25 Thread Russel Madere
There is a CFX_Zip by Ben Forta (I Think) that would work. You can check the file extension when it is uploaded and if it is a zip unzip it into a temporary folder. Then use CFDIRECTORY to get a file list and loop through each and use CFFILE to move the file to the correct folder(s). Or

RE: CF Certification

2001-07-25 Thread Stuart Miller
I'm not too sure that the certification will give you much of an advantage early on... unless you plan to go straight into contracting. I got my first job as a CF developer without having a large portfolio, certification, or years of experience, but because I was able to show my employer that I

Re: SmServAz.exe...cf server?

2001-07-25 Thread corrigan
Matt, Our server manager discovered the same thing. As for advanced security, we actually don't. We installed the trial version to get up and running (4.5 was chewing up system resources and we could not resolve it. several reboots a day. ugly) while we are waiting for our shipment to arrive.

Re: SmServAz.exe...cf server?

2001-07-25 Thread corrigan
That did it!! Thanks all of you so much for your help! I appreciate the time that you took out of your day to help. I know how valuable it is!! Michael Corrigan Programmer Endora Digital Solutions www.endoradigital.com 630/942-5211 x-134 - Original Message - From: Stephenie Hamilton

CFLDAP

2001-07-25 Thread Kevin Faust
I'm using a CFLDAP tag to gather some information for a option grant system the query works but seems to take up to 15 minutes to run does anyone have any suggestion on speeding up a LDAP query. CFLDAP Server=deun50.corp.newmont.com USERNAME=uid=egrant,o=newmont.com PASSWORD=one2three

Browser Sniffing and Serving StyleSheets

2001-07-25 Thread Dasher
I need to sniff the operating system (Mac or PC) and browser (Netscape or IE) type using Cold Fusion, then serve that particular configuration a particular StyleSheet based on that info. Does anyone have a solution or know where I could look for this information? Thanks! -- Dasher [EMAIL

RE: SQL Server memory use grows

2001-07-25 Thread John Fix 3rd
There's 512mb installed right now. OK, if that doesn't seem out of line, then I'll leave it for a longer period next time and see what happens. Thanks! John -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 10:46 AM To: CF-Talk

RE: Big, Very BIG

2001-07-25 Thread Paul Ihrig
i would use verity. it can handle this. you can even buy a supped up version of verity if you want -paul ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

CFSETTING, CFOUTPUT and CFINCLUDE

2001-07-25 Thread Aidan Whitehall
With ColdFusion Professional 4.01, if you have this: CFSETTING ENABLECFOUTPUTONLY=Yes CFOUTPUT ...some HTML here... CFINCLUDE TEMPLATE=include.cfm /CFOUTPUT CFSETTING ENABLECFOUTPUTONLY=No and include.cfm is CFSET variables.x = 100 ...lots of lines of CFCode here... #variables.x# from the

Hebrew in SQL

2001-07-25 Thread Michael Lugassy
Do you know if I can put hebrew characters inside a SQL 7.0 database? I want to enable full-text searching via MS-SQL capability, Will one of MSSQL versions will support it? Do I need a hebrew supported operating system for that? (I don't want to use unicode) Thanks, Michael.

Looking for a Cf_job

2001-07-25 Thread Daniel Larson
Hi all! My ColdFusion developer job has come to an unexpected end-- my employer chopped 20 people last week, including myself. I am looking for a new web applications developer position using ColdFusion or Java Server Pages. I've got an impressive portfolio, a strong and diverse skill set, and

Thumbnails

2001-07-25 Thread admin
Can anyone recommend the most efficient way to create thumbnail images from a directory dynamically. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Change CF server Setuid

2001-07-25 Thread Dian Oktosoma
I want to change the cold fusion service in Linux to have permission to write on any directory, so which file must I change its permission to setuid (chmod +s) ? Or is there another solutions so the CF service can use CFFILE to write on any directory ? thanks

RE: CF Certification

2001-07-25 Thread Tangorre, Mike
Thanks for the kind reply. I will keep your comments in mind as job offers unfold and graduation closes in. Right now I am working as an intern in the DC area and am learning so much. Cold Fusion is a lot of fun and my willingness to learn as much as possible is always there. I just needed some

RE: CFERROR

2001-07-25 Thread Bruce, Rodney
Thanks for the help. but unfortunately then this can only be done by server then, not site? -Original Message- From: Garza, Jeff [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 4:38 PM To: CF-Talk Subject: RE: CFERROR You'll need to set the default 404 error in the

  1   2   >