RE: Lost SESSION variables - sometimes

2012-01-03 Thread Stephens, Larry V

Thanks. I'll try that. 


 

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Friday, December 30, 2011 7:05 PM
To: cf-talk
Subject: Re: Lost SESSION variables - sometimes


it is probably a cookie issue as this is how the session is tracked.
clear the cookies and cache on that browser and see if it helps.
Also make sure cookies are not disabled.

On Fri, Dec 30, 2011 at 7:26 PM, Stephens, Larry V steph...@indiana.eduwrote:


 CF8

 My home page populates a session variable. I did a dump to make sure 
 this was happening.

 Mozilla (Firefox) - newest download

 On one machine I go to another page off my menu and it displays correctly.

 I go to another machine and I get an error - no session variable defined.
 The entire SESSION scope is lost on this machine.

 IE - works fine on both machines.



 I don't see how it can be a coding issue since it works in IE and in 
 Mozilla on other machines.

 Does anyone have a clue why certain iterations of Firefox would cause 
 the loss of the SESSION variable?

 Larry Stephens

 



~|
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:349296
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cffile action=write - permissions being set incorrectly (CF8.1)

2012-01-03 Thread Wayne Gregor

I am using cffile to write files to a linux directory but 
the permissions are not being set correctly.  I'm interested 
in '777' but cffile sets them to '644'.  Has anyone else had 
this problem?

cffile action=write 
file=/home/www/www.gregorigroup.com/htdocs/market_data/data.htm 
 output='#htmlDoc#'
  mode='777'
-- 
*Wayne Gregori*
\


~|
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:349297
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cffile action=write - permissions being set incorrectly (CF8.1)

2012-01-03 Thread Drew Nathanson

Wayne,

You may need to check to see what the directory is set to. Also check the 
ownership of the directory. By default the Linux OS writes files as 644. You 
can set the default in the /etc/profile file using the umask command. 

Drew Nathanson
Technical Synergy, Inc.

I am using cffile to write files to a linux directory but 
the permissions are not being set correctly.  I'm interested 
in '777' but cffile sets them to '644'.  Has anyone else had 
this problem?

cffile action=write 
file=/home/www/www.gregorigroup.com/htdocs/market_data/data.htm 
 output='#htmlDoc#'
  mode='777'
-- 
*Wayne Gregori*
\ 

~|
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:349298
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Richtext Editor Woes

2012-01-03 Thread Scott Weikert

I don't recall if there's an easy config setting to turn off uploads, 
but it's not difficult to go into the relevent code and comment out the 
upload button.

Are you still on FCKEditor or CKEditor (i.e. v2 vs. v3)?

On 12/30/11 4:21 PM, Terry Troxel wrote:
 Is it possible to safely use FCKeditor with image/file uploading completely
 disabled
 and still be able to browse your sites image folder to insert images?

 If it is still posible I sure could use some help doing that please.

 I am running the Standalone version installed under the administration
 folder which is password protected

 Terry





~|
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:349299
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: BoogieBounce on Linux?

2012-01-03 Thread Scott Weikert

BoogieTools does have a Linux version now - and according to the 
BoogieTools contact guy, it's a shared object.

I'm not finding any real helpful info on how to use CF (or in my case, 
Railo - even if CF9 does it, Railo may not) to connect to and interact 
with a shared object, though.

Anyone out there that can point me in the right direction?

I'd really prefer not to have to rewrite my bounce processing script in 
PHP to be able to use BoogieBounce :/

On 12/30/11 10:30 AM, Dave Watts wrote:
 My understanding was that they didn't offer BoogieBounce for Linux, 
 but instead have a module that you can load as a shared object. I have 
 no idea how you'd do that from CF.


~|
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:349300
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Richtext Editor Woes

2012-01-03 Thread Russ Michaels

you can specify every single option in the ckeditor config to be on or off,
it is very flexible.

On Tue, Jan 3, 2012 at 6:06 PM, Scott Weikert li...@alphageek.cc wrote:


 I don't recall if there's an easy config setting to turn off uploads,
 but it's not difficult to go into the relevent code and comment out the
 upload button.

 Are you still on FCKEditor or CKEditor (i.e. v2 vs. v3)?

 On 12/30/11 4:21 PM, Terry Troxel wrote:
  Is it possible to safely use FCKeditor with image/file uploading
 completely
  disabled
  and still be able to browse your sites image folder to insert images?
 
  If it is still posible I sure could use some help doing that please.
 
  I am running the Standalone version installed under the administration
  folder which is password protected
 
  Terry
 
 
 


 

~|
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:349301
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Richtext Editor Woes

2012-01-03 Thread Terry Troxel

Thanks Russ, But turning off the buttons did not satisfy the CF security
updates.
So since I had an abundance of time this weekend I installed, configured the

Following and I am now a happy camper:

CKEditor, latest version, CFFM latest version by Mr. Rick Root (Loud
Applause),
And I now have an image manager that I think puts CKFinder in the weeds and
is
Open source.

Terry Troxel




~|
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:349302
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Richtext Editor Woes

2012-01-03 Thread Dean Lawrence

Scott,

Just for future knowledge, you can limit the abilities of the user
based upon their role.

config.accessControl = arrayNew(1);

config.accessControl[1] = structNew();
config.accessControl[1].role = '*';
config.accessControl[1].resourceType = '*';
config.accessControl[1].folder = '/';
config.accessControl[1].folderView = true;
config.accessControl[1].folderCreate = true;
config.accessControl[1].folderRename = true;
config.accessControl[1].folderDelete = true;
config.accessControl[1].fileView = true;
config.accessControl[1].fileUpload = true;
config.accessControl[1].fileRename = true;
config.accessControl[1].fileDelete = true;

All you would have to do is change the fileUpload value to false to
prevent file uploads.

Dean

On Tue, Jan 3, 2012 at 2:35 PM, Terry Troxel terry.tro...@gmail.com wrote:

 Thanks Russ, But turning off the buttons did not satisfy the CF security
 updates.
 So since I had an abundance of time this weekend I installed, configured the

 Following and I am now a happy camper:

 CKEditor, latest version, CFFM latest version by Mr. Rick Root (Loud
 Applause),
 And I now have an image manager that I think puts CKFinder in the weeds and
 is
 Open source.

 Terry Troxel




 

~|
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:349303
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm