Re: Password protect a webservice

2004-08-03 Thread Cutter (CF-Talk)
one? Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com http://www.vividmedia.com/ 608.270.9770 _ From: Mark W. Breneman [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 4:33 PM To: CF-Talk Subject: Password

Re: [CFCDev] CFC webservice issues - round two

2004-08-03 Thread Cutter (CF-Talk)
properties. I just read a technote that said I wouldn't be able to use CF webservices for Flash connection with these types of objects (although it wouldn't have a problem with .Net webservices? I hope that technote was out of date...), that I would have to use Flash Remoting. My biggest problem

Re: (OT) Firewall

2004-08-02 Thread Cutter (CF-Talk)
I use a Watchguard Firebox X500 (scalable hardware solution, very reasonable, with lots of add ons). The new NetGear Gigabit switches are extremely reasonable. Still using a Cisco router... Cutter Michael Dinowitz wrote: Anyone know of a god network firewall system? Zonealarm is good for a

Re: CFC webservice issues - round two

2004-07-31 Thread Cutter (CF-Talk)
' object at all, unless the get/set methods CF automatically creates when you define cfproperties are 'public' rather than 'remote'.) I've never really tried to do webservices, and wouldn't normally mess with it in this instance except we're experimenting with a Flash 7 front end interface. So

Re: The search is killing the server. Please help!

2004-07-30 Thread cf coder
I tried applicaion variables, but as Hugo pointed out since the queries will be different for each user (using different keywords), and the refinement/paging would be per user, the session scope would make sense? I don't know where to go from here. Its getting all messy and confusing. All I want

Re: The search is killing the server. Please help!

2004-07-30 Thread cf coder
Thank you all for your help. I really appreciate it. I've taken Hugo's advise (thank you Hugo) and gone with session scope route. I'm storing the results in a session variable. I'm not caching anything, it just adds more complexity to a already complex solution. Here is the code for anyone who is

CFC webservice objects

2004-07-30 Thread Cutter (CF-Talk)
resorted to using DWMX 2004 to create a CFC, and create the call for it in another page (shiver). What's going on? I created a cfc to use as a webservice with 3 properties and a single init() method. I know that CF automatically creates get() and set() methods for each of the properties. Not rocket

Re: CFC webservice objects

2004-07-30 Thread Cutter (CF-Talk)
: It sure looks like the properties are there.get/setID, get/setCategroyName, get/setStatus. cheers, barneyb On Fri, 30 Jul 2004 17:37:39 -0400, Cutter (CF-Talk) [EMAIL PROTECTED] wrote: Sorry for cross posting this to more than one list, I'm sure some of you will see this twice. OK

Re: SQL Help Please?

2004-07-30 Thread Cutter (CF-Talk)
: UserIDNumReferred 13 22 I know it's GOT to be possible to do it all in SQl.I know I can do it in CF with no problem by looping over my userid list, but that takes way too long. Any ideas? Thanks! Dave [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

CFC webservice issues - round two

2004-07-30 Thread Cutter (CF-Talk)
OK, I finally have my init() method working, as well as learning some of the bugs (like the cfargument required=...now that's annoying). Here's a new one. I have a create method to write to the db. In the DWMX WebServices panel I can see the method (this applies to my update method as well).

The search is killing the server. Please help!

2004-07-29 Thread cf coder
Hello everybody, I'm working on a logging system. The site search as you can imagine is very complicated and a lot depends on it. I have written a stored procedure for the search to make the search quicker with a lot of inner and outer joins (the usual). The seach is very quick most of the times,

Re: The search is killing the server. Please help!

2004-07-29 Thread cf coder
a lot of people have suggested that I cache the results. To do this I must use the cfquery tag, but I'm using the cfstoredproc tag. Is there any cachedwithin equivalent? someone else suggested that I store the results in session variables. Won't there be a performance hit by storing for ex 5000

Re: The search is killing the server. Please help!

2004-07-29 Thread cf coder
I don't know how to user cfquery to execute the stored procedure. I thought they are tags that compliemnt each other (either or). I might be wrong but are you suggesting to wrap the cfstoredproc code inside a cfquery tag? Sorry if this a silly question to ask [Todays Threads] [This Message]

Re: The search is killing the server. Please help!

2004-07-29 Thread cf coder
I don't quite understand the code you posted. cfset tmp = structNew() cfset tmp [expiration] = CreateTimeSpan(0,0,5,0) cfset tmp [variableName] = variableName cfset ArrayAppend(application.cachedQueries, tmp) I keep getting an error when I try to dump application.cachedQueries that its not

mimetype - .log and .ini

2004-07-28 Thread cf coder
When I try to upload either a .log or a .ini file, I get a error message that the mime type was not accepted by the server. Here is the code cfset fileMimeTypes = text/html, application/vnd.ms-powerpoint, application/vnd.ms-project, application/pdf, application/msword, application/vnd.ms-excel,

Re: OT: iframe and mozilla

2004-07-28 Thread Cutter (CF-Talk)
I'm using Mozilla 1.7.1 and iframes work fine for me. Don't know how much of a difference Firefox is... Cutter CFDEV wrote: Hi there, I have an ifram for a wysiwyg editor I made that is only working with IE.. i'm looking at having it working with mozilla firefox.. does anyone know a

Hotel scheduling

2004-07-28 Thread Cutter (CF-Talk)
I may have asked this some time way back, but requirements changed to make it unnecessary at the time. I am looking for a prebuilt package to handle hotel reservation scheduling and management. Any body know of anything? Cutter [Todays Threads] [This Message] [Subscription] [Fast

Re: mimetype - .log and .ini

2004-07-28 Thread cf coder
This is the error msg I get: The MIME type of the uploaded file (application/octet-stream) was not accepted by the server [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: mimetype - .log and .ini

2004-07-28 Thread cf coder
that was simple. I was wondering why you've taken so long :) Thanks Pascal [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

webroot level?

2004-07-22 Thread CF Developer
i know there is a way, just not coming to mind. what I want to be able to do is specify the root level of an application w/o having to set a request variable. such as: request.images = images/ or if i am one folder down: request.images = ../images/ isn't there a way to specify something like:

Re: webroot level?

2004-07-22 Thread CF Developer
will that work for cfincludes? such as:cfinclude template=/includes/thisfile.cfm since this is a shared hosting, i do not have access to establish cf mappings - Original Message - From: Jason L. West, Sr. [EMAIL PROTECTED] Date: Thu, 22 Jul 2004 11:11:16 -0400 Subject: Re: webroot level

Re: CFMX 6.1-Windows authentication failure

2004-07-21 Thread cf coder
thank you all for your help on this. I've got it to work, but it wasn't straightforward. I tried every single trick from the book, but just couldn't get it to work. I got a reply from someone on the coldfusion macromedia forums yesterday and he asked me to refer to this url:

Re: not associated with a trusted SQL Server connection? please help

2004-07-21 Thread cf coder
thank you all for your help on this. I've got it to work, but it wasn't straightforward. I tried every single trick from the book, but just couldn't get it to work. I got a reply from someone on the coldfusion macromedia forums yesterday and he asked me to refer to this url:

Re: not associated with a trusted SQL Server connection? please h elp

2004-07-21 Thread cf coder
thank you for your help on this. I've got it to work, but it wasn't straightforward. I tried every single trick from the book, but just couldn't get it to work. I got a reply from someone on the coldfusion macromedia forums yesterday and he asked me to refer to this url:

Re: Register a dsn in coldfusion code

2004-07-21 Thread cf coder
hi Julia, what goes in the String Template argument? Julia, Can you post your code? Here's a sql-server specific function I use: !--- Public Void addSqlDatasource(String Template, String Dsn, String Server, String Database, String Username, String Password) --- cffunction

Re: MediaPlayer

2004-07-20 Thread Cutter (CF-Talk)
Rick, I would look into using WM9 as opposed to WM7 (fairly wide distribution, so it shouldn't be much of a stretch.) MS has full documentation for control in the SDK, and an active forum on their developer's site, which may give you the information you need. If I had a little more time I

Re: not associated with a trusted SQL Server connection? please help

2004-07-20 Thread cf coder
we are using a desktop application/product (third party) that connects to the sql server with integrated windows authentication. When you launch the application window, it authenticates the user against the windows login. I am working on a project that replaces this desktop client application

hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread cf coder
in the {cf_root}/runtime/servers/lib directory. (Create the {cf_root}/runtime/servers/lib directory if it does not exist.) Start ColdFusion MX The cf administrator system information version details for some reason have changed to: Version 6,1,0,hf52806_61 I'm running cfmx standard edition Any

Re: hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread cf coder
I wasn't sure why it did that and was just wondering if the hot fix has changed any installation settings. I guess its not a biggie Cheers, cfcoder cf coder wrote: MPSB04-06 - Security Patch available for ColdFusion MX 6.1 File Upload Denial of service I installed this Security Patch

CFMX 6.1-Windows authentication failure

2004-07-20 Thread cf coder
I posted a thread on the macromedia forums and got this reply. http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=3threadid=862163 Has anyone installed DataDirect 3.3? If so have you had any problems with it? Cheers, cfdoder [Todays Threads] [This Message]

Re: hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread cf coder
thank you everybody for your help on this regards, cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CFMX 6.1-Windows authentication failure

2004-07-20 Thread cf coder
Thanks Dave for your reply to this thread and the one before this. I've not yet downloaded the dataDirect 3.3 drivers. There's no point really is there? when ColdFusion doesn't support it? In your reply you mention that there is a workaround which may or may not work. If I go with that and

Re: not associated with a trusted SQL Server connection? please h elp

2004-07-20 Thread cf coder
boxes. Recap: What you already know is that the SQL server authentication is set to 'Windows only' because of the reasons I mentioned in my earlier post. Since CF does not currently support trusted connections, validating a datasource connection fails. I've written a simple script to pull data

not associated with a trusted SQL Server connection? please help

2004-07-19 Thread cf coder
The SQL server we have running sits on its own box. So, the web server is independent of it. There are ODBC connections from the web server to the SQL server.The sql server authentication is set to 'Windows only'. I was reading somewhere that ColdFusion MX does not yet support trusted connections

Init() method

2004-07-18 Thread Cutter (CF-Talk)
So, I have the CFC of which I am trying to start on some webservices stuff. Here is a basic object CFC with it's init function (and nothing else.) Following the code is a copy of wsdl I'm getting back. cfcomponent displayname=Category cfproperty name=ID type=numeric default=0 cfproperty

Re: mysql inet_ntoa() cfmx issues

2004-07-17 Thread Cutter (CF-Talk)
Florian, Not positive, but I'm not sure that CF supports the inet_ntoa() function of mysql. I know that there is a UDF at cflib for handling the same type of function (for insert, update, and select statements). This may be better suited for your needs. Cutter pandemic wrote: Hi, I'm

Is this not possible?

2004-07-17 Thread Cutter (CF-Talk)
I have created a CFC object with these basic properties: cfproperty name=ID type=numeric default=0 cfproperty name=category type=Category cfproperty name=subcategory type=string cfproperty name=sscategory type=SubSubCategory cfproperty name=ladiesonly type=boolean cfproperty name=status

cfmx hot fixes

2004-07-16 Thread cf coder
Where can I download these from? Can somebody post a link Regards, cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: cfmx hot fixes

2004-07-16 Thread cf coder
Many Thanks! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: cfmx hot fixes

2004-07-16 Thread cf coder
Hi again, Is there a way to find out what updater version I have installed on the server? If that's not possible then if I install the latest updater version (I beleive its version 3?) and then install the hot fixes... will that be ok? [Todays Threads] [This Message] [Subscription] [Fast

Re: cfmx hot fixes

2004-07-16 Thread cf coder
This is the System Information displayed in cf administrator System Information Server Product ColdFusion MX Version 6,1,0,63958 Edition Standard [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: cfmx hot fixes

2004-07-16 Thread cf coder
ok, I shall do that. But just clarify something.. Have macromedia not released any 'updater versions' for 6.1? Becuase I don't beleive I've got them Thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: cfmx hot fixes

2004-07-16 Thread cf coder
I think I understand it now... CFMX 6.1 includes updater 3. I wanted to know if its okay to install this hotfix ColdFusion MX 6.1: Updated DataDirect drivers for 100% CPU utilization and other issues http://www.macromedia.com/support/coldfusion/ts/documents/cfmx61_sqlserver_cpu.htm I want to

Re: Checking if cookies are disabled in the browser

2004-07-14 Thread cf coder
I decided to go with the request scope if the cookies are disabled. cfif IsDefined(cookie.user) and cookie.user NEQ cfset fromEmail = cookie.user cfelseif IsDefined(request.user) and request.user NEQ cfset fromEmail = request.user /cfif Regards, cfcoder [Todays Threads] [This Message]

Re: Checking if cookies are disabled in the browser

2004-07-14 Thread cf coder
I decided to go with the request scope if the cookies are disabled. cfif IsDefined(cookie.user) and cookie.user NEQ cfset fromEmail = cookie.user cfelseif IsDefined(request.user) and request.user NEQ cfset fromEmail = request.user /cfif Regards, cfcoder [Todays Threads] [This Message]

Test - Disregard and Delete

2004-07-13 Thread Cutter (CF-Talk)
Just a test. Switched to a new access provider and had to set up an internal SMTP to send mail. Checking for a bounce. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Checking if cookies are disabled in the browser

2004-07-13 Thread cf coder
I'm sure this has been discussed on this board on numerous occassions. I can't find any thread that shows how this is done. Can somebody please programatically show me how to check if the browser cookies are disabled. if cookies enabled do this: cfcookie name=user value=bloggs else do this:

Re: Checking if cookies are disabled in the browser

2004-07-13 Thread cf coder
Thanks Pascal and everybody else who replied. I'll give this a try. Thanks regards, cfcoder REF: You can't know if cookies are enabled from the server. Als, using session vars won't help much because they use cookies. If you are on CFMX: - Store info in session vars - Keep session alive for

Re: sql select statement help..

2004-07-07 Thread cf coder
Hi Erick, I appreciate your reply. LogNumber column is a primary key so you cannot have two records with the same LogNumber. This is what I'm trying to do. LogNumberLinked CallLogTitle 01DCLog A 01DC 01DCLog B 01DC 01DCLog C Because Log B is already linked to Log A, if the

OT: eCommerce/shop tracking software

2004-07-06 Thread cf-talk
Good day, some customers of mine want to track what web shoppers are doing on their eCommerce Web-Site. I have identified 4 potential firms (Omniture, Webtrends, Deepmetrix, ClickTracks) with analyzing/tracking software. Most of them are extremely expensive, when you calculate it, if you have more

sql select statement help..

2004-07-06 Thread cf coder
Hello everybody, I need your help with some sql select statement. Let me expalin.. I'm working on a logging system for a support desk which allows customers to call the support desk and log a call if something needs to be done or say for example some equipment needs to be brought. So, coming

Re: sql select statement help..

2004-07-06 Thread cf coder
Can somebody please help me! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Havent seen this error before...

2004-07-04 Thread Cutter (CF-Talk)
I am now getting an odd error: Error Executing Database Query. Unknown Types value The error occurred in /home/httpd/[omitted]/system/cfcomponents/com/[omitted]/boutique/category.cfc: line 43 Called from /home/httpd/[omitted]/secure/editor/_cat.cfm: line 205 Called from

Re[2]: memo-fields and distinct

2004-07-03 Thread cf-talk
Thank you Dick. You didn't really understand my problem I guess. I am not doing a distinct on the memo field. But on another field. This works well. But if I am doing s.th. like: CFQUERY name=CollectArtikel_1 DATASOURCE=something SELECT distinct ArtikelNum FROM dbo.Artikeltext /CFQUERY When I

RE: Posting to db as GMT date/time

2004-07-02 Thread cf-talk
-Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Friday, July 02, 2004 9:41 AM To: CF-Talk Subject: RE: Posting to db as GMT date/time Thanks for your insight. Thanks, Mark _ From: Ian Potts [mailto:[EMAIL PROTECTED] Sent: Friday, July 02, 2004 11:47 AM To: CF

memo-fields and distinct

2004-07-02 Thread cf-talk
Hi list, the following query kills all the duplicates in a query: CFQUERY name=CollectArtikel_1 DATASOURCE=something SELECT distinct ArtikelNum, Artikeltext FROM dbo.Artikeltext /CFQUERY But I would like to view:Artikeltext which is a memo-DB-field. How can I view this field ? Even if I am

OT: ANY GMAIL ACCOUNTS LEFT?

2004-06-30 Thread cf-talk
Hi All, Just wondering if anyone has any GMail invites left?Tony was kind enough to send me one but the link appears to be broken.If someone could send me an invite off list that would be fantastic. -Novak [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-28 Thread cf coder
Hi Guys, I posted this thread on Friday. Can someone please answer my last query. Best regards, cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-28 Thread cf coder
I'll have a word with my manager and see what he says. Thank you guys for your help. Much appreciated! regards, cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
Hello everybody, I have CFMX installed running on a windows machine. I have a section on the site where users can view the files that are attached to a log. I've called this file showAttachments.cfm Here is the code: showattachments.cfm --- cfquery name=showAttachments

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
there must be a way to do this. I mean, its hard to beleive that nobody has ever tried to find a solution to this problem. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
thank you guys for your help. Alistair, I now see why this is not allowed or not recommended. Given that this is not possible, is it possible to open the file that's sitting on the server. I've changed the cfcontent deletefile attribute to 'no' CFHEADER NAME=Content-Type VALUE=#mimetype#

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
thank you guys for your help. Alistair, I now see why this is not allowed or not recommended. Given that this is not possible, is it possible to open the file that's sitting on the server. I've changed the cfcontent deletefile attribute to 'no' CFHEADER NAME=Content-Type VALUE=#mimetype#

Changing the data type length - sql server

2004-06-23 Thread cf coder
Hello everybody, I'm afraid this is a sql server question. I want to update a column in a table in design mode. I'm trying to change the data type (char) length from 30 to 50 characters. There is data that already exsits in the table (over 1 rows). When I click on save I get a message which

Re: Slightly OT: Graphics expert?

2004-06-23 Thread Cutter (CF-Talk)
Ray, I've followed this thread this morning with my cup of joe, and seen some great insight on some of the bigger issues with type and graphics. Adobe Photoshop has never really handled fonts very well, especially with the web image exports (which is best to port to Image Ready instead of the

Re: Time Tracking

2004-06-23 Thread Cutter (CF-Talk)
Storing the time of login is fairly simple. When they login it can be written to a variable in a db table that they have done so (I even store the IP they came in on). Log out is different since so many users don't truly logout, they just jump to a different site. I'm sure there's a way, I've

Re: Changing the data type length - sql server

2004-06-23 Thread cf coder
thanks Philip, I was just not sure if it would change anything. I've inherited the database and have to stick to it. I know its not the best db design :( Thanks again for your help cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and

listfunction problems

2004-06-23 Thread cf-talk
Hi folks, I have a list like: a, b, d, , f, g, , , , s But I would like to have: a, b, d, f, g, s How can I get rid of the empty elements in the list ? Uwe [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re[2]: listfunction problems

2004-06-23 Thread cf-talk
Hello Ubqtous, Wednesday, June 23, 2004, 8:12:49 PM, you wrote: On Wed, 23 Jun 2004 14:05:00 -0400, Ubqtous [EMAIL PROTECTED] wrote: Thanks. Nop, tried it but didn't work, Might be because of the elements aren't empty. I will give the UDF-function a try. Uwe -- Best regards, cf-talk mailto

Timed links

2004-06-17 Thread Cutter (CF-Talk)
I have several links that come from a db. How can I only have these links display between the hours of 4pm and 2am daily? Cutter [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

cfmail and textarea formatting issues

2004-06-16 Thread cf coder
Hello everybody, I have a text area in my form for users to add comments. form name=frm action="" method=post textarea name=userComment/xtextarea input type=submit name=sendEmail value=email /form On form submission I am passing this value in the body of the mail. Here is the code: cfmail

Re: cfmail and textarea formatting issues

2004-06-16 Thread cf coder
yes I'm rendering the text in the email in a text area. I have ColdFusion MX installed on the server. What version of CF are you on? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

why doen't sql delete work if it is followed with a cflocation tag

2004-06-16 Thread cf coder
Hello everybody, I have a form with a cancel button. When the user hits the cancel button, I want to perform a sql delete.. immediately after that I want to redirect the user. Here is the code: cfif isDefined(form.CANCELLOCK) and form.CANCELLOCK eq 1 cfquery datasource=db name=qDel delete

Re: why doen't sql delete work if it is followed with a cflocation tag

2004-06-16 Thread cf coder
yes I am. If I run the query in sql analyser it deletes the row. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: why doen't sql delete work if it is followed with a cflocation tag

2004-06-16 Thread cf coder
into the database?Or does it tell you on the processing page? - Original Message - From: cf coder To: CF-Talk Sent: Wednesday, June 16, 2004 10:35 AM Subject: Re: why doen't sql delete work if it is followed with a cflocation tag yes I am. If I run the query in sql

Re: why doen't sql delete work if it is followed with a cflocation tag

2004-06-16 Thread cf coder
I figured out the problem. Basically what was happenning was, it was deleting the record and re-inserting a new one. That's because I have code just above it that inserts a record if the recordcount is 0. I'm sorry guys for the unnecessary hassle. Best regards, cfcoder [Todays Threads] [This

nightmare redirecting users with cflocation!

2004-06-14 Thread cf coder
Hello everybody, I am trying to redirect the users to a different page if they are not authorised. I have added code in the application.cfm file to check if the user is a member of a group. Here is the code: cfif FindNoCase(\section\dept\administration\,

Re: nightmare redirecting users with cflocation!

2004-06-14 Thread cf coder
When I refresh the browser by clicking on the refresh icon the browser the url changes to the redirected page. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: nightmare redirecting users with cflocation!

2004-06-14 Thread cf coder
Thanks Tony and Bryan for your help. I've got an idea now. Cheers cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Right() and string manipulation help

2004-06-11 Thread cf coder
Hello everybody, Please can someone show me how to do this. I have a comma separated list. cfset itemList = item_id1, item_id2, item_id3, item_id11, item_id12, item_id13. I want to loop through this list and get the character(s) after the item_id (in this case: 1,2,3,11,12,13) Here is the code

Re: Right() and string manipulation help

2004-06-11 Thread cf coder
I don't want to replace it. I want everything after item_id cfloop list=#itemList# index=thisItem cfset itemNo = Replace(thisItem, item_id,) cfoutput#itemNo#/cfoutput /cfloop On Fri, 11 Jun 2004 08:30:51 -0700 (PDT), cf coder [EMAIL PROTECTED] wrote: [Todays Threads] [This Message

Re: Right() and string manipulation help

2004-06-11 Thread cf coder
Sorry Mark... my bad, your code was right. Thanks Dain [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Problems with Evaluate() and Form Input Fields

2004-06-10 Thread cf coder
Hi Guys, I can't find a solution to something and its bothering me. I have a form, with two input fields: text 1 and text 2 form name=frm method=post input type=text name=text 1 value=a,b,c,d input type=text name=text 2 value=e,f,g,h input type=submit name=frmSubmit value=submit /form On form

Re: Problems with Evaluate() and Form Input Fields

2004-06-10 Thread cf coder
Hey Pascal! Thanks again for coming to my rescue. Much apprecaited! Drop the spaces. If you can't: cfset val = form[lnames] Never use evaluate if you don't have to. Pascal [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Problems with Evaluate() and Form Input Fields

2004-06-10 Thread cf coder
actually I have another question. I want to use ListGetAt to get the list element. How do I use this function in my code? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Problems with Evaluate() and Form Input Fields

2004-06-10 Thread cf coder
Sorry Pascal for that silly post. I wasn't thinking straight. Sorry again if I've wasted your time. Hope you have a good day. Do you want to get 1 element instead of looping through the list? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

OT: how to view client abortions ?

2004-06-10 Thread cf-talk
Hi list, a customer of mine wanted to know how many people stopped to download his first start page in his shop-system - cf-based. (took the exit button). I thought about to do it with counting lines like: Error,1896,10/06/03,13:10:12,,Unable to write reply -- client browser stopped waiting

Re[2]: OT: how to view client abortions ?

2004-06-10 Thread cf-talk
oops. sorry. I hope I didn't hurt somebody. Maybe I should have asked my former english teacher BEFOREHAND of writing my subjectline of the thread. ;-) Uwe [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

CFC problems

2004-06-08 Thread Cutter (CF-Talk)
(Revised Repost) Does anyone have an example of a CFC used to instantiate an object. Something with a defined structure, get and set methods, etc. Someone suggested cfczone.org, but none of these that I have downloaded so far seem to be this type of object. Trying to figure out why mine

Datebase Question!

2004-06-04 Thread cf coder
Database question. I have a insert statment. I'm inserting a new record in the table. The table has a primary key (empID) Here is the code cftransaction action=""> cfquery name=addNewEmp datasource=db INSERT INTO ASSETS ( empName, empDesk, empAsset ) VALUES ( 'blog', '1, 'ast10' )

Re: Datebase Question!

2004-06-04 Thread cf coder
SQL [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Datebase Question!

2004-06-04 Thread cf coder
Thanks so much Mark and Philip for your help. It works best regards, cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: path to uploaded file

2004-06-04 Thread cf
sorry forgot part of it you can also set the image path in the Application.cfm page as well to make coding shorter cfset Iphoto=http://#CGI.Server_Name#/uploads/ then call it with img src=""> That sounds great.I've not used the Application.cfm up until now, so I look into that. thanks for

whats your opinion on this cfm program?

2004-06-04 Thread cf
ok, i just had a client ask me why they shouldnt just buy this program http://www.hkvstore.com/cfmmaker/ so i downloaded it, ran it against their db in about 10 seconds had a fairly complete site, couldnt believe it. Of course it needed a few tweaks and a face lift but the code seemed fairly

TRIMMED: whats your opinion on this cfm program?

2004-06-04 Thread cf
ok, i just had a client ask me why they shouldnt just buy this program http://www.hkvstore.com/cfmmaker/ so i downloaded it, ran it against their db in about 10 seconds had a fairly complete site, couldnt believe it. Of course it needed a few tweaks and a face lift but the code seemed fairly

Re: TRIMMED: whats your opinion on this cfm program?

2004-06-04 Thread cf
i certainly wouldnt just use this but to write a big chunk of the code then go back and do with it what you want certainly could save a lot of time and i believe this program did what you mentioned below fyi~ im not advocating it by any means, just caught me by suprise and was sharing. i was on

Re: Can anyone tell me what this error means?

2004-06-04 Thread cf
an error huh? eenie meenie, minie moe, please describe the error so we all know.. ;)~ Hi all... I¹m trying to set-up a cold fusion application I purchased not to long ago... I¹m running Blue Dragon Server 6.1 and MySQL on a linux box. When I run the application I keep getting an error

CFC example

2004-06-03 Thread Cutter (CF-Talk)
I need a good example of an object CFC. One with get and set methods, etc. Anyone? Cutter [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: path to uploaded file

2004-06-03 Thread cf
dont make it more complicated than it has too be cfset uploads=htdocs/HHPv1/images/calendar_uploads/ I have my file uploaded to a directory that is two levels up from my upload cfm and I'm trying to get it's path through: cfset CurrentDir=GetDirectoryFromPath(ExpandPath(../../images/))

Re: path to uploaded file

2004-06-03 Thread cf
i set that path in the Application.cfm template, then say when I need it to display and image its a very simple call and yes i would just store the image name in the db, other wise you get a big mess for your url example, here is the code to do upload !--- do the file upload now --- cfif

<    1   2   3   4   5   6   7   8   9   10   >