Re: [ACFUG Discuss] integrate blog with cf site

2007-08-30 Thread Cheyenne Throckmorton
I actually just installed BlogCFC for the first time two nights ago, and
have been extremely pleased with its functionality and codebase.  I wrote a
blog about how much I liked it, and how it kicked the tar out of the crappy
DNN blog I've been running for the past year or so.  Unfortunately, that
posting isn't live yet, but it was just basically really backing up Rays
project.  It easily spawns out several blogs and I have it running on CF8
and SQL Server 2005 which I'm not sure were even supported in the
documentation yet.

To answer your question about integrating.  I've just now started looking at
the product, but its well coded and laid out.  There is a function in the
blog.cfc file called authenticate() method that accepts a username and
password that he compares against the tblusers table in your SQL Server
install.  Here you could either call a direct query to your database of
usernames instead, or even do something quick that says  or whatever you have, to just bypass the authentication.
I'll probably do some active directory stuff here when we release some
internal company blogs.

Its all going to depend upon your setup, but going with a tried and true,
completely open-code application in CF like Rays I think is going to prove
your best bet. I'm not dogging Wordpress by any means, just really backing
BlogCFC as what you could try first, rather than spending time having to
deal with a non-CF (who knows how open) software project.

-Cheyenne




On 8/30/07, shawn gorrell <[EMAIL PROTECTED]> wrote:
>
>  Why don't you pop an email to Ray about it?  Ray has to be one of the
> best people in the CF community about giving away code and helping people
> out when they ask. Don't be shy about popping him an email, as he is
> probably one of the nicest dudes you'd ever meet.
>
> I use a very old version of BlogCFC and have been totally happy with it.
> I've done my own extensions to it, and find the codebase to be simple to
> understand. I'm sure it has changed significantly in the years since the
> release I'm using.
>
> - Original Message 
> From: Dusty Hale <[EMAIL PROTECTED]>
> To: discussion@acfug.org
> Sent: Thursday, August 30, 2007 6:26:10 PM
> Subject: RE: [ACFUG Discuss] integrate blog with cf site
>
> Just so I understand correctly I've already built a login system from the
> ground up using cf and sql 2000. Do you think I could somehow integrate
> word
> press or BlogCFC so it could use the existing system that is built with cf
> and sql 2000? There are 20,000+ users in the database and we want those
> users and new account signups to have access to the blog and in the near
> future a forum as well.
>
> Many thx,
>
> Dusty
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H. Saxe
> Sent: Thursday, August 30, 2007 5:11 PM
> To: discussion@acfug.org
> Subject: Re: [ACFUG Discuss] integrate blog with cf site
>
> You'd need a single signon method, not a totally trivial thing to
> build from scratch if you want to integrate with the Wordpress blog.
> Why not look at Ray Camden's BlogCFC?
>
> -dhs
>
>
> Dean H. Saxe, CISSP,  CEH
> [EMAIL PROTECTED]
> "[T]he people can always be brought to the bidding of the leaders.
> This is easy. All you have to do is to tell them they are being attacked,
> and denounce the pacifists for lack of patriotism and exposing the country
> to danger. It works the same in every country."
>  --Hermann Goering, Hitler's Reich-Marshall at the Nuremberg Trials
>
>
> On Aug 30, 2007, at 5:04 PM, Dusty Hale wrote:
>
> > I have a cf site that has an SQL Sever 2000 database. It holds its
> > user accounts in this database which controls logins. I need to
> > integrate a blog with the site but we don't want users to have to
> > login to the cf application and to the blog. I need to integrate an
> > existing blog application so that it would could share the user data.
> > My thoughts are:
> >
> > 1. Use the free Word Press blog that comes with the hosting account at
> > HostMySite.com. My understanding is that Word Press uses a MySQL
> > database so I could write some cf code to insert user records into its
> > database and then auto login folks to the blog by posting to its login
> > script? Has anyone tried to do something like this? I only consider it
> > because it comes free with the hosting account.
> >
> > 2. Find a blog application that uses CF and SQL 2000 and somehow
> > integrate it with the existing cf application. This seems like the
> > best approach but I haven't started looking for suitable blog
> > application yet. If anyone has done this and could recommend a
> > suitable one, much appreciated.
> >
> > Also I should mention that the blog will be used mainly for posting
> > company newsletters and articles. We would also like to do the same
> > thing with a discussion forum but again need it to work with the
> > existing login system.
> >
> > Thanks,
> >
> > Dusty
> >
> >
> > --

Re: [ACFUG Discuss] integrate blog with cf site

2007-08-30 Thread shawn gorrell
Why don't you pop an email to Ray about it?  Ray has to be one of the best 
people in the CF community about giving away code and helping people out when 
they ask. Don't be shy about popping him an email, as he is probably one of the 
nicest dudes you'd ever meet. 

I use a very old version of BlogCFC and have been totally happy with it. I've 
done my own extensions to it, and find the codebase to be simple to understand. 
I'm sure it has changed significantly in the years since the release I'm using. 

- Original Message 
From: Dusty Hale <[EMAIL PROTECTED]>
To: discussion@acfug.org
Sent: Thursday, August 30, 2007 6:26:10 PM
Subject: RE: [ACFUG Discuss] integrate blog with cf site

Just so I understand correctly I've already built a login system from the
ground up using cf and sql 2000. Do you think I could somehow integrate word
press or BlogCFC so it could use the existing system that is built with cf
and sql 2000? There are 20,000+ users in the database and we want those
users and new account signups to have access to the blog and in the near
future a forum as well.   

Many thx,

Dusty

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H. Saxe
Sent: Thursday, August 30, 2007 5:11 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] integrate blog with cf site

You'd need a single signon method, not a totally trivial thing to  
build from scratch if you want to integrate with the Wordpress blog.   
Why not look at Ray Camden's BlogCFC?

-dhs


Dean H. Saxe, CISSP,  CEH
[EMAIL PROTECTED]
"[T]he people can always be brought to the bidding of the leaders.  
This is easy. All you have to do is to tell them they are being attacked,
and denounce the pacifists for lack of patriotism and exposing the country
to danger. It works the same in every country."
 --Hermann Goering, Hitler's Reich-Marshall at the Nuremberg Trials


On Aug 30, 2007, at 5:04 PM, Dusty Hale wrote:

> I have a cf site that has an SQL Sever 2000 database. It holds its 
> user accounts in this database which controls logins. I need to 
> integrate a blog with the site but we don't want users to have to 
> login to the cf application and to the blog. I need to integrate an 
> existing blog application so that it would could share the user data. 
> My thoughts are:
>
> 1. Use the free Word Press blog that comes with the hosting account at 
> HostMySite.com. My understanding is that Word Press uses a MySQL 
> database so I could write some cf code to insert user records into its 
> database and then auto login folks to the blog by posting to its login 
> script? Has anyone tried to do something like this? I only consider it 
> because it comes free with the hosting account.
>
> 2. Find a blog application that uses CF and SQL 2000 and somehow 
> integrate it with the existing cf application. This seems like the 
> best approach but I haven't started looking for suitable blog 
> application yet. If anyone has done this and could recommend a 
> suitable one, much appreciated.
>
> Also I should mention that the blog will be used mainly for posting 
> company newsletters and articles. We would also like to do the same 
> thing with a discussion forum but again need it to work with the 
> existing login system.
>
> Thanks,
>
> Dusty
>
>
> -
> Annual Sponsor - Figleaf Software
>
> To unsubscribe from this list, manage your profile @ 
> http://www.acfug.org?fa=login.edituserform
>
> For more info, see http://www.acfug.org/mailinglists Archive @ 
> http://www.mail-archive.com/discussion%40acfug.org/
> List hosted by FusionLink
> -



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists Archive @
http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-










-

Annual Sponsor FigLeaf Software - http://www.figleaf.com



To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink

Re: [ACFUG Discuss] integrate blog with cf site

2007-08-30 Thread Dean H. Saxe
I'd use BlogCFC and tie it in with your existing infrastructure.  I  
haven't looked at it, so I can't say how much effort it would take.


-dhs


Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
"I have always strenuously supported the right of every man to his  
own opinion, however different that opinion might be to mine. He who  
denies another this right makes a slave of himself to his present  
opinion, because he precludes himself the right of changing it."

-- Thomas Paine, 1783


On Aug 30, 2007, at 6:26 PM, Dusty Hale wrote:

Just so I understand correctly I've already built a login system  
from the
ground up using cf and sql 2000. Do you think I could somehow  
integrate word
press or BlogCFC so it could use the existing system that is built  
with cf
and sql 2000? There are 20,000+ users in the database and we want  
those
users and new account signups to have access to the blog and in the  
near

future a forum as well.

Many thx,

Dusty

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H.  
Saxe

Sent: Thursday, August 30, 2007 5:11 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] integrate blog with cf site

You'd need a single signon method, not a totally trivial thing to
build from scratch if you want to integrate with the Wordpress blog.
Why not look at Ray Camden's BlogCFC?

-dhs


Dean H. Saxe, CISSP,  CEH
[EMAIL PROTECTED]
"[T]he people can always be brought to the bidding of the leaders.
This is easy. All you have to do is to tell them they are being  
attacked,
and denounce the pacifists for lack of patriotism and exposing the  
country

to danger. It works the same in every country."
 --Hermann Goering, Hitler's Reich-Marshall at the Nuremberg  
Trials



On Aug 30, 2007, at 5:04 PM, Dusty Hale wrote:


I have a cf site that has an SQL Sever 2000 database. It holds its
user accounts in this database which controls logins. I need to
integrate a blog with the site but we don't want users to have to
login to the cf application and to the blog. I need to integrate an
existing blog application so that it would could share the user data.
My thoughts are:

1. Use the free Word Press blog that comes with the hosting  
account at

HostMySite.com. My understanding is that Word Press uses a MySQL
database so I could write some cf code to insert user records into  
its
database and then auto login folks to the blog by posting to its  
login
script? Has anyone tried to do something like this? I only  
consider it

because it comes free with the hosting account.

2. Find a blog application that uses CF and SQL 2000 and somehow
integrate it with the existing cf application. This seems like the
best approach but I haven't started looking for suitable blog
application yet. If anyone has done this and could recommend a
suitable one, much appreciated.

Also I should mention that the blog will be used mainly for posting
company newsletters and articles. We would also like to do the same
thing with a discussion forum but again need it to work with the
existing login system.

Thanks,

Dusty


-
Annual Sponsor - Figleaf Software

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists Archive @
http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-




-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists Archive @
http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-







-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





RE: [ACFUG Discuss] integrate blog with cf site

2007-08-30 Thread Dusty Hale
Just so I understand correctly I've already built a login system from the
ground up using cf and sql 2000. Do you think I could somehow integrate word
press or BlogCFC so it could use the existing system that is built with cf
and sql 2000? There are 20,000+ users in the database and we want those
users and new account signups to have access to the blog and in the near
future a forum as well.   

Many thx,

Dusty

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H. Saxe
Sent: Thursday, August 30, 2007 5:11 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] integrate blog with cf site

You'd need a single signon method, not a totally trivial thing to  
build from scratch if you want to integrate with the Wordpress blog.   
Why not look at Ray Camden's BlogCFC?

-dhs


Dean H. Saxe, CISSP,  CEH
[EMAIL PROTECTED]
"[T]he people can always be brought to the bidding of the leaders.  
This is easy. All you have to do is to tell them they are being attacked,
and denounce the pacifists for lack of patriotism and exposing the country
to danger. It works the same in every country."
 --Hermann Goering, Hitler's Reich-Marshall at the Nuremberg Trials


On Aug 30, 2007, at 5:04 PM, Dusty Hale wrote:

> I have a cf site that has an SQL Sever 2000 database. It holds its 
> user accounts in this database which controls logins. I need to 
> integrate a blog with the site but we don't want users to have to 
> login to the cf application and to the blog. I need to integrate an 
> existing blog application so that it would could share the user data. 
> My thoughts are:
>
> 1. Use the free Word Press blog that comes with the hosting account at 
> HostMySite.com. My understanding is that Word Press uses a MySQL 
> database so I could write some cf code to insert user records into its 
> database and then auto login folks to the blog by posting to its login 
> script? Has anyone tried to do something like this? I only consider it 
> because it comes free with the hosting account.
>
> 2. Find a blog application that uses CF and SQL 2000 and somehow 
> integrate it with the existing cf application. This seems like the 
> best approach but I haven't started looking for suitable blog 
> application yet. If anyone has done this and could recommend a 
> suitable one, much appreciated.
>
> Also I should mention that the blog will be used mainly for posting 
> company newsletters and articles. We would also like to do the same 
> thing with a discussion forum but again need it to work with the 
> existing login system.
>
> Thanks,
>
> Dusty
>
>
> -
> Annual Sponsor - Figleaf Software
>
> To unsubscribe from this list, manage your profile @ 
> http://www.acfug.org?fa=login.edituserform
>
> For more info, see http://www.acfug.org/mailinglists Archive @ 
> http://www.mail-archive.com/discussion%40acfug.org/
> List hosted by FusionLink
> -



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists Archive @
http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-






-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] integrate blog with cf site

2007-08-30 Thread Dean H. Saxe
You'd need a single signon method, not a totally trivial thing to  
build from scratch if you want to integrate with the Wordpress blog.   
Why not look at Ray Camden's BlogCFC?


-dhs


Dean H. Saxe, CISSP,  CEH
[EMAIL PROTECTED]
"[T]he people can always be brought to the bidding of the leaders.  
This is easy. All you have to do is to tell them they are being  
attacked, and denounce the pacifists for lack of patriotism and  
exposing the country to danger. It works the same in every country."

--Hermann Goering, Hitler's Reich-Marshall at the Nuremberg Trials


On Aug 30, 2007, at 5:04 PM, Dusty Hale wrote:

I have a cf site that has an SQL Sever 2000 database. It holds its  
user accounts in this database which controls logins. I need to  
integrate a blog with the site but we don't want users to have to  
login to the cf application and to the blog. I need to integrate an  
existing blog application so that it would could share the user  
data. My thoughts are:


1. Use the free Word Press blog that comes with the hosting account  
at HostMySite.com. My understanding is that Word Press uses a MySQL  
database so I could write some cf code to insert user records into  
its database and then auto login folks to the blog by posting to  
its login script? Has anyone tried to do something like this? I  
only consider it because it comes free with the hosting account.


2. Find a blog application that uses CF and SQL 2000 and somehow  
integrate it with the existing cf application. This seems like the  
best approach but I haven't started looking for suitable blog  
application yet. If anyone has done this and could recommend a  
suitable one, much appreciated.


Also I should mention that the blog will be used mainly for posting  
company newsletters and articles. We would also like to do the same  
thing with a discussion forum but again need it to work with the  
existing login system.


Thanks,

Dusty


-
Annual Sponsor - Figleaf Software

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-




-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] integrate blog with cf site

2007-08-30 Thread Dusty Hale
I have a cf site that has an SQL Sever 2000 database. It holds its user
accounts in this database which controls logins. I need to integrate a blog
with the site but we don't want users to have to login to the cf application
and to the blog. I need to integrate an existing blog application so that it
would could share the user data. My thoughts are:
 
1. Use the free Word Press blog that comes with the hosting account at
HostMySite.com. My understanding is that Word Press uses a MySQL database so
I could write some cf code to insert user records into its database and then
auto login folks to the blog by posting to its login script? Has anyone
tried to do something like this? I only consider it because it comes free
with the hosting account.
 
2. Find a blog application that uses CF and SQL 2000 and somehow integrate
it with the existing cf application. This seems like the best approach but I
haven't started looking for suitable blog application yet. If anyone has
done this and could recommend a suitable one, much appreciated.
 
Also I should mention that the blog will be used mainly for posting company
newsletters and articles. We would also like to do the same thing with a
discussion forum but again need it to work with the existing login system.
 
Thanks,
 
Dusty 
 



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



RE: [ACFUG Discuss] cfcontent in IE7

2007-08-30 Thread Troy Jones
What did the trick was adding the values in the  tags to force
reloads. I previously had those values at "". When I added the values,
the browser correctly displayed the open/save dialog box and then the
content correctly displayed in the browser window with the Excel
worksheet embedded. Sorry if I wasn't clear on that, but yes, that was
the crux of the issue.

Troy Jones
Dynapp Support Team
678-528-2952
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Charlie
Arehart
Sent: Wednesday, August 29, 2007 5:12 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] cfcontent in IE7

For the benefit of the viewing audience :-),  can you clarify what it
was
that "worked" for you, Troy? 

It seems you're referring to Dean's last note, and that may be what you
meant. I'm just curious (for instance, did simply browing the page in a
new
window not work for you)?

/charlie

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Troy Jones
Sent: Wednesday, August 29, 2007 4:45 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] cfcontent in IE7

Thanks for that, it worked. 

Troy Jones
Dynapp Support Team
678-528-2952
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H. Saxe
Sent: Tuesday, August 28, 2007 6:22 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] cfcontent in IE7

FWIW, you should use the Pragma: no-cache, Expires: 0 and Cache-
Control: no-cache, no-store, must-revalidate for such requests to
prevent
exactly what Charlie is referring to.

-dhs



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-