Re: OT: Transaction Logs in SQL Server

2007-10-02 Thread John Cox
On 10/2/07, Rick Root <[EMAIL PROTECTED]> wrote:
>
>
>
> I can't get rid of it!  I've tried doing a full backup, transaction
> log backup, shrink database, shrink files, etc.. I'd like to run a
> maintenance plan each morning to back up the database completely after
> all the morning loads and stuff, then shrink the transaction log
> because I don't need it taking up 6 gigs.



You should be able to detach the database, rename the log, and then reattach
the database.  When you reattach it will look for the log and if not found
(because you renamed it) allow you to create a new one.


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289958
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Changing printer settings in CF

2007-09-24 Thread John Cox
On 9/24/07, Ian Skinner <[EMAIL PROTECTED]> wrote:
>
> Any suggestions?
>
> Realize that ColdFusion runs on the server and has little control over
> what happens on a client machine.  I remember seeing an Active X control
> years ago that offered this kind of printer control from a web server -
> if the web server was from Microsoft and the client was from Microsoft
> and the browser was from Microsoft.
>
> You may have some control like this with PDF output using ColdFusion,
> but I suspect it may not be universal or highly scalable.



Also, could be as easy as a print style sheet (media="print") to change the
sizes.  That said, not entirely sure what is being looked for here.


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289309
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: two actions in one form

2007-09-13 Thread John Cox
On 9/13/07, Seamus Campbell <[EMAIL PROTECTED]> wrote:
>
>
>
> I have thought that the form should go to another cf page where I insert
> the data into the database then submit the form details to the shopping
> cart.



You could do it like this, and just use a cfhttp to post it again in your
external cart.  Basically, you just need to mimic the form vars in a new
post.


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288375
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Interesting Firefox behavior

2007-08-29 Thread John Cox
On 8/29/07, Ian Skinner <[EMAIL PROTECTED]> wrote:
>
> "Is that valid? Surely it should look more like this"
>
> I don't know!  Is there something that says there should only be a one to
> one relationship with form controls and labels?  In this example it is a
> phone number, but we are providing an area code field and a number
> field.  From a display perspective only one label is required for the way we
> want to present it.



It's not valid and it's performing as expected, IMO.  It's IE that is being
too loose on the spec.

http://www.w3.org/TR/html4/interact/forms.html#h-17.9.1

"Each  LABEL element
is associated with exactly one form control."

You could set the label id explicitly to "bar" if you used the id (see
below).



   Public Telephone Number:
   
-
(if 916-, xxx-, otherwise, xxx-xxx-)
   
   



~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287398
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: URL Stop and then Redirect

2007-04-20 Thread John Cox
Duh, nevermind;)

Meta redirect works exactly as I want.  Sorry for the mail clutter.

jc

On 4/20/07, John Cox <[EMAIL PROTECTED]> wrote:
>
> Hi all,
>
> I am a little stuck on a little problem, and times like these are when
> there is an obvious solution from a non-interested party.  I am writing a
> dirty import script to move thousands of items from one architecture to
> another.  What I am doing is basically getting all the information from the
> old database and converting it to the new database (is not a one-to-one
> relationship) structure.  I am just grabbing one item at a time and then
> redirecting back to the script.
>
> What I would like to do is stop and then redirect so I don't end up in an
> infinite loop, but the cflocation tag, doesn't really seem to behave quite
> the way I want.  Is there another tag that would do what I am thinking or
> can someone think of an alternative?  I have about 25k items to do, so I'd
> like to just start the script this afternoon and run it through the night
> tonight.
>
> Thanks for any suggestions!
>
> jc
>


~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:275951
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


URL Stop and then Redirect

2007-04-20 Thread John Cox
Hi all,

I am a little stuck on a little problem, and times like these are when there
is an obvious solution from a non-interested party.  I am writing a dirty
import script to move thousands of items from one architecture to another.
What I am doing is basically getting all the information from the old
database and converting it to the new database (is not a one-to-one
relationship) structure.  I am just grabbing one item at a time and then
redirecting back to the script.

What I would like to do is stop and then redirect so I don't end up in an
infinite loop, but the cflocation tag, doesn't really seem to behave quite
the way I want.  Is there another tag that would do what I am thinking or
can someone think of an alternative?  I have about 25k items to do, so I'd
like to just start the script this afternoon and run it through the night
tonight.

Thanks for any suggestions!

jc


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:275949
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF and Windows Vista

2007-02-01 Thread John Cox
Perhaps this question has been raised and I have missed it, so apologies in
advance.

Has anyone had success installing the developer version of CF on Windows
Vista?  For some reason, the installer didn't configure IIS / CF (no mime,
etc).  It's been a while since I installed on XP with IIS or Apache, but I
seem to remember it was somewhat hands free on the install.

If anyone has a tip or a link that I have missed, it would be appreciated.

jc


~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268376
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: valid email address?

2007-01-19 Thread John Cox
On 1/19/07, Jason Rogoz <[EMAIL PROTECTED]> wrote:
>
> Hello there
>
> I have an email script that is throwing an error.  I took a look at the
> email addresses since the script was running fine previously.  I noticed an
> email address in the following format [EMAIL PROTECTED]  Can an email
> address start with www. or is it a good possibility that this is the one
> causing the issue?


email addresses can have . in their name.  IE, my email address is
john.coxso, a
www.myemail is certainly possible and valid, although I have not seen that
sort of scheme for personal emails.


~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267005
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Getting auto generated id after insert in MSSQL

2007-01-17 Thread John Cox
On 1/17/07, Doug Bezona <[EMAIL PROTECTED]> wrote:
>
> scope_identity() is preferrable to @@identity.
>
> @@identity will return the latest ID generated by your statement, which
> means if your insert kicks off a trigger, for example, and the trigger also
> uses an ID value, you would get the ID from the trigger, not your main
> insert.
>
> Scope_identity() is restricted to the scope of your main query.
>
> Now, chances are you don't have any triggers in play, but it's better to
> get in the habit of using scope_identity() so you don't have a surprise down
> the road.



Good advice Doug.  I just got bit with this today and was scratching my head
for an hour before I figured it out.


~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266846
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Icons?

2007-01-16 Thread John Cox
On 1/16/07, Coldfusion <[EMAIL PROTECTED]> wrote:
>
> Anyone know where I can find some icons for a Construction site?
> Examples: hammer, trowel, etc
>
> I did a Google search for "construction tools" website icons
> but did not really find much of anything that was useful.
>
> The icons will be used on an website (public) as well as an intranet
> (internal) site for the client.



Do a search on del.icio.us for "icons" or check out the tag.  There are
plenty of collections that folks bookmark that don't seem to make their way
in the top portion of the google results...


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266722
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: using a query from createobject

2007-01-14 Thread John Cox
On 1/14/07, Richard Cooper <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
>
> Declared in Application.cfc
> 
>
>
> Calling the CFC:
> 



Call myfunc, not getQ when you are calling the function.


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266568
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Page Not Loaded Warning?

2007-01-12 Thread John Cox
On 1/12/07, Teddy Payne <[EMAIL PROTECTED]> wrote:
>
> Are you talking of disabling the print feature of the browser?  I do not
> think you can achieve that.
>
> You can load your report into a pop-up and disable the tool bars and that
> will hinder "most" of the average users.
>
> You may need to also have a message that loads that says, 'Loading
> Data..."
> to inform the user that the report is not done.  AJAX does this very
> often.


Another idea:

you can use document.readystate in javascript in conjunction with
disabled="disabled" in your form buttons.  Plenty of ways to do this on the
client side.


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266443
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: Best free support (ticket) system?

2007-01-11 Thread John Cox
On 1/11/07, Jonathan Block <[EMAIL PROTECTED]> wrote:
>
> Any suggestions on a free customer support ticket system? We use OTRS but
> it's seems very out dated... but what it does it does pretty well. We have
> several employees who use it to manage support tickets that were sent in
> via
> email from many customers. I'm not looking for something that's
> specifically
> written in ColdFusion... I'd actually prefer php.



I'm using Trac with great success with my development group:

http://trac.edgewall.org/

Worth the look anyway.


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266232
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Easy one

2007-01-04 Thread John Cox
Should be the total number of positives / total number of reviews * 100

I would think, but perhaps my math skills are lacking as well.


On 1/4/07, Doug Brown <[EMAIL PROTECTED]> wrote:
>
> My math skills seems to suck!!
>
> I have a table where I am holding feedback left for sellers.
>
> [feedback]
>
> id (int)
> positive (bit)
> negative (bit)
> rating (int) 1-5
>
> I want to get the percentage of positive feedback against the negative.
> Say a seller has received 456 positive ratings and 3 negative ratings. How
> would I calculate the percentage of positive? I feel stupid even asking.
>
>
>
> Doug B.
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265628
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Using Eclipse/CFEclipse

2007-01-03 Thread John Cox
On 1/3/07, Andy Matthews <[EMAIL PROTECTED]> wrote:
>
> Damien...
>
> You're not helping me switch to Eclipse...you're just making me want to
> stick with EditPlus!!! LOL



I've worked with both, but I have to admit that I always come back to
EditPlus.  I guess I am just a little old school, since I went for years
using VI, but EditPlus is quick, simple, has the majority of the tools that
I need, and it doesn't have a cluttered interface (no offense to the Eclipse
users).

I'd say work with Eclipse for a month.  If you feel comfortable using it,
then use it.  If you don't, use EditPlus.  It isn't about the bells and
whistles, it's about what makes you most productive.


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265543
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfqueryparam DECREASES performance?

2007-01-02 Thread John Cox
On 1/2/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote:
>
> Sometimes explicitly specifying the join hints can help if MSSQL is having
> problems determining the best execution plan at runtime:
>
> http://blog.pengoworks.com/blogger/index.cfm?action=blog:567
>
> I'd only recommend specifying join hints if you're seeing a huge
> difference
> in execution times. The most optimal plan can also change over the
> lifetime
> of your database, so while a join hint may help you today, it might cause
> performance issues down the road as your database and schema changes. It's
> just something to keep an eye on when you do manually specify join hints.



Dan, good entry.  Thanks for sharing.


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265469
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFID and CFToken

2006-12-29 Thread John Cox
> > Does anyone know of a way to programmatically add the CFID and CFToken
> > variables to every link within a rendered page (if needed)? Links,
> > form actions, etc., via some regex or something.
> >



I believe URLSessionFormat is what you are looking for.

http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/funca115.htm

Maybe not though.


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265380
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ?

2006-12-21 Thread John Cox
On 12/21/06, Doug Brown <[EMAIL PROTECTED]> wrote:
>
> I am having some troubles with an if statement and cannot seem to get it
> right. I have 2 text fields that hold the value of the price of items a user
> is selling, a user can fill in either one of the fields or none at all. If
> the user chooses not to fill in these fields, then I want to add a default
> value of 0 to the price in the database.
>
>
> I am using this so far with not luck. I tried using  with no
> luck either. In the below code, I will get two price objects due to one or
> both fields being empty.
>
>   
>   price = #ARGUMENTS.asking1#,
>   



I believe:



Will work.


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264848
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CSS / HTML Compliant issue

2006-12-21 Thread John Cox
On 12/21/06, Adkins, Randy <[EMAIL PROTECTED]> wrote:
>
> Okay I did that, however the box (DIV) does not act as a link until you
> mouse over the text itself.
> My goal is to be able to mouse over the box or the text and click to
> proceed to the link not just
> the text.



Then use a span inside the anchor, but you can't use block level items
inside an anchor AFAIK.

Better yet, instead of using a divisions, you should be using a list or a dl
/ dt, since that is really what your menu is.  Don't get too bogged down in
using divisions, rather use the correct HTML element for the job.

http://css.maxdesign.com.au/listamatic/


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264826
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CSS / HTML Compliant issue

2006-12-21 Thread John Cox
On 12/21/06, Adkins, Randy <[EMAIL PROTECTED]> wrote:
>
> If you will look at this one page, I am having a problem with being
> compliant with CSS and HTML and
> achieving the desired behavior and look.
>
> http://test.mksweb.net/



Take your width and positioning out of your anchor elements:

a.LeftNav { width:191px;font-weight:bold;color:#525252;font-family:
'Arial';text-decoration: none;font-size: 13px;}

and place them in your division definitions.  Once done, move your
anchors inside your divisions.


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264813
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: harvesting email addresses

2006-12-21 Thread John Cox
On 12/21/06, Jason Rogoz <[EMAIL PROTECTED]> wrote:
>
> Hi all
>
> I just wanted to follow up with my previous post regarding hiding email
> addresses on form.  Can email addresses be harvested off .cfm and .php
> pages, or are the addresses invisible to the bots on server side scripts. My
> client says they are receiving a lot of spam but i'm not sure that encoding
> the email address on the .cfm or .php will solve anything or if spam is just
> part of the internet now.



Really, this has nothing to do with PHP or CF.  If an email address is in a
readible format then they can be harvested.  What you need is to either use
hex or some javascript.  Here is a pretty good page for reference:

http://www.csarven.ca/hiding-email-addresses


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264788
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Tortoise SVN and Anti Virus Software

2006-12-08 Thread John Cox
On 12/8/06, Sandra Clark <[EMAIL PROTECTED]> wrote:
>
>
>
> Anyone know of a good anti-virus or 3 in one
> (anti-virus/firewall/antispyware) which plays well with Tortoise and
> uploading to remote servers?


I don't have a problem with McAfee and SVN.  I also don't have a problem
with Avast with SVN.  Only two I have tried though.

I doubt its a spyware thing though, more than likely their firewall is not
playing nicely, but that is just a guess.  You might try a different port to
see if the firewall is just doing a poor attempt at port blocking.  I
believe there is a configuration in Tortoise for that, but not sure.


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263314
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cflogin question

2006-11-30 Thread John Cox
I am using cflogin logic to control some access within my framework and is
working just fine.  However, I notice that the timeout logic can not be
overridden without increasing the session timeout.  That's unexpected
behaivor, IMO, but I can work with it by increasing the session time.  I've
tried to increase the cflogin idletimeout but it seems to be tied to my
application override settings.

1st, has anyone else experienced this, as I might be looking at the problem
wrong.  Seems a little backwards to me, but perhaps that is desired
behaivor, or perhaps I have missed an important note in the docs.

2nd, if I have to increase the session time out, what impact would that have
on performance?  In the past, I always held authorized users sessions much
longer than non-authorized ones with PHP, but I am not sure if that is
possible in this case.  Is there a way to purge non-logged in users while
keeping just the logged in ones?

Thanks in advance!


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262362
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How to strip a #

2006-11-13 Thread John Cox
Thanks all for the help on this.  I think I am looking at the problem just a
bit wrong, because all the suggestions should work, but none are.  I'm going
to attack the problem from a different angle.  Once again, thanks for the
suggestions!


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260208
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How to strip a #

2006-11-13 Thread John Cox
Sorry, Rick, haven't tried this yet, got distracted on a different problem.
Will let you know!

On 11/13/06, Rick Faircloth <[EMAIL PROTECTED]> wrote:
>
> > 
>
>
> Thought I'd venture out of always asking questions to possibly try to
> offer an answer to someone.
>
> I'm not sure what the final solution was, however...
>
> Rick


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260186
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How to strip a #

2006-11-12 Thread John Cox
On 11/12/06, Snake <[EMAIL PROTECTED]> wrote:
>
> Try this
> 



hmm, that doesn't work either, seems like it should though.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260135
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


How to strip a #

2006-11-12 Thread John Cox
I am trying to strip out a # (pound) from a string.  I would have thought
this would have worked:



That didn't work, as it thought it was a var (missing an argument).  I tried
to escape it:



But that didn't seem to work (i think it is looking for ## at that point).
Any suggestions?


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260132
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Application Var Scope

2006-11-09 Thread John Cox
On 11/9/06, RichL <[EMAIL PROTECTED]> wrote:
>
> John
>
> I am not too sure on the domain front but the application variables
> will persist on a per server basis as far as I am aware, so depending
> on the data you are putting in to the application scope there is the
> potential for it to be different on different servers (if for example
> you are setting the variable from a query result the results could be
> different depending on when the application variable times out and
> gets reset - but you have some control over this by using the
> application timeout setting).


Rich, this clears it up for me.  They do as I thought, but I wanted to
confirm it before I started putting pen to paper;)

Thanks so much!


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259764
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: application.cfm question

2006-11-09 Thread John Cox
Thanks Mike and Rich!

On 11/9/06, Dawson, Michael <[EMAIL PROTECTED]> wrote:
>
> Application.cfm is called once per request.  CFINCLUDE is not considered
> to be a request.
>
> However, the easiest way to test it is to add a CFMAIL or CFLOG tag to
> the application.cfm file and then try it on an included file.
>
> M!ke


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259758
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: application.cfm question

2006-11-09 Thread John Cox
On 11/9/06, RichL <[EMAIL PROTECTED]> wrote:
>
> Coldfusion will look for an application.cfm at the current folder
> level and carry on up the directory tree until it finds one.
>
> The first that it finds will override any further up the tree



Thanks, I understand that part.  What I don't understand is when you include
a file from a different directory.  Does it look at the included file's
directory or just the directory that is calling the file.  IE, is it
possible that several application.cfms are loaded, or does ColdFusion only
load the the application.cfm from the processed file's directory?


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259754
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


application.cfm question

2006-11-09 Thread John Cox
One more newb question while I am at it.  Does CF load application.cfm and
onrequestend.cfm the application.cfm from an included file directory?

IE:

include.cfm -> pulls /lib/foo/bar.cfm

does /lib/foo/application.cfm also get loaded or does CF ignor that
directory since in effect it is now include.cfm?

Thanks again.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259752
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Application Var Scope

2006-11-09 Thread John Cox
I realize this is a bit of a newb question, but I am trying to get my head
around application variables.  I come from a PHP background where I am used
to setting configurations files, etc, which is similar to application vars,
but not quite the same.

Here's the problem I am trying to overcome.  I have several applications
that will be reused on multiple domains.  Each of these applications have
certain configuration that I want to set based on the domain that they are
sitting on.  For instance, (real bad example probably) on one of my Europe
domains I might want to set the time notation than I do in my US domains.  I
also might be looking at a different DSN, etc, so on and so forth.  In PHP,
I would just create a configuration based on the site, load that in, and
presto, have my vars available.  I am a believer in using the tools
available and not trying to rewrite the language to suit my needs, but
rather try to rewrite my applications based on the language.

In ColdFusion, we have application vars, which to me seem to me to be very
similar if not better.  However, what I don't quite understand is the
persistance of these vars.  Are they by domain?  Are they server wide?  I am
pretty sure by my reading that are based on the application name, but then
again, I have a short attention span so forgive me in advance if I am
incorrect.  I am sure that I would need to condition the vars based on
domain, or various other conditions, but will these vars overwrite one
another when the application is loaded on two separate domains, or are they
separate instances?

Thanks in advance!

jc


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259751
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Site Monitoring

2006-11-07 Thread John Cox
http://mon.itor.us/

Does a pretty good job as well.  Free, and will send sms / email.


>
> -Original Message-
> From: Dave Francis [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, November 07, 2006 12:13 PM
> To: CF-Talk
> Subject: Site Monitoring
>
> Is there any software out there that can monitor and alert me whenever
> my
> site crashes or starts to respond unacceptably slowly Win2k/IIS5.0
>   (or what terms should I google for?)
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259475
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT - CSS Float Image Bottom Right corner of DIV

2006-11-04 Thread John Cox
On 11/1/06, Josh Nathanson <[EMAIL PROTECTED]> wrote:
>
> Caveat:  It's not a true float as you have to fix the width of the outer
> table.  But, if you can do that you can achieve the desired effect.  Not
> sure if this is easier than doing the same thing with a div or not.



Another little cheat, but not sure if it would work in your case:






Your Text



Obviously, you would need to have an idea of the height of the container, or
a relative idea of the height of the left div.  It should still float right
and wrap around the image at the padding that you specify, if i am not
mistaken.

jc


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259192
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: table

2006-10-13 Thread John Cox
On 10/13/06, Richard White <[EMAIL PROTECTED]> wrote:
>
> Hi, i am wondering if any one can recommend me a control.
>
> I have a list of items to present to the user. It will have 2 columns: the
> position of the item, and the name of the item.
>
> I would like the users to be able to move the items up or down in the
> table, therefore changing there position within the list.
>
> i dont want to do this in a normal table and would like a control that is
> easy to use and very professional looking.



I'd do something like this:

http://www.frequency-decoder.com/2006/09/16/unobtrusive-table-sort-script-revisited


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256775
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Cf vs ?

2006-10-13 Thread John Cox
On 10/13/06, Cutter (CFRelated) <[EMAIL PROTECTED]> wrote:
>
> John,
>
> I would agree with you, if it weren't for guys like NewAtlanta putting
> out a free version of BlueDragon or the Railo project. Cost is not a
> valid argument any more (NewAtlanta has offered a free edition of BD
> since2003? Josh, Vince, pipe in anytime here). Not trying to start a
> pissing contest here, just saying that there are options if one is
> willing to research them.


heh, you guys seem to think I am shying away from CF because of cost.  I am
obviously on this list, and am using CF daily.  Just saying what my
impression was prior to using it, and why I wouldn't have learned CF had I
not taken my current position.  It's no biggie to me at all, but to say that
there isn't an impression of cost associate, again, I say impression is over
looking one obvious difference.  No one needs to convince me though either
way though.

To me it doesn't really matter one way or another as long as I can do a cost
justification.  A programming language is just a tool to use to meet an
end.  To me, I don't really care if I am writing in PHP / Ruby / ColdFusion,
as long as I can do what I need to do.  If I can make a case that CF allows
me to do it faster with less man-power, then great, I can justify the cost.
No biggie.  Are CF developers less for me to hire than PHP / Ruby / PERL
developers?  Great, I can justify the cost.  No biggie.

I admit that I am new here, so my apologies for the comment if bringing up
costs associated is a touchy subject, as it appears to be.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256669
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cf vs ?

2006-10-13 Thread John Cox
On 10/13/06, Andy Matthews <[EMAIL PROTECTED]> wrote:
>
> It's so irritating when people think that Coldfusion "costs" money. Unless
> you're hosting your own server, the only cost is virtual hosting, which
> you're going to have to pay no matter what. You also don't need a special
> editor to code CF.


Ummm, I do host my own server for applications, so I have costs associated.
PHP was free for me to install though regardless of the server or not.

We can go on and on about the cost savings, etc because of time (which I am
sure there are plenty or arguments pro / con).  Point of the matter is there
are upfront costs associated for me where with other languages I don't have
the same constraint.

Some folks do have the need for dedicated boxes;)  I am not trying to troll,
the question was asked and I gave my impression.  It could well be marketed
better for small companies or individuals, etc.  However, the marketing
message that I have seen is, "It saves you time to write applications and
the time savings will make up for the upfront costs", not "It's free to use,
as long as you don't run a dedicated server";)


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256650
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Cf vs ?

2006-10-13 Thread John Cox
On 10/13/06, Neil Middleton <[EMAIL PROTECTED]> wrote:
>
> Quick Question,
>
> Why do people think that languages such as Python or Ruby as so much more
> popular than CF when, in a web point of view, they acheive the same thing
> in
> the same way (i.e lightweight scripting).



Cost?  It's the reason I have always shied away from ColdFusion (but now
learning due to new job).


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256639
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Money no Object - Best Online Editor for dealing with cut'n paste from Word

2006-10-12 Thread John Cox
TinyMCE: http://tinymce.moxiecode.com/

I believe it cleans word files, and supports safari as well.

On 10/12/06, Jon Clausen <[EMAIL PROTECTED]> wrote:
>
> I'm a big fan of Asbru's Web Content Editor  (http://
> editor.asbrusoft.com/page.php/id=702)  .  A big bonus is that it is
> the only full-featured WYSIWYG  editor that supports Safari. It's
> not lightweight, but it's very nice on the features set.
>
> It also has quite a few features for cleaning up MS Word Content the
> extra junk.
>
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256525
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4