Re: OT: Mail server

2005-09-20 Thread Robert Munn
I use XMail: http://www.xmailserver.org/ It is open source, cross-platform, and relatively easy to configure and administer. There are lots of free plugins available for Windows installations, including A-V filters for popular A-V programs, and a very cool program called SCOPE, a Perl engine

Re: looping over the fields of a one record query

2005-09-20 Thread Stephen Moretti
Mark Fuqua wrote: Worked like a charm. Why [thisone][1]? What does the [1] do? The bracketed number or rather array notation is to denote the row in the query that you are looking at, so myquery[mycol][1] will give you the value in mycol in myquery from the first row. It seems like it

Re: OT: Mail server

2005-09-20 Thread Thomas Chiverton
On Tuesday 20 September 2005 00:24, Cedric Villat wrote: What do you guys recommend as a good Windows-based mail server? Preferably open-source, Sendmail. -- Tom Chiverton Advanced ColdFusion Programmer ~| Logware

Re: looping over the fields of a one record query

2005-09-20 Thread Michael Traher
How about just cflock .. cfset session.areaJobInfo = duplicate(areaJobInfo) /cflock you can then refer to session.areaJobInfo.columnname (remembering to cflock if required just a thought :-) On 9/20/05, Mark Fuqua [EMAIL PROTECTED] wrote: I have a query that returns one record with

CF7 admin api

2005-09-20 Thread zhou yu
hi I am working on the setSecuritySandbox method of security.cfc in CFAdmin API. It takes an array of stucture which define the sandbox security rules. An complete example as following (by dump a sandbox) 1 struct ACTION[empty string] CLASSjava.io.SerializablePermission TARGET*

Re: CF7 admin api

2005-09-20 Thread Andy Allan
What specifically are you trying to do? I just created a new sandbox and restricted the CFObject tag using the following code: !--- Connect to the Admin API and log in --- cfset adminObj = createObject(component,cfide.adminapi.administrator).login(password) / !--- If logged in --- cfif adminObj

Re: CF7 admin api

2005-09-20 Thread Andy Allan
This got trimmed the first time (I think). What specifically are you trying to do? I just created a new sandbox and restricted the CFObject tag using the following code: !--- Connect to the Admin API and log in --- cfset adminObj =

RE: Mail server

2005-09-20 Thread Hugo Ahlenius
Cedric, I just installed a new mail server on my windows machine at home, it was hMailServer, and it works really good so far (not so many accounts, but a lot of mails). It supports IMAP (a requirement for me) and POP3, and I use SquirrelMail for web-mail access. The forums for hMailServer are

Re: OT: Mail server

2005-09-20 Thread Rick Root
Cedric, We've been using MDaemon in our department for a long time. It's fairly inexpensive too if you don't have a whole lot of accounts. www.mdaemon.com Rick ~| Discover CFTicket - The leading ColdFusion Help Desk and

Re: using an xml file for cfc settingsray style

2005-09-20 Thread Deanna Schneider
Okay, this is long, but here's some example code. Here's the dbdata (settings) cfc. You'd fill in (yourdefault) with whatever your default info is: cfcomponent displayname=DBData hint=Creates a data access initialization object. cfscript variables.dsn = ; variables.username = ;

Looking for PHP/CF hosting

2005-09-20 Thread Rick Root
I'm looking for a hosting solution for a client - preferably linux based - with support for CFML and PHP on the same server. I need a MySQL Database and shared SSL. It's not a big site and doesn't use a huge amount of bandwidth, probably no more than a few gig a month. Rick

RE: Looking for PHP/CF hosting

2005-09-20 Thread Tangorre, Michael
From: Rick Root [mailto:[EMAIL PROTECTED] I'm looking for a hosting solution for a client - preferably linux based - with support for CFML and PHP on the same server. I need a MySQL Database and shared SSL. It's not a big site and doesn't use a huge amount of bandwidth, probably no

Re: Looking for PHP/CF hosting

2005-09-20 Thread Rick Root
Tangorre, Michael wrote: www.smarterlinux.com sister site to HostMySite Yeah I know about them. I don't like them. I've had several sites there and found their servers to lag fairly often.. ie, a noticeable time lag between page requests... not always, but often enough to annoy me. I'm

Viviotech bluedragon

2005-09-20 Thread Rick Root
Anyone out there using Viviotech shared hosting? They're a bluedragon partner, but I can't tell if their shared hosting includes bluedragon support or not, and their phone number seems to go to a generic conference line. Rick

Re: using an xml file for cfc settingsray style

2005-09-20 Thread Michael Traher
or cfset application.dsn = mydsn cfset application.username = myusername cfset application.password = mypassword whether you read mydsn etc. from an init file, from XML, or maybe derive it from the host name is subject to debate. However surely storing this data in an object is just overly

Re: Viviotech bluedragon

2005-09-20 Thread Rick Root
Shucks, I meant to post this to bluedragon-interest.. sorry cf-talkers! Rick Rick Root wrote: Anyone out there using Viviotech shared hosting? They're a bluedragon partner, but I can't tell if their shared hosting includes bluedragon support or not, and their phone number seems to go to a

cfstoredproc with REF Cursor as out param

2005-09-20 Thread Quinn Ng
Hi all, I am trying to call a stored procedure which has 3 input params and 1 out apram which is a refcursor. I am using CF MX 7 I am getting this error - PLS-00306: wrong number or types of arguments in call to 'GET_METADATA' ORA-06550: line 1, column 7 This is my CF Code for calling the

Re: cfstoredproc with REF Cursor as out param

2005-09-20 Thread Deanna Schneider
Try it without putting the out variable in the procparam - just use the procresult. On 9/20/05, Quinn Ng [EMAIL PROTECTED] wrote: Hi all, I am trying to call a stored procedure which has 3 input params and 1 out apram which is a refcursor. I am using CF MX 7 I am getting this error -

Re: cfstoredproc with REF Cursor as out param

2005-09-20 Thread Thomas Chiverton
On Tuesday 20 September 2005 14:24, Quinn Ng wrote: CFPROCPARAM type = OUT CFSQLType = CF_SQL_REFCURSOR variable = METADATA_CURTYPE CFPROCRESULT name = metadataResult /CFSTOREDPROC One or t'other, not both :-) -- Tom Chiverton Advanced

Re: using an xml file for cfc settingsray style

2005-09-20 Thread Deanna Schneider
The advantage of an object is that we have multiple applications that all use this data. By putting it in an object, we can use the same data over multiple objects, and more importantly, we can store the default data outside the web root. We certainly have a lot of code out there that does

Re: cfstoredproc with REF Cursor as out param

2005-09-20 Thread kugh ng
Thanks Deanna and Tom for replying. I have tried with either OUT or CFprocresult (i.e. not both) and I still get the same error :- Error when I remove the OUT PARAM :- SQL: {call METADATA.get_Metadata( (param 1) , (param 2) , (param 3) )} CFQueryParam values: (param 1) = [type='IN',

Cflogin not expiring

2005-09-20 Thread Pete Ruckelshaus
CFMX7 Standard in Win2K3 Server. I'm using CFLOGIN to authenticate users. The problem is that a users login won't expire when their browser session is idle for longer than the session expiration (currently set to 20 minutes). However, when the browser window is closed, the user login does

Re: Cflogin not expiring

2005-09-20 Thread Ryan Guill
do you have ntauthentication turned on? On 9/20/05, Pete Ruckelshaus [EMAIL PROTECTED] wrote: CFMX7 Standard in Win2K3 Server. I'm using CFLOGIN to authenticate users. The problem is that a users login won't expire when their browser session is idle for longer than the session expiration

Re: cfstoredproc with REF Cursor as out param

2005-09-20 Thread Deanna Schneider
Hm...IIRC, there's an issue with some versions of CF with some Oracle Drivers. I think it's been talked about before...try doing a search on houseoffusion.com http://houseoffusion.com and see what you come up with. On 9/20/05, kugh ng [EMAIL PROTECTED] wrote: Thanks Deanna and Tom for

Re: Cflogin not expiring

2005-09-20 Thread Pete Ruckelshaus
Not that I know of. On 9/20/05, Ryan Guill [EMAIL PROTECTED] wrote: do you have ntauthentication turned on? ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting

Re: CF7 admin api

2005-09-20 Thread Ryan Guill
Hey Andy, Refresh my memory, im going blank this morning. When you say put it through getMetaData(), whats the syntax for that? Thanks, On 9/20/05, Andy Allan [EMAIL PROTECTED] wrote: What specifically are you trying to do? I just created a new sandbox and restricted the CFObject tag using

Re: CF7 admin api

2005-09-20 Thread Ryan Guill
On 9/20/05, Ryan Guill [EMAIL PROTECTED] wrote: Hey Andy, Refresh my memory, im going blank this morning. When you say put it through getMetaData(), whats the syntax for that? Thanks, Please disregard that, im *really* out of it this morning... /goes to get more coffee/ -- Ryan

Re: Cflogin not expiring

2005-09-20 Thread Raymond Camden
You forgot to tie CFLOGIN to sessions. cfset this.loginStorage=session On 9/20/05, Pete Ruckelshaus [EMAIL PROTECTED] wrote: CFMX7 Standard in Win2K3 Server. I'm using CFLOGIN to authenticate users. The problem is that a users login won't expire when their browser session is idle for

Re: CF7 admin api

2005-09-20 Thread Andy Allan
From the code below, just do: cfdump var=#getMetaData(myObj)# / Andy On 20/09/05, Ryan Guill [EMAIL PROTECTED] wrote: Hey Andy, Refresh my memory, im going blank this morning. When you say put it through getMetaData(), whats the syntax for that? Thanks, On 9/20/05, Andy Allan

Re: CF7 admin api

2005-09-20 Thread Andy Allan
Please disregard that, im *really* out of it this morning... /goes to get more coffee/ :) -- [EMAIL PROTECTED] www.creative-restraint.co.uk www.scottishcfug.com ~| Logware (www.logware.us): a new and convenient web-based

Anyone used Report Builder For Excel Files?

2005-09-20 Thread Claremont, Timothy
Is there any documentation that will explain how to use the Excel output? All I ever get is a tiny icon in the upper left corner, but no content, etc. ** This email and any files transmitted with it are confidential and intended

Query to XML

2005-09-20 Thread Dharmendar Kumar
Hi! The method recommended by Macromedia as per their docs is to use CFXML and looping thro your recordset is definitely not the best one - its very bad at performance. CFWDDX does not generate xml in the format i need - so I will have to parse the xml generated by wddx and then use xslt to

Re: Anyone used Report Builder For Excel Files?

2005-09-20 Thread Kenton Gray
We've never had any issues seeing the excel output, it was just that the excel format was worthless as it tries for a visual representation of the report rather than a data view of the report. I've had much better results with query2excel: http://www.cflib.org/udf.cfm?ID=560 Kenton On Sep

problem with cfstoredproc - cutom cursor type

2005-09-20 Thread kugh ng
Hi all, I had asked a related Q before and I think I know where the problem is but dont know how to fix it ! I have been getting an error while calling my stored procedure . PLS-00306: wrong number or types of arguments in call to 'GET_METADATA' ORA-06550: line 1, column 7 If I have a user

Re: Cflogin not expiring

2005-09-20 Thread Pete Ruckelshaus
Thanks Ray, that was it. I appreciate it. Pete On 9/20/05, Raymond Camden [EMAIL PROTECTED] wrote: You forgot to tie CFLOGIN to sessions. cfset this.loginStorage=session ~| Discover CFTicket - The leading ColdFusion

transmitting XML using CFHTTP

2005-09-20 Thread Andy Matthews
I need to transfer some data from our server to another server with a packet of XML. The transfer will send a string of plain text (XML), must be done with an encoding of application/x-www-form-urlencoded and a method of POST. I thought that cfhttp could do it, but I can't find where I can change

Logging users actions - DB or Log4J?

2005-09-20 Thread Michel Deloux
Hi all what's the best choice to store users actions in a CF application(inserts, updates and deletes)? DB or Log4J could be resolve this? Anyone use log4j? Any approaches? Cheers MD ~| Find out how CFTicket can increase your

RE: transmitting XML using CFHTTP

2005-09-20 Thread Hua Wei
Andy, You can use cfhttpparam to build an HTTP request. Example: cfhttp method=post url=#requestURL# resolveurl=false timeout=20 cfhttpparam type=header name=Content-Type value=application/x-www-form-urlencoded / cfhttpparam type=xml name=Urlxml value=#tostring(requestXML)# /

Re: Query to XML

2005-09-20 Thread Donnie Bachan
Returning the XML directly via SQL Server is much, MUCH more efficient than processing the file in ColdFusion. SQL Server has a few functions that allows you to customize the XML output. I use the FOR XML EXPLICIT command which allows you to specify the tag names for example: SELECT DISTINCT 1

Re: Cflogin not expiring

2005-09-20 Thread Raymond Camden
No prob. I was a big fan of the CFLOGIN framework since it first came in, but I've been getting a bit fed up with all the issues surrounding it. It has security issues in the 6.X edition. Session-based cflogin is NOT secure in 6.1, and I believe the cookie version wasn't secure in 6.0. 7.0 fixes

RE: OT: Mail server

2005-09-20 Thread Russ
Since when does sendmail run on windows? -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 20, 2005 4:11 AM To: CF-Talk Subject: Re: OT: Mail server On Tuesday 20 September 2005 00:24, Cedric Villat wrote: What do you guys recommend as a good

Re: Logging users actions - DB or Log4J?

2005-09-20 Thread Thomas Chiverton
On Tuesday 20 September 2005 16:58, Michel Deloux wrote: what's the best choice to store users actions in a CF application(inserts, updates and deletes)? DB or Log4J could be If it's for the purposes of auditing what is going on, a DB is a much better choice - esp. if the DB supports triggers

Re: Logging users actions - DB or Log4J?

2005-09-20 Thread Barney Boisvert
If you want to log query actions, then a trigger is the best, since it'll be pretty much error proof if set up properly. If you want to log business operations, then the DB/log4j distinction becomes a matter of how you want to use the data. Obviously having the log data in a DB facilitates easy

Re: Logging users actions - DB or Log4J?

2005-09-20 Thread Ryan Guill
Barney is definately right about the db is going to be more resource intensive than writing to a file. To me it would come down to how much data you are going to be logging and for how long. Basically, are you going to just be glancing at a log file every once in a while and scrolling through

RE: Logging users actions - DB or Log4J?

2005-09-20 Thread Katz, Dov B \(IT\)
For my site, I've used CFLOG tags and log IP address, and UserID in addition to all other parameters... I have a URL where I can download these cflog files (but I cfcontent them to CSV files) directly into MS Excel. I then manipulate the data there... This allows for flexible logging, and

Re: Logging users actions - DB or Log4J?

2005-09-20 Thread Michael Dinowitz
I use an async process to log user information into a DB. Fast, effective and has 0 impact on a user session while still having the logs the way I want them (id for user agent, etc.) The only limitation is that you need an async process (enterprise), use a hack to CFMX 7

Re: Looking for PHP/CF hosting

2005-09-20 Thread Jay Greer
We switched to CrystalTech for precisely that reason, Rick and we've been very please with them so far. http://www.crystaltech.com ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: Logging users actions - DB or Log4J?

2005-09-20 Thread Barney Boisvert
While that doesn't explicitly delay user requests, it does contribute to load on the server (both CF and DB), so it will have some effect on overall system performance. I suspect that synchronous log4j calls would still be faster to the user, as well as greatly reducing the logging overhead, but

Re: Logging users actions - DB or Log4J?

2005-09-20 Thread Michel Deloux
Thanks all. Using Michael example could be more robust because I can store what I want. Using trigger this is more hard to do, right? Michael do you can share that example using asinc gateway with us? Thanks all MD 2005/9/20, Michael Dinowitz [EMAIL PROTECTED]: I use an async process to log

RE: CF-talk

2005-09-20 Thread Andy Matthews
Hey Ryan! Andy Matthews (creole from sitepoint) here. Nice to see you on this list. I just joined today. Hoping to get some good information. Quick question, have you seen an email from me come through earlier? It had the title transmitting XML using CFHTTP? I sent it over an hour ago and I

RE: Logging users actions - DB or Log4J?

2005-09-20 Thread Kerry
We have an app where we log every user action, it would get to about a million rows in one week, so we log to csv file, and then have a daily schedule which compiles all the raw data into totals - which comes to about 15 rows per day, and a lot less data. Then the reporting app can quickly and

Re: CF-talk

2005-09-20 Thread Ryan Guill
Hey Andy, Good to _see_ you too. Yeah, I saw it come through an hour ago and someone replied minutes later. Did you not get the reply? Now when you post to the list, you wont see your email back, but you should get the replies. On 9/20/05, Andy Matthews [EMAIL PROTECTED] wrote: Hey Ryan!

RE: CF-talk

2005-09-20 Thread Andy Matthews
Apologies for this post to the list. Meant to send it privately. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- ~| Logware (www.logware.us): a

Re: CF-talk

2005-09-20 Thread Michael Dinowitz
Actually, when you post to the list you always get the email that you posted back. Now when you post to the list, you wont see your email back, but you should get the replies. ~| Logware (www.logware.us): a new and convenient

InterSystems Cache

2005-09-20 Thread Michael Dinowitz
Just wondering if anyone is using this database and what they thought of it. Any specific issues to worry about? 'gatchas'? Thanks ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

Re: CF-talk

2005-09-20 Thread Ryan Guill
Thats strange, cause at least in my case I never get the things I post back... On 9/20/05, Michael Dinowitz [EMAIL PROTECTED] wrote: Actually, when you post to the list you always get the email that you posted back. Now when you post to the list, you wont see your email back, but you

Re: Logging users actions - DB or Log4J?

2005-09-20 Thread Tanguy Rademakers
Hello MD, if you want to log what's happening in the db (inserts, updates, etc) then log that in the db itself, using triggers or, even better, check if your db has a built in logging feature that can fulfill your needs. This means you don't need to worry about it in cf, and it will even log

Re: CF-talk

2005-09-20 Thread Aaron Rouse
I think that is just Gmail playing mind tricks on you :) On 9/20/05, Ryan Guill [EMAIL PROTECTED] wrote: Thats strange, cause at least in my case I never get the things I post back... On 9/20/05, Michael Dinowitz [EMAIL PROTECTED] wrote: Actually, when you post to the list you always

Re: CF-talk

2005-09-20 Thread Michael Dinowitz
That's a known GMail issue. If you post from gmail to a list, your post is saved but the copy of the post that comes back is considered a duplicate and removed. I coded the lists here to keep the message-id that you send so if GMail is checking on that, it sees both messages as the same even

Re: CF-talk

2005-09-20 Thread Ryan Guill
ah ha, i see. thanks, On 9/20/05, Michael Dinowitz [EMAIL PROTECTED] wrote: That's a known GMail issue. If you post from gmail to a list, your post is saved but the copy of the post that comes back is considered a duplicate and removed. I coded the lists here to keep the message-id that

List Processing with BlueDragon and CFMX

2005-09-20 Thread Judith Dinowitz
Hi. I'm doing an article, and I had a question. I was told that BlueDragon and CFMX treat lists differently. In ColdFusion, having an empty list item, such as 1, , 3 will be seen by ColdFusion as a list of two items: 1 and 3. BlueDragon, on the other hand, treats this as a list of three items:

Re: OT: Mail server

2005-09-20 Thread Ken Ferguson
just a quick Google in that direction yielded a few answers to that ?: http://www.indigostar.com/sendmail.htm http://www.lilikoi.com/sendmail.html http://www.freedownloadscenter.com/Email_Tools/Mail_Clients/SendMail_for_Windows.html Russ wrote: Since when does sendmail run on windows?

Re: List Processing with BlueDragon and CFMX

2005-09-20 Thread Raymond Camden
I believe it does IF you tell it to, ie, BD will act like CF normally unless you tell it treat the list differently. Either way - the BD Compat lists this stuff out specifically. I'd check there first. On 9/20/05, Judith Dinowitz [EMAIL PROTECTED] wrote: Hi. I'm doing an article, and I had a

Re: List Processing with BlueDragon and CFMX

2005-09-20 Thread Raymond Camden
Ok, I was curious, and yes, BD does this. So for ListToArray for example... BlueDragon adds a new third argument to ListToArray(), a boolean value, which determines whether to include empty list elements in the resulting array. The default is no, which causes it to operate consistently with

Re: List Processing with BlueDragon and CFMX

2005-09-20 Thread Rick Root
I've always hated the fact that coldfusion treats empty list items as non-items. so I usually do a little find and replace to make all empty items non-empty, then when i loop through the array or whatever, I just remove whatever chars I inserted (usually chr(1) ) Nice to know that bluedragon

Re: List Processing with BlueDragon and CFMX

2005-09-20 Thread Judith Dinowitz
Ok, I was curious, and yes, BD does this. So for ListToArray for example... BlueDragon adds a new third argument to ListToArray(), a boolean value, which determines whether to include empty list elements in the resulting array. The default is no, which causes it to operate consistently with

RE: looping over the fields of a one record query

2005-09-20 Thread Dawson, Michael
That was to ensure that you only stored the first record's values, in case there were multiple records from the query. M!ke -Original Message- From: Mark Fuqua [mailto:[EMAIL PROTECTED] Sent: Monday, September 19, 2005 7:40 PM To: CF-Talk Subject: RE: looping over the fields of a one

SOLVED: Treo Blazer: Random characters with CFM - WAS: Treo and CFLocation?

2005-09-20 Thread Kenton Gray
For archival purposes, if you have this issue on IIS check your http headers on the site. After erasing the http headers it removed the weird text on the cfm pages. I don't know why it would display on .cfm pages and not .htm pages, but at least it's gone! Kenton On Sep 19, 2005, at

coldfusion code through a form

2005-09-20 Thread Ryan Guill
Quick question guys, and before I start, let me just say that I do understand the security implications of this, this will be for internal use only and guarded with a login. I am developing a query browser for our database guys here. Basically I am getting a list of datasources, and giving them

RE: transmitting XML using CFHTTP

2005-09-20 Thread Andy Matthews
Hua... I've put your code in place and am sending the same packet of XML the other code uses (as a control) but I'm getting errors. It tells me that the XML is invalid. I copied and pasted the XML and wrapped it in a cfsavecontent tag, then attempted to transmit the data that way. Interestingly

RE: coldfusion code through a form

2005-09-20 Thread Ian Skinner
Just a wild, untried guess: Write this to a file. cfquery name='variables.q' datasource='#form.ds#'#form.sqlQuery#/cfquery Then include that file later in the code. That should read the file as straight code and run it. -- Ian Skinner Web Programmer BloodSource

Re: coldfusion code through a form

2005-09-20 Thread Ryan Guill
Ill try this, and had considered it, but when pulling it in with cffile, its going to come as a variable as text, wouldn't it work out the same way, passing the text as sql to the database? On 9/20/05, Ian Skinner [EMAIL PROTECTED] wrote: Just a wild, untried guess: Write this to a file.

Re: Cflogin not expiring

2005-09-20 Thread Pete Ruckelshaus
Yeah, I'm just using CFLOGIN to get the app up and running. The longer term plan is to use NT Authentication. The app is an intranet app and will be behind a firewall, and the security is really just a way of allowing roles access to various aspects of the site. Pete

OT: Email Hosting

2005-09-20 Thread Nando
I have a client that would like a more reliable hosted email solution (than webhosts normally provide). Anybody have any recommendations? A google query returns a lot of options - not sure how to sort thru the hype. thanks, Nando

RE: coldfusion code through a form

2005-09-20 Thread Ian Skinner
Ill try this, and had considered it, but when pulling it in with cffile, its going to come as a variable as text, wouldn't it work out the same way, passing the text as sql to the database? Yes, that is why you need to include it. cffile action=write file=path/file.cfm ... Some other

Re: coldfusion code through a form

2005-09-20 Thread Deanna Schneider
So, this begs the question - if your guys are knowledgable enough to write straight sql, why aren't they doing it in the DB? Another alternative would be to give them a list of columns and tables and let them build their query that way. Then, you'd be able to dynamically generate the

Re: coldfusion code through a form

2005-09-20 Thread Ryan Guill
ahh, cfinclude, didnt see you say that. Ill try it. Thanks! On 9/20/05, Ian Skinner [EMAIL PROTECTED] wrote: Ill try this, and had considered it, but when pulling it in with cffile, its going to come as a variable as text, wouldn't it work out the same way, passing the text as sql to the

Re: coldfusion code through a form

2005-09-20 Thread Ryan Guill
darn, no dice. I get a db exception: Error Executing Database Query. [DataDirect][SequeLink JDBC Driver]Syntax error at token 0, line 0 offset 0. On 9/20/05, Ryan Guill [EMAIL PROTECTED] wrote: ahh, cfinclude, didnt see you say that. Ill try it. Thanks! On 9/20/05, Ian Skinner [EMAIL

Re: coldfusion code through a form

2005-09-20 Thread Ryan Guill
nevermind! I was making a simple mistake. It works perfectly! Thanks man On 9/20/05, Ryan Guill [EMAIL PROTECTED] wrote: darn, no dice. I get a db exception: Error Executing Database Query. [DataDirect][SequeLink JDBC Driver]Syntax error at token 0, line 0 offset 0. On 9/20/05, Ryan

RE: coldfusion code through a form

2005-09-20 Thread Ian Skinner
ahh, cfinclude, didnt see you say that. Ill try it. Thanks! Also be aware that this solution, if viable, comes with serious race issues. If more then one person is using this at the same time, if you don't account for the race issue, they could get each others results. Again locking or

CF_Underground Early Bird ends 9/30/05

2005-09-20 Thread Michael Smith
The CF_Underground early bird price ends in 10 days on 9/30/05. Join us prior to Macromedia’s MAX conference in Anaheim, California for CF_Underground VII - the “must attend” pre-show event. Enjoy lunch and a beer on us! Have a great time with our speakers including Hal Helms, Michael Smith,

Re: coldfusion code through a form

2005-09-20 Thread Ryan Guill
duly noted. already thought of that. Thanks again! On 9/20/05, Ian Skinner [EMAIL PROTECTED] wrote: ahh, cfinclude, didnt see you say that. Ill try it. Thanks! Also be aware that this solution, if viable, comes with serious race issues. If more then one person is using this at the

RE: Email Hosting

2005-09-20 Thread Andy Matthews
I've used Gearhost in the past and liked their service. I didn't use email through them though so I can't speak for that. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Nando

RE: Email Hosting

2005-09-20 Thread Snake
I'm sure any host can provide you with your own dedicated email server, which Is the only thing that will be betetr than a shared mail server. We actually provide a FREE mail server with every dedicated server CFMX Hosting ColdFusion Hosting Specialists Russ Michaels CFMX

trouble with login

2005-09-20 Thread Andy Matthews
I'm having some trouble getting people to login to specific pages in a website that I've coded. http://girlscoutsofcv.org/page.cfm?pid=44 It's set up to allow the client to password protect a page with one of three levels: 1 girlpower 2 connections 3 staffonly The staffonly

varchar to a number - math, etc.

2005-09-20 Thread Wurst, Keith D.
Hi everyone. I have a quick question. I am trying to convert a varchar (in a sql database) to a value that I can perform math functions on in Cold Fusion. Any help would be greatly appreciated. Thanks. Keith ~| Logware

Re: coldfusion code through a form

2005-09-20 Thread Claude Schneegans
cfquery name=variables.q datasource=#form.ds# #form.sqlQuery# /cfquery It works beautifully. My problem and question is... I can see another issu: single quotes. If user puts something like IN ('A','B',...) in his SQL code, single quotes will be escaped, and the query will fail. The

Re: coldfusion code through a form

2005-09-20 Thread Ryan Guill
I dont think this is a problem, we have used single quotes just now and it worked okay On 9/20/05, Claude Schneegans [EMAIL PROTECTED] wrote: cfquery name=variables.q datasource=#form.ds# #form.sqlQuery# /cfquery It works beautifully. My problem and question is... I can see

SOT: Mod_Rewrite from iismods.com using regex

2005-09-20 Thread Burns, John D
I was wondering if anyone else is using this to do url rewriting. I'm having a regex problem and would like to see if anyone can help me but I'd like to take it off list since it's not directly CF related. Anyone who's good at regex or has experience with Mod_Rewrite and would be willing to offer

Microsoft Expression Well-Suited To Be a Flash-Killer

2005-09-20 Thread Lee
http://dotnet.sys-con.com/read/130306.htm Microsoft Expression Well-Suited To Be a Flash-Killer, Former PM for Project Claims The Official Name of Sparkle Is Now Microsoft Expression Interactive Designer, Bill Gates Announced at the PDC Macromedia Flash, in my opinion, is becoming less of a

Re: SOT: Mod_Rewrite from iismods.com using regex

2005-09-20 Thread Barney Boisvert
I think this is close enough to stay on list. From the mod_rewrite docs: You can prefix the pattern string with a '!' character (exclamation mark) to specify a non-matching pattern. No idea if the IIS version is the same, but give that a go. cheers, barneyb On 9/20/05, Burns, John D [EMAIL

Re: Microsoft Expression Well-Suited To Be a Flash-Killer

2005-09-20 Thread John C. Bland II
http://weblogs.macromedia.com/jd/archives/2005/09/scoble_on_spark.cfm JD highlighted the necessary paragraph in his blog. (btw, 1st post...hi all) On 9/20/05, Lee [EMAIL PROTECTED] wrote: http://dotnet.sys-con.com/read/130306.htm Microsoft Expression Well-Suited To Be a Flash-Killer,

re: Microsoft Expression Well-Suited To Be a Flash-Killer

2005-09-20 Thread dave
CHOKE ** GAG ** PUKE *** ok if this happens all the hair on my azz will disappear and i'll become a master cfm coder ;)~ I like the other article I saw on this were they were talking about it and they had to just try and find a decent ms app not to mention a killer and all they could come

Re: varchar to a number - math, etc.

2005-09-20 Thread Nando
How about casting that varchar to a numeric in your select statement? Something like: Select CAST(theVarChar AS UNSIGNED) AS aNumeric depending on your DBMS On 9/20/05, Wurst, Keith D. [EMAIL PROTECTED] wrote: Hi everyone. I have a quick question. I am trying to convert a varchar (in a

RE: coldfusion code through a form

2005-09-20 Thread Ian Skinner
cfquery name=variables.q datasource=#form.ds# #form.sqlQuery# /cfquery It works beautifully. My problem and question is... I can see another issue: single quotes. That is why, if you look at my example code, I reversed the quotes. cfquery name='variables.q'

Re: OT: Mail server

2005-09-20 Thread Donnie Bachan
We use MailEnable Professional. It does what we need and is getting better all the time. The standard version is free though I would suggest the Professional version which is only a couple of hundred dollars. It has gotten much better recently with its new flitering and SPF options. The only

QD Cart

2005-09-20 Thread Mike | NZSolutions Ltd
hi guys, my client is looking for a cost-effective :o( shopping cart that has paypal integration. has anyone used or is using QD Cart by QuillDesign.com ? any feedback would be appreciated. Kind Regards Mike Little [ Designer ] Graphic Impact Ltd 40 College Hill, Ponsonby, Auckland DDI

Re: InterSystems Cache

2005-09-20 Thread Nathan Strutz
I worked with this one delphi programmer who swears by it and won't shut up... said it was great. I have no desire to try it, personally, but this dude was all over it. cache', rhymes kinda with today. -nathan strutz http://www.dopefly.com/ On 9/20/05, Michael Dinowitz [EMAIL PROTECTED] wrote:

Re: using an xml file for cfc settingsray style

2005-09-20 Thread dave
thanks Deanna :)  and everyone else even WILL!! much appriciated! ~Dave the disruptor~ Some people just don't appreciate how difficult it is to dispense wisdom and abuse at the same time. From: Deanna Schneider [EMAIL PROTECTED] Sent: Tuesday,

re:_Microsoft_Expression_Well-Suited_To_Be_a_Flash-Killer

2005-09-20 Thread S . Isaac Dealey
From: Lee [EMAIL PROTECTED] Sent: Tuesday, September 20, 2005 4:18 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Microsoft Expression Well-Suited To Be a Flash-Killer http://dotnet.sys-con.com/read/130306.htm Oh my god that was badly written...

  1   2   >