CFIDE not accessible - I think???

2006-07-31 Thread Steve LaBadie
Not able to output data to CF Flash (cfselect) forms or CFGRID. How would I check to see if the CFIDE is accessible or not? Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED] http://www.e

RE: CFIDE not accessible - I think???

2006-07-31 Thread Dave Watts
> Not able to output data to CF Flash (cfselect) forms or > CFGRID. How would I check to see if the CFIDE is accessible > or not? Open the URL http://yourserver/CFIDE/ and see what you get. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest calib

Re: CFIDE not accessible - I think???

2006-07-31 Thread Denny Valliant
On 7/31/06, Steve LaBadie <[EMAIL PROTECTED]> wrote: > > Not able to output data to CF Flash (cfselect) forms or CFGRID. How > would I check to see if the CFIDE is accessible or not? browse to where it should be in a web-browser, probably using the scripts.jsfile. If you see javascript, you know

Re: CFIDE not accessible - I think???

2006-07-31 Thread Zaphod Beeblebrox
try hitting http://yoursite_or_localhost/CFIDE/ it might give you a permission error, or it will give you a not found error. The permission error is ok. On 7/31/06, Steve LaBadie <[EMAIL PROTECTED]> wrote: > Not able to output data to CF Flash (cfselect) forms or CFGRID. How > would I check t

RE: CFIDE not accessible - I think???

2006-07-31 Thread Steve LaBadie
not accessible - I think??? try hitting http://yoursite_or_localhost/CFIDE/ it might give you a permission error, or it will give you a not found error. The permission error is ok. On 7/31/06, Steve LaBadie <[EMAIL PROTECTED]> wrote: > Not able to output data to CF Flash (cfselect)

Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
Please kill directory browsing, at least on that folder ;) Mingo. Steve LaBadie wrote: > It get --- > > > localhost - /cfide/ > > > > > [To Parent Directory] > Friday, July 28, 2006 10:13 AM adminapi

RE: CFIDE not accessible - I think???

2006-07-31 Thread Steve LaBadie
To: CF-Talk Subject: Re: CFIDE not accessible - I think??? Please kill directory browsing, at least on that folder ;) Mingo. Steve LaBadie wrote: > It get --- > > > localhost - /cfide/ > > > >

Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
But you can still access /CFIDE/scripts/cfform.js right? Steve LaBadie wrote: > Ok > > Now I get an error 403 - forbidden ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion inf

RE: CFIDE not accessible - I think???

2006-07-31 Thread Steve LaBadie
:59 PM To: CF-Talk Subject: Re: CFIDE not accessible - I think??? But you can still access /CFIDE/scripts/cfform.js right? Steve LaBadie wrote: > Ok > > Now I get an error 403 - forbidden ~| Introducing the Fusion

Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
Okay, I think we can safely say that the problem is not your /CFIDE folder. Does the flash form load? Do you get javascript errors? could you post the code? questions questions ;) Steve LaBadie wrote: > It ask me if I want to open or save this file ~~

RE: CFIDE not accessible - I think???

2006-07-31 Thread Steve LaBadie
ginal Message- From: Mingo Hagen [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 3:12 PM To: CF-Talk Subject: Re: CFIDE not accessible - I think??? Okay, I think we can safely say that the problem is not your /CFIDE folder. Does the flash form load? Do you get javascript errors? could you post

RE: CFIDE not accessible - I think???

2006-07-31 Thread Steve LaBadie
[mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 3:12 PM To: CF-Talk Subject: Re: CFIDE not accessible - I think??? Okay, I think we can safely say that the problem is not your /CFIDE folder. Does the flash form load? Do you get javascript errors? could you post the code? questions

RE: CFIDE not accessible - I think???

2006-07-31 Thread Dave Watts
> Here is the code: > > SELECT * FROM > member_type ORDER BY type > > > > label="Select:"> Select > Department value="#typeID#">#type# > > > > pattern="^\w+([\.-]?\w+)[EMAIL PROTECTED]([\.-]?\w+)*(\.\w{2,3})+$" > validate="regular_expression" required="yes" message="You > must en

RE: CFIDE not accessible - I think???

2006-07-31 Thread Steve LaBadie
ECTED] Sent: Monday, July 31, 2006 3:27 PM To: CF-Talk Subject: RE: CFIDE not accessible - I think??? > Here is the code: > > SELECT * FROM > member_type ORDER BY type > > > > label="Select:"> Select > Department value="#typeID#">#ty

Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
Hmm... your code ran fine on my machine (http://mingo.e-linewebsolutions.nl/test/form.cfm) The only thing I changed was the query, this leads me to think that your query actually doesn't return any rows, could this be the case? Steve LaBadie wrote: > Here is the code: > -snip- > ~~

RE: CFIDE not accessible - I think???

2006-07-31 Thread Steve LaBadie
31, 2006 3:35 PM To: CF-Talk Subject: Re: CFIDE not accessible - I think??? Hmm... your code ran fine on my machine (http://mingo.e-linewebsolutions.nl/test/form.cfm) The only thing I changed was the query, this leads me to think that your query actually doesn't return any rows, could this b

Re: CFIDE not accessible - I think???

2006-07-31 Thread Mingo Hagen
Ok, I'm at a loss... anyone? Could it be the amount of items in the query? Or some illegal characters? Steve LaBadie wrote: > If I format as HTML, or XML the cfselect will populate. ~| Introducing the Fusion Authority Quarterl

Re: CFIDE not accessible - I think???

2006-07-31 Thread Josh Nathanson
r box. -- Josh - Original Message - From: "Mingo Hagen" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, July 31, 2006 12:59 PM Subject: Re: CFIDE not accessible - I think??? > Ok, I'm at a loss... anyone? Could it be the amount of items in

Re: CFIDE not accessible - I think???

2006-07-31 Thread Denny Valliant
I'd guess illegal char- If you don't want to XML or HTML format it, I think a regular expression is a good option. On 7/31/06, Mingo Hagen <[EMAIL PROTECTED]> wrote: > > Ok, I'm at a loss... anyone? Could it be the amount of items in the > query? Or some illegal characters? > > Steve LaBadie wrot

RE: CFIDE not accessible - I think???

2006-07-31 Thread Steve LaBadie
what type of illegal characters are you taking about? On the .htm page or in the database? From: Denny Valliant [mailto:[EMAIL PROTECTED] Sent: Mon 7/31/2006 4:48 PM To: CF-Talk Subject: Re: CFIDE not accessible - I think??? I'd guess illegal char- I

RE: CFIDE not accessible - I think???

2006-07-31 Thread Dave Watts
> what type of illegal characters are you taking about? On the > .htm page or in the database? Presumably, something in the database that Flash can't render properly. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized ins

Re: CFIDE not accessible - I think???

2006-07-31 Thread Laura Arguello
If your clock doesn't go away, it means Flash Remoting is not working. You need to make sure you have a JrunScripts virtual directory as described here: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_18307#creating Hope that helps, Laura >> what type of illegal characters are you ta

RE: CFIDE not accessible - I think???

2006-08-01 Thread Steve LaBadie
pect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED] http://www.esu.edu -Original Message- From: Laura Arguello [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 6:30 PM To: CF-Talk Subject: Re: CFIDE not accessible - I think??? If your clock doesn't go away, it me

Re: CFIDE not accessible - I think???

2006-08-02 Thread Laura Arguello
day, July 31, 2006 6:30 PM >To: CF-Talk >Subject: Re: CFIDE not accessible - I think??? > >If your clock doesn't go away, it means Flash Remoting is not working. >You need to make sure you have a JrunScripts virtual directory as >described here: > >http://www