Re: Contract rates

2007-04-12 Thread RichL
Thanks for the input so far guys. I did wonder about the possibility of leaving the agency but the agency and the client have quite a good working relationship and an understanding or agreement that the client won't take on any staff directly (perhaps for some length of time) after working for the

Opensource Web Analytics

2007-04-12 Thread Dwayne Cole
I'm looking for a free or low cost web analytics tool that I can use on a few sites I host. Does anyone here have any recommendations? ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more

RE: Opensource Web Analytics

2007-04-12 Thread David Low
From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: 12 April 2007 10:01 To: CF-Talk Subject: Opensource Web Analytics I'm looking for a free or low cost web analytics tool that I can use on a few sites I host. Does anyone here have any recommendations? If you're looking for something

RE: Opensource Web Analytics

2007-04-12 Thread Adrian Lynch
AWStats is alright. I prefer google analytics though. Adrian -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: 12 April 2007 10:01 To: CF-Talk Subject: Opensource Web Analytics I'm looking for a free or low cost web analytics tool that I can use on a few sites I

Re: reading params from a file v/s getting them from a file

2007-04-12 Thread Tom Chiverton
On Wednesday 11 Apr 2007, George Abraham wrote: Well, this is an application that will be serving multiple websites (with different vHost names.) When a session is initiated with the application, it determines which site it is. Then there are a host of params that are set according to the

Re: Tons of records - archive, or what?

2007-04-12 Thread Tom Chiverton
On Wednesday 11 Apr 2007, Will Tomlinson wrote: I have a mySQL db that has lotsa joins, lotsa filters, etc., and could potentially accumulate millions of records over a year or two. The db revolves around school semesters. Will queries always want to include all the data, or only the most

cf_htmlemail

2007-04-12 Thread richard
Hi all, I was thinking about using the cf_htmlemail tag and was wondering if anyone one had any experience with it (good or bad). Thanks. ~| Create Web Applications With ColdFusion MX7 Flex 2. Build powerful, scalable

Webservice Issue

2007-04-12 Thread Robert Rawlins - Think Blue
Hello Guys, I'm having a very strange issue with Web Services, well, maybe it's NOT strange, I'm just new to it :-D I have two identical functions, with different names within the component, yet when I call them, one works, the other doesn't. cfcomponent name=Location

Using Spry to Page forward and backward through data

2007-04-12 Thread Chad McCue
I am trying to use spry to page forward and backward through data returned through a query. I have been looking at Bruce Phillips blog about this and I can't get the thing to work. Always get the SPRY spry:region or sprydetailregion attribute has no data set! error. The customer will need to

Re: Using Spry to Page forward and backward through data

2007-04-12 Thread Massimo Foti
Spry 1.5 will have this kind of functionality build in: http://labs.adobe.com/technologies/spry/preview/samples/data_region/SpryPagedViewSample.html While final release of 1.5 insn't yet available, you can see most of the new features here: http://labs.adobe.com/technologies/spry/preview/

RE: Using Spry to Page forward and backward through data

2007-04-12 Thread Chad McCue
My code works if I directly call the XML file, I am trying to avoid this and I want to pass the XML file back as a variable, I don't want to save the XML file to webroot folder. -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 8:29 AM To:

Re: reading params from a file v/s getting them from a file

2007-04-12 Thread George Abraham
Yes it is read at every request. For example, the navigational menu for every site is different, so the params XML file will have to be read every request to see what the menu items are. The only thing I store in a session variables is an ID identifying the site. George On 4/12/07, Tom Chiverton

Re: Using Spry to Page forward and backward through data

2007-04-12 Thread Massimo Foti
My code works if I directly call the XML file, I am trying to avoid this and I want to pass the XML file back as a variable, I don't want to save the XML file to webroot folder. There is no need to save the XML anywhere, the examples use static .xml files, but you can just point them to a

Re: Opensource Web Analytics

2007-04-12 Thread Yves Arsenault
+1 for Google Analytics. I've used AWStats also... it was my favorite until G.A. Yves On 4/12/07, Adrian Lynch [EMAIL PROTECTED] wrote: AWStats is alright. I prefer google analytics though. Adrian -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: 12 April

Re: reading params from a file v/s getting them from a file

2007-04-12 Thread Tom Chiverton
On Thursday 12 Apr 2007, George Abraham wrote: Yes it is read at every request. For example, the navigational menu for every site is different, so the params XML file will have to be read every request to see what the menu items are. The only thing I store in a session variables is an ID

Page to Page Navigation

2007-04-12 Thread Steve LaBadie
I have page navigation that shows the number of pages of a search results; 25 per page (Example: Page 1 2 3 4 5 6 7 Show All). Is there a way to condense the numbers like the way Google does it so I don't have 50 numbers going across the page? Page 1 2 3 4 5 6 7 8 9 10 Show All Previous 10

RE: Page to Page Navigation

2007-04-12 Thread Peterson, Chris
You could do something simple like this: cfif len(pageList) gt 15 output first 7 page links ... output last 2 page links /cfif Chris Peterson -Original Message- From: Steve LaBadie [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 9:04 AM To: CF-Talk

Altering display of data from SQL database

2007-04-12 Thread Steven Sprouse
I have data in a SQL database that I want displayed with commas on my web page (ex. data is stored as 1234 and I want it displayed as 1,234. Does anyone know how I would go about doing this? I'm assuming I need a cfif statement, but I'm not sure if there is a specific function I should use or

Re: Page to Page Navigation

2007-04-12 Thread Deanna Schneider
Sure, just change your loop parameters - instead of showing the numbers for all of the pages of data determine how many numbers you'll show. Check to see if you have records for all those pages, and loop to your num of records + 1, using the plus one as your next var. On 4/12/07, Steve LaBadie

Re: changing directory

2007-04-12 Thread daniel kessler
I'm in a shared hosting environment, so I don't have access to the servers at all. That's why I'm trying to do this through cold fusion coding. thank you anyhoo. daniel In IIS look at the properties for that folder and do the following. Redirect to: http://localhost/NewFolderName$S$Q Check

RE: Altering display of data from SQL database

2007-04-12 Thread Adrian Lynch
Look at the number formatting functions. They'll be one in there that'll do what you're after. cfquickdocs.com Adrian -Original Message- From: Steven Sprouse [mailto:[EMAIL PROTECTED] Sent: 12 April 2007 14:34 To: CF-Talk Subject: Altering display of data from SQL database I have data

Re: Page to Page Navigation

2007-04-12 Thread Massimo Foti
On 4/12/07, Steve LaBadie wrote: I have page navigation that shows the number of pages of a search results; 25 per page (Example: Page 1 2 3 4 5 6 7 Show All). Is there a way to condense the numbers like the way Google does it so I don't have 50 numbers going across the page? You could use

Re: Using Spry to Page forward and backward through data

2007-04-12 Thread Raymond Camden
In my presentation last night I showed multiple examples of pointing Spry to a CFM page. I'm assuming the recording will be up soon at http://www.cfugtoronto.org/ On 4/12/07, Massimo Foti [EMAIL PROTECTED] wrote: My code works if I directly call the XML file, I am trying to avoid this and I

Re: Opensource Web Analytics

2007-04-12 Thread Dwayne Cole
I use a modified fusebox framework (all request go through index.cfm) will google analytics still work? -- Original Message -- From: Yves Arsenault [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Thu, 12 Apr 2007 09:42:43 -0300 +1 for Google

Re: Altering display of data from SQL database

2007-04-12 Thread Steven Sprouse
Thanks so much. I got it working. Had to create some cfsets defining a variable for the data field names and now everything is working great. ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more

RE: Using Spry to Page forward and backward through data

2007-04-12 Thread Chad McCue
Is there now way of returning XML in a variable and have spry read it? I need the customer to search and return results before the page that the spry is located on is displayed. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 9:58 AM To:

Re: Opensource Web Analytics

2007-04-12 Thread Tom Chiverton
On Thursday 12 Apr 2007, Dwayne Cole wrote: I use a modified fusebox framework (all request go through index.cfm) will google analytics still work? Sure. You just need to able to output a slightly different bit of JavaScript at the foot of each page. -- Tom Chiverton Helping to

RE: Access my SessionService from Gateway (MG, CS, Reactor)

2007-04-12 Thread Richard Kroll
From your description, it seems like you are mixing layers (which will IMO bite you later). I would suggest keeping your components as focused as possible. When working on this type of problem, I create services that manage each of the entities in the domain. I generally separate user

OT: Javascript Question

2007-04-12 Thread Scott Stewart
Hey all, How would I control a select tag based on this. function updateSelectedJournals(responseStruct) { $('selectedJournals').innerHTML = Selected Journals (+responseStruct.total+); $('lstSelectedTerms').innerHTML = responseStruct.lstoutput; I have

Re: cf_htmlemail

2007-04-12 Thread Rick Root
On 4/12/07, richard [EMAIL PROTECTED] wrote: I was thinking about using the cf_htmlemail tag and was wondering if anyone one had any experience with it (good or bad). Never heard of it. Is it different from cfmail type=HTML ? Rick

RE: Webservice Issue

2007-04-12 Thread Kevin Aebig
You might need to clear the service stubs as I've found that sometimes they don't refresh when the service is changed. Watch for wrap... cfobject type=JAVA action=Create name=factory class=coldfusion.server.ServiceFactory cfset RpcService =

RE: Webservice Issue

2007-04-12 Thread Robert Rawlins - Think Blue
Thanks Kevin, I rebooted the box a few moment ago and it kicked into life after that, so perhaps you're right. I'll keep that code handy for future, thanks. Rob -Original Message- From: Kevin Aebig [mailto:[EMAIL PROTECTED] Sent: 12 April 2007 16:04 To: CF-Talk Subject: RE: Webservice

RE: Access my SessionService from Gateway (MG, CS, Reactor)

2007-04-12 Thread Robert Rawlins - Think Blue
Thanks for that Rich, I've been playing around with this the past couple of days and have a working model. But I'm always interested to learn the most efficient ways to achieve these kinds of things, I'll be playing with your code for sure. Thanks, Rob -Original Message- From: Richard

Re: Using Spry to Page forward and backward through data

2007-04-12 Thread Raymond Camden
I'm afraid you lost me. You want to return the XML as a variable that Spry can read? Well you know that client side code can't read CF code, right? If your question is - can I include the XML data itself IN the page, then yes, you can. Spry doesn't have to make a HTTP request to get the XML. See

cftree, formatting the output

2007-04-12 Thread Adrian Lynch
Can anyone help me out with formatting the value data of a cftreeitem. I want to be able to bold the text displayed. Any resources for Flash forms would be great also. Cheers. Adrian ~| ColdFusion MX7 by AdobeĀ® Dyncamically

RE: Javascript Question

2007-04-12 Thread Scott Stewart
Never mind, I figured it out -- Scott Stewart ColdFusion Developer SSTWebworks 7241 Jillspring Ct. Springfield, Va. 22152 (703) 220-2835 http://www.sstwebworks.com -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 10:52 AM To: CF-Talk

RE: Using Spry to Page forward and backward through data

2007-04-12 Thread Chad McCue
I think I am closer but still am lost. This is what is coming back to my result page and populating spry. I not sure why this is returning like this and not keeping the formatting. wddxPacket version='1.0'header/datastringlt;?xml version=1.0 encoding=UTF-8?gt;char

CFDocument

2007-04-12 Thread Bruce Sorge
I have checked the Adobe site but I thought that I would ask the list anyway. I have a page that uses the CFDocument tag. Everything is OK except the page breaks. I had to put manual page breaks where the paper form pages end and the next one starts. Problem is, the user may only enter a couple

RE: Using Spry to Page forward and backward through data

2007-04-12 Thread Chad McCue
When I try to put my returntype of my function to XML it goes into an very long loop and comes back with XML error saying the top element needs to be defined. Any ideas? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 12:03 PM To: CF-Talk

RE: CFDocument

2007-04-12 Thread Peterson, Chris
It's a cfdocument bug, I thought that CF version 7.02 had a fix for that. I always end up counting rows and inserting a page break when the max rows fit on a page. Also, try decreasing your margins (margintop=.25, etc), see if that helps. Chris -Original Message- From: Bruce Sorge

Still having SPRY problem

2007-04-12 Thread Chad McCue
Here are my conclusions and hopefully someone can figure this out for me. Is there anything special I have to do server side to be able to call a cfc? When I do this script type=text/javascript var XML_URL = ../FunctionPages/Employers.cfc?method=GetEmployerResults; //create a basic Spry

Re: Using Spry to Page forward and backward through data

2007-04-12 Thread Raymond Camden
Are you using CF7? Only CF7 supports the Dont wddx encoded a result if returntype is xml. If you aren't using 7, you will need to use a proxy CFM file. On 4/12/07, Chad McCue [EMAIL PROTECTED] wrote: I think I am closer but still am lost. This is what is coming back to my result page and

RE: Using Spry to Page forward and backward through data

2007-04-12 Thread Chad McCue
I am using CF7 Chad McCue Advanced Media Productions 251 West Central St. Suite 28 Natick MA, 01760 p: 508.647.5151 ext 16 f: 508.647.5150 -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 2:50 PM To: CF-Talk Subject: Re: Using Spry to

Re: Using Spry to Page forward and backward through data

2007-04-12 Thread Raymond Camden
So are you loading the string in as is or calling it via a url in the dataset? Show me your JS please. On 4/12/07, Chad McCue [EMAIL PROTECTED] wrote: I am using CF7 Chad McCue Advanced Media Productions 251 West Central St. Suite 28 Natick MA, 01760 p: 508.647.5151 ext 16 f:

RE: Using Spry to Page forward and backward through data

2007-04-12 Thread Chad McCue
This should have everything you need. When I use the CFC the page just runs and never loads. I end up with a error because it exceeded the time limit. When I switch to a cfm page it loads instantly. Here are my conclusions and hopefully someone can figure this out for me. Is there anything

RE: Using Spry to Page forward and backward through data

2007-04-12 Thread Chad McCue
This should have everything you need. When I use the CFC the page just runs and never loads. I end up with a error because it exceeded the time limit. When I switch to a cfm page it loads instantly. //Using CFC call - This does not work script type=text/javascript var XML_URL =

Is there anything inherently wrong with this Application.cfm file?

2007-04-12 Thread Che Vilnonis
Is there anything inherently wrong with this Application.cfm file? Its for a shared CF hosting account w/ multiple domains (around 10 or so). Could it be improved? FWIW, it does work. :) My goal is to write my code so that I can host many related domains with one set of core code. Only ini files,

Re: Still having SPRY problem

2007-04-12 Thread Raymond Camden
A few things. You don't need to parse the XML. YOu can return the XML data as a string. This isn't the cause of your issue, but will make your code run a tiny bit faster. Secondly - remove Spry from the picture. Just try to go to the URL directly and see what you get in the browser. Or use

Re: cf_htmlemail

2007-04-12 Thread Matt Robertson
That tag is from back when dinosaurs ruled the Earth. My Multimail tag attempted something similar, but it went a step further and converted html into usable, legible plain text... achieving success up to a point. cf_htmlmail requires your input of two different message versions. I dropped

Re: Opensource Web Analytics

2007-04-12 Thread Sean Corfield
On 4/12/07, Dwayne Cole [EMAIL PROTECTED] wrote: I use a modified fusebox framework (all request go through index.cfm) will google analytics still work? Yes, GA can figure this out. We use GA on the Fusebox site - which is, of course, a Fusebox application - and it works really well. You can

Re: Tons of records - archive, or what?

2007-04-12 Thread Dana Kowalski
If you are properly configured and indexed on your SQL machine it won't be as a big a problem as you may think. For some good insight visit http://go-gaia.com and phpbb.com. The founder of that site posoted some mysql tuning tips but they can apply to other Dbs as well. Go-Gaia is a roleplaying

Re: Tons of records - archive, or what?

2007-04-12 Thread Dana Kowalski
sorry for the typos, I've been under the weather all week lol. anyhow the url is really http://www.gaiaonline.com/ now. sorry. ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see new

Report Building? Any Options or Solutions

2007-04-12 Thread Graham Pearson
I am working with RB and have ran into a problem which I am unable to solve. My Report has 6 SubReports which I would like displayed one right under the other however I as a developer do not know how much space to give each subreport and this report will be used as documentation within the

Re: Webservice Issue

2007-04-12 Thread James Holmes
You can also refresh the webservice from within the CF Administrator. On 4/12/07, Robert Rawlins - Think Blue [EMAIL PROTECTED] wrote: Thanks Kevin, I rebooted the box a few moment ago and it kicked into life after that, so perhaps you're right. I'll keep that code handy for future, thanks.

Re: Hostmysite down...

2007-04-12 Thread Dave l
Thats ok, i dont get here much either. Im not sure what the issue is, I get the errors emailed to me and bring up the site and its all working, just not the cart and the cart has its own db (mysql not access) I would really like to move this site to my vps server and see how it does. back to

Re: Tons of records - archive, or what?

2007-04-12 Thread Will Tomlinson
Just joined up thanks for the info dana! I did find some performance info thru googling. I can't even query 200,000 records without my db givin out. Weird! Thanks,Will ~| Upgrade to Adobe ColdFusion MX7 The most significant