Re: 525339 C-A-N-A-D-l-A-N P-H-A-R-M-A-C-Y

2009-03-24 Thread Joel Polsky

Now this is getting too much.. the LIST is being spammed, not just me! And
gee.. Why are the links jakerziz and not msn.com or microsoft.com

On Mon, Mar 23, 2009 at 9:18 PM, cftalk cft...@efflare.com wrote:


 About this mailing:
 You are receiving this e-mail because you subscribed to MSN Featured
 Offers. Microsoft respects your privacy. If you do not wish to receive this
 MSN Featured Offers e-mail, please click the Unsubscribe link below. This
 will not unsubscribe you from e-mail communications from third-party
 advertisers that may appear in MSN Feature Offers. This shall not constitute
 an offer by MSN. MSN shall not be responsible or liable for the advertisers'
 content nor any of the goods or service advertised. Prices and item
 availability subject to change without notice.

 ©2009 Microsoft | Unsubscribe at http://jakreziz.cn | More news at
 http://jakreziz.cn | Prvacy at http://jakreziz.cn
 Microsoft Corporation, One Microsoft Way, Redmond, WA 98052

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320856
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: php help (i know, offlist if you can... thanks!)

2009-03-10 Thread Joel Polsky

And people think CF is so out dated, and PHP is all that and a bag of
chips..

Ha!

Not that I have the answer, BUT I'm sure the answer to the problem would
have been much easier if it was a CF application...






On Tue, Mar 10, 2009 at 6:56 PM, Rastafari rastaf...@gmail.com wrote:


 NEVERMIND :) i think i fixed it!!
 but im not sure of the security of the fix.
 but it works so far.  ill be hardening it up if i need
 to... thanks!
 tony

 On Tue, Mar 10, 2009 at 6:52 PM, Rastafari rastaf...@gmail.com wrote:
  Yuliang... if you can go to this page:
  http://www.morgantownpatiosunrooms.com/fileExists.php
  you will see that the file exists.  the code is simple. then...
  the next link below... takes you to a page that has
  the code below in it...
 
  so, i can detect the files presence but not read it??
 
  http://www.morgantownpatiosunrooms.com/readfile.php
  (notice the error)
 
  ?php
  $filename = 'c:\inetpub\wwwroot\morgantownpatiosunrooms\morgantown1.xml';
 
  if (file_exists($filename))
  {
 $fd = fopen(basename($filename),'r');
 while(!feof($fd))
 {
 $contents .= fgets($fd,1024);
 }
 fclose($fd);
  }
  else
  {
 err(No lt;xmlgt; data file foundbrPlease upload the data xml
  file .$filename);
  }
 
  ?
 
 
  thanks!!
  tony
 
  On Tue, Mar 10, 2009 at 7:37 PM, Yuliang Ruan yuliangr...@hotmail.com
 wrote:
 
  so there is a garagerefacing.xml in the same directory as that php
 file that's running?   it might also be something like a environment
 variable PATH or something.  or the php file is not in the same directory as
 that XML file and there was a path variable set up before but now doesn't
 exist.
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320344
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


ColdFusion.Window.create problems..

2009-03-06 Thread Joel Polsky

Hi,
I'm trying implement the sample on this page, which controls where a
cfwindow appears based on the x/y click .
http://www.coldfusionjedi.com/index.cfm/2007/11/29/ColdFusion-8-and-AjaxBased-Login

Here's where my latest code:
script language=javascript
function doLogin(x,y) {
   ColdFusion.Window.create('loginwindow','Members Only Area:
Login','/industry/includes/member-login.cfm',{modal:true,height:160,width:300,
x:x+0,y:y+50});
}
/script
a href=# onclick=javaScript:doLogin(event.pageX,event.pageY);return
false; class=subcatlinkMEMBER LOGIN/a

It seems to work in FF, but NOT in IE7.

Thanks,
Joel


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320183
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion.Window.create problems..

2009-03-06 Thread Joel Polsky

Morgan,
Would this be correct implimentation?

function doLogin(x,y)
{
var posx = 0;
var posy = 0;
if (!e) var e = window.event;
if (e.pageX || e.pageY)
{
posx = e.pageX;
posy = e.pageY;
}
else if (e.clientX || e.clientY)
{
posx = e.clientX + document.body.scrollLeft
+ document.documentElement.scrollLeft;
posy = e.clientY + document.body.scrollTop
+ document.documentElement.scrollTop;
}
ColdFusion.Window.create('loginwindow','Members Only Area:
Login','/industry/includes/member-login.cfm',{modal:true,height:160,width:300,
x:x+0,y:y+50});
}

On Fri, Mar 6, 2009 at 4:10 PM, morgan l greyk...@gmail.com wrote:


 This is the js I am currently using, courtesy of quirksmode.com:
 var posx = 0;
 var posy = 0;
 if (!e) var e = window.event;
 if (e.pageX || e.pageY) {
 posx = e.pageX;
 posy = e.pageY;
 }
 else if (e.clientX || e.clientY) {
 posx = e.clientX + document.body.scrollLeft
 + document.documentElement.scrollLeft;
 posy = e.clientY + document.body.scrollTop
 + document.documentElement.scrollTop;
 }
 // posx and posy contain the mouse position relative to the document
 // Do something with this information

 On Fri, Mar 6, 2009 at 2:58 PM, Milburn, Steve 
 steven.milb...@acps.k12.md.us wrote:

 
  I'm pretty sure that event.pageX and event.pageY are not supported in
  Internet Explorer.  You may have to look at other options such as
  event.clientX and event.clientY.
 
  Perhaps somebody else can shed more light on this, but I tried using the
  same code you have and could not get it to work correctly in IE.  After
 some
  research I found out about IE's lack of support for event.pageX and
  event.pageY
 
  Steve
 
  
  From: Joel Polsky [polskystud...@gmail.com]
  Sent: Friday, March 06, 2009 3:32 PM
  To: cf-talk
  Subject: ColdFusion.Window.create problems..
 
  Hi,
  I'm trying implement the sample on this page, which controls where a
  cfwindow appears based on the x/y click .
 
 
 http://www.coldfusionjedi.com/index.cfm/2007/11/29/ColdFusion-8-and-AjaxBased-Login
 
  Here's where my latest code:
  script language=javascript
  function doLogin(x,y) {
ColdFusion.Window.create('loginwindow','Members Only Area:
 
 
 Login','/industry/includes/member-login.cfm',{modal:true,height:160,width:300,
  x:x+0,y:y+50});
  }
  /script
  a href=# onclick=javaScript:doLogin(event.pageX,event.pageY);return
  false; class=subcatlinkMEMBER LOGIN/a
 
  It seems to work in FF, but NOT in IE7.
 
  Thanks,
  Joel
 
 
 
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320189
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


IIS6 / CFIDE configuration problems

2009-03-03 Thread Joel Polsky

Hi,
I'm having a problem with the CFIDE folder being accessible and CF is
throwing errors, because of it.

Here's how I have my *LocalHost *system configured.

In the directory tree in IIS6 I see the following folders:
(globe) Default Website
 +SITE1
 +SITE2
 +CFIDE

When i try something such as this i get a JavaScript error:

script type=text/javascript
function doLogin() {

ColdFusion.Window.create('loginwindow','Login','login.cfm',{center:true,modal:true});
}
/script
pa href=javaScript:doLogin()Login/a/p

When I view the page's code, there are no references to any CFIDE folders
such as this: script type=text/javascript src=
/CFIDE/scripts/ajax/package/cfajax.js/script

When I add a Virtual Directory and click on the Test Settings, I see an
error for the Authorization stating
*Cannon verify access to path (c:\inetpub\wwwroot\CFIDE). *along with this
message:

*The server is configured to use pass-through authentication with a built-in
account to access the specified physical path. However, IIS Manager cannot
verify whether the built-in account has access. Make sure that the
application pool identity has Read access to the physical path. If this
server is joined to a domain, and the application pool identity is
NetworkService or LocalSystem, verify that domain\computer_name$ has
Read access to the physical path. Then test these settings again.*
*
Any ideas of what's wrong?*


Thanks!
Joel


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320067
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: IIS6 / CFIDE configuration problems

2009-03-03 Thread Joel Polsky

Hi Mark,
Thanks for the reply.
I already have this in the CF Admin for the * Default ScriptSrc Directory *:
/CIDE/scripts/

It's weird, because a folder like this locally works:

  SITE1/folder/floder/index.cfm








On Tue, Mar 3, 2009 at 1:42 PM, Mark Kruger mkru...@cfwebtools.com wrote:


 Joel,

 You can set the scripts directory in the CF Admin (look on the settings
 tab). The setting goes from the root of your web site... So, for example,
 You could use a virtual map called cfscripts that points to the
 /cfide/scripts/ directory - and then add /cfscripts/ to your default script
 src directory in the CF Admin.

 The second thing is, the script src=/cfide/... ... only shows up if you
 call a cf tag that needs it or you use CFAJAXIMPORT to specifically
 identify the tag libraries you want.   So in your example below you cannot
 expect the script include to appear because you haven't done anything to
 specifically call it.

 Hope this helps :)

 -Mark


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

 -Original Message-
 From: Joel Polsky [mailto:polskystud...@gmail.com]
 Sent: Tuesday, March 03, 2009 12:31 PM
 To: cf-talk
 Subject: IIS6 / CFIDE configuration problems


 Hi,
 I'm having a problem with the CFIDE folder being accessible and CF is
 throwing errors, because of it.

 Here's how I have my *LocalHost *system configured.

 In the directory tree in IIS6 I see the following folders:
 (globe) Default Website
 +SITE1
 +SITE2
 +CFIDE

 When i try something such as this i get a JavaScript error:

 script type=text/javascript
 function doLogin() {


 ColdFusion.Window.create('loginwindow','Login','login.cfm',{center:true,moda
 l:true});
 }
 /script
 pa href=javaScript:doLogin()Login/a/p

 When I view the page's code, there are no references to any CFIDE folders
 such as this: script type=text/javascript src=
 /CFIDE/scripts/ajax/package/cfajax.js/script

 When I add a Virtual Directory and click on the Test Settings, I see an
 error for the Authorization stating *Cannon verify access to path
 (c:\inetpub\wwwroot\CFIDE). *along with this
 message:

 *The server is configured to use pass-through authentication with a
 built-in
 account to access the specified physical path. However, IIS Manager cannot
 verify whether the built-in account has access. Make sure that the
 application pool identity has Read access to the physical path. If this
 server is joined to a domain, and the application pool identity is
 NetworkService or LocalSystem, verify that domain\computer_name$ has
 Read access to the physical path. Then test these settings again.*
 *
 Any ideas of what's wrong?*


 Thanks!
 Joel




 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320074
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: IIS6 / CFIDE configuration problems

2009-03-03 Thread Joel Polsky

Thank for the help mark -- I was following a tutorial and it sort of didn't
clearly state that there is a application.cfm involved plus a few other
files that were critical the page / tutorial  functioning. (Thus causing the
CFIDE scripts to be loaded.)

Appreciate the assistance.

Joel

On Tue, Mar 3, 2009 at 5:00 PM, Mark Kruger mkru...@cfwebtools.com wrote:


 Joel,

 And you also have cfajaximport or one of the special tags that gets the
 script written? Or maybe I don't understand your problem.

 -Mark


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

 -Original Message-
 From: Joel Polsky [mailto:polskystud...@gmail.com]
 Sent: Tuesday, March 03, 2009 3:13 PM
 To: cf-talk
 Subject: Re: IIS6 / CFIDE configuration problems


 Hi Mark,
 Thanks for the reply.
 I already have this in the CF Admin for the * Default ScriptSrc Directory
 *:
 /CIDE/scripts/

 It's weird, because a folder like this locally works:

  SITE1/folder/floder/index.cfm








 On Tue, Mar 3, 2009 at 1:42 PM, Mark Kruger mkru...@cfwebtools.com
 wrote:

 
  Joel,
 
  You can set the scripts directory in the CF Admin (look on the settings
  tab). The setting goes from the root of your web site... So, for
  example, You could use a virtual map called cfscripts that points to
  the /cfide/scripts/ directory - and then add /cfscripts/ to your
  default script src directory in the CF Admin.
 
  The second thing is, the script src=/cfide/... ... only shows up
  if you call a cf tag that needs it or you use CFAJAXIMPORT to
 specifically
  identify the tag libraries you want.   So in your example below you
 cannot
  expect the script include to appear because you haven't done anything
  to specifically call it.
 
  Hope this helps :)
 
  -Mark
 
 
  Mark A. Kruger, CFG, MCSE
  (402) 408-3733 ext 105
  www.cfwebtools.com
  www.coldfusionmuse.com
  www.necfug.com
 
  -Original Message-
  From: Joel Polsky [mailto:polskystud...@gmail.com]
  Sent: Tuesday, March 03, 2009 12:31 PM
  To: cf-talk
  Subject: IIS6 / CFIDE configuration problems
 
 
  Hi,
  I'm having a problem with the CFIDE folder being accessible and CF is
  throwing errors, because of it.
 
  Here's how I have my *LocalHost *system configured.
 
  In the directory tree in IIS6 I see the following folders:
  (globe) Default Website
  +SITE1
  +SITE2
  +CFIDE
 
  When i try something such as this i get a JavaScript error:
 
  script type=text/javascript
  function doLogin() {
 
 
  ColdFusion.Window.create('loginwindow','Login','login.cfm',{center:tru
  e,moda
  l:true});
  }
  /script
  pa href=javaScript:doLogin()Login/a/p
 
  When I view the page's code, there are no references to any CFIDE
  folders such as this: script type=text/javascript src=
  /CFIDE/scripts/ajax/package/cfajax.js/script
 
  When I add a Virtual Directory and click on the Test Settings, I see
  an error for the Authorization stating *Cannon verify access to path
  (c:\inetpub\wwwroot\CFIDE). *along with this
  message:
 
  *The server is configured to use pass-through authentication with a
  built-in account to access the specified physical path. However, IIS
  Manager cannot verify whether the built-in account has access. Make
  sure that the application pool identity has Read access to the
  physical path. If this server is joined to a domain, and the
  application pool identity is NetworkService or LocalSystem, verify
  that domain\computer_name$ has Read access to the physical path.
  Then test these settings again.*
  *
  Any ideas of what's wrong?*
 
 
  Thanks!
  Joel
 
 
 
 
 



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320083
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Hosts

2009-02-18 Thread Joel Polsky

I use Dailyrazor.com for personal stuff and hosting.com for business..

On Wed, Feb 11, 2009 at 10:47 PM, Robert Bailey cft...@tropicalbean.comwrote:


 I am trying to find a decent CF8 hosting company that offers SQL Server.
 The company I am working with now (remotely) does not have a dev server,
 so I am looking for something that is going to have very little traffic,
 simply just allowing him to review. No email is needed, etc

 Thanks!

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319511
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: FireFox getElementById issue

2009-02-18 Thread Joel Polsky

I'm not a javascript expert..but try script = Javascript instead of
script = Javascript1.2

On Mon, Feb 16, 2009 at 11:44 AM, Austin Band cfusio...@yahoo.com wrote:


 Hello, I need a little help. I have javascript that works with IE but not
 FireFox.

 The code:

 script = Javascript1.2
 function addItemsToParent(){
 var MemberList= ;
 var list = document.getElementById(MemberName).value;
 for(var i=0; ilist.options.length; ++i)
if(list.options[i].selected){
MemberList = MemberList + ,+list.options[i].value;
}
opener.document.MemberName.value = MemberList;
self.close();
}
 /script

 The error returned in Error Console is that the list is null. This works
 correctly in IE. The goal is to select a name and it displays in the textbox



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319512
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 Vertical Expanding Menu

2009-02-11 Thread Joel Polsky

Bryan (or anyone)
Have an implimentation question regarding the Jquery plug mentions.
If I use a cfinclue (or other method) -- when clicking a link to another
page, does the Jquery remember the state of the navigation for the
subsequent page? Meaning if I have a menu:

membership
   +membership info
  +membership types
-gold
-silver
Products
company History

And the user opens this path: membershipmemership infomembership types,
and clicks on GOLD.  Will the naveigation be open to the GOLD when the page
is loaded? OR does it start at it's default closed state??

Hope that was clear...



On Tue, Feb 10, 2009 at 3:08 PM, Bryan Hogan bho...@edonor.com wrote:


 Joel,

 It can not be done in in CF alone.

 See http://jquery.bassistance.de/treeview/demo/

 -Original Message-
 From: Joel Polsky [mailto:polskystud...@gmail.com]
 Sent: Tuesday, February 10, 2009 12:56 PM
 To: cf-talk
 Subject: CF Vertical Expanding Menu


 Hi..
 Need a easy solution to create a vertical menu system that expands when
 clicked.  (much like the book mark menu in Firefox) I'm sure this has
 been
 asked before, but the reference I've found on the list are dead links.
 Can
 it be done in CF?

 Menu would be like this,

 MENU 1
  +Sub 1a
   +Sub 1b
   Sub 2a
   +Sub 1c

 MENU 2
  +Sub 1a
   +Sub 1b
   Sub 2a
   +Sub 2c

 Thanks!




 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319194
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 Vertical Expanding Menu

2009-02-11 Thread Joel Polsky

Thanks!!

On Wed, Feb 11, 2009 at 2:32 PM, Bryan Hogan bho...@edonor.com wrote:


 Look at the demo code.  There is some cookie code that will save the
 state.

 Bryan F. Hogan
 Product Manager
 eDonor(r) - Recruit, Retain, Repeat
 A Global Med Technologies(r) Company

 P  602.489.7844
 F  602.489.7801
 www.edonor.com

 The information contained in this electronic mail message, including all
 attachments hereto, is confidential information intended only for
 distribution to the individual(s) named above. If the reader of this
 message is not the intended recipient, you are hereby notified that any
 dissemination, distribution, use or copying of this  communication, and
 the information contained herein, is strictly prohibited. If you have
 received this communication in error, please immediately notify us by
 telephone at (602) 489-7800 and delete the original message. Thank you.


 -Original Message-
 From: Joel Polsky [mailto:polskystud...@gmail.com]
 Sent: Wednesday, February 11, 2009 12:20 PM
 To: cf-talk
 Subject: Re: CF Vertical Expanding Menu


 Bryan (or anyone)
 Have an implimentation question regarding the Jquery plug mentions.
 If I use a cfinclue (or other method) -- when clicking a link to another
 page, does the Jquery remember the state of the navigation for the
 subsequent page? Meaning if I have a menu:

 membership
   +membership info
  +membership types
-gold
-silver
 Products
 company History

 And the user opens this path: membershipmemership infomembership
 types,
 and clicks on GOLD.  Will the naveigation be open to the GOLD when the
 page
 is loaded? OR does it start at it's default closed state??

 Hope that was clear...



 On Tue, Feb 10, 2009 at 3:08 PM, Bryan Hogan bho...@edonor.com wrote:

 
  Joel,
 
  It can not be done in in CF alone.
 
  See http://jquery.bassistance.de/treeview/demo/
 
  -Original Message-
  From: Joel Polsky [mailto:polskystud...@gmail.com]
  Sent: Tuesday, February 10, 2009 12:56 PM
  To: cf-talk
  Subject: CF Vertical Expanding Menu
 
 
  Hi..
  Need a easy solution to create a vertical menu system that expands
 when
  clicked.  (much like the book mark menu in Firefox) I'm sure this has
  been
  asked before, but the reference I've found on the list are dead links.
  Can
  it be done in CF?
 
  Menu would be like this,
 
  MENU 1
   +Sub 1a
+Sub 1b
Sub 2a
+Sub 1c
 
  MENU 2
   +Sub 1a
+Sub 1b
Sub 2a
+Sub 2c
 
  Thanks!
 
 
 
 
 



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319196
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF Vertical Expanding Menu

2009-02-10 Thread Joel Polsky

Hi..
Need a easy solution to create a vertical menu system that expands when
clicked.  (much like the book mark menu in Firefox) I'm sure this has been
asked before, but the reference I've found on the list are dead links.  Can
it be done in CF?

Menu would be like this,

MENU 1
  +Sub 1a
   +Sub 1b
   Sub 2a
   +Sub 1c

MENU 2
  +Sub 1a
   +Sub 1b
   Sub 2a
   +Sub 2c

Thanks!


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319127
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 Vertical Expanding Menu

2009-02-10 Thread Joel Polsky

Hi All.. Thanks for the help..
I think Bryan's link is what I need.  The CFMENU seems only to be a fly-out
or drop down style.

Joel

On Tue, Feb 10, 2009 at 3:04 PM, Cutter (CFRelated) 
cold.fus...@cutterscrossing.com wrote:


 If you're using ColdFusion 8 then you could just use the cfmenu tag

 Steve Cutter Blades
 Adobe Certified Professional
 Advanced Macromedia ColdFusion MX 7 Developer

 Co-Author of Learning Ext JS
 http://www.packtpub.com/learning-ext-js/book
 _
 http://blog.cutterscrossing.com

 Joel Polsky wrote:
  Hi..
  Need a easy solution to create a vertical menu system that expands when
  clicked.  (much like the book mark menu in Firefox) I'm sure this has
 been
  asked before, but the reference I've found on the list are dead links.
  Can
  it be done in CF?
 
  Menu would be like this,
 
  MENU 1
+Sub 1a
 +Sub 1b
 Sub 2a
 +Sub 1c
 
  MENU 2
+Sub 1a
 +Sub 1b
 Sub 2a
 +Sub 2c
 
  Thanks!
 
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319133
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF8 Multi Server Config Help

2009-02-04 Thread Joel Polsky

On my local machine, I've installed CF8 with the Multi-Server features.

I'm trying to set up a 2nd server that will serve up a brand new site, new 
mappings, new DB references etc.. I want to start clean (but still need to keep 
and maintain my current site etc.)

I have the old site in c: C:\inetpub\wwwroot\SITENAME

When I enable the 2nd server, the root site folder seems to be: 
C:\JRun4\servers\NEWSITE\cfusion.ear\cfusion.war

I'd like it to be: C:\inetpub\wwwroot\NEWSITENAME

HOW can I change this?  I found a reference to change the web-inf/jrun-web.xml 
file but the code the reference mentions to change is not in the file.

There must be an easier way!

Thanks
Joel 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318836
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Learning Fusebox 5.5 -- Seeking guidance / mentor

2009-02-04 Thread Joel Polsky

Thanks, I am in the group.

On Wed, Feb 4, 2009 at 4:51 AM, John Whish
john.wh...@crisp-ebusiness.comwrote:


 Hey Joel,
 You definitely want to sign up to the Yahoo group. I did do a few posts
 about the no XML flavour of Fusebox which might be of interest
 http://www.aliaspooryorik.com/blog/. The skeleton apps on the Fusebox site
 are definitely a good starting point.
 Good luck!

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318840
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8 Multi Server Config Help

2009-02-04 Thread Joel Polsky

Thanks I will look at that. Though I use IIS-6 locally and Windows Server
2003 on the live site.

On another point, yet related.  Our live server was NOT installed with the
Multi Instance features..

Will this REQUIRE a fill reinstall?
What are the ramifications of doing this?
SHOULD I even worry about the ability to run a totally new server instance
for a brand new version of our site? (Ground up development)

Thanks

On Wed, Feb 4, 2009 at 12:50 PM, Cutter (CFRelated) 
cold.fus...@cutterscrossing.com wrote:


 You are confusing your Coldfusion configuration with your web server
 configuration. They are two entirely separate things. See if this series
 of posts can help you out:


 http://blog.cutterscrossing.com/index.cfm/2007/7/23/Local-Development-Setup-Pt-1-Apache-and-ColdFusion-7-or-8

 Steve Cutter Blades
 Adobe Certified Professional
 Advanced Macromedia ColdFusion MX 7 Developer

 Co-Author of Learning Ext JS
 http://www.packtpub.com/learning-ext-js/book
 _
 http://blog.cutterscrossing.com

 Joel Polsky wrote:
  On my local machine, I've installed CF8 with the Multi-Server features.
 
  I'm trying to set up a 2nd server that will serve up a brand new site,
 new mappings, new DB references etc.. I want to start clean (but still need
 to keep and maintain my current site etc.)
 
  I have the old site in c: C:\inetpub\wwwroot\SITENAME
 
  When I enable the 2nd server, the root site folder seems to be:
 C:\JRun4\servers\NEWSITE\cfusion.ear\cfusion.war
 
  I'd like it to be: C:\inetpub\wwwroot\NEWSITENAME
 
  HOW can I change this?  I found a reference to change the
 web-inf/jrun-web.xml file but the code the reference mentions to change is
 not in the file.
 
  There must be an easier way!
 
  Thanks
  Joel
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318851
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8 Multi Server Config Help

2009-02-04 Thread Joel Polsky

Hi Dave. thanks for responding..

No development would be on a local server.
a preview site would be on a live server - which is the same server as our
current site.

My understanding the one of the benefits of multi instance is that I can
have a totally fresh CF8 instance with out any of the settings, db's or
mappings that may have been created previously.  I want separate to avoid
any problems.  Is that a BAD idea? Should we just develop on the existing
server and create any new mappings, db's as necessary (it's quite cluttered
as it currently stands, multiple db's - Access, MySQL, MSSQL)



On Wed, Feb 4, 2009 at 1:19 PM, Dave Watts dwa...@figleaf.com wrote:


  On another point, yet related.  Our live server was NOT installed with
 the
  Multi Instance features..
 
  Will this REQUIRE a fill reinstall?

 Yes, there's no upgrade path from single-instance to multi-instance.

  What are the ramifications of doing this?

 You will need to preserve your existing settings then recreate or
 restore those settings after the reinstall. You can do this a variety
 of ways. For example, you can use CAR files for this.

  SHOULD I even worry about the ability to run a totally new server
 instance
  for a brand new version of our site? (Ground up development)

 Are you developing on your production server? Are you expecting
 resource problems with the current version, or do you expect problems
 with the new version?

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318863
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8 Multi Server Config Help

2009-02-04 Thread Joel Polsky

Dave, what would you recommend?
Clean up old mappings  Establish a naming convention for the new stuff to
avoid conflicts  when complete, clean house and remove old mappings

 Thanks!

On Wed, Feb 4, 2009 at 2:21 PM, Dave Watts dwa...@figleaf.com wrote:


  My understanding the one of the benefits of multi instance is that I can
  have a totally fresh CF8 instance with out any of the settings, db's or
  mappings that may have been created previously.  I want separate to avoid
  any problems.  Is that a BAD idea? Should we just develop on the existing
  server and create any new mappings, db's as necessary (it's quite
 cluttered
  as it currently stands, multiple db's - Access, MySQL, MSSQL)

 It's not bad to use multiple instances, but there is a resource cost
 incurred by doing so. It's unlikely that you'll have a conflict
 between the datasources within a single server instance, but more
 likely that you might have a conflict between mappings, I guess. That
 said, it's a lot of work to switch your server configuration just to
 get a clean slate for a single application.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318879
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Site Navigation Restructure Advise...

2009-02-03 Thread Joel Polsky

Help.. Our site is a big plate of spaghetti and navigation.  We are working 
towards redesign -- but in that process have decided that wee need to clean up 
and organize the site structure and navigation before moving to a new site 
development. (No, not planning a re-skin but a whole new site from ground zero, 
new code etc.)

What's the best way for me to approach this? I use Dreamweaver as my IDE, and 
SVN as my repository. Moving any pages in the structure via DW, will cause it 
scan the site for dependent links, which would be helpful.

Suggestions? 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318744
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Help with FB Installation...

2009-02-03 Thread Joel Polsky

Hi.. I'm new to FB and am trying to get it configured.

I have my IIS pointing to the FBTestRoot Folder so it becomes the web root and 
have it bound to port 82. 

http://localhost:82/ 

FBTestRoot/ 
FBTestRoot/_Controller 
FBTestRoot/_Model 
FBTestRoot/_View 
FBTestRoot/FB5CORE 
FBTestRoot/Skeleton 

I get this error when I hit this url: http://localhost:82/skeleton/traditional/ 
Could not find the ColdFusion Component or Interface fusebox5.Application. 

What am i missing in the setup? I have not modified any files.

Also.. WHERE do I place the files that will eventually contain my site. 

Thanks! 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318762
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Learning Fusebox 5.5 -- Seeking guidance / mentor

2009-02-03 Thread Joel Polsky

I've been searching around and there seems to be limited tutorials on FB 5.5 -- 
there's quite a bit on 4.x -- and the references in the 5.x say that the 4.0 
tutorials and code samples for the most part also work with Fusebox 5 - which 
is scary as I don't know what will and won't work and how to tell, as it's ALL 
NEW to me!

Can someone point me to a site that has GOOD tutorials for a newbie in the 
Fusebox world.  I need basic understanding of the framework, where stuff goes, 
what it does, and where I put my stuff so it works. (Also how to make the 
friendly url's!)

Thanks in Advance!!

Joel 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318777
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Learning Fusebox 5.5 -- Seeking guidance / mentor

2009-02-03 Thread Joel Polsky

IF they were local to me sure! I'd need online or in person (preferred)
Thanks

Joel,

Try one of Teratech's Fusebox classes. I've taken a couple of them.

Greg Luce
Luce Consulting Services, Inc.
www.luceconsulting.net
(863) 273-0289





 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318785
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Removing spaces from a string?

2009-01-25 Thread Joel Polsky
Trim will only remove leading and trailing spaces.

If you want to remove all spaces,

Replace(StringVar,  , , all)

Rob
At 08:59 PM 6/28/2003 +0200, cf-t...@sdsolutions.de wrote:


This is correct: (and a little old to reply, but wanted to have it correct for 
future people who read this..

Replace(StringVar,  , , all)
Need quotes around ALL 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318501
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Dreamweaver CRASHES!!!

2009-01-23 Thread Joel Polsky
Help.
I have this recently recurring problem and don't know what to do.  I use 
Dreamweaver CS3 for my IDE. When I'm viewing a page in the Design Mode (I 
usually only do this to locate an element in a large page, so please don't go 
code-only-postal on me!)

When I click on the element, say a drop down menu; the program freezes and then 
crashes and closes down.  

I'm running Vista Business, with 3GB of RAM. Intel Xeon 2GHz CPU.

What's causing the crash?
Is it fixable?

Thanks way in Advance


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318444
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Passing a List Items' value into a CFDIV

2008-07-14 Thread Joel Polsky
Hi,
I have this problem not sure if it's even possible.

I have this being generated:
li id=TheWidget value=#WidgetID# 
onclick=javascript:ColdFusion.navigate('widgetDescription.cfm','OfferArea');#WidgetName#
 - #WidgetID#/li

This was also used:
li id=TheWidget value=#WidgetID# 
onclick=javascript:ColdFusion.navigate('widgetDescription.cfm?ID=#WidgetID#','WidgetArea');#WidgetName#
 - #WidgetID#/li

cfdiv id=WidgetArea /


In either case the div does not process the value.

So my question is:
How do I pass the value to the page widgetDescription.cfm so that it will 
process the ID and display the correct information INSIDE the CFDIV???

Thanks!


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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