[cfaussie] Verity spits the dummy and just a few records!

2006-06-04 Thread Taco Fleur
I have verity indexing a query, the query has approx. 250 records and it takes ages, longer than 4 minutes, I know I can set the time-out to something higher, butthis system will eventually deal with thousands of records. Questions;


1. has anyone else ran into any problems with Verity indexing a query of 250 records (less or more)?
2. can verity handle the indexing oflarge queries this way? (cfquery - cfindex - results)
3. is there some other way to index the query? Maybe in parts?

Thanks in advance.-- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread cfgroupie

Hi Taco,

Yes there are some issues with CFMX7 Verity. I spent endless hours
trying to find ways to get it to work correctly. Simple. It doesn't We
ended up having to index in parts. I.e. batch of 10 or 20 depending on
what your doing. It was a REAL issue and still is. ITs one major issue
I believe that Adobe has is that verity is crap!

The free version from Apache is very good. Just takes heaps of time to
setup. But once you have done it. Its all sorted.

Jeremy


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: looking for CF event management software

2006-06-04 Thread cfgroupie

Build one man! Don't be a Weiner!  ooo wait ...do you want to see
others to get ideas? Or do you need onemmm...okay I'm a weiner!

J.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Exporting settings

2006-06-04 Thread Tom MacKean
I'm just about to rebuild my system. Is there a way to export all my settings (mappings, dsns, etc) out of ColdFusion to be reimported after rebuild. I can it anywhere obvious.

Thanks,

Tom-- IMPORTANT: This email is intended for the use of the individual addressee(s) named above and may contain information that is confidential privileged or unsuitable for overly sensitive persons with low self-esteem, no sense of humor or irrational religious beliefs. If you are not the intended recipient, any dissemination, distribution or copying of this email is not authorized (either explicitly or implicitly) and constitutes an irritating social fauxpas. No animals were harmed in the transmission of this email, although the mutt next door is living on borrowed time, let me tell you. 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread cfgroupie

We simply did a loop over it. Actually we were indexing documents. But
you can use the same theory. Also in ColdFusion 7 there is a sleep
function which will allow you to sleep the server until a particular
process is done. This would depend on how intense the processing is.

hth

jeremy


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne

Hi Taco,

in terms of Lucene (the apache version) I've been using it  
extensively and have nothing but raves to report.  It actually  
doesn't need quite as much setup as it seems from the outside, and  
it's incredibly powerful - not to mention very very fast.  If you go  
down that route, feel free to drop me a line if you need any help.

cheers,
Toby

On 05/06/2006, at 11:54 AM, cfgroupie [EMAIL PROTECTED] wrote:


 Hi Taco,

 Yes there are some issues with CFMX7 Verity. I spent endless hours
 trying to find ways to get it to work correctly. Simple. It doesn't We
 ended up having to index in parts. I.e. batch of 10 or 20 depending on
 what your doing. It was a REAL issue and still is. ITs one major issue
 I believe that Adobe has is that verity is crap!

 The free version from Apache is very good. Just takes heaps of time to
 setup. But once you have done it. Its all sorted.

 Jeremy


 


---

Life is poetry, write it in your own words

---

Toby Tremayne
Senior Technical Consultant
Lyricist Software
0416 048 090
ICQ: 13107913



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Taco Fleur
I must be really out of the LOOP ;-)

I cannot see how you can index a query result in parts, with a loop?

Following is howwe currently do it;

!--- get all content to index from the database ---cfquery name=rsResume datasource=#application.datasource#SELECT R.resumeIdentity, CASEWHEN 
R.candidateIdentity IS NULL THEN 0ELSE R.candidateIdentityEND AS candidateIdentity, R.resumeAsText, R.uniqueFileName, R.fileExtension, R.originalFileName, R.dateStamp
, S.salutationTitle, P.firstName, P.lastName , CONCAT( COALESCE( S.salutationTitle,  ),  , P.firstName,  , P.lastName ) AS fullNameFROM db_au_com_exclaimit.tbl_resume R
LEFT OUTER JOIN db_au_com_exclaimit.tbl_candidate CON R.candidateIdentity = C.candidateIdentity!--- make sure the resume is active ---ANDR.isCurrent = 1LEFT OUTER JOIN db_au_com_exclaimit.tbl_person P
ON C.personIdentity = P.personIdentityLEFT OUTER JOIN db_au_com_exclaimit.tbl_l_salutation SON P.salutationIdentity = S.salutationIdentity;/cfquery!--- update database collection ---
cftrycfindexaction="" collection=col_au_com_exclaimit_query_newkey=candidateIdentitytype=customtitle=fullName
query=rsResumebody=resumeAsText,fullName,originalFileName custom1=uniqueFileName /cfcatchcfset request.Error.doAppendErrorMessage( There was an error updating the collection ) /
/cfcatch/cftry
On 6/5/06, cfgroupie [EMAIL PROTECTED] wrote:
We simply did a loop over it. Actually we were indexing documents. Butyou can use the same theory. Also in ColdFusion 7 there is a sleep
function which will allow you to sleep the server until a particularprocess is done. This would depend on how intense the processing is.hthjeremy Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Taco Fleur
Hi Toby,

that is much appreciated, I might take you up on that offer.
Can you tell me; have you been indexing over a 1,000 records with Lucene?
Not sure how that works, but would you use cfsearch as well to search those collections?

Thanks in advance.
On 6/5/06, Toby Tremayne [EMAIL PROTECTED] wrote:
Hi Taco, in terms of Lucene (the apache version) I've been using itextensively and have nothing but raves to report.It actually
doesn't need quite as much setup as it seems from the outside, andit's incredibly powerful - not to mention very very fast.If you godown that route, feel free to drop me a line if you need any help.cheers,
TobyOn 05/06/2006, at 11:54 AM, cfgroupie [EMAIL PROTECTED] wrote: Hi Taco, Yes there are some issues with CFMX7 Verity. I spent endless hours
 trying to find ways to get it to work correctly. Simple. It doesn't We ended up having to index in parts. I.e. batch of 10 or 20 depending on what your doing. It was a REAL issue and still is. ITs one major issue
 I believe that Adobe has is that verity is crap! The free version from Apache is very good. Just takes heaps of time to setup. But once you have done it. Its all sorted. Jeremy
--- Life is poetry, write it in your own words---Toby TremayneSenior Technical Consultant
Lyricist Software0416 048 090ICQ: 13107913-- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: OT: FLEX

2006-06-04 Thread Bjorn Schultheiss
flex has no access to the systems registry.On 6/5/06, cfgroupie [EMAIL PROTECTED] wrote:
Hey,I'm not a flex programmer, and someone came up and asked me if Flex
could interact with local system settings. i.e. alter/read registrysettings. I said I wouldn't have a clue but I thought it was a validquestion. I know that ColdFusion can't do that, as its server side, butwasn't sure about flex. Anyone know?
Jeremy
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread cfgroupie

Toby,

I too would be interested in setting up lucene. Any code/documents you
have let us know. We are seriously going to ditch Verity becuase of all
the issues we have had with it

Jeremy


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread cfgroupie

cfquery
 name=rsResume
 datasource=#application.datasource#
 SELECTR.resumeIdentity
 , CASE
  WHEN R.candidateIdentity IS NULL THEN 0
  ELSE R.candidateIdentity
 END AS candidateIdentity
 , R.resumeAsText
 , R.uniqueFileName
 , R.fileExtension
 , R.originalFileName
 , R.dateStamp
 , S.salutationTitle
 , P.firstName
 , P.lastName
 , CONCAT( COALESCE( S.salutationTitle,  ),  , P.firstName, 
,
P.lastName ) AS fullName
 FROMdb_au_com_exclaimit.tbl_resume R
 LEFT OUTER JOIN db_au_com_exclaimit.tbl_candidate C
 ON R.candidateIdentity = C.candidateIdentity
 !--- make sure the resume is active ---
 ANDR.isCurrent = 1
 LEFT OUTER JOIN db_au_com_exclaimit.tbl_person P
 ON C.personIdentity = P.personIdentity
 LEFT OUTER JOIN db_au_com_exclaimit.tbl_l_salutation S
 ON P.salutationIdentity = S.salutationIdentity;
/cfquery
!--- update database collection ---
cftry
cfif recordcount GTE 1
cfloop query=rsResume step= from=1 to=x
 cfindex
  action=update
  collection=col_au_com_exclaimit_query_new
  key=candidateIdentity
  type=custom
  title=fullName
  query=rsResume
  body=resumeAsText,fullName,originalFileName
  custom1=uniqueFileName /
 cfcatch
  cfset request.Error.doAppendErrorMessage( There was an error
updating
the collection ) /
 /cfcatch

/cfloop
/cfif
/cftry 


OR something like that. 

Jeremy


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread cfgroupie

Woops one more thing get rid of the query=rsResume 

My bad.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne

Hi Jeremy,

by all means - drop me a line off list and I'll chat to you about it.

cheers,
Toby

On 05/06/2006, at 2:18 PM, cfgroupie [EMAIL PROTECTED] wrote:


 Toby,

 I too would be interested in setting up lucene. Any code/documents you
 have let us know. We are seriously going to ditch Verity becuase of  
 all
 the issues we have had with it

 Jeremy


 


---

Life is poetry, write it in your own words

---

Toby Tremayne
Senior Technical Consultant
Lyricist Software
0416 048 090
ICQ: 13107913



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne
I've used lucene to index hundreds of thousands of records without a discernable problem so far.  You don't use cfsearch to search them, but  you can put together some pretty simple code that will do the same job.  I have a couple of cfcs that do it for me - they're somewhat customized to the apps they're a part of but it's not a big deal to make a reusable one.cheers,TobyOn 05/06/2006, at 2:10 PM, Taco Fleur wrote:Hi Toby,   that is much appreciated, I might take you up on that offer. Can you tell me; have you been indexing over a 1,000 records with Lucene? Not sure how that works, but would you use cfsearch as well to search those collections?   Thanks in advance.  On 6/5/06, Toby Tremayne [EMAIL PROTECTED] wrote: Hi Taco,   in terms of Lucene (the apache version) I've been using itextensively and have nothing but raves to report.  It actually doesn't need quite as much setup as it seems from the outside, andit's incredibly powerful - not to mention very very fast.  If you godown that route, feel free to drop me a line if you need any help.cheers, TobyOn 05/06/2006, at 11:54 AM, cfgroupie [EMAIL PROTECTED] wrote: Hi Taco, Yes there are some issues with CFMX7 Verity. I spent endless hours  trying to find ways to get it to work correctly. Simple. It doesn't We ended up having to index in parts. I.e. batch of 10 or 20 depending on what your doing. It was a REAL issue and still is. ITs one major issue  I believe that Adobe has is that verity is crap! The free version from Apache is very good. Just takes heaps of time to setup. But once you have done it. Its all sorted. Jeremy ---   Life is poetry, write it in your own words---Toby TremayneSenior Technical Consultant Lyricist Software0416 048 090ICQ: 13107913-- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: OT: FLEX

2006-06-04 Thread Chris Velevitch

On 6/5/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:
 flex has no access to the systems registry.

To access the systems registry or anything else on the local system,
use one of the many projector tools that wraps swf file and add to the
wrapper in the appropriate calls. This effective allows you to create
a desktop application using Flex/Flash as the GUI.


Chris
-
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Exporting settings

2006-06-04 Thread Tom MacKean
Thanks, I'll give it a go

On 6/5/06, cfgroupie [EMAIL PROTECTED] wrote:
Yes you can.But it depends on what version. I do it by creating a .car file andthen just re-instating it. Works a charm. I know with BlueDragon you
have an entire XML that stores it but I don't believe CFMX7 does.Jeremy-- IMPORTANT: This email is intended for the use of the individual addressee(s) named above and may contain information that is confidential privileged or unsuitable for overly sensitive persons with low self-esteem, no sense of humor or irrational religious beliefs. If you are not the intended recipient, any dissemination, distribution or copying of this email is not authorized (either explicitly or implicitly) and constitutes an irritating social fauxpas. No animals were harmed in the transmission of this email, although the mutt next door is living on borrowed time, let me tell you. 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Page size from server

2006-06-04 Thread murrah

Hi.

Does anyone know how to monitor the actual downloaded size of a web
page ? ie how many bytes are actually sent from the server.

I am trying to optimise my pages and am experimenting with client
caching etc and am trying to measure  / check how much data is actually
sent from the server so I can test various options.

I ran a test just using the View Page Info in Mozilla and it returned
just the size of the html and didnt count the data in JS src files (for
example) - irrespective of whether the file was in the cache or not.

I guess some kind of port monitoring software could work ??

Any suggestions ?

Thanks,
Murray


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne
I'll clarify - Lucene comes as a jar file :)It's part of the apache jakarta project, but you don't need apache or anything else to use it.  You can just drop the jar into your jrun classpath and away you go.TobyOn 05/06/2006, at 3:15 PM, Ryan Sabir wrote:  Regarding Lucene,   Does it only run on Apache? Is it possible to get it working on the Win 2003 / IIS platform?   thanks.     From: cfaussie@googlegroups.com   [mailto:cfaussie@googlegroups.com] On Behalf Of Toby   TremayneSent: Monday, 5 June 2006 2:27 PMTo:   cfaussie@googlegroups.comSubject: [cfaussie] Re: Verity spits the   dummy and just a few records!  I've used lucene to index hundreds of thousands of records without   a discernable problem so far.  You don't use cfsearch to search them,   but  you can put together some pretty simple code that will do the same   job.  I have a couple of cfcs that do it for me - they're somewhat   customized to the apps they're a part of but it's not a big deal to make a   reusable one.cheers,  Toby  On 05/06/2006, at 2:10 PM, Taco Fleur wrote:  Hi Toby, that is much appreciated, I might take you up on that offer.Can you tell me; have you been indexing over a 1,000 records with Lucene?Not sure how that works, but would you use cfsearch as well to search those collections? Thanks in advance. On 6/5/06, Toby Tremayne [EMAIL PROTECTED] wrote: Hi   Taco,   in terms of Lucene (the   apache version) I've been using itextensively and have nothing but   raves to report.  It actually doesn't need quite as much   setup as it seems from the outside, andit's incredibly powerful - not   to mention very very fast.  If you godown that route, feel   free to drop me a line if you need any help.cheers,   TobyOn 05/06/2006, at 11:54 AM, cfgroupie [EMAIL PROTECTED]   wrote: Hi Taco, Yes there are some   issues with CFMX7 Verity. I spent endless hours  trying to find   ways to get it to work correctly. Simple. It doesn't We ended up   having to index in parts. I.e. batch of 10 or 20 depending on what   your doing. It was a REAL issue and still is. ITs one major issueI believe that Adobe has is that verity is crap! The free   version from Apache is very good. Just takes heaps of time to   setup. But once you have done it. Its all sorted. Jeremy   ---     Life is poetry, write it in your own   words---Toby   TremayneSenior Technical Consultant Lyricist Software0416 048   090ICQ: 13107913-- Taco   Fleur - http://www.pacificfox.com.au   Web Design, Web development, Graphic Design and Complete Internet   Solutionsan industry leader with commercial IT experience since 1994 …

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne
For anyone following the thread I'd also recommend grabbing a little jar file called Luke.  It's a simple little app that lets you peer directly into your indexes and run queries against them - very handy when you're debugging.cheers,TobyOn 05/06/2006, at 3:28 PM, Toby Tremayne wrote:I'll clarify - Lucene comes as a jar file :)It's part of the apache jakarta project, but you don't need apache or anything else to use it.  You can just drop the jar into your jrun classpath and away you go.TobyOn 05/06/2006, at 3:15 PM, Ryan Sabir wrote:  Regarding Lucene,   Does it only run on Apache? Is it possible to get it working on the Win 2003 / IIS platform?   thanks.     From: cfaussie@googlegroups.com   [mailto:cfaussie@googlegroups.com] On Behalf Of Toby   TremayneSent: Monday, 5 June 2006 2:27 PMTo:   cfaussie@googlegroups.comSubject: [cfaussie] Re: Verity spits the   dummy and just a few records!  I've used lucene to index hundreds of thousands of records without   a discernable problem so far.  You don't use cfsearch to search them,   but  you can put together some pretty simple code that will do the same   job.  I have a couple of cfcs that do it for me - they're somewhat   customized to the apps they're a part of but it's not a big deal to make a   reusable one.cheers,  Toby  On 05/06/2006, at 2:10 PM, Taco Fleur wrote:  Hi Toby, that is much appreciated, I might take you up on that offer.Can you tell me; have you been indexing over a 1,000 records with Lucene?Not sure how that works, but would you use cfsearch as well to search those collections? Thanks in advance. On 6/5/06, Toby Tremayne [EMAIL PROTECTED] wrote: Hi   Taco,   in terms of Lucene (the   apache version) I've been using itextensively and have nothing but   raves to report.  It actually doesn't need quite as much   setup as it seems from the outside, andit's incredibly powerful - not   to mention very very fast.  If you godown that route, feel   free to drop me a line if you need any help.cheers,   TobyOn 05/06/2006, at 11:54 AM, cfgroupie [EMAIL PROTECTED]   wrote: Hi Taco, Yes there are some   issues with CFMX7 Verity. I spent endless hours  trying to find   ways to get it to work correctly. Simple. It doesn't We ended up   having to index in parts. I.e. batch of 10 or 20 depending on what   your doing. It was a REAL issue and still is. ITs one major issueI believe that Adobe has is that verity is crap! The free   version from Apache is very good. Just takes heaps of time to   setup. But once you have done it. Its all sorted. Jeremy   ---     Life is poetry, write it in your own   words---Toby   TremayneSenior Technical Consultant Lyricist Software0416 048   090ICQ: 13107913-- Taco   Fleur - http://www.pacificfox.com.au   Web Design, Web development, Graphic Design and Complete Internet   Solutionsan industry leader with commercial IT experience since 1994 … 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] CFMX7 cfmail still

2006-06-04 Thread Taco Fleur
OK, I emailed about this problem to the list a week ago and still have not found a solution to the problem, had someone else to replicate the problem on a CFMX7 install as well. Which makes me think surely there are others out there running or have run into the same problem?


Running a simple cfmail from=valid email address to=valid email address subject=some subject/cfmail statement produces a NULL POINTER error. Has anyone else run into this?


thanks-- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: CFMX7 cfmail still

2006-06-04 Thread murrah

Just tested:

cfmail from=[EMAIL PROTECTED] to=[EMAIL PROTECTED]
subject=some subject/cfmail

and it all worked fine.

Is it something in the body of the tag, rather than the tag itself ?

Murray


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---