Re: scientific notation with significant figures

2013-07-15 Thread Keith McGee
http://cflib.org/udf/scientificFormat On Fri, Jul 12, 2013 at 8:41 AM, Keith McGee kpmc...@frontiernet.netwrote: This didn't help, Thanks for the link though. ~| Order the Adobe Coldfusion Anthology now! http

scientific notation with significant figures

2013-07-12 Thread Keith McGee
correctly. Any thoughts? Thanks Keith ~| 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

scientific notation with significant figures

2013-07-12 Thread Keith McGee
correctly. Any thoughts? Thanks Keith ~| 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

Array a directory name

2012-04-27 Thread Keith McGee
How do you split a directory name into an array or remove a section from the name? Example dir = Internet/Manuals/tests/doc.html into newdir = tests/doc.html Thank you Keith ~| Order the Adobe Coldfusion Anthology now

Re: Array a directory name

2012-04-27 Thread Keith McGee
I tried this cfset arr = listToArray (filename, /,false,true) received this error Parameter validation error for the LISTTOARRAY function. The function accepts 1 to 3 parameters. The error occurred in repositoryView.cfm: line 14 12 :cfif right(downloadFilename, 3) eq

Re: Array a directory name

2012-04-27 Thread Keith McGee
Ok that worked, I'm using cf8. If I use a comma or forward slash as a delimiter doesn't error. Now if you use a backslash as a delimiter I get this error Unexpected internal error near index 3 :|\ ^ The error occurred in repositoryView.cfm: line 14 12 :cfif

Re: Array a directory name

2012-04-27 Thread Keith McGee
Figured it out, Thank you guys ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

cfindex varity collection issue

2012-04-17 Thread Keith McGee
I am purging the collections and then updating them. I am indexing two directories using the same code with the exception of the directories and categoriee tree, ect. I understand it should take longer at the directory is 5x larger, im thinking it should take 30 - 40 min. Not 2 hours. First

cfprint - labels network printer

2012-02-14 Thread Keith McGee
I am creating and printing labels with barcodes to a network GK420d zebra printer. Everything works fine until you have to replace the label roll. The printer will pause, print half labels, skip labels, and act erratically. I have tried printing directly to the printer, spooling, numerous

Re: cfprint - labels network printer

2012-02-14 Thread Keith McGee
I should also add, this only happens when you change the roll in the middles of a process. After changing the roll and the next process starts everything works ok again. ~| Order the Adobe Coldfusion Anthology now!

the #2 will not print with Bar Code 39 f HR cfprint comand

2012-02-01 Thread Keith McGee
I am creating a pdf file with a bar code. If I open the pdf and hit print the bar code prints fine. If i use cfprint to print the same pdf. all letters and numbers will print in the bar code font except the #2. This is driving me crazy. I did have to do this fix to get the bar code to print

Re: the ##2 will not print with Bar Code 39 f HR cfprint comand

2012-02-01 Thread Keith McGee
Yes, it prints from the server fine if I open the pdf and print from acrobat reader. it just wont print the #2 with the cfprint command. ~| Order the Adobe Coldfusion Anthology now!

Re: the ####2 will not print with Bar Code 39 f HR cfprint comand

2012-02-01 Thread Keith McGee
Yes they are there Yes, it prints from the server fine if I open the pdf and print from acrobat reader. it just wont print the #2 with the cfprint command. If you go into the fonts list in CF Administrator, are all the fonts used by your PDF listed there? Dave Watts, CTO, Fig Leaf

Re: the ##2 will not print with Bar Code 39 f HR cfprint comand

2012-02-01 Thread Keith McGee
Yes they are there Yes, it prints from the server fine if I open the pdf and print from acrobat reader. it just wont print the #2 with the cfprint command. If you go into the fonts list in CF Administrator, are all the fonts used by your PDF listed there? Dave Watts, CTO, Fig Leaf

Re: the ##2 will not print with Bar Code 39 f HR cfprint comand

2012-02-01 Thread Keith McGee
Yes they are all in CF Administrator Yes, it prints from the server fine if I open the pdf and print from acrobat reader. it just wont print the #2 with the cfprint command. If you go into the fonts list in CF Administrator, are all the fonts used by your PDF listed there? Dave Watts,

Printing barcodes

2011-11-11 Thread Keith McGee
I am creating 4 x 4 labels pdf files, storing them on the server, printing them to a zebra label printer, then deleting the files. I'm using a window font; Bar code 39 a, bar code 39 a hr, up to f. The program is creating the labels fine with the bar code. when I print them with cfprint

Re: Printing barcodes

2011-11-11 Thread Keith McGee
This is how I'm adding the bar code font size=+1 face=Bar Code 39 f HR #LICENSE_PARAMETER#/font ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Printing barcodes

2011-11-11 Thread Keith McGee
Found the solution http://kb2.adobe.com/cps/405/kb405588.html ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

display dynamic algorithm

2011-04-14 Thread Keith McGee
I am writing a program to formulate results based on other results entered. if I create the algorithm dynamically I get the value can't be converted to a number error cfset result2= '#get_result1.fld_test_result##fld_formula1##get_result2.fld_test_result##fld_formula2#'

Re: display dynamic algorithm

2011-04-14 Thread Keith McGee
cfoutput#numberFormat(evaluate(de(result2)))#/cfoutput didn't work but taking out the de did cfoutput#numberFormat(evaluate(result2))#/cfoutput Thank You ~| Order the Adobe Coldfusion Anthology now!

Verity collection

2011-03-24 Thread Keith McGee
I'm using cold fusion 8 enterprise, I have 34 collections and a couple of them are will not return correctly. here are two collection rmlicgpdsenglish 345 1,637 Mar 24 2011 1:55 PM english No rmlicgpdsfrench 174 1,163 Mar 24 2011 1:55 PM french No if you run this query; it will return

error performing a file operation write on file

2010-05-20 Thread Keith McGee
I am creating a csv file from oracle, then writing it to a shared server to be accessed by another system. When I run the program on my test server (which is inside the domain), the program runs fine and the file writes to the share server. When I run this in production (our web server) I

setting cf var with javascript

2010-02-05 Thread Keith McGee
How do you set a CF variable with a java script variable. I have a script that adds three weekdays to the current day, document.write(mydate) and I want to set this to a CF variable cfset mydate = document.write(mydate) any suggestions Keith

Re: setting cf var with javascript

2010-02-05 Thread Keith McGee
I'm looking to add three work days to the current date. set this in a var and update the record in the database. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing

Re: setting cf var with javascript

2010-02-05 Thread Keith McGee
this is what I wanted to do, Thanks I figured it out cfoutput cfset ThisDate = now() cfset WorkingDays = 0 cfloop from=1 to=5 index=i cfset ThisDate = DateAdd('d', 1, ThisDate) cfif DayOfWeek(ThisDate) GT 1 AND DayOfWeek(ThisDate) LT 7 cfset WorkingDays = WorkingDays + 1 cfif WorkingDays EQ 3

Drop down subselect

2010-01-27 Thread Keith McGee
table b sub_subjectID subjectID sub_subject description any suggestions Thanks Keith ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http

cftry question

2009-11-18 Thread Keith McGee
I want to catch missing template errors only, for example if a user has a link to an old template I don't want my exception.cfm page to load and notify me I want to load a default template. But if the template page loads and has an error I want the exception.cfm to load and notify me. This

Re: cftry question

2009-11-18 Thread Keith McGee
Thanks, I got it to work ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328486

LEFT Command question

2009-11-16 Thread Keith McGee
Is it possible to separate data from a single field separated by a comma? Here is the format of the cell: Smith, Jim I want to end with jsmith Thank Keith ~| Want to reach the ColdFusion community with something they want

Re: LEFT Command question

2009-11-16 Thread Keith McGee
Thank You, works perfect ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328423

Format word text pasted

2009-11-04 Thread Keith McGee
How would you go about formatting text pasted from a word document into a coldfusion web form? Also should you format the data before it is inputed into the database or would you format the data when it is displayed? Any thoughts would be appreciated. Keith

Format word text pasted

2009-11-04 Thread Keith McGee
How would you go about formatting text pasted from a word document into a coldfusion web form? Also should you format the data before it is inputed into the database or would you format the data when it is displayed? Any thoughts would be appreciated. Keith

Formatting text pasted from word into a text field

2009-11-04 Thread Keith McGee
How would you go about formatting text pasted from a word document into a coldfusion web form? Also should you format the data before it is inputed into the database or would you format the data when it is displayed? Any thoughts would be appreciated. Keith

Recommended Server Spec for new CF9 Windows Server

2009-11-02 Thread Jeremy Keith
Greeting, seen how adobe's help group is about as helpful on this subject as a box of rocks... We're looking to replace our dedicated CF server and it's partner dedicated SQL server. The servers run two websites, that are both very query heavy, looking at some dual proc dell R710s to replace

Re: Recommended Server Spec for new CF9 Windows Server

2009-11-02 Thread Jeremy Keith
Sorry about that, I suppose that would help. In the grand scheme of things it's not all that active a site, figure between 150-200 users throughout the course of a day. As of this moment there are a little over 100 active sessions running on the server. Currently the JVM used memory is

Re: Recommended Server Spec for new CF9 Windows Server

2009-11-02 Thread Jeremy Keith
Thanks for the reply, We're far from a start-up (so that's out), and cost is less as important as having the system just work with good/great response time. ~| Want to reach the ColdFusion community with something they

remote windows file manager

2009-10-05 Thread Keith McGee
Can some on suggest a good open source coldfusion based remote windows file manager. I'm looking give users the ability to upload directories instead of just files. I have been useing filemanger 1.3 for the past 3 years. Thanks Keith

Resizing images on upload

2009-09-29 Thread Keith McGee
Is there a way to resize a users image when they upload it? I want to have the image formated smaller so it doesn't take up unessasary space on the server and use up unessasary bandwith viewing the image. Coldfusion program would be nice but will try anything. Keith

Setting the index number to a variable

2009-04-21 Thread Keith McGee
# / /cfloop what i want is MTDPREV_1 equals January totals MTDPREV_2 equals February and so on I'm sure it is something simple I am missing. Any help would be appreciated. Thanks Keith ~| Adobe® ColdFusion® 8 software 8

firefox open file with spaces problem

2009-04-01 Thread Keith McGee
In firefox the downloadfilename will stop at the first space, won't bring the rest of the file name and extension. it works fine if no spaces are in the file name. for example test file one.pdf will open fine in internet explorer but will error out in firefox or if you download to your

Re: firefox open file with spaces problem

2009-04-01 Thread Keith McGee
Setting the spaces to underscores worked, but before I did that I did try to take out the url-encoded and it still didn't work. Thank you Keith ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release

Re: JRun Throwing 503 Errors

2009-03-19 Thread Keith Soares
Suddenly our CF server is doing the same thing - off the charts with 503 errors from JRun - did you happen to ever figure out any sort of culprit or solution? Thanks K. No, I do not have monitoring turned on in production. As a matter of fact, until you just mentioned it, I completely forgot

Re: Dynamic Path

2009-01-12 Thread Keith McGee
thank you Breadcrumbs worked perfectly. Keith ~| 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

Dynamic Path

2009-01-09 Thread Keith McGee
Is there a way to display the current location of a web site dynamically. Meaning if I was at www.website.com/programs/water/cooling.cfm that location bar would look like Home - Programs - Water - Cooling and each one would link back to that location. Thanks Keith

Re: convert decimal to fractions

2008-11-26 Thread Keith McGee
Thank you Seb this worked great. ~| 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:

convert decimal to fractions

2008-11-25 Thread Keith McGee
I'm trying to find a way of converting .25 decimal to 1/4 fraction. any suggestions? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: convert decimal to fractions

2008-11-25 Thread Keith McGee
Seb That worked, but there is one problem, is there a way to simplify to a whole and a fraction. example 11.5 = 23/2 = 11 1/2 ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the

Re: Passing zipcode as string as struct ... still converts to numeric and trims leading 0

2008-11-20 Thread Jeremy Keith
Now I've run into a situation where I don't know the exact field length because it varies, but I still need to maintain the leading 0. Any other suggestions? ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: Passing zipcode as string as struct ... still converts to numeric and trims leading 0

2008-11-20 Thread Jeremy Keith
I should I I've tried setting the returntype to plain without success, and I'd rather not put have to do a string replace with the result after the return. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

Re: Passing zipcode as string as struct ... still converts to numeric and trims leading 0

2008-11-20 Thread Jeremy Keith
I should I I've tried setting the returntype to plain without success, and I'd rather not put have to do a string replace with the result after the return. Wow, sorry for the absolute grammar failure above. That's horrible, even for me. Let's try this again. I should add, I've

Re: Passing zipcode as string as struct ... still converts to numeric and trims leading 0

2008-11-14 Thread Jeremy Keith
Yes, that's exactly what's happening, but not on a bind. I'm using cfajaxproxy and calling the CFC from my page (loading a single result into a form). It is stored in the database as a varchar. The Struct that I'm building in the CFC is based on query results, but I'm building the structure

Passing zipcode as string as struct ... still converts to numeric and trims leading 0

2008-11-11 Thread Jeremy Keith
I'm loading a form from a cfc, one of those fields is zipcode which up here mostly contain a leading 0. The db object is varchar, and short of checking the string length upon return and padding the 0 if it's only has a lenth of 4, is there any way to force the struct data type to a string

Re: Better random record generator

2008-10-27 Thread Keith McGee
but that is not in my scope for this project right now. I will try that solution today and let you know. Thank You, Keith ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http

Better random record generator

2008-10-22 Thread Keith McGee
I created a random record generator for pulling current news items. I am using an access database for the back end and would like to know if anyone has a better solution. This code works, but I think I'm missing something. Thank you in advance Keith. Step 1: Pull the current records and get

Re: Better random record generator

2008-10-22 Thread Keith McGee
*snip* 1. Use MySQL. 2. Order by Rand() 3. ??? 4. Profit this is not the only program or site running off of access database, we do have oracle and I know I could use where rownum = #randomID#, but I am looking for an access solution.

Re: Better random record generator

2008-10-22 Thread Keith McGee
Thanks for the suggestion, but I tried that and I didn't work. ~| 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

Re: Better random record generator

2008-10-22 Thread Keith McGee
ORDER BY Rnd(fld_page_ID) This command keeps pulling the same order, even if I close the browser. If they go back to the main page I would like possibility of having a different news item appear. ~| Adobe® ColdFusion® 8

CF Calendar Options

2008-09-23 Thread Wurst, Keith D.
I'm looking for some good ColdFusion calendar options. Anyone have any good experiences with pre-constructed modules? Pay or otherwise? Thanks very much for the help. ~| Adobe® ColdFusion® 8 software 8 is the most important and

Checking SMTP service before application load

2008-06-26 Thread Keith McGee
Is there a way to check to status of the SMTP server/service before I load an application in ColdFusion? Then not load the application if the server/service is down? ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: Coldfusion 8 and Flex 2

2008-06-11 Thread Keith McGee
When I click Run in Flex2 it goes to http://localhost:8500/Lessons2/bin/flexemail2cf.html ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Coldfusion 8 and Flex 2

2008-06-11 Thread Keith McGee
Ok, I know I have the right credentials because I have 4 other sites running in coldfusion on this test server with flash forms that load just fine. now I get You are not authorized to view this page You do not have permission to view this directory or page using the credentials you

Re: Coldfusion 8 and Flex 2

2008-06-11 Thread Keith McGee
Ok, now I get You are not authorized to view this page You do not have permission to view this directory or page using the credentials you supplied. Please try the following: Click the Refresh button to try

Re: Coldfusion 8 and Flex 2

2008-06-11 Thread Keith McGee
I figured out the security issue. now I get the following error VerifyError: Error #1053: Illegal override of subtopic in mx.messaging.Consumer. at flash.display::MovieClip/nextFrame() at mx.managers::SystemManager/::deferredNextFrame() at

Re: Coldfusion 8 and Flex 2

2008-06-11 Thread Keith McGee
I found the fix. Thank you for all your help. I am finely running. http://www.alagad.com/go/blog-entry/illegal-override-error-error-1053-in-fb2-flex-projects-w/cf8 ~| Adobe® ColdFusion® 8 software 8 is the most important and

Coldfusion 8 and Flex 2

2008-06-10 Thread Keith McGee
I am trying to configure messaging-config.xml file to talk to a flex application. The flex application keeps telling me “'Unknown destination”. Doe’s anyone have any Ideas? Error Message [MessagingError message='Unknown destination 'ColdFusionGateway'.'] at

Re: Coldfusion 8 and Flex 2

2008-06-10 Thread Keith McGee
ColdFusion started fine. In the file properties under Flex Server it says Sience this project dose not use a server, these settings do not apply. Any Ideas ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

Re: Coldfusion 8 and Flex 2

2008-06-10 Thread Keith McGee
Ok, I got past that error, Now I get. Internet Explorer cannot display the webpage Most likely causes: You are not connected to the Internet. The website is encountering problems. There might be a typing error in the address. What you can try: Diagnose Connection Problems

Re: Coldfusion 8 and Flex 2

2008-06-10 Thread Keith McGee
Ok I changed Root URL: to http://127.0.0.1/ and to http://localhost:8500/ and changed context root: to / and added the project directory to IIS. Still won’t display, any other thoughts? ~| Adobe® ColdFusion® 8 software 8 is

Re: JRun using 50% CPU ... minimum

2008-05-23 Thread Jeremy Keith
, May 23, 2008 at 3:08 AM, Jeremy Keith [EMAIL PROTECTED] wrote: Yup, it's a dual core, I'm not sure if it's a loop or if it's something timing out and leaving the thread open, hopefully the console will answer that question. Using the built in server monitor we do have some extremely long pages

JRun using 50% CPU ... minimum

2008-05-22 Thread Jeremy Keith
So over the last few days JRun has been taking control and running wild on our server. The only process we've really changed was updating of some thumb nailing processes from jpg to png formats. But that conversion is over and it's still using quite a bit of CPU. I applied the latest hotfix

CFLDAP Password expires

2008-05-20 Thread Keith McGee
I wrote this app to display when a users password expires, it appears I am going of the wrong field, can someone direct me to the right field or let me know if I am way of base. Thanks, Keith cftry cfldap server = servername username=#usr#.domain password=#pss# action = query

Re: CFLDAP Password expires

2008-05-20 Thread Keith McGee
Thank you for the infromation about pswLastChange, that lead me to this post a href=http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:46206;http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:46206/a and the solution !--- this is the date value from LDAP

Code 128 Variant C barcodes

2008-04-04 Thread Jeremy Keith
So I have a free font, but I'm having issues finding the encoding for the variant C of Code 128. Code B I seem to have down, but this one is elluding me, anyone have any pointers? ~| Adobe® ColdFusion® 8 software 8 is the

Re: cftextarea and carriage returns

2008-02-13 Thread Jeremy Keith
Need to get a cftextarea (CF 7) area to accept a carriage return when the user is typing, and then when the form is submitted, save that so when the data is viewed, the carriage returns are still intact. If I set: wrap=hard It will accept carriage returns when I'm typing, but after the form

Re: New FedEx Webservice

2008-02-05 Thread Jeremy Keith
a number of 'issues' that were not covered in the docs. On Feb 4, 2008 3:07 PM, Jeremy Keith [EMAIL PROTECTED] wrote: They went live with their WebService over the weekend, anyone gotten this to work with CF(8) yet? I'm trying to convert the PHP5 example they have up there without much luck

Re: New FedEx Webservice

2008-02-05 Thread Jeremy Keith
https://www.fedex.com/wpor/web/jsp/drclinks.jsp?links=techresources/announcements.html Do you have a link to the service announcement? -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer /

Re: How do I export numerical data into Excel and keep the leading zeroes from disappearing

2008-02-04 Thread Jeremy Keith
Not sure if this will do what you want, but you can preface your data with an apostrophe, that will tell excel it's a text field. ie 0001 would be '0001 ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

New FedEx Webservice

2008-02-04 Thread Jeremy Keith
They went live with their WebService over the weekend, anyone gotten this to work with CF(8) yet? I'm trying to convert the PHP5 example they have up there without much luck. ~| Adobe® ColdFusion® 8 software 8 is the most

Re: Mutli-Word search and searching each word

2008-02-02 Thread Jeremy Keith
I think this should work... cfquery name=search datasource=search Select CompanyTypes.CompanyTypeID, CompanyTypes.CompanyTypeName, CompanyTypes.CompanyTypeDesc, CompanyTypes.CompanyTypeImage, Companies.CompanyID,

Force a Re-Bind ?

2008-02-01 Thread Jeremy Keith
Is there a way to Force a rebind of a CFSelect? I have a form that pops up a window to add a new list value, and catching the ColdFusion.window.hide, but I can't figure out a way to trigger a bind for the first of 3 related cfselects.

Re: Mutli-Word search and searching each word

2008-02-01 Thread Jeremy Keith
On Feb 1, 2008 9:57 PM, Gerald Guido [EMAIL PROTECTED] wrote: Thanks Benign I usually set a var before my loop for a counter then in the loop around the OR I do a CFIF to check that counter against the listlen cfset listpos = 1 cfloop list=#mylist# index=searchme (field LIKE

CF8 CFGrid and https

2007-12-14 Thread Jeremy Keith
Working on implementing some CFGrid examples with CF8 I have them working in our public space, however, when I bring the 2 files into our protected webspace (which has it's own application.cfm) it doesn't seem to work. The page will display the grid, but won't populate it. Any ideas as to what

Re: CF8 CFGrid and https

2007-12-14 Thread Jeremy Keith
Working on implementing some CFGrid examples with CF8 I have them working in our public space, however, when I bring the 2 files into our protected webspace (which has it's own application.cfm) it doesn't seem to work. The page will display the grid, but won't populate it. Any ideas

RE: Finding ColdFusion servers

2007-11-09 Thread Keith, Jeremy
timeout = 15 /cfexecute /cfsavecontent If you can span your subnets and I think snmp needs to be running, but then dump this data into a db and query it for coldfusion Jeremy Keith Network Administrator Rand-Whitney Group LLC One Agrand Street Worcester, MA 01607 Office: (508

RE: Weird CF8 issue, Customer gets asked for RDS login after redirect from app login

2007-11-08 Thread Keith, Jeremy
So because their PUBLIC IP block is a 192 block (there are public 192 addresses) Cold Fusion is mis interpreting this as a direct request? Jeremy Keith Network Administrator Rand-Whitney Group LLC One Agrand Street Worcester, MA 01607 Office: (508) 890-7032 -Original Message- From

RE: Weird CF8 issue, Customer gets asked for RDS login after redirect from app login

2007-11-08 Thread Keith, Jeremy
I should also add that I can login as the user from my location, and from my home with his credentials without an issue. Jeremy Keith Network Administrator Rand-Whitney Group LLC One Agrand Street Worcester, MA 01607 Office: (508) 890-7032 -Original Message- From: Kris Jones [mailto

RE: Weird CF8 issue, Customer gets asked for RDS login after redirect from app login

2007-11-08 Thread Keith, Jeremy
Ya, unfortunately there are no options for the customer, but I'll keep digging. Jeremy Keith Network Administrator Rand-Whitney Group LLC One Agrand Street Worcester, MA 01607 Office: (508) 890-7032 -Original Message- From: Kris Jones [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: Weird CF8 issue, Customer gets asked for RDS login after redirect from app login

2007-11-08 Thread Keith, Jeremy
asked for RDS login after redirect from app login Keith, Jeremy wrote: Ya, unfortunately there are no options for the customer, but I'll keep digging. But what is in your webserver log? Jochem ~| ColdFusion is delivering

RE: Weird CF8 issue, Customer gets asked for RDS login after redirect from app login

2007-11-07 Thread Keith, Jeremy
I should define that this is only happening with ONE specific customer, for the others it works as designed Jeremy Keith Network Administrator Rand-Whitney Group LLC One Agrand Street Worcester, MA 01607 Office: (508) 890-7032 -Original Message- From: Keith, Jeremy [mailto:[EMAIL

RE: Weird CF8 issue, Customer gets asked for RDS login after redirect from app login

2007-11-07 Thread Keith, Jeremy
Also the page that it's redirecting to is the CFC explorer CFIDE/componentutils/cfcexplorer.cfc?method=getcfcinhtmlname=WebService s.ajaxCFC.core.RWGJKAjaxpath=/Webservices/ajaxCFC/core/RWGJKAjax.cfc Jeremy Keith Network Administrator Rand-Whitney Group LLC One Agrand Street Worcester, MA

Weird CF8 issue, Customer gets asked for RDS login after redirect from app login

2007-11-07 Thread Keith, Jeremy
in CF8 that might be causing this? Anyone else seen anything like this? Jeremy Keith Network Administrator Rand-Whitney Group LLC One Agrand Street Worcester, MA 01607 Office: (508) 890-7032 CAUTION:The preceding email message and any

Remove pasted word xml code

2007-10-12 Thread Keith McGee
Can anyone tell me how to remove the xml code, that text pasted from word or works ads. For examlpe P class=MsoNormal style=MARGIN: 0in 0in 0pt I want to remove this and just insert the text from the text field. ~| Get the

sql statment to get connections

2007-06-25 Thread Keith McGee
Do anyone know of a simple sql query to see what users are currently connected to a Microsoft database? ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more productivity.

Re: sql statment to get connections

2007-06-25 Thread Keith McGee
It worked. Thank You ~| Create Web Applications With ColdFusion MX7 Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive:

Extract document properties for verity collection

2007-05-21 Thread Keith McGee
Is there a way to pull the title, category, and keyword fields from the properties of a document, and update a verity collection (storing the category associated with the document automatically) or store them along with the location in to a database?

cfldap query account options

2007-05-15 Thread Keith McGee
Can anyone tell me how to do a cfldap query to find out how many users are not set to chacges there passwords in their account options Thank You Keith ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s

Re: Two Web Developers Needed in Orange County, CA

2007-05-03 Thread Keith Kehrer
We currently have two openings available for web developers using ColdFusion and SQL. This is a contract position with a Fortune 50 communications company in Garden Grove, CA ~| Create Web Applications With ColdFusion MX7

Re: cfdirectory loading time issue

2007-02-01 Thread Keith McGee
LISTINFO=name is great for performance, Question this removes all information about the file/directory. So in a cftree how would you define the difference between a file and directory? ~| Upgrade to Adobe ColdFusion MX7

cfdirectory loading time issue

2007-01-31 Thread Keith McGee
I am trying to display a file directory with 761 folders and 4,423 files and 4.53 gigs in size. When I load at the top directory inside our network it takes 40-50 seconds to load the tree (outside the network well over a minute). The are 28 subdirectories under the initial directory. If I load

Verity Displaying search results

2007-01-19 Thread Keith McGee
I web site which has a file directory with about 450 subdirectories. Each subdirectory is assigned to a company and each company has there own subdirectories and files associated to there login credentials. For example Support_site_folders Company1 Folder1 Folder2

  1   2   3   4   5   6   >