OT: webmaster tool

2003-10-21 Thread Hugo Ahlenius
Hi, I am working on cleaning up a site. I have feeling that there are a huge number of images (and pages) in some folders that are used by the site anymore (i.e. not linked from any page). Are there any useful tool to locate which pages/graphics are orphaned? I can use Xenu (link checker) to

Programmatic Modification of System Locale in Windows 2000

2003-10-21 Thread Stavros Tekes
Hi all, I have CFMX installed on a Windows 2000 system having English as a default locale. I found out that I have to change the default locale to Greek in order for some of my pages to appear properly. As I cant access the control panel of the server (that the website is hosted), I am trying

RE: Nested cfelse...

2003-10-21 Thread d.a.collie
argh! cheers for that... was wondering how to do that previously I've had to do a horrible hack along the lines of case 'a': do thing X; break; case 'b': do thing X; break; case 'c': do thing X; break; case 'd': do thing Y; break; etc. not very good coding :-( but all I could

Programatically Adding Custom Tag Paths

2003-10-21 Thread Oliver Tupman
Hi all, Firstly please excuse any spelling mistakes - it's nigh-on freezing here in the UK, so having ridden to work my hands are icicles. Anyway, does anyone know of a way to programmatically add/remove/modify custom tag paths. What I'm interested in doing is creating a Using() function to

Re: Programatically Adding Custom Tag Paths

2003-10-21 Thread Nick de Voil
Oliver Ideally I'd like to update the custom tag paths for the duration of a request and no longer. Anyone got any ideas? Nasty hack, but but you could do something with cfmodule template=... ? Or use CFCs or UDFs? Nick [Todays Threads] [This Message] [Subscription] [Fast

Re: webmaster tool

2003-10-21 Thread Calvin Ward
DWMX 2004 has an orphaned file report. - Calvin - Original Message - From: Hugo Ahlenius To: CF-Talk Sent: Tuesday, October 21, 2003 3:17 AM Subject: OT: webmaster tool Hi, I am working on cleaning up a site. I have feeling that there are a huge number of images (and pages) in some

Re: DataDirect JDBC drivers (shipped with CFMX)..

2003-10-21 Thread Calvin Ward
How do we know that the Microsoft provided driver is from DataDirect? - Calvin - Original Message - From: Vince Bonfanti To: CF-Talk Sent: Monday, October 20, 2003 10:31 PM Subject: RE: DataDirect JDBC drivers (shipped with CFMX).. The Microsoft SQL Server JDBC driver is OEM'd from

Re:CFHTTP Question!

2003-10-21 Thread ColdFusion Programmer
I took your advise Stephen and copied the contents of the include file into a new file and saved it as a coldfusion file. I am using cfinclude to call this file. There is a if condition in the include file which is in asp. % if session(user.supportuser) = TRUE then % Do Something % end if

RE: A Lonely CFX - CFX_FileReadLn

2003-10-21 Thread Daniel Mackey
Hi Kym, Contact me offlist if you still require a tag of this capability. We have similar CFX tag that is ripping fast. You pass the file, lineNumber and numberOfLines to it, the result returned in a variable. Regards, Dan. -Original Message- From: Kym Kovan [mailto:[EMAIL PROTECTED]

Re: MySQL Heirarchies

2003-10-21 Thread Thomas Chiverton
On Monday 20 Oct 2003 19:25 pm, Barney Boisvert wrote: I don't think you'll be able to do it, because you can't use stored procedures with MySQL. You can in the current dev., and it will be in the v5 release. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email:

Re:Programatically Adding Custom Tag Paths

2003-10-21 Thread Bert Dawson
use cfmodule template=#somepath#my_tag.cfm or cfmodule name=#someplace#my_tag Where #somepath# is a path to the tag, same as the template attribute in a cfinclude. If you use the name attribute then #someplace# is a dot delimited location relative to the custom tags directory. IMO, using

CF5 and generating charts

2003-10-21 Thread Thane Sherrington
I'm looking for a program that will allow me to generate high/low/close and radar charts with CF5.Can anyone recommend a good one? Thanks, T Tired of your bookmarks/favourites being limited to one computer?Move them to the Net! www.stuffbythane.com/webfavourites makes it easy to keep all your

debugging turning itself off

2003-10-21 Thread Chris Norloff
Anybody experience debugging turning itself off when restarting CFMX or its Application Server? The Enable Debugging checkbox just becomes unchecked. Anybody? ... Bueller? ... Bueller? thanks, Chris Norloff CFMX v6.1 for J2EE, WebSphere v5, Solaris 8, Oracle 9i [Todays Threads] [This

RE: debugging turning itself off

2003-10-21 Thread John Stanley
Yes, this has happened to us. -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 8:27 AM To: CF-Talk Subject: debugging turning itself off Anybody experience debugging turning itself off when restarting CFMX or its Application Server? The

Re: How do I check...

2003-10-21 Thread Eric Dawson
throw in expandpath('.') for a little more utility Eric - Original Message - From: Michael Dinowitz To: CF-Talk Sent: Tuesday, October 21, 2003 01:58 Subject: Re: How do I check... FileExists(absolute_path) This will return a Boolean true or false based on the files existence. CFIF

Re: Re:project/bug management system

2003-10-21 Thread Eric Dawson
did I miss any code postings? Eric - Original Message - From: Rafael Bleiweiss To: CF-Talk Sent: Thursday, October 16, 2003 06:17 Subject: Re: Re:project/bug management system I'll turn it on in the mornin (after 1AM here now lol) At 09:13 PM 10/15/03, you wrote: May i take a look at

RE: RSS feed

2003-10-21 Thread Larry Juncker
Michael. I am trying to catch on to using XML, when reading the file what does one do to read and parse the file? Would really like to catch onto this.. Thanks -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2003 8:00 PM To: CF-Talk

RE: DataDirect JDBC drivers (shipped with CFMX)..

2003-10-21 Thread Vince Bonfanti
DataDirect Technologies provides an OEM version of its JDBCR SQL Server driver to Microsoft, which Microsoft distributes free of charge. http://www.datadirect-technologies.com/products/jdbc/docs/ddsqlvsMS-Final.a sp http://www.datadirect-technologies.com/products/jdbc/docs/ddsqlvsMS-Final.as p

Country CSV/DB

2003-10-21 Thread Tangorre, Michael
Anyone have a list of countries in an access DB or CSV file? I need to populate a sql2K table. I could also use the states as well (which I think I can get from pengoworks gateway examples..:-) Thanks! Mike [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: Programatically Adding Custom Tag Paths

2003-10-21 Thread Oliver Tupman
Nasty hack, but but you could do something with cfmodule template=... ? Or use CFCs or UDFs? Nick I can't do cfmodule (I think...) because the reason I wish to do this is to include CFCs. For example a CFC component might live here: oliver.fred.project.People.Present Now I have a

JDBC Problems with CFMX 6.1

2003-10-21 Thread Joe Eugene
This is a problem i havent seen before. I was able to successfully create a JDBC Connection to IBM U2 (UniVerse) Muti-Value Database with CFMX 6.0 and everything worked. Here is what happens with CFMX 6.1 CFMX 6.1J2EE + servers/lib/unijdbc.jar =Select Field1, Field2 From TableName Works When i

Ascending and descending dates (Flash and CFMX)

2003-10-21 Thread Candace Cottrell
Do Flash and CF handle dates differently? I have a CFC that has this function: cffunction name=qryGetArticlesExp access=remote returntype=query cfquery name=qryGetArticlesExp datasource=#Request.DSN# SELECT * FROM Articles WHERE Articles.ArticleExpDate = cfqueryparam cfsqltype=cf_sql_date

RE: Managing CFC's

2003-10-21 Thread Douglas.Knudsen
yes.the Replace(application.rootdir,/,.) code takes care of creating the full dotted path under {webroot}.This approach allows me to easily move app dirs if need be.The other approach is to keep your CFCs under the customtags folder creating a dir strucure of com\domainname\appname then calling

Re: debugging turning itself off

2003-10-21 Thread Michael Dinowitz
It's a known issue and I've got an open copy of the admin with me at the moment. I'm going to look through it to see if I can hunt it down and solve it. It happens on CF 6.1 straight, on J2EE, JRun, Websphere, etc. This says that it's an issue of the code and not specific to a single platform.

Re: OT: SQL Query

2003-10-21 Thread Paul Giesenhagen
No, this query still isn't working .. what the problem is some of the dates are the same ie there may be three reports on 10/22/2003 and 0 on 10/23/2003 and 1 on 10/24/2003 So the question is this, since my dates are duplicated, this may be impossible correct?What other solutions could be

Re: RSS feed

2003-10-21 Thread Michael Dinowitz
If you use an RSS reader like feed demon it'll parse it all out for you. http://www.bradsoft.com/feeddemon/index.asp Michael. I am trying to catch on to using XML, when reading the file what does one do to read and parse the file? Would really like to catch onto this.. Thanks

Re: DataDirect JDBC drivers (shipped with CFMX)..

2003-10-21 Thread Joe Eugene
Microsoft SQL Server != Data Direct MS-SQL Driver (CURRENTLY) The above was different a while ago. Yes, Microsoft used Data Direct. Now Microsoft Ships their OWN JDBC Type IV Driver. When i tested both back last year J2SE = 1.4.1 MS JDBC Driver = 30 - 50 ms Data Direct JDBC Driver = 200-500ms

CFMX version difference

2003-10-21 Thread Aidan Whitehall
Can you run the code below on a machine with CFMX 6.0 Updater 3 and then the same code in CFMX 6.1 and compare the differences in the output? cfset date = createDate(2003, 1, 28) cfloop from=0 to=15 index=i cfset date = dateAdd(d, i, date) cfoutput#dateDiff(d, createDate(1899, 12, 30),

RE: Country CSV/DB

2003-10-21 Thread Tangorre, Michael
Thought some of you guys might find this useful... http://www.unemed.org/edocs/file.jsp?method=getCountryCodeXMLFile http://www.unemed.org/edocs/file.jsp?method=getCountryCodeXMLFiledummy=iso 3136.xml dummy=iso3136.xml Mike -Original Message- From: Tangorre, Michael [mailto:[EMAIL

RE: RSS feed

2003-10-21 Thread Larry Juncker
Thank You Michael, Is there a url link to put into the program now to access the rss feed? -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 8:59 AM To: CF-Talk Subject: Re: RSS feed If you use an RSS reader like feed demon it'll parse

Re: Managing CFC's

2003-10-21 Thread Bryan Stevenson
and either way you have to map your CFC dir in CF Admin??I guess I got stumped because in Flash you don't need to map a sub dir under wwwroot in order to invoke a CFC in that sub dir ;-) - Original Message - From: [EMAIL PROTECTED] To: CF-Talk Sent: Tuesday, October 21, 2003 6:55 AM

Re:CFHTTP Question!

2003-10-21 Thread ColdFusion Programmer
Can somebody please advise me what to do? I took your advise Stephen and copied the contents of the include file into a new file and saved it as a coldfusion file. I am using cfinclude to call this file. There is a if condition in the include file which is in asp. % if

Error Catching Notification

2003-10-21 Thread Scott Wilhelm
Hello: I've inheritied an aweful application that is buggy as Windows itself...I look in the logs I find all these errors that are occurring with it, but without knowing some things that the end user is doing, I cannot figure them all out. Without going through the code putting in CFCATCH,

RE: Error Catching Notification

2003-10-21 Thread John Stanley
What about putting an error handler in the application.cfm that displays all of the possible error data any time an error of whatever specified type occurs? -Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 10:50 AM To: CF-Talk Subject: Error

Re: Error Catching Notification

2003-10-21 Thread Michael Dinowitz
You can add a site wide error handler to catch all the errors and email you all the info. I use a CFMAIL tag (HTML mail) that contains a CFDUMP of the following data structures: Error CGI Url Form Session Application This gives me a huge dump of useful information that I can then use to hunt down

Re: Error Catching Notification

2003-10-21 Thread Randell B Adkins
Can you implement that is a shared hosting environment? Say each Application or hosting per-se has it's own site wide error handler? [EMAIL PROTECTED] 10/21/03 10:57AM You can add a site wide error handler to catch all the errors and email you all the info. I use a CFMAIL tag (HTML mail) that

Re: Error Catching Notification

2003-10-21 Thread Michael Dinowitz
You can use the CFError type=Exception, but this will catch the error totally and you have to write some text for the end user telling them that there was an error. If your on CF 5, then you can use CFERROR type=monitor, which is superior in my opinion. You can read up on this here:

RE: Managing CFC's

2003-10-21 Thread Douglas.Knudsen
nope.I have only the standard / mapped to my web root in CFAdmin, no others. Doug -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 10:45 AM To: CF-Talk Subject: Re: Managing CFC's and either way you have to map your CFC dir in CF

Re:RSS feed

2003-10-21 Thread Roger Benningfield
There are a few things I don't like about RSS like the requirement to use an email address in an author tag. Michael, So don't use author... use dc:creator instead. It'll work just fine, and doesn't have the email address restriction. In addition, be aware that your pubDate is in the wrong

RE: CFHTTP Question!

2003-10-21 Thread Mark A. Kruger - CFG
Sorry If you question is can I read ASP sessions the answer is no.You cannot get sessions in Cold Fusion without the cfapplication tag (sessionmanagement=YES).so... if you are trying to pass a session variable to CF from an ASP page it will have to be done using post or get (url or form or

Re: Country CSV/DB

2003-10-21 Thread walker
Are you looking for the USPS version of countries? or the standardized ISO list? -w At 07:28 AM 10/21/2003, you wrote: Anyone have a list of countries in an access DB or CSV file? I need to populate a sql2K table. I could also use the states as well (which I think I can get from pengoworks

Re: Re:RSS feed

2003-10-21 Thread Michael Dinowitz
I was doing an RFC 1123 date. I'll change that. I've changed the author to the dc:creator. Where can I find some solid docs on that and other tags? Thanks Michael, So don't use author... use dc:creator instead. It'll work just fine, and doesn't have the email address restriction. In

MS Access Compression and Repair under MX

2003-10-21 Thread Andy Ousterhout
Does anyone have code that can compress a MS Access DB?I am running on MX. Andy Ousterhout O'My Goodness Cookies www.omygoodness.com 910 Sherwood Drive, Unit 19 Lake Bluff, IL 60044 Phone 847.735.9890 Fax847.735.9910 Yahoo IM:andy_ousterhout [Todays Threads] [This Message] [Subscription]

Re:DataDirect JDBC drivers (shipped with CFMX)..

2003-10-21 Thread Robert Everland III
Take a lookg at what I sent to the list yesterday. I already ran some tests with the drivers that come with 6.1 at least they seem to be very similar, though on really large sites I'm sure those numbers will increase.

Re: RSS feed

2003-10-21 Thread Jochem van Dieten
Michael Dinowitz wrote: I got that on validation as well, but feed demon seems to let it through. The following links might help: http://www.w3.org/RDF/Validator/ARPServlet?URI=http://houseoffusion.com/cf_lists/rss.cfm

Re: RSS feed

2003-10-21 Thread Ben Doom
It's in the very first post of the thread. --BenD Larry Juncker wrote: Thank You Michael, Is there a url link to put into the program now to access the rss feed? -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 8:59 AM To:

Re: RSS feed

2003-10-21 Thread Jochem van Dieten
Michael Dinowitz wrote: I've changed the author to the dc:creator. You can't just use dc: without putting in the declaration xmlns:dc=http://purl.org/dc/elements/1.1/ Where can I find some solid docs on that and other tags? W3C http://dublincore.org/

Re[2]: Error Catching Notification

2003-10-21 Thread Ubqtous
Michael, On 10/21/2003 at 10:57, you wrote: MD You can add a site wide error handler to catch all the errors and email you MD all the info. I use a CFMAIL tag (HTML mail) that contains a CFDUMP of the MD following data structures: MD Error MD CGI MD Url MD Form MD Session MD Application MD This

Re: Managing CFC's

2003-10-21 Thread Bryan Stevenson
hmmm...well I got mine working by mapping the cfusionmx\wwwroot\tfg\cfcs directory for \components in CF Adminworks like a charm ;-) - Original Message - From: [EMAIL PROTECTED] To: CF-Talk Sent: Tuesday, October 21, 2003 8:15 AM Subject: RE: Managing CFC's nope.I have only the

RE: RSS feed

2003-10-21 Thread Larry Juncker
Thanks Ben... This is great -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 10:33 AM To: CF-Talk Subject: Re: RSS feed It's in the very first post of the thread. --BenD Larry Juncker wrote: Thank You Michael, Is there a url link to put

RE: Error Catching Notification

2003-10-21 Thread Dave Watts
Can you implement that is a shared hosting environment? Say each Application or hosting per-se has it's own site wide error handler? No, not exactly, although you can get where you want with a little work. You can only specify one site-wide error handler per server, but you can use conditional

RE: MS Access Compression and Repair under MX

2003-10-21 Thread d.a.collie
I've done it previously using VBScript in an ASP page, would need to dig out the code tho. in fact, here is a asp version http://authors.aspalliance.com/mbrink/compact.asp -dc [ ... and today I'm using CF 5, IIS 5, Oracle 8.1.6 ] -Original Message- From: Andy Ousterhout

RE: RSS feed

2003-10-21 Thread Raymond Camden
W3C http://dublincore.org/ http://web.resource.org/rss/1.0/modules/syndic ation/ Don't forget to add a stylesheet to your feed so people can see it in regular browsers. CSS, XSLT or both. I've never heard of this before, Jochem, does this mean it's possible to make the RSS feed

Re: RSS feed

2003-10-21 Thread Jochem van Dieten
Raymond Camden wrote: I've never heard of this before, Jochem, does this mean it's possible to make the RSS feed pretty for those who view it directly and NOT via a third party reader? Every RSS feed I've viewed (in the browser) shows up as simple XML. Yes:

SOLVED Re: Ascending and descending dates (Flash and CFMX)

2003-10-21 Thread Candace Cottrell
Solved this one with the help of Darron Schall. It appears I was concatenating my string in Flash backwards, and so that's why it was acting funny. Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293

Re: RSS feed

2003-10-21 Thread Matt Liotta
I've never heard of this before, Jochem, does this mean it's possible to make the RSS feed pretty for those who view it directly and NOT via a third party reader? Every RSS feed I've viewed (in the browser) shows up as simple XML. Indeed, you add a stylesheet attribute that specifies an

RE: RSS feed

2003-10-21 Thread Raymond Camden
Nice. Thanks for sharing Jochem. -ray -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 9:59 AM To: CF-Talk Subject: Re: RSS feed Raymond Camden wrote: I've never heard of this before, Jochem, does this mean it's

Re:CFHTTP Question!

2003-10-21 Thread ColdFusion Programmer
Thanks Mark for your explaination and yes that makes sense. I will try to get the asp session variable value from one of three ways your suggested (form,url,cookie). Many Thanks Sorry If you question is can I read ASP sessions the answer is no.You cannot get sessions in Cold Fusion without

cfoutput issue...

2003-10-21 Thread Bailey, Neal
Hello Everyone, I'm having a strange problem, I have a few documents that are stored in a SQL table and these docs have a little CF code in them that's used to build some dynamic links to other docs. For some reason when I cfoutput the content of the doc it is not processing the CF code that's

RE: MS Access Compression and Repair under MX

2003-10-21 Thread Samuel R. Neff
I wrote a custom tag that uses Jet Replication Objects to compact a database on the server without instantiating/automating Access on the server (which would be a bad thing).Haven't tested it under CFMX but it should still work. You should be able to get to it from this URL:

RE: RSS feed

2003-10-21 Thread Raymond Camden
While I certainly knew about XSL I had just never considered the usefulness in applying it to a RSS feed. I have to wonder why others don't do it (or maybe I'm just looking at the wrong feeds. ;) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

FW: MySQL Heirarchies (fwd)

2003-10-21 Thread Ross, Jason
wouldn't this be pretty close? SELECT parents.id AS parent, children.id as child FROM parentChild parents INNER JOIN parentChild children ON children.par_id = parents.id; Need to add something in there for the NULL par_id's, but good enough to get the wheels turning maybe ... mysql select *

OT: SQL Query (fwd)

2003-10-21 Thread Ross, Jason
Just thinking out loud ... Is there a reason you're not passing the tripDate of the report you are viewing as the variable, rather than the reportID (assuming that since you are able to retrieve the ID, you are also able to retrieve the date ... ) The query to get the previous/next could then

Re: debugging turning itself off

2003-10-21 Thread David Delbridge
Hi Chris, Yes, I have seen this intermittently after server restarts and have heard from at least three others who have experienced the same thing. Admittedly, I have not dug into this one yet and don't know the specific requirements to duplicate the event on command.If you nail anything down,

RE: MySQL Heirarchies (fwd)

2003-10-21 Thread Barney Boisvert
It needs to go an arbitrary number of levels, right now it's limited to a parent and a child level (because of the single JOIN).You can extend that algorithm by adding additional JOIN clauses, but that's not a solution, because it requires you to know how deep the maximum nesting is when you're

cfdirectory = slow

2003-10-21 Thread Nelson Winters
Where do I report issues with CFMX to Macromedia?I know I'm not the first to discover this, but cfdirectory is extremely inefficient when dealing with large directories.I don't know if this is a problem with J2EE platform that CFMX runs on top of or what, but it shouldn't take several seconds to

Database conversion tool??

2003-10-21 Thread Yves Arsenault
Hey there, Anyone know of any, or have a preffered DB conversion tool that would allow me to convert Access DBs to MySQL, MySQL to Access, Access to MS SQL server basically dealing with Access, MySQL, MS SQL. TIA, Yves Arsenault Carrefour Infotech 5,promenade Acadian Charlottetown, IPE C1C

Solved: Error: specified module could not be found

2003-10-21 Thread Austin Govella
All of my other websites on this server work correctly. I added a new website in IIS. For this new website, default pages in a directory (index.cfm) load just fine. If however I try to open the same page by specifying the file name, then I get an error: The specified module could not be

Re: cfoutput issue...

2003-10-21 Thread Claude Schneegans
For some reason when I cfoutput the content of the doc it is not processing the CF code that's in them. The reason is that CF is only a one pass script, it reads codes from files and send the result directly to the HTTP server. Its output is not fed back to itself. If you want to do so, you have

re: Database conversion tool??

2003-10-21 Thread Clint Tredway
MsSQL already has an Access Upsize tool. There used to be an Access-MySQL tool, but I have not seen it in awhile. Clint Tredway www.digital12studios.com Original Message: Return-Path: [EMAIL PROTECTED] Tue Oct 21 10:39:23 2003 Received: from houseoffusion.com [64.118.64.245] by

RE: cfdirectory = slow

2003-10-21 Thread Barney Boisvert
If you are only pulling one file back, why are you using CFDIRECTORY at all? You already know the filename, so you can just use fileExists() to check if it's there, and CFFILE to read it in if you need the contents. -Original Message- From: Nelson Winters [mailto:[EMAIL PROTECTED] Sent:

RE: cfoutput issue...

2003-10-21 Thread Bailey, Neal
Thanks Claude, Yeah I got it figured out... For some reason it just looked like it should work and I could not see why it didn't. I have been staring at this screen too long lately. Thanks, - Neal -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: Database conversion tool??

2003-10-21 Thread Ben Doom
Typically, moving an Access db to MS-SQL is pretty easy.You just import it.I've had to do some tinkering with auto-increments, but it's not a particularly big deal. --Ben Doom Yves Arsenault wrote: Hey there, Anyone know of any, or have a preffered DB conversion tool that would allow me

Re: cfdirectory = slow

2003-10-21 Thread Nelson Winters
Thanks for the suggestion.In my case, I actually need to get the LastModifiedDate provided by cfdirectory.I can work around the problem by calling some Delphi code a coworker created, but I'd like to see the problem get fixed.This really shouldn't be a problem.In this particular case I'm only

RE: cfdirectory = slow

2003-10-21 Thread Mike Townend
why not use java ? CFOUTPUT #CreateObject(java, java.io.File).init(FileNameAndPathHere).lastModified()# /CFOUTPUT HTH -Original Message- From: Nelson Winters [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 19:02 To: CF-Talk Subject: Re: cfdirectory = slow Thanks for the

WOT:JRUN Admin question

2003-10-21 Thread Bruce Sorge
Although this has to do with JRUN, I am sure someone here can answer this question. Is there a setting in JRUN V 4 that allows me to do connection pooling for my datasources? I have an application that, whenever the SQL Server that it connects to is bounced or taken off line temporarily, quits

RE: cfdirectory = slow

2003-10-21 Thread Barney Boisvert
If you need lastmodified you can get it this way without needing that Delphi code: cfscript function getDateLastModified(path) { fh = createObject(java, java.io.File); fh.init(path); utcOffset = getTimeZoneInfo().utcTotalOffset + iif(getTimeZoneInfo().isDSTOn, 3600, 0); return dateAdd(s,

CFMX and Word

2003-10-21 Thread Tangorre, Michael
How much control does one have when writing Word docs with CF? For instance, can I control font and colors and sizes, etc...? Does anyone have any online references? I need to create some Word reports with CFMX 6.1. Thanks Mike [Todays Threads] [This Message] [Subscription] [Fast

RE: cfdirectory = slow

2003-10-21 Thread Patricia G. L. Hall
Is there a similar way to find out the date the file was created? -Patti why not use java ? CFOUTPUT #CreateObject(java, java.io.File).init(FileNameAndPathHere).lastModified()# /CFOUTPUT HTH [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: cfdirectory = slow

2003-10-21 Thread Suyer, Ed [PRD Non-JJ]
Try caching the results of cfdirectory in application scope i.e. change: cfdirectory action="" directory=#vDir# name=dirTest filter=z#fileIndex#.txt cfdump var=#dirTest# to: cfif not isDefined(application.dirtest) cfdirectory action="" directory=#vDir# name=application.dirTest

RE: cfdirectory = slow

2003-10-21 Thread Mike Townend
>From CFLib.org (dont know which one as i use the CFStudio Control) /** * Returns the date/time a file was created. (Windows only) * * @param fileAbsolute or relative path to the specified file. * @return Returns a date/time object. * @author Rob Brooks-Bilson ([EMAIL PROTECTED]) *

RE: cfdirectory = slow

2003-10-21 Thread Barney Boisvert
Nope, not with the native File class.And be careful using the modified date, as it returns anumber of milliseconds since the epoch UTC, so you need to do some conversions.Check out the UDF i included in my last message. it encapsulates all the nastiness into something ready to use by CF.

RE: CFMX and Word

2003-10-21 Thread Tony Weeg
html head /head body Tonybr strongIs the man./strong /body /html save that text in a file, in homesite+ call it tony.doc and you will see what happens :) ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original

RE: cfdirectory = slow

2003-10-21 Thread Patricia G. L. Hall
I was hoping to see how to find the date the file was created with a java object if I could?I'll check cflib (should have thought of that), but in the meantime anyone have something? -Patti From CFLib.org (dont know which one as i use the CFStudio Control) /** * Returns the date/time a file

RE: cfdirectory = slow

2003-10-21 Thread Patricia G. L. Hall
Ah.Thanks for the info.'Preciate it. -Patti Nope, not with the native File class.And be careful using the modified date, as it returns anumber of milliseconds since the epoch UTC, so you need to do some conversions.Check out the UDF i included in my last message. it encapsulates all the

6.1 deployed to Novell Extend AppServer

2003-10-21 Thread DeMarco, Alex
Anyone tried this? Did it work? - Alex [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Headers in messages from House of fusion

2003-10-21 Thread Claude Schneegans
Hi, I'm trying to fine tune a spam filter in CF that will look at header and detect forged header as possible canditates for spam. However, I'm having som problem with messages coming from HF! ;-) The following 2 headers don't look valid: Received: from houseoffusion.com ([64.118.64.245]) by

Re: Headers in messages from House of fusion

2003-10-21 Thread Jochem van Dieten
Claude Schneegans wrote: Normally, the from in the first should be the same as the by in the second, simply because a message is supposed to be received from the server that received it last. Only if it is transmitted over TCP/IP. Jochem [Todays Threads] [This Message] [Subscription]

Re: cfdirectory = slow

2003-10-21 Thread Nelson Winters
Mike, Thanks for the info, I'll try it out along with the function Barney mentioned.To answer your question though, I didn't use java because I'm not very experienced using java and there, when trying to solve a problem, it's not the first option that I turn to. It sounds like this will solve

Re: Database conversion tool??

2003-10-21 Thread Donnie Bachan
This is probably overkill but I've used DBDesigner from FabForce.net to re-engineer the database and then spit out the DDL in MySQL syntax. You may just want to upsize if using Access but this can come in handy when going from SQL Server to MySQL. HTH Donnie Bachan Phone: (718) 217-2883 ICQ#:

RE: Database conversion tool??

2003-10-21 Thread Yves Arsenault
Hello, I actually don't have MS SQL server, but I may have to transfer a clients DB from MS SQL to MySQL. Their switching hosts long story. Yves -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED] Sent: October 21, 2003 2:44 PM To: CF-Talk Subject: re: Database

Re: Headers in messages from House of fusion

2003-10-21 Thread Michael Dinowitz
The top received line should be Received: from houseoffusion.com ([64.118.64.245]) by field.videotron.net . Received: from announced_name ([true_ip]) by receiving_computer . As your computer network is the receiving computer and the HoF server is the sending computer, they

RE: Database conversion tool??

2003-10-21 Thread Yves Arsenault
The access DBs are being traded for MySQL I was wanting to find a good conversion tool for this, and later, I could see the need to convert a couple of other formats to and from Access/MySQL/MS SQL. Yves -Original Message- From: Donnie Bachan [mailto:[EMAIL PROTECTED] Sent: October

What CMS do you use?

2003-10-21 Thread Robert Everland III
Not really looking for products you have seen but for a CMS you use or your company uses and what you think of it. I know some are very pricey, some don't run CF. Just looking for some ideas to be used where I at now. Thanks. Bob Everland [Todays Threads] [This Message] [Subscription]

RE: CFMX and Word

2003-10-21 Thread Tangorre, Michael
What's the tag for: page break? repeating header? mail merge? Come on WEGS! :-) -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 2:37 PM To: CF-Talk Subject: RE: CFMX and Word html head /head body Tonybr strongIs the

RE: What CMS do you use?

2003-10-21 Thread Kris Pilles
We use Ektron CMS 100/200 and it deos the job quite well. We are using it on .NET but the CF support is there and I had initially developed our application with CF. If you want to see it in action just shoot me an off the list email -Original Message- From: Robert Everland III

RE: CFMX and Word

2003-10-21 Thread Tony Weeg
uhh, page.Break header.repeat cfmail.merge ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 3:35 PM To: CF-Talk

RE: MS Access Compression and Repair under MX

2003-10-21 Thread Andy Ousterhout
Thanks.The problem I am having is that I can't get MX to release its hold on the db.MX does not support any of the following: cfset rc = cfusion_disable_dbconnections(attributes.database,1) cfset rc = cfusion_settings_refresh() cfset rc = cfusion_dbconnections_flush() I can compress it to

RE: CFMX and Word

2003-10-21 Thread Tangorre, Michael
no wonder non of your apps work :-) -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 3:40 PM To: CF-Talk Subject: RE: CFMX and Word uhh, page.Break header.repeat cfmail.merge ...tony tony weeg senior web applications architect navtrak,

Re: CFMX and Word

2003-10-21 Thread Jochem van Dieten
Tangorre, Michael wrote: What's the tag for: page break? div + CSS repeating header? span + CSS mail merge? cfoutput + query attribute Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

  1   2   >