Re: SOLR config in CF10

2015-03-31 Thread James McCullough
If you are using CF10 or CF11 the file is now jetty.lax You can find it in this directory {cfusion}\jetty The line you want to change is around 68 or so. The Adobe docs say that in order to configure SOLR (as in upping the memory available to it) in CF10 one needs to edit the solr.lax

Re: SOLR config in CF10

2015-03-31 Thread James McCullough
If you are using CF10 or CF11 the file is now jetty.lax You can find it in this directory {cfusion}\jetty The line you want to change is around 68 or so. The Adobe docs say that in order to configure SOLR (as in upping the memory available to it) in CF10 one needs to edit the solr.lax

Re: cf11 and Tomcat Datasources

2015-01-28 Thread James McCullough
Is possible to configure a data-source in Tomcat and have it visible to the CF11 instance? If so how? I have tried following the Tomcat doc but continue to run into this error: DAOException: Naming Exception while looking up DataSource Connection mydb: Name [mydb] is not bound in

Re: cf11 and Tomcat Datasources

2015-01-28 Thread James McCullough
This is not the right forum for that question. That info is available in the Tomcat documentation. Is possible to configure a data-source in Tomcat and have it visible Yes but how do I add the datasource at the Tomcat level first?

Re: Handling multiple selection

2008-03-14 Thread James McCullough
If you are using = SQL 2000 you could use the following function called dbo.split(). http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=419984SiteID=17 If you are able to add that as a SQL UDF in your database then you could reference your form values as this select * from

Re: Total Amount of a column fields

2008-03-07 Thread James McCullough
If you just need the output just use the first query and do this : cfoutput#ArraySum(rstest['myPrice'])# Oh Thanks I found a very good way thanks to builderau ( http://www.builderau.com. au/architect/database/soa/Query-of-Queries-in-ColdFusion-MX/0, 339024547,320275211,00.htm ) I found an

Re: copy verity collections

2002-07-21 Thread James McCullough
You should be able to do this. The collection itself is proprietary to Verity which is why the collections are backward compatible. The issues are the usual suspects like file permissions, using the same name for the collection, making sure that the collection name is registered and so forth.

Re: copy verity collections - Correction

2002-07-21 Thread James McCullough
I meant to say that you need to restart the k2server daemon on Linux to have the new files recognized. Sorry - Original Message - From: Stefan Salzbrunn [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, July 21, 2002 4:28 PM Subject: copy verity collections Hello list,

Query of Query Sort

2002-05-22 Thread James McCullough
Is there a known issue with a QoQ sort and case sensitivity? The IGNORECASE attribute seems to be ignored on an ORDER BY clause on a text field of mixed case. All lowercase rows appears to be sorted first followed by the uppercase set of rows. Has anyone else faced this issue?

Re: OT SQL Query

2002-04-13 Thread James McCullough
CFX_MAKETREE. It does this without recursive inner joins on the database. http://devex.macromedia.com/developer/gallery/info.cfm?ID=CA34727A-2830-11D4 -AA9700508B94F380method=Full - Original Message - From: Paul Giesenhagen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday,

Re: Borland JBuilder6 for CFX

2002-04-09 Thread James McCullough
You have it looking for cfx.jar, right? - Matt Small -Original Message- From: James McCullough [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 9:08 PM To: CF-Talk Subject: OT: Borland JBuilder6 for CFX Has anyone here used Jbuilder to build CFX tags? I am trying to setup

Re: What IDE are you using for Java CFX?

2002-04-09 Thread James McCullough
Now that it is configured, Jbuilder from Borland works great. It has the tag-completion style popups that CF Studio has for all classes even the ones that you create. The personal edition is free also. __ Structure your

OT: Borland JBuilder6 for CFX

2002-04-08 Thread James McCullough
Has anyone here used Jbuilder to build CFX tags? I am trying to setup a project environment to import the com.allaire.cfx.* classes and Jbuilder says that it cannot find the classes. When I use the command line compiler with the classpath attributes supplied, the tag compiles and works.

RE: Verity and META tags...

2001-07-07 Thread James McCullough
It won't index the description either. The only way to do it is to use CFDIRECTORY to grab the names of the files,CFHTTP or CFFILE to get the content and insert the content into the database and index the column. If you want to separate the metas you could parse them out and put them in a

RE: Barcode generation

2001-06-15 Thread James McCullough
If you have the barcode font you use cfx_jpeg_text to output it as one image. http://devex.allaire.com/developer/gallery/info.cfm?ID=CA347122-2830-11D4-A A9700508B94F380method=Full -Original Message- From: stas [mailto:[EMAIL PROTECTED]] Sent: Friday, June 15, 2001 6:44 AM To: CF-Talk

Passing a javascript array back to CF

2001-06-14 Thread James McCullough
Is there a possibly using WDDX to pass a javascript array back to CF or can it be done using a javascript function alone? I am trying to pass the forms.elements[] array back to CF to test for the existence of certain names using forms.elements[].name. James McCullough

RE: CFX_REPLACE_CHARS

2001-06-02 Thread James McCullough
Here it is Dave. One thing I have found useful is to use Google to search for the tag. It is amazing how many of these kinds of tags you can find!! http://www.forumspot.org/downloads/download.cfm -Original Message- From: David Hannum [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01,

RE: CF, Verity, and External collections

2001-05-08 Thread James McCullough
You might also check out webinator from www.thunderstone.com. I believe it has the functionality you are looking for. Also, CF5 will include an updated version of Verity K2 but I am not sure what the new features are. -Original Message- From: Carlson, Kevin [mailto:[EMAIL PROTECTED]]

RE: Finding a space in a string..

2001-03-23 Thread James McCullough
I am assuming that tempdefendant is a variable however this statement will read it as a string. Since there is no space in tempdefendant as a string you will get a zero. Do this instead. CFSET pos=Find(" ","#tempdefendant#") -Original Message- From: Angél Stewart [mailto:[EMAIL

CF 5.0 Search wwithin a search with Verity?

2001-03-22 Thread James McCullough
Has any one looked to see if CF 5.0 will allow the Verity equivalent of querying a resultset? It would really be nice to use CFSEARCH on a Verity resultset. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Javascript: Tearing my hair out

2001-03-08 Thread James McCullough
Could you post the entire form with the form names?It appears that you have an error in your DOM references. It would help to look at the entire form and see what field and form names you are using. -Original Message- From: Windle, Kevan [mailto:[EMAIL PROTECTED]] Sent: Thursday, March

RE: Verity and Security.. ??

2001-03-05 Thread James McCullough
You could create two collections; one with permissions and one without. Use the CF_PATHINDEX tag to exclude the directories for unauthorized access. If the authorized files in the directory are mixed with unauthorized files, create list of files that require authorization and loop through the

RE: Verity :: excluding folders/files

2001-03-01 Thread James McCullough
There is a CF_PATHINDEX tag in the gallery that does just this. http://devex.allaire.com/developer/gallery/info.cfm?ID=A155CD89-7445-11D4-AA A400508B94F380method=Full -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 8:16 AM To: CF-Talk

RE: Dumb Verity question

2001-02-28 Thread James McCullough
CF uses the CFINDEX tag to create an index specific to Verity. It is a set of files that catalog the content of database or collection of files that you choose to index. CFSEARCH then passes search terms through the "criteria" parameter to find matches in the index that you created and return the

RE: Verity doesn't work with office 2000 documents!

2001-02-26 Thread James McCullough
You could save the documents in their Office 97 formats. Or you might check into Webinator from Thunderstone. It will index anything including Acrobat 4 files which Verity won't index either although that might be in the commercial version. It is free and very fast.

RE: Attribute set validation Error. Why?

2001-02-26 Thread James McCullough
If you are grouping fields then you need to specify which field to group on. Especially if you are using nested cfoutput statement. Otherwise there is no need for the groupcasesensitive attribute. -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Monday, February 26,

RE: Passing hidden fields

2001-02-26 Thread James McCullough
You can use cf_embedfields http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34704C-2830-11D4-AA 9700508B94F380method=Full -Original Message- From: Roque,Carlos [mailto:[EMAIL PROTECTED]] Sent: Monday, February 26, 2001 9:32 AM To: CF-Talk Subject: Passing hidden fields I have a

RE: Verity and hand-built queries

2001-02-25 Thread James McCullough
Is it possible that the query is being cached and therefore not looping through all of your tables? If so, you could either dynamically name the queries by appending a counter to getpages (getpages1,getpages2) and that would force a query to be run for each iteration of the loop. -Original

RE: Verity and hand-built queries

2001-02-25 Thread James McCullough
Aha!! I tried a little experiment of my own using Nate Weiss' cf_queryunion tag to append queries together exactly the way that you want to. It runs a set of queries and appends all records to the first query. I output the merged query and all the records were there. I then indexed this query

RE: Web Trends

2001-02-25 Thread James McCullough
I think you can have WT output the info in .xls format and access that as a datasource or import that into Access/SQL. -Original Message- From: Mark Smeets [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 25, 2001 10:09 PM To: CF-Talk Subject: Web Trends Hi all, Does anyone know if

RE: Web Trends

2001-02-25 Thread James McCullough
also try this http://devex.allaire.com/developer/gallery/info.cfm?ID=95DDF02F-643B-11D4-83 E000508B94F85Amethod=Full -Original Message- From: Mark Smeets [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 25, 2001 10:09 PM To: CF-Talk Subject: Web Trends Hi all, Does anyone know if

RE: OT : Forms Question...

2001-02-24 Thread James McCullough
Kevin this will do it. form name="form1" Areainput name="areacode" size="3" type="text" onkeyup="javascript:if(this.value.length==3) document.form1.prefix.focus();"br Prefixinput name="prefix" type="text" /form -Original Message- From: Kevin Mansel [mailto:[EMAIL PROTECTED]] Sent:

RE: OT : Forms Question...

2001-02-24 Thread James McCullough
Kevin, you don't need the javascript: form name="form1" Areainput name="areacode" size="3" type="text" onkeyup="if(this.value.length==3)document.form1.prefix.focus();"br Prefixinput name="prefix" type="text" /form -Original Message- From: Kevin Mansel [mailto:[EMAIL PROTECTED]] Sent:

RE: kinda OT: JS/CF

2001-02-23 Thread James McCullough
Make sure that you are referencing the form from the page that opens the window as "opener" in the popup window. window.opener.document.formname.formfield.value=foo; -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Friday, February 23, 2001 1:41 PM To: CF-Talk

RE: bold verity search terms

2001-02-22 Thread James McCullough
Thanks James. There is one thing I am unclear though. How do you exclude certains areas of the page in the parsing. For example, how do you limit the parsing to whatever is in between the body tags? Also, if there is an image that has a name that matches the search term then that image name will

RE: bold verity search terms

2001-02-21 Thread James McCullough
Sebastian, On your output page Verity gives you access to the "Summary" variable and you could do a simple loop over the criteria and a simple replace. cfparam name="form.criteria" default="funny Fusion" cfparam name="Summary" default="James is the funny guy with Cold Fusion Experience" cfloop

RE: verity memory leak with cf4.51 and sp2

2001-02-20 Thread James McCullough
There is a very bad memory leak with indexing a Verity collection regardless of which Windows platform you're using. I tried indexing a collection 0f 700,000 records with 512 MB RAM on a quad Xeon machine and it kept bombing out on the index. Increasing it to 1 Gb worked. One way around this is

RE: a single quote bug with cf4.0?

2001-02-16 Thread James McCullough
Looks like you are missing a comma between "Water Utilities" and "Use of Plastic Pipe" Try that first -Original Message- From: Rick Lamb [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 6:50 PM To: CF-Talk Subject: a single quote bug with cf4.0? I'm having a problem with a

RE: OT SQl7 and multi Proc

2001-02-12 Thread James McCullough
The answer is yes. This is an exercpt from a white paper on parallel queries on multiple processors. Factors Affecting Parallelism The automatic decision whether to employ parallel query processing in SQL Server 7.0 depends on the answers to these questions: Is SQL Server running on a

Refresh issue with shopping cart

2001-02-08 Thread James McCullough
I am wondering how to get around this problem. When I add an item to a shopping cart, the correct number of items is added. However, when the refresh button is hit, the items are added again with each refresh button. This happens with Able Commerce carts as well. How would you get around this?

RE: java IE

2001-02-01 Thread James McCullough
This is why it doesn't work. http://support.microsoft.com/support/kb/articles/Q232/7/02.ASP -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 3:56 PM To: CF-Talk Subject: Re: java IE I have the curly bracket in my code I just missed it when I

Link to Custom tag

2001-01-17 Thread James McCullough
I am wondering if there is a way to this. Normally a custom tag looks like this: cf_CustomTag name="foo" query ="foo2" How would you escape this so that this works without referring to the template directly as a file? a href="cf_CustomTag name="foo" query ="foo2"" Link/a

RE: The acquisition of Allaire by Macromedia

2001-01-17 Thread James McCullough
Can we please take this to CF-Community!! -Original Message- From: Dave Yang [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 17, 2001 1:05 PM To: CF-Talk Subject: RE: The acquisition of Allaire by Macromedia Steve Drucker wrote: CF isn't going away -- in fact, with

RE: JS Question

2001-01-15 Thread James McCullough
Yes. body onload="document.{formname}.{formfield}.focus()" Formname is the name of the form or if you have more than one use the array position for it such as form[0] for the first form, form[1] for the second and so forth because js arrays start at 0. Formfield is the input field name you want

RE: Collection and Indexing question

2000-12-27 Thread James McCullough
-Original Message- From: mike [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 27, 2000 2:39 PM To: CF-Talk Subject: Collection and Indexing question 1.) Can a site have more than one collection? Yes. Just create a collection for each that you need in the administrator or create

RE: CFFTP -- INVALID PORT COMMAND

2000-12-19 Thread James McCullough
The only time I got this was when connecting to a Linux box and FTP had terminated. Restarting the FTP on the Linux box fixed it. -Original Message- From: Sean Renet [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 19, 2000 5:12 PM To: CF-Talk Subject: Re: CFFTP -- INVALID PORT COMMAND

RE: Help with CFFTP

2000-12-11 Thread James McCullough
You are connecting to a server that does not have ftp services or ftp services turned on, so you get the 500 error. Most of the time it means that the FTP address is wrong. Check your connection by using the server attrib and see if that works. Then you will know that you need to change the

RE: Session Variables over Clustered Servers?-WDDX?

2000-12-09 Thread James McCullough
to in either case? Thanks James McCullough -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 09, 2000 6:42 AM To: CF-Talk Subject: RE: Session Variables over Clustered Servers I was under the impression that session variables were stored in RAM

RE: SQL DateAdd function - how do I?

2000-12-06 Thread James McCullough
Just one 'H' #DateAdd('H', '3', Now())# -Original Message- From: Walker, Matthew [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 6:55 PM To: CF-Talk Subject: RE: SQL DateAdd function - how do I? select StartDate, this, that from tblName where StartDate between

RE: ot javascript

2000-12-06 Thread James McCullough
You might try "Javascript Editor." http://download.cnet.com/downloads/0-10084-101-2130330.html -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 8:24 AM To: CF-Talk Subject: Re: ot javascript Actually, it's an IDE for Java, not

RE: CFML.exe with parameters

2000-12-01 Thread James McCullough
Jaime, Does this process work on a shared drive provided I have authenticated access to the share? I am trying to issue this command under xp_cmdshell and was wondering if you might have a code sample that illustrates this technique. Thanks -Original Message- From: Jaime Garza

RE: Cold Fusion and ASP

2000-11-29 Thread James McCullough
Check to make sure that "Maintain database connection" box is unchecked for that datasource. It puts a lock on the database while CF is running if you do. To make sure look in the directory of the database and see if the ".ldb" lock is active(present). If so CF might have the db locked.

RE: Populating SELECT from other SELECTs?

2000-11-27 Thread James McCullough
Use the CF_twoselectsrelated tag. http://devex.allaire.com/developer/gallery/info.cfm?ID=CA347197-2830-11D4-AA 9700508B94F380method=Full -Original Message- From: Cyrill Vatomsky [mailto:[EMAIL PROTECTED]] Sent: Monday, November 27, 2000 9:42 PM To: CF-Talk Subject: Populating SELECT

RE: CFIF

2000-11-26 Thread James McCullough
L the user is trying to goto, it should be something like the URL they put in there address box in the browser. Thanks, Robert - Original Message ----- From: "James McCullough" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Saturday, November 25, 2000 10:22

RE: Structures: Where is data kept

2000-11-25 Thread James McCullough
of the database and then serialize it into the structure. This is a good way to build a clusterable application that uses client variables or other structures for setting user preferences. HTH James McCullough -Original Message- From: Michael She [mailto:[EMAIL PROTECTED]] Sent: Saturday

RE: Inserting HTML Anchor into Oracle

2000-11-25 Thread James McCullough
try INSERT INTO MyTable (Link) VALUES ('#MyLink#'); -Original Message- From: Joseph J. Sanger, M.D. [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 25, 2000 10:02 AM To: CF-Talk Subject: Inserting HTML Anchor into Oracle I am trying to insert a record with the following text into

RE: CFIF

2000-11-25 Thread James McCullough
If you are trying to find out where the user is coming from in order to redirect them use cgi.http_referer like this CFIF Trim(cgi.http_referer) is "xyz" CFLOCATION url="url_to_send_to" /CFIF -Original Message- From: netman [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 25, 2000

RE: 2 Obstacles

2000-11-21 Thread James McCullough
Try the CF_PATHINDEX custom tag in tag gallery. This will let you name the directories that you don't want indexed. http://devex.allaire.com/developer/gallery/info.cfm?ID=A155CD89-7445-11D4-AA A400508B94F380method=Full -Original Message- From: Hayes, David [mailto:[EMAIL PROTECTED]]

RE: Any good way to index/search pdf docs via CF

2000-11-21 Thread James McCullough
Try this. cfcollection action="create" collection="pdf_files" path="[fully_qualified_path]" cfindex action="refresh" key="[file path]" urlpath="[web directory mapping i.e. 'http://www.mysite.com/pdf/ ]" extensions=".pdf" recurse="Yes/No" Recurse will

RE: Does Anyone understand encrypt/decrypt??? [CF-Talk]

2000-09-20 Thread James McCullough
You might try using the trim function when setting the variable. cfset txtoutput = #Trim(get_report.report)# This will remove the trailing spaces that might be invalidating the encrypted string. -Original Message- From: Marcus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 20,

Re: TwoSelectsRelated

2000-05-05 Thread James McCullough
Since you are setting the size =1, try setting the AUTOSELECTFIRST attribute ="Yes." This will autoload the first selection and therefore populate the second box as well. This should work on the back button as well. At 09:41 AM 5/6/00 +1200, you wrote: Hi All (Sorry if this has already

Texis?

2000-04-25 Thread James McCullough
Has anyone used Texis with CF? If so, what kind of performance have you seen? -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk