Re: CF8 Autosuggest doesn't work

2010-11-19 Thread Daniel Baughman

Use jquery

Sent from my mobile device

On Nov 19, 2010, at 7:46 PM, Richard  Steele  wrote:

> 
> Hi, Need some help on this one. I couldn't get Ben Forta's autosuggest 
> example to work. I had to make a virtual directory in IIS to the CFIDE folder 
> in order for the button animation to work. But the icon just sits there and 
> rotates. Nothing is suggested. I know that the cfartgallery is returning 
> records. What am I missing? 
> 
> input_test.cfm
> 
> 
> Art:
> name="artname"
>autosuggest="cfc:autosuggest.lookupArt({cfautosuggestvalue})">
> 
> 
> 
> autosuggest.cfc
> 
> 
> 
> 
> 
>
>
> 
> 
> 
> 
> 
> 
> 
> 
> SELECT artname
> FROM art
> WHERE UCase(artname) LIKE Ucase('#ARGUMENTS.search#%')
> ORDER BY artname
> 
> 
> 
> 
> 
> 
> 
>
> 
>
> 
>  
> 
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339407
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 Autosuggest doesn't work

2010-11-19 Thread Tony Bentley

Firebug?

Are you getting an ajax response? If so, what does the output look like? Is it 
a JSON array?


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339406
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF8 Autosuggest doesn't work

2010-11-19 Thread Richard Steele

Hi, Need some help on this one. I couldn't get Ben Forta's autosuggest example 
to work. I had to make a virtual directory in IIS to the CFIDE folder in order 
for the button animation to work. But the icon just sits there and rotates. 
Nothing is suggested. I know that the cfartgallery is returning records. What 
am I missing? 

input_test.cfm


Art:


 
 
autosuggest.cfc















SELECT artname
FROM art
WHERE UCase(artname) LIKE Ucase('#ARGUMENTS.search#%')
ORDER BY artname











 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339405
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFMail 'from' seems to get ignored

2010-11-19 Thread rex

Google's mail servers do not allow you to spoof the "FROM" email 
address.  It will always come from the authenticated account.

i.e.  If I'm using google's mail servers, and login as 
thisper...@gmail.com, I cannot send from thatper...@gmail.com or 
anotherper...@site.com

Stefan Richter wrote:
> Hi all,
> I've configured mail in CF Admin using smtp.gmail.com with my personal GMail 
> account details (username and password). Mail is being sent without problems. 
>
> However users of one of the websites where I use the CFMAIL tag and a 'from' 
> address of i...@site.com tell me that the email arrives as having been sent 
> from me, using my GMail address. What am I missing? Shouldn't the 'from' in 
> CFMail take priority? That's what I seem to remember always happened when I 
> used my own SMTP server in the past.
>
> BTW I am not specifying server details or credentials in the CFMail tag 
> itself, they are only specified in CFadmin.
>
> Cheers 
>
> Stefan
>
>
>
>
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339404
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFMail 'from' seems to get ignored

2010-11-19 Thread Jacob Munson

I believe this is a setting in gmail itself.  There is a section in the
settings called "Send mail as:"

Sent with my Droid
On Nov 19, 2010 2:14 PM, "Stefan Richter"  wrote:
>
> Hi all,
> I've configured mail in CF Admin using smtp.gmail.com with my personal
GMail account details (username and password). Mail is being sent without
problems.
>
> However users of one of the websites where I use the CFMAIL tag and a
'from' address of i...@site.com tell me that the email arrives as having
been sent from me, using my GMail address. What am I missing? Shouldn't the
'from' in CFMail take priority? That's what I seem to remember always
happened when I used my own SMTP server in the past.
>
> BTW I am not specifying server details or credentials in the CFMail tag
itself, they are only specified in CFadmin.
>
> Cheers
>
> Stefan
>
>
>
>
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339403
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFMail 'from' seems to get ignored

2010-11-19 Thread Stefan Richter

Hi all,
I've configured mail in CF Admin using smtp.gmail.com with my personal GMail 
account details (username and password). Mail is being sent without problems. 

However users of one of the websites where I use the CFMAIL tag and a 'from' 
address of i...@site.com tell me that the email arrives as having been sent 
from me, using my GMail address. What am I missing? Shouldn't the 'from' in 
CFMail take priority? That's what I seem to remember always happened when I 
used my own SMTP server in the past.

BTW I am not specifying server details or credentials in the CFMail tag itself, 
they are only specified in CFadmin.

Cheers 

Stefan







~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339402
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Variable before query, rereplace or javascript to change title

2010-11-19 Thread Michael Grant

...until you need to hire five new developers in any place that isn't
California.
:(

On Fri, Nov 19, 2010 at 11:04 AM, Gerald Guido wrote:

>
> >>  I simply added this to my custom tag and it does just what its supposed
> to!
>
> Yep. Reason 32,657 why CF Roxorz.
>
> G!
>
> On Fri, Nov 19, 2010 at 10:24 AM, Joel Black  >wrote:
>
> >
> > Gerald,  was the key.  I didnt even have to
> savecontent
> > or anything else.  I simply added this to my custom tag and it does just
> > what its supposed to!
> >
> > Never even knew this tag existed, thanks a million!
> >
> >
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339401
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Variable before query, rereplace or javascript to change title

2010-11-19 Thread Gerald Guido

>>  I simply added this to my custom tag and it does just what its supposed
to!

Yep. Reason 32,657 why CF Roxorz.

G!

On Fri, Nov 19, 2010 at 10:24 AM, Joel Black wrote:

>
> Gerald,  was the key.  I didnt even have to savecontent
> or anything else.  I simply added this to my custom tag and it does just
> what its supposed to!
>
> Never even knew this tag existed, thanks a million!
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339400
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Variable before query, rereplace or javascript to change title

2010-11-19 Thread Michael Grant

Slightly OT, but I suspect this indicates that your app would benefit from a
separation of display logic and business logic.


On Fri, Nov 19, 2010 at 10:24 AM, Joel Black wrote:

>
> Gerald,  was the key.  I didnt even have to savecontent
> or anything else.  I simply added this to my custom tag and it does just
> what its supposed to!
>
> Never even knew this tag existed, thanks a million!
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339399
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Variable before query, rereplace or javascript to change title

2010-11-19 Thread Joel Black

Gerald,  was the key.  I didnt even have to savecontent or 
anything else.  I simply added this to my custom tag and it does just what its 
supposed to!

Never even knew this tag existed, thanks a million! 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339398
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Variable before query, rereplace or javascript to change title

2010-11-19 Thread Joel Black

>Your title  -
>#Yourvaraible#
> 
>
>This will put  #pageTitle# in the head of the document.
>
>
>
>On Thu, Nov 18, 2010 at 4:05 PM, Joel Black wrote:
>
>> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339397
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: index.cfm being hacked

2010-11-19 Thread Mark A. Kruger

I wonder if you could use Hudson and SVN to monitor changes and keep the
code at a stable release.

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com



-Original Message-
From: rex [mailto:li...@pgrworld.com] 
Sent: Thursday, November 18, 2010 8:04 PM
To: cf-talk
Subject: Re: index.cfm being hacked


You store the hash (i.e. hash("index.cfm")) of the cfm file somewhere: 
in another file, or in a table, etc. and check intermittently, like once 
a day or hour.  So, a job that checks for the MD5SUM of the files, and 
maybe a database table that stores the files and the hashes.

Awesome thing would be an ant script that during deployment 
populates/updates a database table with all your files (or changed 
files) and their MD5 hash, and then deploys the files.  Or maybe just a 
couple of important files to watch, like Application.cfc, index.cfm, com 
directory, etc.

Or do you guys think that's overboard? 

Mike Little wrote:
> hi al, i would be interested to know how you went about having your
computer check the index pages for changes? sounds kinda useful.
>
> mike 
>
> 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339396
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm