CF 8 Lic and VPS

2007-08-02 Thread Joel
Hi Guys, Can anyone tell me what is required with regards to CF Lic when it comes to VPS. If I run 4 VPS on a physical server do I need 1 CF Lic or do I need 4 CF Lic ? Thanks in advance Joel ~| Create robust

Re: Help with Query

2007-07-23 Thread Joel Watson
> >If all your photos will have prices you won't need to left join you > can > >just join on them. > > > > > > > >Joel Watson wrote: > >> > > That's true, but when I combine it with the LEFT OUTER JOIN on the > co

Re: Help with Query

2007-07-23 Thread Joel Watson
>If all your photos will have prices you won't need to left join you can >just join on them. > > > >Joel Watson wrote: >> That's true, but when I combine it with the LEFT OUTER JOIN on the comments, it screws up the comments. While it will return the price

Re: Help with Query

2007-07-22 Thread Joel Watson
>Joe, > >First of all I am not sure if you need LEFT JOIN for both comments and >prices. My first example was based on the assumption that you could have >photos without comments and you might want to display those as well. > >It will help if you can paste the entire query and your output code. > >

Re: Help with Query

2007-07-22 Thread Joel Watson
>First write your sql as > >SELECT p.photoID, p.photoTitle, c.commentId, c.commentText >FROMphotos p > LEFT OUTER JOIN comments c > ON c.photoid_fk = p.photoid >ORDER BY p.photoID, c.commentID > >Then output the query using cfoutput and group like this > > >

Re: Help with Query

2007-07-22 Thread Joel Watson
>First write your sql as > >SELECT p.photoID, p.photoTitle, c.commentId, c.commentText >FROMphotos p > LEFT OUTER JOIN comments c > ON c.photoid_fk = p.photoid >ORDER BY p.photoID, c.commentID > >Then output the query using cfoutput and group like this > > >

Help with Query

2007-07-22 Thread Joel Watson
I have two tables, photos and comments. Their structures are as follows: photos table -- photoID photoTitle comments table -- commentID commentText photoID_fk I need to write a query that will allow me to display all the records in photos while also displaying t

Re: CFFORM Variables

2007-07-20 Thread Joel Watson
> I am trying to use a CFFORM format="Flash" tag that has multiple tabs. > I want the user to be able to enter information on the first tab, and > then by clicking on the second tab, have the data available. I > thought that this was a relatively simple request, but I cannot seem > to get the

Re: Invoking CFC with Javascript onclick event

2007-07-19 Thread Joel Watson
>i usually debug the AJAX stuff with the Firebug plugin for Firefox. >Got that loaded up? If not, you should (not just for this... but in >general, it's a must-have). > >-- >Charlie Griefer > > >"...All the world shall be your enemy, Prince with a T

Re: Invoking CFC with Javascript onclick event

2007-07-19 Thread Joel Watson
>you'd need the onclick to call a function that triggers tha AJAX call. > >I've found JSMX to be a very nice lightweight library for AJAX, and i >think it'd work well for you here (you don't need all the bells and >whistles of a jQuery or YUI or Prototype etc for this specific task). > >http://www.

Invoking CFC with Javascript onclick event

2007-07-19 Thread Joel Watson
glorious day, I need some help! Thanks! Joel ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU Archive:

Re: Help with Query and Loop

2007-07-13 Thread Joel Watson
> > As an illustration, say that users table has the following entries: > > > > userID_fk [1] > > stationID_fk [4] > > checked [0] > > > > So here, the query will return only the value of the second and > forth > > row. > > The forth row isn't checked. I'm assuming that's just a typ

Help with Query and Loop

2007-07-13 Thread Joel Watson
I have a table that contains user and station information, as well as a boolean field for whether the information is displayed or not. It looks roughly like this: uStationID userID_fk stationID_fk checked I have another very similar table that looks like this cStationID customerID_fk stationID

Get Attributes of Cookie?

2007-06-20 Thread Joel Watson
Is there a way to access certain attributes of a cookie, such as the creation and expiration dates? ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products

Re: Query suppressed in flash form

2007-06-10 Thread Joel Watson
>Not really used the flash forms myself. But the one thing that is a must is >that virtual mapping in the IIS for /cfide... > >On 6/10/07, Joel Watson <[EMAIL PROTECTED]> wrote: >> Would that affect the query display? The forms themselves are compiling fine, they j

Query suppressed in flash form

2007-06-10 Thread Joel Watson
I have a flash form select field that is supposed to populate with the titles of some blog posts. I have tested the query and it works as expected. However, when it is used in the flash form select, it does not display. What is most weird about this is that it works as expected on my local h

Re: Question about cfftp

2007-06-08 Thread Joel Watson
riday 08 Jun 2007, Joel Watson wrote: > > My question is this: is it possible to use cfftp to transfer files > directly > > from the client browser to the ftp server > > Where does CFFTP run :-) > If you could control the client, you could have them run an FTP server >

Re: Question about cfftp

2007-06-08 Thread Joel Watson
Yeah, I am using that to get to the cffile variables. >You will need to upload the file to the CF Server, >not cffile. Remember that cf tags run on the server, clients have no access >to them. > > > >-Original Message- >From: Joel Watson [mailto:[EMAIL PROTECTED

Question about cfftp

2007-06-08 Thread Joel Watson
rst, but I just wanted to make sure this is the best way to go about this. What I am thinking is: 1. Use cffile to write the file to coldfusion-based server 2. Open ftp connection and transfer file 3. Close ftp connection 4. Use cffile to delete recently transferred file. Any thoughts? Th

Re: Drink Coffee - What's Ray talking about?

2007-05-29 Thread Joel Watson
>> -Original Message- >> From: Andy Matthews [mailto:[EMAIL PROTECTED] >> Sent: Tuesday, May 29, 2007 3:35 PM >> Subject: Drink Coffee - What's Ray talking about? >> >> http://ray.camdenfamily.com/index.cfm/2007/5/29/Drink-Coffee > >I thought it was that he just had a lot of work to do an

Re: Cookies Across Directories

2007-05-28 Thread Joel Watson
Awesome--that worked. I had seen that in the docs before, but I was not particularly sure what it was referring to. Thanks for the clarification! > You need to set a domain cookie for mysite.com. > > http://livedocs.adobe.com/coldfusion/7/htmldocs/0233.htm > > On 5/28/

Cookies Across Directories

2007-05-28 Thread Joel Watson
I have a site where the user logged in state is managed through a cookie created from a "remember me" form. It seems to work fine. The one problem I have, though, is that the cookie is active or acted-upon only if the user is pointing to the http://www.mysite.com and not the http://mysite.com.

Re: CFDirectory Help

2007-05-24 Thread Joel Watson
y tag if the directory-existence check returns true. Any ideas? Thanks Joel >You can use a nifty UDF for this on CFLIB. Search for MakeDirectory or >Directory. It is a nifty addition. > > >"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, >Richm

CFDirectory Help

2007-05-23 Thread Joel Watson
I have an upload form that writes files to directories which have the same name as the users uploading the files. I want to be able to check and see if the directory exists after the upload form is submitted, and if it does not exist, create it and then upload the file to it. Right now, I have

Re: Advice Using CFMail

2007-05-11 Thread Joel Watson
ry rare but it can happen... >Same as multiple email address in the fields can also be flagged as being >spam as well. > > > >On 5/11/07, Joel Watson <[EMAIL PROTECTED]> wrote: >> ~| Upgrade to Ado

Re: Advice Using CFMail

2007-05-11 Thread Joel Watson
ut >and get blocked by many ISP's. However thats not to day that you might not >with a cfloop either, but at least the emails when spooled will not go >unless the server is idle reducing the time between emails being sent out. > >

Re: Advice Using CFMail

2007-05-11 Thread Joel Watson
At the moment, I'm on Godaddy shared, so I'm not sure. However, I am going to be going the dedicated route soon and will be using mx7. >You don't need to delay the emails anymore... What version of CF are you >using? > > >On 5/11/07, Joel Wa

Re: Advice Using CFMail

2007-05-11 Thread Joel Watson
has posted in the forum and a link to the thread. Thanks again for the response! Joel >Hi Joel > >This would no doubt cause some delay on your mail spool, I do recall that CF >used to have a limit of 40 on the cc/bcc fields but I think this was fixed >in version 5 upwards. > &g

Advice Using CFMail

2007-05-11 Thread Joel Watson
I have a forum in which users can subscribe to particular threads. When other users make replies, all users who are subscribed to the thread will receive an email (basic stuff, I know). My question is regarding what the best practice for handling this mailing should be. Currently, I am queryi

Re: Flash Forms

2007-05-09 Thread Joel Watson
e, User:',mx.controls.Alert.OK); } I'm not sure about the order of validation popups...sorry! Joel >Hi all > >I'm working on Flash Forms for the first time and so far have most things >worked out. > >A couple of things that I am still struggling with are a

Re: Add Together Values of Dyanamic Fields

2007-05-09 Thread Joel Watson
Does that help? > > >. >Ben Nadel >Certified Advanced ColdFusion MX7 Developer >www.bennadel.com > >Need ColdFusion Help? >www.bennadel.com/ask-ben/ > >-Original Message- >From: Joel Watson [mailto:[EMAIL PROTECTED] >Sent: Friday, May 04,

Re: Add Together Values of Dyanamic Fields

2007-05-08 Thread Joel Watson
ion. > >Does that help? > > >. >Ben Nadel >Certified Advanced ColdFusion MX7 Developer >www.bennadel.com > >Need ColdFusion Help? >www.bennadel.com/ask-ben/ > >-Original Message- >From: Joel Watson [mailto:[EMAIL PROTECTED] >

CFMail Text Scrub

2007-05-05 Thread Joel Watson
I have a forum that automatically emails topic replies to subscribers. However, I am having a difficult time getting the text to display properly. I have tried a number of code cleaning functions, but the end result is all the same. Is there something special I have to do to get special chara

Re: upload image and insert the image name into the database for the right product

2007-05-05 Thread Joel Watson
In your INSERT statement, access the name of the file from your upload statement using #cffile.Serverfile#. Ex: INSERT INTO products (imagepath) VALUES ( '#cffile.Serverfile#' ) Obviously, you will want to do all the necessary validation and cfqueryparams...but that is a quic

Add Together Values of Dyanamic Fields

2007-05-04 Thread Joel Watson
I have a form in which several of the fields are generated dynamically based on the choice of the user. I would like to be able to somehow grab the entered values of the fields (client-side) and add them together into another field before the form is submitted. I realize that technically this

Creating search results

2007-04-28 Thread Joel Watson
ularly sure how to pull it off. Thanks! Joel ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://ww

Re: NCFUG - Cascading Stylesheets presentation tonight

2007-04-26 Thread Joel Watson
I wouldn't know how to layout a page in tables if I had to...css rocks, with the obvious and glaring exception of IE 6. >Looking forward to it! > >I've looked into using CSS for layout, but it seemed to be >a pain in the rear trying to accommodate all the different >browsers, so I just stuck wit

Re: Wierd CF Output IE Problem

2007-04-25 Thread Joel Watson
Well, it turns out that the casing of the fieldnames was the problem. I didn't realize that this was an issue for IE (and I don't quite understand why it would be). Anyway, it works, so that is enough. Thanks for your help, and yes, I am going to add the on the final go. Tha

Wierd CF Output IE Problem

2007-04-25 Thread Joel Watson
I am doing a very, very simple search on two database columns, "Title" and "Link". For my query, I am also doing the simplistic: SELECT * FROM my_table WHERE 0=0 AND Title LIKE '%#FORM.SearchText#%' OR Link LIKE '%#FORM.SearchText#%' On the output, I just do a simple output query of search.

Re: Display number of users online

2007-04-18 Thread Joel Watson
Thanks, this works great! I really appreciate your help, as well as the responses from everyone else! Joel >Here you go Joel, I got this code from someone else long ago, and now am >passing it on to you. =) You may store other data about them, but you >can go

Display number of users online

2007-04-16 Thread Joel Watson
I have a site (a forum, really) that allows users to login and post messages. Is there a way that I can display the number of users that are currently logged in? Thanks! ~| Deploy Web Applications Quickly across the enterprise

Blog and Forum Entries - Best Practices?

2007-04-09 Thread Joel Watson
I am getting ready to launch a blog/forum that I have designed and developed. However, I am having a bit of trouble with the text formatting/output. What are some best practices for inserting clean code into the database (mySQL 5.0), writing inserted data to XML-compliant formats, etc.? I am c

Re: CFXML - What am I doing wrong

2007-04-06 Thread Joel Watson
rapping the >cfxml tag around it. This results in a string which in my example is >"oldxml". For example: > > > >#item# > > > >Then you clean the string "oldxml" and then wrap it with the cfxml tag. > >-- Josh > >---

Re: CFXML - What am I doing wrong

2007-04-06 Thread Joel Watson
I'm really new to xml--- Where exactly are you doing this "cleaning"? >> An invalid XML character (Unicode: 0x1c) was found in the CDATA section. > >Here is a regex I use to "clean" my xml of any funky characters: > > >Then you should probably still CDATA newxml to escape the regular bad xml >c

Re: CFXML - What am I doing wrong

2007-04-06 Thread Joel Watson
efer the latter simply because it's native XML and doesn't perform >any conversion of my data. Either should work perfectly well, though. > >On 4/6/07, Joel Watson <[EMAIL PROTECTED]> wrote: >> ~| Deploy

CFXML - What am I doing wrong

2007-04-06 Thread Joel Watson
ntent# #LSDateFormat(Post.PostDate, 'ddd, dd mmm ' )# #TimeFormat(Post.PostDate, 'HH:mm:ss')# GMT http://existdissolve.com/index.cfm?postid=#Post.ID# Thanks! Joel

Session or Cookie or....?

2007-04-04 Thread Joel Watson
This is probably a stupid question, but I have no pride. Consider the Adobe Forums. Let's say I login to the forums on my computer at work. Now, let's say I close my browser, go home, call in sick the next day, and return to the office a day later. When I return to the Adobe Forums on the sa

Re: Solution to ColdFusion slowness on Vista

2007-03-28 Thread Joel Watson
. If Apple would fix that, it would be a no-brainer. >Upgrade to OS X > >MD > >On 28 Mar 2007, at 17:13, Joel Watson wrote: > >> ~| Create robust enterprise, web RIAs. Upgrade & integrate Adob

Solution to ColdFusion slowness on Vista

2007-03-28 Thread Joel Watson
I recently bought a new computer, including (Duhn, Duhn, Duh...) Windows Vista. While I had no trouble at all setting up Coldfusion, nor in connecting my local sites to it and databases, I have noticed some considerable slowdown between the loading times on my new PC and my XP-PC at work (both

Re: Help with List Comparisons, Output Logic

2007-03-28 Thread Joel Watson
ORM.LogoID#', '#ListGetAt(pageIDList, Counter)#', '#ListGetAt(checkedList, Counter)#' ) Anyway, thanks for all of the help. I really do appreciate it! Joel >If you are returning a POST instead of a GET, I'd name all

Re: Help with List Comparisons, Output Logic

2007-03-28 Thread Joel Watson
hem with something >similar (ie page_(ID) so, page_23, page_9, etc.). You can loop over the >formfields list and extract them. > >Sorry if that's not clear, but I'm pretty tired. :-) > >--Ben > >Joel Watson wrote: >> ~~

Re: Help with List Comparisons, Output Logic

2007-03-27 Thread Joel Watson
arsing out these multiple selections to separate database entries? Initially, I thought about using a database, but this was something I did not know how to do. Any suggestions? (BTW, I am dyanamically naming the checkboxes with the "Page" Id...if that helps). Thanks again for yo

Re: Help with List Comparisons, Output Logic

2007-03-27 Thread Joel Watson
es to the id's of the items. > >Then you wont need do any looping, you'll just do this: > > >SELECT * >FROM sponsors >WHERE pagename IN () > > > >(Or something along those lines) > > >> Joel ~~~

Help with List Comparisons, Output Logic

2007-03-27 Thread Joel Watson
I am having difficulty with the output--how would I loop over all the entries in my sponsors table to display only the sponsors where the first list item is "true"? I have tried to craft an cfif statement to catch the criterion, bu

Re: ExpandPath help

2007-03-27 Thread Joel Watson
r suggestions solved the problem brilliantly. Thanks again to everyone, and thanks for the links. I will definitely check this out, as I can see that this will be a critical peice of knowledge to have as I move forward. Joel > I am attempting to modify a flash form that I downlo

ExpandPath help

2007-03-27 Thread Joel Watson
the "images" folder? Also, I have not had any experience thus far (being pretty new to CF) with "expandpath"--if someone could make a short note of explanation, I would appreciate that also! Thanks! Joel

Re: Looking for a good IIS URL rewriting plugin

2007-03-15 Thread Joel
Hi, any extra processing overheads on IIRF compared to the paid versions ? Joel - Original Message - From: "Scott Stroz" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, March 16, 2007 4:40 AM Subject: Re: Looking for a good IIS URL rewriting plugi

Re: How to make query results clickable

2007-03-14 Thread Joel Watson
In your insert statement, reference the "FORM.eqImage" field for your dbase entry and use '#cffile.serverFile#. This will grab the name of the file (in this case, the image) that you have uploaded to your server. cffile.clientfile also works, but this will only get the name of what the user u

Editing Filtered CFGrid results

2007-03-10 Thread Joel Watson
I have a two tables, Questions and Answers. I am wanting to create a cfform that will allow me to easily allow for users to create questions, and then assign answer options to these questions. Using the cfgrid "edit" functionality, I have created the question-creation side no problem. However

Re: Data truncation: Truncated incorrect DOUBLE

2007-03-08 Thread Joel
its Friday afternoon.. almost beer time.. my brian is not working but... Update tableName SET FirstName='D' AND LastName='G' shouldnt the update statement be Update tableName SET FirstName='D', LastName='G' Joel - Original Message - From: &q

Re: Comparing two arrays or lists

2007-03-06 Thread Joel Watson
Huh, for some reason I didn't see those when I was looking around cflib before. They all seem to do the trick--thanks! joel >Did you look at ListCompare ( http://www.cflib.org/udf.cfm?ID=149 ) ? >ListDiff ( http://www.cflib.org/udf.cfm?ID=660 ) ? listsAreDistinct ( >http:/

Re: Comparing two arrays or lists

2007-03-06 Thread Joel Watson
) /> > > > > > > > > > > > >#GetDiff( > "1,2,4", > "1,2,3,4" > )# > > > >

Comparing two arrays or lists

2007-03-06 Thread Joel Watson
I have two lists that I want to compare and be able to show the resulting differences. For example, if my first list has 1,2,3,4 and the second has 1,2,4,4, I want to be able to output that "3" and "4" are different. What would be the best way of going about this? I applied the "arrayCompare"

Re: Insert Looped Form Entry into Database

2007-03-06 Thread Joel Watson
Finally! I figured out how to get it to operate properly. Thanks to everyone for the help! JOel > Thanks for the response. The "Q#QuestionID#" is the name of the > answer choice in my test which the user has selected. I added the > "Results" query becaus

Re: Insert Looped Form Entry into Database

2007-03-06 Thread Joel Watson
lt, you either need to put that value >in a local variable or explicitly name the row. > >Results.QuestionID[CurrentRow] > > > > >-Original Message- >From: Joel Watson [mailto:[EMAIL PROTECTED] >Sent: Tuesday, March 06, 2007 8:53 AM >To: CF-Talk >Subject: Re: Ins

Re: Insert Looped Form Entry into Database

2007-03-06 Thread Joel Watson
sults," it enters all the values, but duplicates each value per the number of answer options available. Again, I really appreciate both your guy's help! Joel >Access the FORM struct using array notation: > >#FORM[ "Q#QuestionID#" ]# > >This should work the way you

Insert Looped Form Entry into Database

2007-03-06 Thread Joel Watson
(i.e., Q1 - Mexico City) so that I can place them in a database when the fieldnames are being dynamically created? I initially tried an insert qualification like '#FORM.Q#QuestionID##', but obviously this does not work as CF complains about "Q" being undefined. Any ideas would

Re: Logging into ASP site via CFHttp (Correction!)

2007-02-13 Thread Joel
stab in the dark here.. but what do you get if you do => isArray(TEMPCOOKIE) - Original Message - From: "John Stottlemire" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, February 14, 2007 4:26 PM Subject: RE: Logging into ASP site via CFHttp (Correction!) > Obviously, for some r

Re: Really Simple(I think) IIS Issue

2007-02-07 Thread Joel
Hi, go through this article and see if it helps you. http://www.iis-resources.com/modules/AMS/article.php?storyid=262 we need more info so we can help you. have you tried reinstalling IIS ? do you have firewall running on the server ? Joel - Original Message - From: <[EM

Re: Looking for CF7 hosting (with some requirements)

2007-01-15 Thread Joel
take a look at xhostsolutions.com, i think you will find what you are looking for. - Original Message - From: "Andy Matthews" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, January 16, 2007 9:57 AM Subject: RE: Looking for CF7 hosting (with some requirements) > Okay... > > Just got

VPS & Coldfusion Lic

2006-10-18 Thread Joel
Hi Guys, Quick question.. Do I need CF lic for each VPS instance or do I only need one CF Lic for the server since the lic is based on physical CPU. Open for correction. :-) Thanks in advance Joel

RE: Big SQL security hole at Crystaltech?

2006-05-08 Thread Joel
cant remove Guest from. Russ what side effects have you come across from running the MS script (hopefully I didn't read your post wrongly)? If anyone can share any info about 2005, that would be great. Joel -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Tues

RE: html2pdf3 issues again

2006-03-29 Thread Joel
Hi, Does "getrecords.image_file" only contain the image file name or the path as well ? -Original Message- From: Srinivasa Teja Palla [mailto:[EMAIL PROTECTED] Sent: Thursday, 30 March 2006 8:28 AM To: CF-Talk Subject: html2pdf3 issues again Everything works fine with that tag, except f

RE: Idea for better hosting

2005-09-29 Thread Joel Nath
Hi, can you run CFMX on "Windows Server 2003, Web Edition" i was told you cant, that it doesnt support it ? -Original Message- From: Emmet McGovern [mailto:[EMAIL PROTECTED] Sent: Thursday, 29 September 2005 12:08 PM To: CF-Talk Subject: RE: Idea for better hosting The original post i

RE: DNS Help?

2005-09-22 Thread Joel Nath
Hi Jeff, why dont you create a personal DNS? just create ns1.hisdomain.com ns2.hisdomain.com and map it to the IP's used for ns1.mydomain.com ns2.mydomain.com so it a personal DNS rather than a private DNS... cheers Joel -Original Message- From: Jeff Chastain [mailto:[

RE: Shared CF Host security

2005-05-18 Thread Joel Nath
Hi guys, they is an article from MM about disabling JSP in the shared environment.. http://www.macromedia.com/devnet/security/security_zone/mpsb02-04.html cheers Joel -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Thursday, 19 May 2005 9:25 AM To: CF-Talk Subject: RE

RE: X.509 Certificates and Coldfusion

2005-02-22 Thread Joel Nath
Any exmaples... or tutorials.. in CF <=> Java ? only been able to find ASP and .Net stuff..:( cheers Joel -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Wednesday, 23 February 2005 4:59 PM To: CF-Talk Subject: RE: X.509 Certificates and Coldfusion You'

X.509 Certificates and Coldfusion

2005-02-22 Thread Joel Nath
signature. 5. The Vendor uses their Private Key to decrypt the message. 6. The Vendor parses the message to authenticate the user. 7. The user is logged in to the vendors system. I have no idea how to go about this... can anyone help.. cheers Joel

Sand Box Issue, please help!!

2005-01-10 Thread Joel Nath
ct("component","test"); ---- cheers Joel ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://

URGENT: pls help.. CFMX web service

2004-08-11 Thread Joel Nath
,ARRDATE={11/08/2004},FIRSTNAME={Joel},DEPTIME={},RTADULTCOUNT={[1]},CARDNO={5123456789012346},LASTNAME={Nath},TOTALCOST={70.00}, RTROOMCOST={[50.00]},COUNTRY={Australia},ARRTIME={},ADDRESS={302/182-190 hampden},STATE={NSW},PGCODE={},RTCODE={[2DES]},AGNCODE={},POSC={2064},NOOFROOMSTYPES={1},R

CFMX => .Net Web Service

2004-08-10 Thread Joel Nath
returnErrorMessage")> "Web service operation "Book"  with parameters {1,BLUEMTNS,SCOTTY,[EMAIL PROTECTED],CARDAUTH={123},USERATETABLE={Y},ORIGBKGNO={e4b1c0e5},RTREQARRAY={[Ljava.lang.Objec t;@1d143d1},COMM={},PMCODE={XVCD},ARRDATE={06 Aug 04},RTMAX={1},FIRSTNAME={Joel},DEPTIME={}

RE: FDF creation (PDF)

2003-07-16 Thread Joel Blanchette
;< /T (#VarName#) /V (#Evaluate("VarStruct.#VarName#")#)>> ] /F (#VarStruct.PDFURL#) >> >> endobj trailer <> %%EOF http://64.42.203.147/forms/test.pdf"; ADDTOKEN="NO"> == Joel Blanchette IT

FDF creation (PDF)

2003-07-16 Thread Joel Blanchette
#VarName#")#)>> ] /F (#VarStruct.PDFURL#) >> >> endobj trailer <> %%EOF == Joel Blanchette IT and System Specialist Point of Impa

Shopping Cart

2003-06-16 Thread Joel Blanchette
Hello All, Does anyone know of a good shopping cart. Nothing too elaborate, but something easy to implement. I don't feel like re-inventing the wheel. Thanks Joel ~| Archives: http://www.houseoffusio

RE: MX Server wont start

2003-02-06 Thread Joel Nath
Hi, What registry change should i be making? (have no idea) is they any link on the MM site etc.. you can point me too. thanks Joel -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED]] Sent: Thursday, 6 February 2003 8:59 To: CF-Talk Subject: RE: MX Server

RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Joel Blanchette
Actually you can view it. http://www.palmgear.com/software/showsoftware.cfm?prodID=5071 You might be able to copy the info with this also. Never used it before. == Joel Blanchette IT and System Specialist Point of Impact Technologies Inc. Tel: (204) 989-0013

RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Joel Blanchette
I meant what is the exact problem? Still to early..:-) == Joel Blanchette IT and System Specialist Point of Impact Technologies Inc. Tel: (204) 989-0013 Email: [EMAIL PROTECTED] == -Original Message- From: Joel Blanchette

RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Joel Blanchette
That is the exact problem? == Joel Blanchette IT and System Specialist Point of Impact Technologies Inc. Tel: (204) 989-0013 Email: [EMAIL PROTECTED] == -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent

RE: SQL Question (Distinct)

2003-02-06 Thread Joel Blanchette
Tried that...I get the following error You have an error in your SQL syntax near '* from stats0301 where DomainID = '43' and SameDayDate = '20030128'' at line 1 I am using MySQL == Joel Blanchette IT and System Specialist Point o

SQL Question (Distinct)

2003-02-06 Thread Joel Blanchette
I am trying to do a query as follows SELECT DISTINCT IPAddress from stats0301 WHERE DomainID = '43' AND SameDayDate = '20030128' Now I need the IPAddress to be DISTINCT but I need to return all the columns. What would I do to accomplish this? Thanks ===

MX Server wont start

2003-02-05 Thread Joel Nath
a look at http://www.corfield.org/blog/2002_07_01_archive.html AND http://vvmx.blogspot.com/2002_10_06_vvmx_archive.html but no help i know i can try re-installing the server as the last option.. any suggestions!! thanks in advance... Joel Nath Senior Developer

WDDX error

2003-02-04 Thread Joel Blanchette
with a general identifier of (CFWDDX), occupying document position (25:1) to (25:78) in the template file C:\CFusion\CustomTags\xmlparser.cfm. Does anyone know what the problem would be? It seems that it lie in the cfwddx tag. Joel

RE: CFServer passwords

2003-01-17 Thread Joel Blanchette
For CF 5 Server Registry Password: #CFusion_Decrypt(AdminPassword, CFKey)# == Joel Blanchette IT and System Specialist Point of Impact Technologies Inc. Tel: (204) 989-0013 Email: [EMAIL PROTECTED] == -Original

RE: CFMX and Multipart Mail

2002-11-28 Thread Joel Nath
TMLMessage# --#MIMEboundary#-- hth joel ~| Arch

RE: GoogleBot Robot.txt

2002-11-27 Thread Joel Blanchette
Rick, I can help you out with this. I would need to know more info about your situation. Email me off list at [EMAIL PROTECTED] and I will be able to help u out. == Joel Blanchette IT and System Specialist Point of Impact Technologies Inc. Tel: (204) 989

RE: SQL Statement

2002-11-05 Thread Joel Blanchette
. == Joel Blanchette IT and System Specialist Point of Impact Technologies Inc. Tel: (204) 989-0013 Email: [EMAIL PROTECTED] == -Original Message- From: Mark A. Kruger - CFG [mailto:mkruger@;cfwebtools.com] Sent: Tuesday, November 05, 2002 2:21 PM To: CF-Talk

SQL Statement

2002-11-05 Thread Joel Blanchette
oblem lies when I do the column + 1. Is there an easy way of doing this without doing a new cfquery? ====== Joel Blanchette IT and System Specialist Point of Impact Technologies Inc. Tel: (204) 989-0013 Ema

RE: Using CF to interface IIS and Microsoft DNS

2002-11-01 Thread Joel Blanchette
This is possible. I have created a DNS script that does that. Email me off list and I will explain the procedure of how to do it. == Joel Blanchette IT and System Specialist Point of Impact Technologies Inc. Tel: (204) 989-0013 Email: [EMAIL PROTECTED

RE: Verity K2 Server

2002-10-21 Thread Joel Nath
Hi Peter, this might help... http://livedocs.macromedia.com/cfmxdocs/Working_with_Verity_Tools/contents.h tm cheers Joel -Original Message- From: Tilbrook, Peter [mailto:Peter.Tilbrook@;abcb.gov.au] Sent: Tuesday, 22 October 2002 8:35 To: CF-Talk Subject: Verity K2 Server Does anyone

RE: CF Mail Problem..

2002-09-30 Thread Joel Nath
Hi Srimanta, try something like... Select * FROM Products WHERE product id=#Form.productid# Productid: #Get_Products.productid# Details: #Get_Products.details# Model : #Get_Products.modelno# hth joel -Original Message- From

<    1   2   3   4   >