BoogieBounce on Linux?

2011-12-30 Thread Scott Weikert
Is there anyone out there using BoogieBounce for bounce processing in a CF/Linux environment? I've been using it for the last few years in a Windows environment, but we've been switching over to Linux. The Linux version of the trial download doesn't reference CF at all, and the method to fire

Re: BoogieBounce on Linux?

2011-12-30 Thread Dave Watts
Is there anyone out there using BoogieBounce for bounce processing in a CF/Linux environment? I've been using it for the last few years in a Windows environment, but we've been switching over to Linux. The Linux version of the trial download doesn't reference CF at all, and the method to

AgroFire API using ColdFusion

2011-12-30 Thread Dave Hatz
Anyone out there use ArgoFire API for their Payment Gateway? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: fresh cf 9 install can't see administrator

2011-12-30 Thread Mr. Chedder P. Slam
Apache is running inside a VM? Is CF installed on the VM or the host? cf is running in the VM Is CF installed as standalone? Multiserver? I'm not sure... It's been a few days, lol... I tried to do the regular install, nothing fancy. I had it running for ages, and the new win 7

Lost SESSION variables - sometimes

2011-12-30 Thread Stephens, Larry V
CF8 My home page populates a session variable. I did a dump to make sure this was happening. Mozilla (Firefox) - newest download On one machine I go to another page off my menu and it displays correctly. I go to another machine and I get an error - no session variable defined. The entire

ColdFusion solr question

2011-12-30 Thread Victor Moore
Hello, I'm using solr on CF 9.01 with the latest updater. While I think solr is a big step forward I still have issues that I can't seem to find a solution for. I have enabled context highlight and some how the context includes the title (twice). Anyway to remove it? Thanks Victor

Re: fresh cf 9 install can't see administrator

2011-12-30 Thread Mr. Chedder P. Slam
I think i might be having problems understanding permission between win xp and win 7. I would REALLY prefer to not have my local web root with permissions set to FULL for everyone. way risky. I'm not quite sure how to rectify accounts between the file system of the host win 7 box on which

Detecting changes in db in order to delete cached pages

2011-12-30 Thread Richard Steele
We host websites using a content management system we developed in CF8 and would like to detect whenever a user changes anything in their website template. If changed, code would run that would delete their cached pages. Changes are recorded in a SQL Server db. There are 12 different tables

Re: Detecting changes in db in order to delete cached pages

2011-12-30 Thread Justin Scott
Is there a simpler way to detect the change in order to fire the deletion of the cached pages? For a small system you're already doing it the way I would approach it. I would have the deletion routine only delete what needs to be removed given the change detected to minimize the work around

XML! Aaargh! How do I do this?

2011-12-30 Thread Rick Faircloth
Okay... I've worked this every way I can think of and, I admit it, I just don't get it. Where am I going wrong? Ultimately, I want to get the categories of products and list the products of each category. I can get the categories, along with the descriptions, and images, but just can't figure

Richtext Editor Woes

2011-12-30 Thread Terry Troxel
Is it possible to safely use FCKeditor with image/file uploading completely disabled and still be able to browse your sites image folder to insert images? If it is still posible I sure could use some help doing that please. I am running the Standalone version installed under the administration

Re: fresh cf 9 install can't see administrator

2011-12-30 Thread Russ Michaels
the easiest way is to simply create the same user on the server that you are connecting with from windows XP and five this user full permissions on the website folders, then you shouldn;t have any login prompt issues. On Fri, Dec 30, 2011 at 8:15 PM, Mr. Chedder P. Slam

Re: Lost SESSION variables - sometimes

2011-12-30 Thread Russ Michaels
it is probably a cookie issue as this is how the session is tracked. clear the cookies and cache on that browser and see if it helps. Also make sure cookies are not disabled. On Fri, Dec 30, 2011 at 7:26 PM, Stephens, Larry V steph...@indiana.eduwrote: CF8 My home page populates a session

Re: ColdFusion solr question

2011-12-30 Thread Raymond Camden
My understanding is that context is driven by the Solr engine - it's what it considers to be the proper context for your match. If you indexed what is the title as part of the body, that may be your issue. Is that the case? On Fri, Dec 30, 2011 at 1:56 PM, Victor Moore victor.mo...@gmail.com

Re: XML! Aaargh! How do I do this?

2011-12-30 Thread Justin Scott
Okay... I've worked this every way I can think of and, I admit it, I just don't get it. Hi Rick, replace your inner-most loop with the following. It should get you going in the right direction. It looks like there is another layer of sub-categories which needs to be accounted for: !--- Loop

Re: XML! Aaargh! How do I do this?

2011-12-30 Thread James Holmes
If you are just after products, you can dramatically simplify the code by using xmlsearch() to get them with xpath instead of manually looping multiple levels down. -- Shu Ha Ri: Agile and .NET blog http://www.bifrost.com.au/ On 31 December 2011 08:50, Justin Scott leviat...@darktech.org

RE: XML! Aaargh! How do I do this?

2011-12-30 Thread Rick Faircloth
Thanks for the tip, Justin! I'll give it a try! Rick -Original Message- From: Justin Scott [mailto:leviat...@darktech.org] Sent: Friday, December 30, 2011 7:51 PM To: cf-talk Subject: Re: XML! Aaargh! How do I do this? Okay... I've worked this every way I can think of and, I admit

RE: XML! Aaargh! How do I do this?

2011-12-30 Thread Rick Faircloth
Thanks for the info, James! I had actually been doing some more research on CF and XML and was reading about xmlSearch. I'll give that try, too. Rick -Original Message- From: James Holmes [mailto:james.hol...@gmail.com] Sent: Friday, December 30, 2011 8:14 PM To: cf-talk Subject: Re: