Re: OT- Hosting recommendations

2001-12-06 Thread Nick Texidor
hmmm, is domain host the same as OzHosting? I seem to remember that when my accounts were moved to OzHosting, I could access them using a temporary domain host name If they are one and the same.. STEER CLEAR! I, and several other people I know have had several episodes with them, and

Re: OT- Hosting recommendations

2001-12-06 Thread list peters
hi... i think that was cyberhost? chad hmmm, is domain host the same as OzHosting? I seem to remember that when my accounts were moved to OzHosting, I could access them using a temporary domain host name If they are one and the same.. STEER CLEAR! I, and several other people I

Re: OT- Hosting recommendations

2001-12-06 Thread Nick Texidor
I used Cyberhost for a long time, and in fact use them still, under their new name and I have rarely ever had a problem with them, but OzHosting I won't go there!! They had a debt collector onto me for invoices that were less than 10 days old, and I hadn't even received copies of the

Re: CF-Talk Digest

2001-12-06 Thread Kay Smoljak
Dunno about the digest, but you may want to try the NNTP mirror of cftalk - news.fuseware.com. Bill Grover [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... I've noticed this to. Will it ever be back? I liked it better than getting alerted ever 30 seconds to another mail message.

Re: OT- Hosting recommendations

2001-12-06 Thread Kay Smoljak
Actually I think Ozhosting /Cyberhosting is now Dedicated Hosting - I have one client on there and they are OK, but get quite pricy when you want something that's not one of their predefined packages. Nick Texidor [EMAIL PROTECTED] wrote in message

RE: CFX tag for checking Email Addresses

2001-12-06 Thread Joel Parramore
You might take a look at this message from the Allaire forums: http://forums.allaire.com/coldfusion/messageview.cfm?catid=7threadid=215927 Hope this help... Regards, Joel Parramore -Original Message- From: Ron Anderson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001

Re: OT- Hosting recommendations

2001-12-06 Thread Nick Texidor
You are correct Kay... Actually, Cyberhost were the original company (now back in business as Dedicated Hosting). I have been using them for years now. Early last year Cynerhost were bought by iAsiaWorks and then towards the end of the year, OzHosting bought all the Virtual Server Business

Sorting a string alphabetically.

2001-12-06 Thread Darren Adams
Hello All, Just looking for a function to take a string of comma delimited words and sort them in alphabetical order. e.g. Company structure,Executive team,Jobs,Locations,Prod_Introduction Can anyone advise ? Cheers, Darren Adams Web Developer Marketing Department Systems Union Email:

RE: Sorting a string alphabetically.

2001-12-06 Thread Carlisle, Eric
ListSort() EC -Original Message- From: Darren Adams [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 8:46 AM To: CF-Talk Subject: Sorting a string alphabetically. Hello All, Just looking for a function to take a string of comma delimited words and sort them in

RE: Sorting a string alphabetically.

2001-12-06 Thread Boardwine, David L.
ListToArray Arraysort Arraytolist This may work. HTH -Original Message- From: Darren Adams [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 8:46 AM To: CF-Talk Subject: Sorting a string alphabetically. Hello All, Just looking for a function to take a string of comma

RE: Sorting a string alphabetically.

2001-12-06 Thread Adkins, Randy
You could covert it to a structure and then sort it. Example convert it to an array then use ArraySort Then if you still need the list, convert it back to a list format. -Original Message- From: Darren Adams [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 8:46 AM To:

RE: Sorting a string alphabetically.

2001-12-06 Thread Darren Adams
Thanking you kindly ! *tips hat* -Original Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED]] Sent: 06 December 2001 13:55 To: CF-Talk Subject: RE: Sorting a string alphabetically. ListSort() EC -Original Message- From: Darren Adams [mailto:[EMAIL PROTECTED]]

RE: Sorting a string alphabetically.

2001-12-06 Thread Darren Adams
That was going to be my next approach. Thanks -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED]] Sent: 06 December 2001 13:56 To: CF-Talk Subject: RE: Sorting a string alphabetically. You could covert it to a structure and then sort it. Example convert it to an array

Re: Sorting a string alphabetically.

2001-12-06 Thread Dave Hannum
CF 4.5 and up: ListSort(list, ,) Dave - Original Message - From: Darren Adams [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 06, 2001 8:46 AM Subject: Sorting a string alphabetically. Hello All, Just looking for a function to take a string of comma

Re: Sorting a string alphabetically.

2001-12-06 Thread Dave Hannum
Ah - too fast on the previous post: ListSort(list, TextNoCase, ASC, ,) Dave - Original Message - From: Darren Adams [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 06, 2001 8:46 AM Subject: Sorting a string alphabetically. Hello All, Just looking for

RE: HTML Newsletters again!

2001-12-06 Thread Larry Juncker
I send my HTML Newsletter as a CFINCLUDE TEMPLATE=Newsletter.htm in the body of my CFMAIL and it seems to work excellent. You want to make sure though that you give the FULL PATH to ANY images in your newsletter or they will appear broken. Hope this helps Larry Juncker Senior Cold Fusion

SOT: Posts being denied when using a Digital ID

2001-12-06 Thread Joshua Miller
Question, I'm using a Digital ID from Verisign with my email and when I forget to turn it off and post to the list, I get this reply: Subject: Post Rejected Body: You have posted a message to the list with no subject and/or body. Please repost this message with some useful text. Thank you. Is

RE: Sorting a string alphabetically.

2001-12-06 Thread Darren Adams
Works on Server 4 -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: 06 December 2001 14:03 To: CF-Talk Subject: Re: Sorting a string alphabetically. Ah - too fast on the previous post: ListSort(list, TextNoCase, ASC, ,) Dave - Original Message -

CF - Flash Integration Resources

2001-12-06 Thread Jonathan Wall
For those of you that are integrating CF and Flash, or want to do this, just a reminder that the Macromedia Flash and ColdFusion Resource Center is available at http://www.macromedia.com/software/coldfusion/resources/flash_coldfusion/

RE: Sorting a string alphabetically.

2001-12-06 Thread Mike Connolly
Try ListSort() Extract of help text ListSort Sorts and delimits the items in a list according to the specified sort type and sort order. Note ColdFusion ignores empty list elements; thus, a list that is defined as a,b,c,,,d is treated as a four element list not as a six

Re: Sorting a string alphabetically.

2001-12-06 Thread Dave Hannum
Good, I just couldn't remember if it went back that far. I had the old 4.5 docs and it was in there. Dave - Original Message - From: Darren Adams [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 06, 2001 9:09 AM Subject: RE: Sorting a string alphabetically.

Retrieving Calendar Data From Exchange via CFLDAP

2001-12-06 Thread Smith, Daron [PA]
Does anyone know if you can retrieve calendar data from exchange with CFLDAP? We have a public folder with a calendar in it and I would like to retrieve the data for a web page. I have used CFLDAP for querying our address book, but I am only able to get attributes for the folder not the events

CFREPORT

2001-12-06 Thread douglas . kronenberger
The documantation is kind of sparse on this subject. Can any one tell me what I need on the server as far as Crystal Reports goes and maybe point me in the direction of some more docs on this. Thanks in advance Doug Kronenberger OI National Training and Education Office Department of

JS/Cookie Tester

2001-12-06 Thread Justin Hansen
Hello gang, A client site is having session issues and I need to test for JS and Cookies. I know this code exists. Who is the coolest cat on the board willing to share it with me so, I don't have to waste time re-inventing the wheel. Thanks! Justin Hansen - [EMAIL PROTECTED] Project Leader /

How to set CGI variables from CF?

2001-12-06 Thread Gopalakrishnan Venkatachalam
I am using a authentication software that uses/sets CGI variables. I wish to call this software from my CF web pages. For me to do this, I have to set the CGI variables from the CF application so that the authentication software can use it. Is there any way to do this? G. Venkatachalam

RE: JS/Cookie Tester

2001-12-06 Thread Carlisle, Eric
Here's the one for ccokies... http://www.thenetprofits.co.uk/coldfusion/faq/#answer103 EC -Original Message- From: Justin Hansen [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 10:55 AM To: CF-Talk Subject: JS/Cookie Tester Hello gang, A client site is having

Re: SQL statements trap/log for application where source code is not available

2001-12-06 Thread Marius Milosav
We had done it for Sybase but I suspect that SQL server has it too. You can turn trace on which will log all transactions. Don't do it in the production environment as it will slow it to a crawl. Check the on line books for more information. Marius Milosav www.scorpiosoft.com It's not about

Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Dimo Michailov
Has anyne tried to use the news.fuseware.com newsserver to access CF-Talk. I have been reading CF-Talk for several months now via newsgroup access with Outlook Express, everything seems to be fine. Now, I switched to Netscape News reader and all the messages there have for date 12/31/69 7:00

RE: Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Smith, Daron [PA]
I can't even get to it from Outlook Express -Original Message- From: Dimo Michailov [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 11:05 AM To: CF-Talk Subject: Weird problem with CF-Talk on newsgroups Has anyne tried to use the news.fuseware.com newsserver to access

RE: Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Shawn Grover
I would guess that it's a Netscape issue. I recall that trying to get the page modified date from CGI variables would work fine in IE, but Netscape interpreted the info a little differently and gave dates similar to what you are seeing. Of course, I could be wrong and it could be a different

Re: Hi

2001-12-06 Thread BILLY CRAVENS
Keep in mind that most of the exploits aren't due to explicit features, they are usually COM-based. As such, it's not the application that's at fault, it the extensibility. - Original Message - From: Lee Surma [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, December

alternatives to MS SQL

2001-12-06 Thread Ben Whalley
Anything out there I should be looking at? A client of ours can't afford MSSQL but is loath to use free alternatives - no support, nasty interface etc. Came across PervasiveSQL - has anyone had any experience of this? Going to look at the developer tools etc but would appreciate any info people

Re: OT: SPAM lists?

2001-12-06 Thread Bryan Stevenson
It's the fact that the legit folks get nailed as well. Listen..we all agree that spam is evil...we all agree that mail servers should not be open.BUT is it so bad to give the folks running the server a chance to fix it first?? My issue is that once found to be open it is incredibly

RE: Hi

2001-12-06 Thread Michael Haggerty
Given the new .Net initiatives, this really makes you think about security in a distributed environment. cfparanoid level=possibly justified Imagine the day when controls are installed on rogue servers in other countries that you cannot touch or that you do not know are hostile in the first

Re: alternatives to MS SQL

2001-12-06 Thread jon
There's TONS of support for MySQL, albeit from a community perspective. I would imagine that it wouldn't be too much trouble to find a consultant with a fair amount of experience with it. Also, phpmyadmin is a decent interface to mysql... (there are, of course, others... but nothing I've seen

Re: CF - Flash Integration Resources

2001-12-06 Thread Bud
On 12/6/01, Jonathan Wall penned: For those of you that are integrating CF and Flash, or want to do this, just a reminder that the Macromedia Flash and ColdFusion Resource Center is available at http://www.macromedia.com/software/coldfusion/resources/flash_coldfusion/

RE: alternatives to MS SQL

2001-12-06 Thread Bill King
In my experience it is best to try to stick with some main-stream options. In order to give your client the best service and room for expansion it would (in my opinion) be best to start with something like Access 2000 and upsize to MS SQL when the budget allows. We have supported very high

RE: alternatives to MS SQL

2001-12-06 Thread Kurt Ward
PervasiveSQL is a good product. I have used it in the past with CF and liked it enough to say I'd use it again. The server is fairly easy to set up and speed is comparable to most RDBMS systems. If you don't need support for transactions, I would go with MySQL. There are plenty of resources

RE: alternatives to MS SQL

2001-12-06 Thread Shawn Grover
If I'm remember right, PervasiveSQL is from the same folks who did Btrieve. It would be a cheaper alternative to MS SQL, and I was able to get decent support for Btrieve when I neeeded it a few years back. Shawn Grover -Original Message- From: jon [mailto:[EMAIL PROTECTED]] Sent:

Stupid cfexecute

2001-12-06 Thread Robert Everland
Can anyone find anything wrong with the syntax of this. It keeps timing out on me. This is CF 5, it works fine in 4.5 cfset executearguments = //10.100.100.1 SBMJOB CMD(CALL PGM(DIXOBJ73/JD40211ZP) PARM('01514')) inllibl(*JOBD) JOB(JD40211ZP) JOBD(QGPL/BTOBTEST) JOBQ(QGPL/BTOB)

RE: alternatives to MS SQL

2001-12-06 Thread Costas Piliotis
If they have a single licence for Office 2000 or XP, this gives them the ability to use MSDE, which upsizes perfectly to SQL Server when the budget allows for it. Costs nothing, and you still use an NT based database... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: OT: SPAM lists?

2001-12-06 Thread Jochem van Dieten
Bryan Stevenson wrote: It's the fact that the legit folks get nailed as well. Listen..we all agree that spam is evil...we all agree that mail servers should not be open.BUT is it so bad to give the folks running the server a chance to fix it first?? I would also very much like a

problems with files on unix and CFPOP

2001-12-06 Thread Alexis Maldonado
ok.. im using CFPOP to get email right.. when the attachments are received the permissions are only set to read/write for user and group [nobody] wich is what the CF server user group is.. so everytime in when i do a link to the file for download it gives me an.. Error Diagnostic

Re: alternatives to MS SQL

2001-12-06 Thread Alex
Oracle. MSAccess. Why would your client care what the interface looks like if you will be doing it and there is support for the free alternatives. On Thu, 6 Dec 2001, Ben Whalley wrote: Anything out there I should be looking at? A client of ours can't afford MSSQL but is loath to use free

Re: OT: SPAM lists?

2001-12-06 Thread Bryan Stevenson
You're comparing what an organization like ORDB does to a virusgee I guess your are coming around to my view ;-) Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] ~~

RE: alternatives to MS SQL

2001-12-06 Thread Ben Whalley
We are developing it but they plan to take it in house for hosting and ongoing development. I didn't have the impression Oracle was a cheap option - am I wrong? Ben ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: OT: SPAM lists?

2001-12-06 Thread Paris Lundis
the anti-spam passion always gets funny :) a similar but certainly costly non blockable, but regulated by bad laws, is the legislation they passed on unsolicited fax transmissions... then again, I bet everyone doesn't attack their postman/post office about all the unsolicited paper form junk

SQL?

2001-12-06 Thread Douglas Brown
I have a page where I am dynamically creating 20 dropdowns from a query, and what I need to be able to do is order it exactly how I want. I cannot use asc or desc. Is this possible in SQL? Maybe ordering it by column names or something? DB ~~

Re: alternatives to MS SQL

2001-12-06 Thread Alexis Maldonado
PostgreSQL.. is one of the most advanced opensource Databases that i've worked with so far that offers almost all of the main features that Oracle and MSSQL have.. It is also has a strong developed community... Ive just started to use it and i already love it.. - Original Message -

RDS

2001-12-06 Thread Tangorre, Michael T.
Hi everyone. Our school wants me to work remotely over Christmas break for 5 weeks. I am trying to setup RDS to be able to connect remotely. I have a few questions: Is the RDS password the same as the studio and server admin password? If the machine I am connecting to has mapped drives on an NT

Re: SQL?

2001-12-06 Thread Douglas Brown
I thought I should be more specific. The query I run pulls 19 records IE: VIDEO CARD HDD RAM MODEM CPU SOUND CARD etc etc. I would like to order it like so.. CPU RAM HDD VIDEO CARD SOUND CARD This way the items are ordered to make sense for the dropdowns. - Original Message - From:

Re: OT: SPAM lists?

2001-12-06 Thread Jon Hall
I agree they are definately way to overzealous and their server sucks. Probably because no one will host them :) However, they are not the worst. We got onto some list called Pegasus or something a while back, and it is absolutely insane how they run this thing. They do a lookup on ARIN and block

Re: Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Jamie Jackson
Works perfectly on Forte Agent (where I'm writing from now). I can't imagine trying to sort out all these posts in an email client. Jamie On Thu, 06 Dec 2001 11:04:33 -0500, in cf-talk you wrote: Has anyne tried to use the news.fuseware.com newsserver to access CF-Talk. I have been reading

Re: SQL?

2001-12-06 Thread BILLY CRAVENS
In those situations, I usually have a weight column - these contain integers that allow you to order by: tblRichPeople --- person weight ------ Bill Gates1 Michael Jordan3 Steve Jobs

Re: OT: SPAM lists?

2001-12-06 Thread BILLY CRAVENS
To avoid Nimda, CodeRed, et al, I usually leave the network cable unplugged when installing. I then disable IIS, replug the network cable, install SP, then turn IIS back on. Pretty simple. Personally, I think it's OK to get blocked.. as long as notification and retesting happen in a timely

RE: RDS

2001-12-06 Thread Dave Watts
Our school wants me to work remotely over Christmas break for 5 weeks. I am trying to setup RDS to be able to connect remotely. I have a few questions: Is the RDS password the same as the studio and server admin password? No, there's a separate password for RDS. It's often set to be the

Re: OT: SPAM lists?

2001-12-06 Thread BILLY CRAVENS
I'll agree that a blackhole list for web servers is a great idea. Definitely a far greater risk and traffic waste than open relays. - Original Message - From: Paris Lundis [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 06, 2001 11:20 AM Subject: RE: OT: SPAM

Re: SQL?

2001-12-06 Thread Jamie Jackson
In tables where I need arbitrary sorting ability, I've set up a numeric sortby field, wherein I order items manually (could get tedious if you have 100 rows in a table, but I never have that many in an arbitrarily-sorted table). I set the default value to, say, 100 or 1000, so that items are

Re: SQL?

2001-12-06 Thread Alex
add a new DB field with numbers to correspond to how you want to order so... OrderField : Name = 1 : CPU 2 : RAM 3 : HDD 4 : VIDEO CARD 5 : SOUND CARD On Thu, 6 Dec 2001, Douglas Brown wrote: I thought I should be more specific. The query I run pulls 19 records IE:

Re: problems with files on unix and CFPOP

2001-12-06 Thread Alex
use cfexecute to chmod the files On Thu, 6 Dec 2001, Alexis Maldonado wrote: ok.. im using CFPOP to get email right.. when the attachments are received the permissions are only set to read/write for user and group [nobody] wich is what the CF server user group is.. so everytime in

ODBC Datasources

2001-12-06 Thread tom muck
Is there an easy way to get a list of ODBC datasources on the server through ColdFusion? Also, given a datasource, is there a way to get a list of tables from that datasource? tom ~~ Get the mailserver that powers this list at

Anyone with AS/400 Client access and CF 5 verify this?

2001-12-06 Thread Robert Everland
cfexecute name=c:\winnt\rmtcmd.exe arguments=/? outputfile=d:\output3.txt timeOut=30 /cfexecute That times out on me, could someone see if it does on thier machine also. Robert Everland III Dixon

Re: problems with files on unix and CFPOP

2001-12-06 Thread Alexis Maldonado
oh cool.. ill try that.. - Original Message - From: Alex [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 06, 2001 11:35 AM Subject: Re: problems with files on unix and CFPOP use cfexecute to chmod the files On Thu, 6 Dec 2001, Alexis Maldonado wrote: ok..

Re: SQL?

2001-12-06 Thread Douglas Brown
I see this in the SQL help files, but not sure how to write out the query for it Order Arranges members of a specified set, optionally preserving or breaking th e hierarchy. Syntax Order(«Set», {«String Expression» | «Numeric Expression»} [, ASC | DESC | BASC | BDESC]) Remarks There are

Re: OT: SPAM lists?

2001-12-06 Thread Len Conrad
And shutting people down with no warning is also inexusable People running open relays are lazy or incompetent, so sending them a warning, even automated (no labor) won't energize them or power up their skills. In 2001, every mail admin has used up his virtual three strikes. No excuse, no

Re: Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Jamie Jackson
Dimo asked privately how to post to the group via a newsreader. Steps: 1. Subscribe to the digest version of cf-talk, and have your email client filter those digest emails straight to the trash can. 2. Use fuseware.com as your news server. 3. Your news reader should support reply by email and

Re: OT: SPAM lists?

2001-12-06 Thread Len Conrad
I'll agree that a blackhole list for web servers is a great idea. Definitely a far greater risk and traffic waste than open relays. You can only say that since you haven't been the victim of a mutli-week, high-source-bandwidth DoS and other malicious attacks mounted through 1000's and 1000's

RE: alternatives to MS SQL

2001-12-06 Thread Jeremy Allen
Ben, You might check out Interbase. It is free as in BEER source code included, yet has borland backing it for full support. It is not an enterprise scale database, but for a mid to large sized application it is a good choice. It has pretty GUI client for windows etc. Thanks Jeremy Allen

Need your help - http header

2001-12-06 Thread Rudy Rustam
Does anyone got any idea how to generate a custom http header? Scenario: Send http post to a url ie. http://localhost/receiver.cfm Receiver.cfm must read exactly the following: ~~ Get the mailserver that powers this list at

Re: OT: SPAM lists?

2001-12-06 Thread BILLY CRAVENS
True - I wasn't thinking of malicious attacks, I was thinking of SPAM. - Original Message - From: Len Conrad [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 06, 2001 11:57 AM Subject: Re: OT: SPAM lists? I'll agree that a blackhole list for web servers is a

Can anyone from Macromedia help me with cfexecute problem in CF 5

2001-12-06 Thread Robert Everland
Ok I have narrowed my problem with cfexecute down to one .exe program I use. It works fine in regular command prompt. The same exact program executes fine with cfexecute in CF 4.5 sp2. What is wrong with this. Why does it not work. I am pulling out my hair. I have to have this program

Re: SQL?

2001-12-06 Thread Jamie Jackson
That's good to know, however, as far as I an tell, that uses a simple numeric value (aggregate values) to sort on, whereas you are sorting arbitrarily. If you don't have access to the table itself, you can use something like QueryAddColumn to insert your arbitrary sort values into the query.

Re: Need your help - http header

2001-12-06 Thread Jamie Jackson
cfheader jamie On Fri, 7 Dec 2001 02:07:41 +0800, in cf-talk you wrote: Does anyone got any idea how to generate a custom http header? Scenario: Send http post to a url ie. http://localhost/receiver.cfm Receiver.cfm must read exactly the following:

RE: CFFile Replacment

2001-12-06 Thread Mike Townend
Sorry What im trying to do is allow file uploading when the administrator has disabled the CFFILE tag... I can get the file to the destination OK however I cannot find a way of working out what the original file was called... So I need to find the Orginal name of the file that is uploaded

RE: Can anyone from Macromedia help me with cfexecute problem in CF 5

2001-12-06 Thread Jesse Noller
what's the code? Jesse Noller Linux Fiend Macromedia Server Development [EMAIL PROTECTED] You're not as stupid as you look, or sound, or our best testing indicates. -Mr. Burns, The Simpsons -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]]

RE: alternatives to MS SQL

2001-12-06 Thread Kurt Ward
Jon- Check into this MySQL interface: http://www.dbtools.com.br/index.php It has some very powerful import/export routines (MS SQL import, export as XML, etc.). I haven't used anything since for MySQL... Kurt -Original Message- From: jon [mailto:[EMAIL PROTECTED]] Sent: Thursday,

Re: OT: SPAM lists?

2001-12-06 Thread Bryan Stevenson
Well Len thanks for calling me lazy and incompetent. Until I got blacklisted I did not know about open relays. So how does that put me in either category? The mail server I was running had no documentation about the possible abuse of or even the existence of open relays. I'm the first to

RE: ODBC Datasources

2001-12-06 Thread Dave Watts
Is there an easy way to get a list of ODBC datasources on the server through ColdFusion? Yes. You can use CFREGISTRY to read the HKLM\SOFTWARE\ODBC\ODBC.INI key. If you want native data sources, you can read the appropriate CF registry key. Also, given a datasource, is there a way to get a

RE: CFFile Replacment

2001-12-06 Thread Robert Everland
Is it a Windows computer. If so you can use Active X objects to read the file. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 1:11 PM To: CF-Talk Subject: RE: CFFile

query name vs. query object

2001-12-06 Thread Alexander \just me\ Apartsev
Hello All, i have a custom tag making a query. I would like to access its results in another custom tag or else in the calling template. The custom tag making the query is called from another custom tag. CFOUTPUT query=#request.thequery# doesn't work cause it needs a literal, not a query

RE: CFFile Replacment

2001-12-06 Thread Mike Townend
Yes I have all that code done... The problem is if someone uploads a file called header.gif I get passed the name of the temporary file that is create ie c:\winnt\acer33.gif this I can then move etc... But how can I get hold of header.gif so that when I do the move the destination name is called

RE: query name vs. query object

2001-12-06 Thread Steve Martin
in that case make sure you pass the literal name of the query into the CFOUTPUT tag. If you've called the query REQUEST.TheQuery then: CFOUTPUT query=request.thequery Steve -Original Message- From: Alexander just me Apartsev [mailto:[EMAIL PROTECTED]] Sent: 06 December 2001 18:20

Re: OT: SPAM lists?

2001-12-06 Thread BILLY CRAVENS
No disrespect intended, but I would say that you should have been aware of the potential issues. Lazy and incompetent are strong terms. Perhaps irresponsibly negligent is better. If someone spreads viruses because their virus scanner didn't tell them they had to update it, that's negligence.

RE: OT: SPAM lists?

2001-12-06 Thread Paris Lundis
it is a classic age old elitism thing... oh yeah you should know... I know someone who broke into over 2000 computers years ago and someone else who distributed a widely acclaimed worm of its day... needless to say their argument and logic was the same understandably... OH THE DUMB ADMIN...

Re: query name vs. query object

2001-12-06 Thread BILLY CRAVENS
If your query is actually #request.thequery#, that variable becomes an object, not a string (the name of your query). Before your CFQuery tag, try dumping the name of your query into a separate string --- Billy Cravens - Original Message - From: Alexander just me Apartsev [EMAIL

RE: CF and Cybercash

2001-12-06 Thread Jeffrey Polaski
Verisign is the way you want to go... If you're doing any credit card processing there's some good (IMHO) suggestions in one of my previous messages: RE: CF and credit card transactions. When I wrote it I didn't know Verisign bought CyberCash... but it's a good thing. Verisign is much

Re: OT: SPAM lists?

2001-12-06 Thread Bryan Stevenson
Yup..I'll take the hit...I should have done more research. The fact still remains that groups like ORDB are going too far in their approach to SPAM Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED]

RE: OT: SPAM lists?

2001-12-06 Thread John Rossi
I emailed my old ISP last year to complain about their open relay, since I was getting bounced emails, and they had no idea what an open relay was even when I pointed them to relevant info. So while incompetent is a strong word it can be appropriate in certain instances. John

OT: exchange rates

2001-12-06 Thread Bryan Stevenson
Hey All, Just wondering if anyone knows of some good places to nab daily exchange rates from (say with CFHTTTP to grab and then stuff in a db)?? TIA Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED]

Re: OT: SPAM lists?

2001-12-06 Thread Bryan Stevenson
You got it Paris..nobody's perfecteven us lazy incompetent folks need help sometimes ;-) Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] ~~ Get the mailserver that

RE: OT: SPAM lists?

2001-12-06 Thread Dave Watts
Well Len thanks for calling me lazy and incompetent. Until I got blacklisted I did not know about open relays. So how does that put me in either category? The mail server I was running had no documentation about the possible abuse of or even the existence of open relays. I'm the first to

Random passwords

2001-12-06 Thread thanh . nguyen
Does Anybody know how to generate random passwords for new users? ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Random passwords

2001-12-06 Thread Joseph DeVore
This code will generate mixed case passwords: ! ~~ 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: Random passwords

2001-12-06 Thread Jamie Jackson
There are many options on the Developer's Exchange: http://devex.allaire.com/Developer/Gallery/SearchResults.cfm?keywords=r andom+password Jamie On Thu, 6 Dec 2001 10:29:46 -0800, in cf-talk you wrote: Does Anybody know how to generate random passwords for new users?

RE: Random passwords

2001-12-06 Thread Steve Martin
There are various ways. One is as simple as: !--- All the letters of the alphabet plus the numbers (26 + 10) --- cfset radix=36 !--- Password length --- cfset length=8 cfset pwd= !--- Etc. --- cfloop from=1 to=#length# index=i cfset pwd = pwd FormatBaseN(Rand()*radix,radix) /cfloop

RE: Random passwords

2001-12-06 Thread Kelly Matthews
uh what code would that be? :) seems to have gotten cut off -Original Message- From: Joseph DeVore [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 1:52 PM To: CF-Talk Subject: RE: Random passwords This code will generate mixed case passwords: !

Re: OT: SPAM lists?

2001-12-06 Thread Len Conrad
Well Len thanks for calling me lazy and incompetent. Until I got blacklisted I did not know about open relays. So how does that put me in either category? If you run a public mail server, don't know what open relays are, nor how to close your own, that's incompetence. The mail server I was

Re: OT: SPAM lists?

2001-12-06 Thread Len Conrad
Yup..I'll take the hit...I should have done more research. The fact still remains that groups like ORDB are going too far in their approach to SPAM They do much more good than harm, ime. collateral damage isn't fun for the damaged, but it's recoverable. These people are doing voluntary work.

Re: OT: exchange rates

2001-12-06 Thread Len Conrad
Just wondering if anyone knows of some good places to nab daily exchange rates from (say with CFHTTTP to grab and then stuff in a db)?? xe.com I use interactively. Don't know about their license concerning sucking their content into your database. Len http://MenAndMice.com/DNS-training

Re: Hi

2001-12-06 Thread Howie Hamlin
Here's a link to some software that prevents Outlook Express from executing any vbs or other executables. I've never used it but figured that I'd make it's existance know (btw - the site has other interesting looking freeware as well).

  1   2   >