How to Archive in a CMS

2008-09-23 Thread Mike Kear
I'm reviewing the features list on the next version of my CMS, and I want to do a better job of handling archiving this time around. The way i'm doing it at the moment is pretty clunky and rolling back to a previous version of a page is far from straightforward and intuitive. Can anyone point me

Re: Problem with reading and writing UTF-8 characters

2008-09-23 Thread Joseph Bugeja
Hi, Problem has been solved. The problem occurred because the editor, Dreamweaver, was set to encode the file as UTF-8. There is more than one unicode normalization form and you can also include the Unicode signature in a file. The default settings we had appended the characters  (in

Re: Warm up CF8 service

2008-09-23 Thread Jochem van Dieten
Don L wrote: The girlfriend/wife in this case is a main app, so, could we have cf8 application server (jrunsvc.exe) launch a little app quietly when it first starts (as a warm-up process and do it quietly, that is, not to launch a page in a web browser)? jrunsvc is just a service wrapper,

Re: Windows 2003 server CF 8 Installation issue

2008-09-23 Thread Jochem van Dieten
Gus Denton wrote: I am have a really hard time installing CF 8 on Win 2003 SP2, I have changed permissions on the directories, turned off DEP, Installed on an old Win 2000 box and the same problem keeps poping up.. I am try to do the multiserver installation without linking to IIS and

Re: importing data into a database

2008-09-23 Thread Randy
Based on your structure, the memberid field is not autogenerated therefore not sure what issue you have by not doing a basic import? If your worried about duplications you can check that by importing all records into a temp table then run a query to grab the distinct records and import those. If

Re: importing data into a database

2008-09-23 Thread Marcus Raphelt
Hi Toby, is this a one-time task? If yes, I'd suggest a native mysql import, or simply use sqlyog for that. greetings, marcus Toby King schrieb: Hi there I have a MySQL database setup with a table called members. Basically the structure of the table is Memberidvarchar 25 Firstname

Re: importing data into a database

2008-09-23 Thread Marcus Raphelt
Just wanted to add this: You could alter the memberid column to varchar(35) and use a coldfusion uuid as memberid - somehow like that: cfloop ... cfquery... insert into members(memberid, firstname, lastname) values('#createuuid#', '#firstname#', '#lastname#') /cfquery /cfloop Toby King

RE: How to Archive in a CMS

2008-09-23 Thread Adam Churvis
Mike, Why not just store the current version in your live CMS table, then store all the binary negative deltas in a revisions table? That reduces your storage requirements to almost nothing, it makes history retrievals lightning fast, and you can display any version from any point in history (or

Re: Problem with reading and writing UTF-8 characters

2008-09-23 Thread Paul Hastings
Joseph Bugeja wrote: The problem occurred because the editor, Dreamweaver, was set to encode the file as UTF-8. There is more than one unicode normalization form and you can also include the Unicode signature in a file. The default settings we had appended the characters  (in hex/8-bit

Re: Problem with reading and writing UTF-8 characters

2008-09-23 Thread Paul Hastings
Joseph Bugeja wrote: appended the characters  (in hex/8-bit format they are ef bb bf) and this resulted in ColdFusion not being able to render properly the file. oops and reference this too: http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=i18n_10.html

cfexecute, Windows 2003 and runas

2008-09-23 Thread Jochem van Dieten
I have a standalone Windows 2003 SP2 server running ColdFusion 8.01 Enterprise in multi-server mode. I have created 2 additional Windows accounts on this server, mediumpriv and lowpriv with /expires:never and /passwordchg:no. The mediumpriv account has been granted the Log on as a Service

Re: 'Coldfusion' is undefined if using cflayout,cftree in cf8

2008-09-23 Thread Dan Vega
Deppender - Did you change the code to use ColdFusion (!Coldfusion) remember that JS is case sensitive. Thank You Dan Vega [EMAIL PROTECTED] http://www.danvega.org On Tue, Sep 23, 2008 at 1:46 AM, Dave Watts [EMAIL PROTECTED] wrote: yes i have the cfide configured as virtual directory. But

Cfdirectory onclick event

2008-09-23 Thread erik tom
I am retriving the file system. From now i need to select a file and populate the name of the file to the input box cfform format=html action=#cgi.Script_Name# cfset test=CreateObject(component,Erik.Navigation).directory() cftree name=Test_Tree width=300 height=300 cfloop query=test

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Dana Kowalski
I believe there are 6 items in the mmc you need to give that user, including run as service. If I remember right, one was the batch process one. Lemme go see if I can dig up the MS KB article. We have to do this all the time, and it ends up being a pain!

Long running CF Program

2008-09-23 Thread Robert Harrison
I have a program that sends out bulk mail using CFMail. Problem is it sends the whole batch out at once. That sets off email blockers all over, so I have to trickle the mail out. My concept is to write a program that runs for up to 15 hours cfsetting requesttimeout=54000. It loops until it's sent

/ by zero error

2008-09-23 Thread Scott Taylor
I have two applications running on CF8 Enterprise in a multiple-instance cluster. In one, I have no problems. In the other, I get a '/ by zero' error when coming into the app. Both set session variables and a timeout in exactly the same manner. Here's a little bit of the error: / by zero

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Matthew Small
Are you referring to 812614? Jochem - What would be interesting to see is why the batch file is in a hang condition. You can inspect the condition of the process by getting a hang dump of the process and examine it's callstack (I assume there's only one thread). Follow these steps and

RE: cfexecute, Windows 2003 and runas

2008-09-23 Thread Dave Watts
I have a CF template that uses cfexecute to start a batch file named bootstrap.bat. bootstrap.bat runs under the same account as CF, mediumpriv. At the end of bootstrap.bat I have a runas command: runas /user:lowpriv /savecred D:\lowpriv\run.bat %RunName% Maybe you need to specify the

Re: Long running CF Program

2008-09-23 Thread Scott Taylor
We have a number of programs that loop through data just like this. I haven't hit one yet that didn't continue merrily on its way until the loop was finished. I'm pretty sure that it will continue running. Scott Taylor I have a program that sends out bulk mail using CFMail. Problem is it

Re: How to Archive in a CMS

2008-09-23 Thread Mike Kear
I'm sorry if i'm being a bit dense, but how would that work in a CF8Enterprise/Win2003/MSSQLServer2005 setup? How would I store the binary negative deltas? Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion, PHP,

Re: Long running CF Program

2008-09-23 Thread Ian Skinner
Robert Harrison wrote: Question is, if I invoke this program from a CFPage to start the process, will the process continue when the user exists the page? (i.e., continue to run in the background). Does this concept, loop and process a bit each minute until done, sound like a reasonable

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Dana Kowalski
yeah 812614 lays out the IIS permissions for the box. We also had to apply some of these to a custom user running CF 8.x in order to get some things working right http://support.microsoft.com/kb/812614/en-us ~| Adobe®

RE: How to Archive in a CMS

2008-09-23 Thread Adam Churvis
It's been a while, but IIRC, basically you create binaries of each version, then XOR them against each other to create the binary delta file. Make sure to compress the delta before storing it, or you won't realize much (if any) space savings. To go back to a version, you just XOR a binary of the

RE: How to Archive in a CMS

2008-09-23 Thread Adam Churvis
Ooh, sorry, but I forgot to answer one of your questions. You would store the deltas in binary columns in a database table named something like Revision, which would also have columns for version, date, author, the foreign key to the table containing the current version (stored as HTML, I

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Jochem van Dieten
Matthew Small wrote: Are you referring to 812614? IIS permissions are probably not very relevant when the system runs Apache, not IIS, and shows the same behaviour through the builtin webserver. Jochem - What would be interesting to see is why the batch file is in a hang condition. That

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Jochem van Dieten
Dave Watts wrote: I have a CF template that uses cfexecute to start a batch file named bootstrap.bat. bootstrap.bat runs under the same account as CF, mediumpriv. At the end of bootstrap.bat I have a runas command: runas /user:lowpriv /savecred D:\lowpriv\run.bat %RunName% Maybe you

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Dana Kowalski
You said the command works fine when you run it as your user then fire the runas right? Is your user a local/domain admin? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

RE: Long running CF Program

2008-09-23 Thread brad
The ColdFusion code will continue running even if the user closes the browser, shuts down their computer, and goes home. Be careful if you do leave the browser open, I have had problems where Internet Explorer would re-request the page after about 8 hours of processing. Truthfully, if I were

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Jochem van Dieten
Dana Kowalski wrote: You said the command works fine when you run it as your user then fire the runas right? Is your user a local/domain admin? The command runs fine when I: - log on to Windows as the mediumpriv user; - start cf using jrun -config instance1.config -start instance1 - call the

Re: Securing session

2008-09-23 Thread Judah McAuley
It definitely doesn't matter if it is encrypted or not. Just think about what happens when you read a cookie. Set a cookie, lets say a userid. In plain text, the userid might be 1000. When my application reads the cookie to find the users id, it asks the browser for the userid cookie, the browser

Re: / by zero error

2008-09-23 Thread Shannon Peevey
Just reaching, but are the operating systems the same on both machines? The versions of Java? speeves On Tue, Sep 23, 2008 at 9:08 AM, Scott Taylor [EMAIL PROTECTED]wrote: I have two applications running on CF8 Enterprise in a multiple-instance cluster. In one, I have no problems. In the

Re: Long running CF Program

2008-09-23 Thread Rob Parkhill
I just set my Spooler in CF Admin, set the time for spooled messages to 60 seconds, and then it trickles them out. Sends three or four a minute I think. Rob On Tue, Sep 23, 2008 at 10:55 AM, [EMAIL PROTECTED] wrote: The ColdFusion code will continue running even if the user closes the

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Dana Kowalski
I know this exact issue has been a problem since CF 6.x. I've always thought it was a permissions problem, but to be honest I've never used cfexecute. We're just not allowed to =\ Is your CF install running as local system? If it's running as a specific user, you could try making the user

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Matthew Small
You also might want to run Process Monitor on the server while executing this and see if it gives you any clue. - Matt Small I know this exact issue has been a problem since CF 6.x. I've always thought it was a permissions problem, but to be honest I've never used cfexecute. We're just not

Re: Long running CF Program

2008-09-23 Thread Jochem van Dieten
Robert Harrison wrote: I have a program that sends out bulk mail using CFMail. Problem is it sends the whole batch out at once. That sets off email blockers all over, so I have to trickle the mail out. The proper place to do that is in your SMTP server. For instance, in Postfix that would be

Re: CF Module for Pay-Pal integration

2008-09-23 Thread Rusty Owens
Did you ever get a response? I am trying to do the same thing as well. JHello everyone, I have several organizations wyho want to enable their Web sites to process transactions via Pay-Pal. I downloaded the Pay-Pal module which allows one to seemlessly integrate their PHP sites with Pay-Pal

Re: CF Module for Pay-Pal integration

2008-09-23 Thread Ian Skinner
Rusty Owens wrote: Did you ever get a response? I am trying to do the same thing as well. I've done it once When I did it long ago, buried deep in the Pay Pal documentation behind the ASP* and PHP examples was one ColdFusion one. The basic concept is fairly simple. You make a request of

Re: CF Module for Pay-Pal integration

2008-09-23 Thread Raymond Camden
Um, RIAForge? Found this in about 2 seconds: http://paypalcfc.riaforge.org/ Gentle reminder folks - if you want to find X support in CF, try searching on RIAForge (and yes, I know the search isn't the speediest in the world. ;) On Mon, Dec 31, 2007 at 7:32 PM, Peter Donahue [EMAIL PROTECTED]

Re: / by zero error

2008-09-23 Thread Scott Taylor
I should have put this in the OP. Both apps run on the same machine. The code that works is only very slightly modified and has the same cfapplication tag in it, and sets the variable ThisSessionTimeout exactly the same way. Scott Just reaching, but are the operating systems the same on both

CFMAIL

2008-09-23 Thread Steve LaBadie
Is there a way to insure that each variable will appear on a separate line when you process a form with cfmail? When the form is processed the Home Phone, Home Email, Local Address, and Local Phone are sent on 1 line with the Home Address. There are a total of 20 variables and these are the only

RE: CFMAIL

2008-09-23 Thread Jarlath Eoin Gallagher
Just place a br/ after the variable and it will render onto a new line Subject: CFMAIL From: [EMAIL PROTECTED] To: cf-talk@houseoffusion.com Date: Tue, 23 Sep 2008 13:31:42 -0400 Is there a way to insure that each variable will appear on a separate line when you process a form with

RE: CFMAIL

2008-09-23 Thread Steve LaBadie
When I did that it was passed as text Steve LaBadie, Web Manger East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 http://www.esu.edu [EMAIL PROTECTED] -Original Message- From: Jarlath Eoin Gallagher [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23,

RE: CFMAIL

2008-09-23 Thread Paul Giesenhagen
If you are not sending an HTML email ... set the ascii character cfset Variables.AddLineBreak = chr(10) / Name: #form.name# #Variables.AddLineBreak# Home Address: #form.hadd# #Variables.AddLinebreak# Ect.. Paul Giesenhagen QuillDesign http://www.quilldesign.com -Original Message-

Re: CFMAIL

2008-09-23 Thread Ian Skinner
Jarlath Eoin Gallagher wrote: Just place a br/ after the variable and it will render onto a new line OR #chr(13)##chr(10)# Depending on if your sending HTML or TEXT formated email. ~| Adobe® ColdFusion® 8 software 8 is the

Re: / by zero error

2008-09-23 Thread Josh Nathanson
Could you try hardcoding the CreateTimeSpan(0,2,0,0) into the cfapplication tag, and at least see if that works? -- Josh - Original Message - From: Scott Taylor [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, September 23, 2008 10:17 AM Subject: Re: / by zero

RE: CFMAIL

2008-09-23 Thread Steve LaBadie
Thank you Paul, your solution worked. Steve LaBadie, Web Manger East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 http://www.esu.edu [EMAIL PROTECTED] -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2008

RE: 'Coldfusion' is undefined if using cflayout,cftree in cf8

2008-09-23 Thread Dave Watts
I was able to reproduce the errror on my local machine. Moment i rename my scripts older in CFIDE folder.The same error is coming up. So the cause is that at the SERVER level my code is not able to acess the SCRIPTS folder under CFIDE. have you faced such issue in CF8 MULTISERVER

Re: / by zero error

2008-09-23 Thread Shannon Peevey
Can you include the stack trace as well, please? thanks, speeves On Tue, Sep 23, 2008 at 12:51 PM, Josh Nathanson [EMAIL PROTECTED]wrote: Could you try hardcoding the CreateTimeSpan(0,2,0,0) into the cfapplication tag, and at least see if that works? -- Josh - Original Message -

Re: CFMAIL

2008-09-23 Thread s. isaac dealey
Thank you Paul, your solution worked. If that's the case, you might want to turn off aggressive whitespace management around your outgoing email... man I hate those features... cfmail ... cfprocessingdirective suppresswhitespace=false message here ... /cfprocessingdirective /cfmail That

(ot) Setting up an SVN on Localhost

2008-09-23 Thread Rob Parkhill
Good day, I am trying to configure SVN for my local dev machine. Is it possible (using IIS (I know, I'm sorry)) to configure this to work just locally. I don't really want to be putting anything to an SVN server, unless I have to, I guess. Everytime I try to import a directory with a project

RE: (ot) Setting up an SVN on Localhost

2008-09-23 Thread Eric Roberts
The better option would be to create a development branch in your repository and just install a SVN client like Tortoise or one of the eclipse plugins if you use eclipse. I don't know what the VCC property is sorry Eric /*-Original Message- /*From: Rob Parkhill [mailto:[EMAIL PROTECTED]

Re: 'Coldfusion' is undefined if using cflayout,cftree in cf8

2008-09-23 Thread Deepender Singh
thanks to all. I was able to reproduce the errror on my local machine. Moment i rename my scripts older in CFIDE folder.The same error is coming up. So the cause is that at the SERVER level my code is not able to acess the SCRIPTS folder under CFIDE. have you faced such issue in CF8 MULTISERVER

Re: (ot) Setting up an SVN on Localhost

2008-09-23 Thread Shannon Peevey
Check this page out: http://docs.codehaus.org/display/GEOT/SVN+Windows svn can be accessed locally, (ie through a local client), through webDAV, or through svnserve, (the built-in server). The link above helps you to setup the command line client. speeves On Tue, Sep 23, 2008 at 1:30 PM, Rob

CF Calendar Options

2008-09-23 Thread Wurst, Keith D.
I'm looking for some good ColdFusion calendar options. Anyone have any good experiences with pre-constructed modules? Pay or otherwise? Thanks very much for the help. ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: CF Module for Pay-Pal integration

2008-09-23 Thread Ian Rutherford
There's nothing there to download. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive:

CSS Failure in cfdocument (works once)

2008-09-23 Thread Steve Moore
I'm using CF 8.01 with latest hotfixes. Have simple sample below that loops to create two PDF files. In the first one the CSS background-color style works. In the second it does not. Seems like a bug to me. Thoughts? cfloop index=i from=1 to=2 cfdocument format=PDF filename=#i#.pdf

Re: CF Calendar Options

2008-09-23 Thread Steve Moore
Here's one: http://www.steveeray.com/webdesign/calendar.cfm ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive:

RE: CF Calendar Options

2008-09-23 Thread Marius Milosav
Hi Keith, Check out the calendar module (daily, weekly, monthly, dashboard, global calendar and many other options) in the VICO suite. Was released as a dual source open and commercial license. You can get it at: http://vicocrm.riaforge.org If you have any questions please contact me off line

Re: CF Module for Pay-Pal integration

2008-09-23 Thread Raymond Camden
I'd suggest pinging the project owner. He may not have had a chance to upload it yet. On Tue, Sep 23, 2008 at 2:16 PM, Ian Rutherford [EMAIL PROTECTED] wrote: There's nothing there to download. -ray ~| Adobe® ColdFusion® 8

Re: CF Module for Pay-Pal integration

2008-09-23 Thread Dan Vega
I have done a lot of Paypal integration so ping me if you need to. http://cfpayflowpro.riaforge.org/ Thank You Dan Vega [EMAIL PROTECTED] http://www.danvega.org On Tue, Sep 23, 2008 at 3:32 PM, Raymond Camden [EMAIL PROTECTED] wrote: I'd suggest pinging the project owner. He may not have had

Re: cfexecute, Windows 2003 and runas

2008-09-23 Thread Jochem van Dieten
Dana Kowalski wrote: Is your CF install running as local system? No, it is running as mediumpriv. If it's running as a specific user, you could try making the user starting the service a local/domain admin and see quick if it runs then. It doesn't when I run CF as a service, it does when I

Re: cf_upsprice problem anyone?

2008-09-23 Thread joe johnson
Did you ever find out what was causing the problem I have been using for 5 years..and never had a problem with it till now.. Is anyone out there experiencing any problem with this tag? We've used it in one of our e-commerce site and started to give us problems in the past two days. People

Re: / by zero error

2008-09-23 Thread Scott Taylor
I did try hardcoding the createtimespan, and output the variable - same either way. Here's the stack trace: java.lang.ArithmeticException: / by zero at coldfusion.util.CaseInsensitiveMap.findStringKey(CaseInsensitiveMap.java:122) at

Re: cf_upsprice problem anyone?

2008-09-23 Thread joe johnson
Is anyone out there experiencing any problem with this tag? We've used it in one of our e-commerce site and started to give us problems in the past two days. People would put in their zipcode as input and the site immediately choked. Here's the specific error that I got: CALLER.UPS_Error =

Re: / by zero error

2008-09-23 Thread Shannon Peevey
It looks to me as if your session timeout variable is empty, causing the : java.lang.ArithmeticException: / by zero at coldfusion.util. CaseInsensitiveMap.findStringKey(CaseInsensitiveMap.java:122) at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:2644) at

Re: / by zero error

2008-09-23 Thread Shannon Peevey
It looks to me as if your session timeout variable is empty, causing the : java.lang.ArithmeticException: / by zero at coldfusion.util. CaseInsensitiveMap.findStringKey(CaseInsensitiveMap.java:122) at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:2644) at

Disabling Application.cfm for a specific page

2008-09-23 Thread Philip Kaplan
Hi, Anyone know if there's a way to stop a specific cfm/cfc page from loading Application.cfm and OnRequestEnd.cfm? The cfm is in a regular directory in the web root and I'd prefer to not mess with the directory structure or cfadmin custom tag paths. If you know of a way to do this, let me

Using Max Function on more that two data values

2008-09-23 Thread Fawzi Amadu
Hello, I have a query that returns sum of votes for each party in a constituency and I need to find out which party had the most votes within each constituency. Here is more detail about what I have done and what I want to do. I have the following tables along with their attributes(the stared

Re: Disabling Application.cfm for a specific page

2008-09-23 Thread Charlie Griefer
are there other files in that directory? if not (or if the other files meet the same criteria and shouldn't invoke the Application.cfm), you can put an Application.cfm in that directory. CF will 'execute' that one and not the 'parent' one. Or (and this is a little fuglier), you can put

Re: Disabling Application.cfm for a specific page

2008-09-23 Thread Dominic Watson
I quite sure you cannot do it without creating a sub application or moving the file outside of the root application. Ie. application.cfm (the root application) onRequestEnd.cfm SomeFolder --- application.cfm -- creating a sub app --- myFile.cfm (that won't use the root application.cfm)

Re: Disabling Application.cfm for a specific page

2008-09-23 Thread Philip Kaplan
Charlie- I was hoping for something more elegant but I might have to resort to that Dominic- That's what I was afraid of Thanks guys! On Tue, Sep 23, 2008 at 3:08 PM, Dominic Watson [EMAIL PROTECTED] wrote: I quite sure you cannot do it without creating a sub application or moving the file

RE: Disabling Application.cfm for a specific page

2008-09-23 Thread Dave Watts
Anyone know if there's a way to stop a specific cfm/cfc page from loading Application.cfm and OnRequestEnd.cfm? No, you can't do this without moving the files around. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized

Re: Warm up CF8 service

2008-09-23 Thread Don L
Ok, what I meant is, cf8 seems like a car, one needs to start I don't think you can do this with CF alone, but you should be able to do it other ways. For example, you could create a batch file that invokes wget to call a page, and you could launch that batch file after the service has started

Re: Warm up CF8 service

2008-09-23 Thread Don L
Ok, what I meant is, cf8 seems like a car, one needs to start I don't think you can do this with CF alone, but you should be able to do it other ways. For example, you could create a batch file that invokes wget to call a page, and you could launch that batch file after the service has started

Re: Disabling Application.cfm for a specific page

2008-09-23 Thread Scott Slone
I see to remember that you could just create a bare-bones app.cfm in that directory (thought it will affect all pages in that directory). This will not stop the app.cfm from loading, but will stop it from loading content from the app.cfm at the site root. On Sep 23, 2008, at 3:01 PM,

Re: Using Max Function on more that two data values

2008-09-23 Thread s. isaac dealey
cfquery name=PartyConstituencyResults datasource=#request.datasource# SELECT c.ConstituencyName, s.ConstituencyNo, v.Party, Sum(v.Votes) AS TotalVotes From (Constituency c INNER JOIN PollingStation s ON c.ConstituencyNo = s.ConstituencyNo) INNER JOIN VoteResults v ON s.AgentPhoneNo =

RE: Warm up CF8 service

2008-09-23 Thread Dave Watts
But wait, what this wget utility is about? http://en.wikipedia.org/wiki/Wget Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern

Flash Movie not playing

2008-09-23 Thread jennifer drechsler
Does anyone know why this url would play all of the flash movies: http://sfwater.org/flash_test.cfm?MC_ID=35 But this one does not play one of them. http://sfwater.org/flash_test.cfm/MC_ID/35 This is the code that is converting the urls: CFSET PATH =

Re: Flash Movie not playing

2008-09-23 Thread Steve Nelson
You probably need to set a base href. Try adding this: base href=http://sfwater.org/ http://sfwater.org/flash_test.cfm?MC_ID=35 Steve Nelson On Tue, Sep 23, 2008 at 7:18 PM, jennifer drechsler [EMAIL PROTECTED]wrote: Does anyone know why this url would play all of the flash movies:

CF8 Verity ServiceFactory

2008-09-23 Thread Scott Shay
Hello all, We have an application that was created years ago for CF6 and uses some of the servicefactory methods for Verity. We have upgraded to CF8 recently and some of the code no longer works. A simple example of code that works on CF 6 but not on CF 8 is below--it just dumps the verity

Re: Flash Movie not playing

2008-09-23 Thread jennifer drechsler
Is there a way to set the base without out using an href. What if someone types this url into the browser and doesn't get here from a link, or gets here from a link that I don't control? You probably need to set a base href. Try adding this: base href=http://sfwater.org/

Re: Flash Movie not playing

2008-09-23 Thread Steve Nelson
As far as I can tell from your example, that should matter. Unless you were to set the href as a relative path. In the past when I've used this, I tend to make it dynamic. Like this: base href=http://#cgi.serverName#/; Do you have an example of when an external link would break it? Steve Nelson

Re: Flash Movie not playing

2008-09-23 Thread jennifer drechsler
Actually, after doing a little digging around, and your suggestion of base, I finally figured out how and where to put this tag. Thanks so much for pointing me in the right direction. ~| Adobe® ColdFusion® 8 software 8 is the

Re: Warm up CF8 service

2008-09-23 Thread Don L
But wait, what this wget utility is about? http://en.wikipedia.org/wiki/Wget Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern

Re: Survey?

2008-09-23 Thread s. isaac dealey
Hey Will... I'd be interested. -- s. isaac dealey ^ new epoch isn't it time for a change? ph: 781.769.0723 http://onTap.riaforge.org/blog ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

Re: Survey?

2008-09-23 Thread Younas Aamir
Hi William Yes, it is good, please include me too. You may include in your survey about: 1.CF comparison with other web scripting technologies 2.Adobe future support for CF 3.Salary comparison with other web scripting technologies 4.How easy finding CF job Best regards Younas