Re: Problems Stopping and Starting Coldfusion Service (CFMX7)

2006-04-09 Thread Andrew Grosset
I have that problem as well on my developer edition of MX7 on my PC, as you say it takes at least 3-4 mins before you can restart(I have one gig of ram). Andrew. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:23

Re: Problems Stopping and Starting Coldfusion Service (CFMX7)

2006-04-09 Thread Michael Dinowitz
You may not have enough ram set for the JVM or you may have messed up your JVM settings (if you edited them reciently). > Hi > > We have a problem where everytime we try to stop and restart the CF > service on a windows 2003 box it tries unsuccesfully to stop the > service for about 3 minutes

Re: Problems Stopping and Starting Coldfusion Service (CFMX7)

2006-04-09 Thread Jerry Johnson
Yes, I am seeing it. No I don't know of a fix. On 4/10/06, david @ red5. com. au david @ red5. com. au <[EMAIL PROTECTED]> wrote: > Hi > > We have a problem where everytime we try to stop and restart the CF service > on a windows 2003 box it tries unsuccesfully to stop the service for about 3 >

Problems Stopping and Starting Coldfusion Service (CFMX7)

2006-04-09 Thread david
Hi We have a problem where everytime we try to stop and restart the CF service on a windows 2003 box it tries unsuccesfully to stop the service for about 3 minutes and that gives an error. We then need to wait another few minutes before we can click the start button to get things going again.

Re: FW: Body too long: RE: Newbie Model Glue Questions

2006-04-09 Thread S . Isaac Dealey
> From what I've seen you've been pretty cordial. > I assumed in my oblivion I could have missed some > posts, thus the "I'm staying out of it", but it > was the "name calling" that set off my "flame" > ding-a-ling. No need for that here. (I guess, > I'm new, so, I don't know the lay of the > land.

Re: Newbie Model Glue Questions

2006-04-09 Thread S . Isaac Dealey
> I like Assembly. I respect people who have taken > the time to learn it. I respect the ability to learn and use Assembler too... I'm glad the market for assembler is well satisfied, since I'm not particularly interested in working with it. :) For that matter I know some C++ and am not particular

Re: Bad character crashing cfxml

2006-04-09 Thread S . Isaac Dealey
>> mystring = > rereplace(mystring,"[#chr(1)#-#chr(8)##chr(11)#-#chr(12)## > chr(14)#-#chr(31)#]","","ALL"); > The only problem with this is that that you have to add > stuff that you want > removed. > You could also list what's allowed, vs. what's not > allowed, like > output="false">

Re: Bad character crashing cfxml

2006-04-09 Thread Denny Valliant
> mystring = rereplace(mystring,"[#chr(1)#-#chr(8)##chr(11)#-#chr(12)##chr(14)#-#chr(31)#]","","ALL"); The only problem with this is that that you have to add stuff that you want removed. You could also list what's allowed, vs. what's not allowed, like Which you neve

Re: Application variables from db?

2006-04-09 Thread Denny Valliant
On 4/9/06, Ken <[EMAIL PROTECTED]> wrote: > > Hi Charles. Got a question for you. Say you updated the value of the > field > OrgShortname in the database, for one of the websites. How soon would the > application variable associated with it get updated? > Also, in your code, are you not loading th

Re: FW: Body too long: RE: Newbie Model Glue Questions

2006-04-09 Thread Denny Valliant
>From what I've seen you've been pretty cordial. I assumed in my oblivion I could have missed some posts, thus the "I'm staying out of it", but it was the "name calling" that set off my "flame" ding-a-ling. No need for that here. (I guess, I'm new, so, I don't know the lay of the land. Could be pa

Re: Bad character crashing cfxml

2006-04-09 Thread Josh Nathanson
Thanks guys. I did try the XmlFormat function (without the additional rereplace stuff) and it still didn't work. I'll let you know shortly if the CDATA works, that's what I'll try next. If THAT doesn't work, I'll try the rereplace method S. Isaac suggested. -- Josh - Original Messa

Re: Newbie Model Glue Questions

2006-04-09 Thread Denny Valliant
I like Assembly. I respect people who have taken the time to learn it. Isn't it sort o like: CF > Java > C > ASM > 110011 ? (sorta?) Maybe now it's more of a CF > Java > machine lang? I've heard tell of java compiling that did better optimization than the a human... but it's funny that you would

Re: Bad character crashing cfxml

2006-04-09 Thread S . Isaac Dealey
> I opt to store user-defined data in CDATA blocks: > > > > Another route is to use the XMLFormat() function. Unfortunately the XMLFormat() function doesn't handle non-printing characters. I believe the character 0x1C or "1C" is ASCII character 27, with characters 1-30 being non-printing

Re: Bad character crashing cfxml

2006-04-09 Thread Ryan Guill
use cdata? If you ever have characters that could make the xml mis-formed, especially all user entered data, put it in a cdata. That will parse just fine. http://www.w3schools.com/xml/xml_cdata.asp On 4/9/06, Josh Nathanson <[EMAIL PROTECTED]> wrote: > Hello All, > > When creating an xml

Re: Bad character crashing cfxml

2006-04-09 Thread Rob Wilkerson
I opt to store user-defined data in CDATA blocks: Another route is to use the XMLFormat() function. On 4/9/06, Josh Nathanson <[EMAIL PROTECTED]> wrote: > Hello All, > > When creating an xml document using cfxml, I get the following error: > > --- > An error occured while Par

Bad character crashing cfxml

2006-04-09 Thread Josh Nathanson
Hello All, When creating an xml document using cfxml, I get the following error: --- An error occured while Parsing an XML document. An invalid XML character (Unicode: 0x1c) was found in the element content of the document. -- The values in question are text strings

Re: Application variables from db?

2006-04-09 Thread Ken
Hi Charles. Got a question for you. Say you updated the value of the field OrgShortname in the database, for one of the websites. How soon would the application variable associated with it get updated? Also, in your code, are you not loading the database too much, since you have the query in your

RE: Sitedirector vs EzCart recommendations Anyone

2006-04-09 Thread Eric J. Hoffman
SiteDirector is the king. Eric J. Hoffman Managing Partner 2081 Industrial Blvd StillwaterMN55082 mail: [EMAIL PROTECTED] www: http://www.ejhassociates.com tel: 651.717.4105 fax: 651.717.4115 mob: 651.245.2717 --

Re: Application variables from db?

2006-04-09 Thread S . Isaac Dealey
> Hi. Is it ok to set certain application variables in > application.cfm from > values stored in the database? > There are certain site-wide settings that I need to store > in the database. > Then do this in the application.cfm file: > > > Select Settings from db Where > > > My questi

Re: Application variables from db?

2006-04-09 Thread Charles Sheehan-Miles
With the main app I'm working on, the first thing in application.cfm is a query to match the host header name against the correct website in the database, then everything else is determined from there, including the application name -- so I'm hosting multiple websites/customers off the same code ba

Re: CF Based WebMail

2006-04-09 Thread S . Isaac Dealey
Here's the Molerus app you were looking for. I've used it and will say that the interface for it is decent. It's certainly better than some webmail clients I've seen. :) I know the version I've used didn't support multiple domains on a single install because I helped someone implement customization

Application variables from db?

2006-04-09 Thread Ken
Hi. Is it ok to set certain application variables in application.cfm from values stored in the database? There are certain site-wide settings that I need to store in the database. Then do this in the application.cfm file: Select Settings from db Where My questions are: 1. Is it ok to s

Sitedirector vs EzCart recommendations Anyone

2006-04-09 Thread Steve Kahn
Need to deploy a site fast, thinking bout using Sitedirector or EZcart anyone have any first hand experience with them? We need a cart that’s fast to deploy and can offer retail pricing in addition to wholesale discounted pricing codes ( we don’t want to use any fusebox apps ) - any recommendations

Re: CF Based WebMail

2006-04-09 Thread Rey Bango
I loved the Crazy Cab demo that used to come with CF 3.x. Simple, fast and it worked. :) Rey... Eric J. Hoffman wrote: > Anyone have any particular favorites for a cf based webmail out there? > We used to use Molerus or something, but can't find it anymore and > actually have a need again to get

CF Based WebMail

2006-04-09 Thread Eric J. Hoffman
Anyone have any particular favorites for a cf based webmail out there? We used to use Molerus or something, but can't find it anymore and actually have a need again to get a system live. Thanks! Eric J. Hoffman Managing Partner 2081 Indust

Re: trouble with cluster

2006-04-09 Thread Denny Valliant
depends on what version of CF, blah blah blah... Maybe you didn't change the jndi or whatnot ports? Do a little google and see what you find. There are several good resources for clusters, but things have changed since 6.1, so... it depends, sorta. Are you doing it through the CF administrator, o

RE: Newbie Model Glue Questions

2006-04-09 Thread S . Isaac Dealey
> again your taking it out of context. > when I say I don't care, I simply mean that I am not gonna > have cow and lay > awake at night getting stressed and thinking of new > abusive comments I can > post to everyone who didn't agree with me, which appears > to be your problem. > I am hapy to hear

Re: FW: Body too long: RE: Newbie Model Glue Questions

2006-04-09 Thread S . Isaac Dealey
> Well Isaac as I keep saying, everyone is entitled to an > opinion. And mine is > that your the one who will be left fishing for scraps, > because I can't see > many companies giving a job to someone like you who is so > arrogant and > living with his head up his own ass and thinks everyone is > b

RE: Newbie Model Glue Questions

2006-04-09 Thread S . Isaac Dealey
No most people are in agreement that the demand for a given technology diminishes over time. > Are you the most arrgant person in bizzaroworld, or is > everyone like you ? > -Original Message- > From: S. Isaac Dealey <[EMAIL PROTECTED]> > To: CF-Talk > Date: Sat, 8 Apr 2006 20:15:00 -040

RE: Newbie Model Glue Questions

2006-04-09 Thread S . Isaac Dealey
I'm well aware that it's still used. I'm also well aware that the niche for Assembler is smaller today than it was prior to the invention of C/C++ for example. There is less demand and therefore fewer people take the time to learn Assembler in today's market because less demand means that more supp

Re: FW: Body too long: RE: Newbie Model Glue Questions

2006-04-09 Thread Judith Dinowitz
Please keep flame wars and personal debates off of CF-Talk. This is nothing personal against you, Snake, but when Michael reads this, I'm sure he'll be of the same opinion. Judith Dinowitz ~| Message: http://www.houseoffusion.c

trouble with cluster

2006-04-09 Thread brad f
Has anyone had any trouble with having more than one instance in your coldfusion cluster? With one, everything works great. Start another and it seems that cf cannot assign a session id. Thanks. ~| Message: http://www.houseoffus

Re: CF CMS recommendation

2006-04-09 Thread Gerome Fresse
Hello Mark, You can have a look to my cms Gerobase 1.3, the standard release cost nothing, and i think it's a good solutions for small projects. If you want to learn more about it : http://www.gerorama.com/gerobase/ Give it a try and have fun :-) Gerome http://www.gerorama.com ~

Re: Newbie Model Glue Questions

2006-04-09 Thread Jochem van Dieten
Mike Kear wrote: > Thanks Rick, I appreciate your nice comments. > > I started with CSS a couple of years ago, and while the learning curve > for that was pretty steep too, it was a liberating experience too. > Separating code from look and feel made everything simpler.The > code is smaller,

RE: How to format a document for use with address labels

2006-04-09 Thread Adrian Lynch
I'll add a thumbs up for cf_avery too, works like a charm. Adrian -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: 07 April 2006 15:20 To: CF-Talk Subject: Re: How to format a document for use with address labels >>Cf_Avery is a tag I've used in the past that

FW: Body too long: RE: Newbie Model Glue Questions

2006-04-09 Thread Snake
Well Isaac as I keep saying, everyone is entitled to an opinion. And mine is that your the one who will be left fishing for scraps, because I can't see many companies giving a job to someone like you who is so arrogant and living with his head up his own ass and thinks everyone is below him. Most

Re: Newbie Model Glue Questions

2006-04-09 Thread Russ Michaels
lets just make this very clear. While Isaac has implied it, no-one has actually said frameworks suck so far, certainly not me, as I do use them, and have written my own. I was never a big fan of fusebox, mainly due to the fact that I kept having constant problems with badly written code done by d

RE: Newbie Model Glue Questions

2006-04-09 Thread Russ Michaels
while it's not a common language, and is over most peoples heads, it's still used. Programs that allow you write programs in other languages are more often than not written in machine language in the first place. -Original Message- From: S. Isaac Dealey <[EMAIL PROTECTED]> To: CF-Talk D

RE: Newbie Model Glue Questions

2006-04-09 Thread Russ Michaels
again your taking it out of context. when I say I don't care, I simply mean that I am not gonna have cow and lay awake at night getting stressed and thinking of new abusive comments I can post to everyone who didn't agree with me, which appears to be your problem. I am hapy to hear what other pe

RE: Newbie Model Glue Questions

2006-04-09 Thread Russ Michaels
Well Isaac as I keep saying, everyone is entitled to an opinion. And mine is that your the one who will be left fishing for scraps, because I can't see many companies giving a job to someone like you who is so arrogant and living with his head up his own ass and thinks everyone is below him. Mo

RE: Newbie Model Glue Questions

2006-04-09 Thread Russ Michaels
Are you the most arrgant person in bizzaroworld, or is everyone like you ? -Original Message- From: S. Isaac Dealey <[EMAIL PROTECTED]> To: CF-Talk Date: Sat, 8 Apr 2006 20:15:00 -0400 Subject: RE: Newbie Model Glue Questions > >> Then everyone else can have the scraps that are > >> left