Re: Problems with Email encoding of Norwegian chars

2005-12-20 Thread Paul Hastings
Duncan wrote: if you're using N datatypes it internally uses ucs2, when it talks to sql server it's utf-8 unless you tell it otherwise. So do we even need to change SQL server from its default encoding (sql_latin_1_general_cp1_ci_as)? that's a collation. does that sort norwegian properly? if

Re: FlashAudio

2005-12-20 Thread Cutter (CF-Talk)
Better yet, put an obvious 'Start' button, so you don't annoy the hell out of everyone right away, but give them the option instead. Cutter Bobby Hartsfield wrote: Other than don't do it the only advice I can give is, put a stop button on it because it WILL get annoying.

Will this fix our rogue server?

2005-12-20 Thread Mike Kear
One of our production servers (not the one discussed on this list earlier today) is regularly failing - by that I mean ColdFusion stops, but IIS and Windows2003 doesnt. Users are irritatingly presented with an error message saying [quote] Server Error The server encountered an internal error and

Re: CF Flash Forms and FCKeditor - do they work together?

2005-12-20 Thread Mike Kear
I dont think F CKEditor will work with flash forms, but I dislike flash forms anyway. I use the XML version, and FCKEditor plays fine with that. In fact Mike Nimer has integrated it with CFTEXTAREA for xml forms. To implement it, all you do is cftextarea name=bio editor=fckeditor/cftextarea

RE: Will this fix our rogue server?

2005-12-20 Thread kola.oyedeji
These may be of some help... http://www.talkingtree.com/blog/index.cfm/2004/6/18/20040618 http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19300 Kola -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: 20 December 2005 14:03 To: CF-Talk Subject: Will

CF / JS

2005-12-20 Thread Adkins, Randy
I have a form that has dynamic fields that are generated such as: jobCode1 jobCode2 jobCode3 . I have a button next to each field that will popup a window of codes to be selected And the popup window will have the ID associated with each form field such as 1, 2, or 3... On

RE: Not enough storage is available to process this command

2005-12-20 Thread Jacob
I have received that error in the past when the server ran out of memory. Something like 4MB of RAM left. But, I received that error is I tried to remotely admin the server or map to the server. Not a 500 server error. -Original Message- From: gabriel l smallman [mailto:[EMAIL

Re: CF / JS

2005-12-20 Thread Charlie Griefer
what is the exact value of vID and what is the exact name of the field? a couple of things that I can see that are potentially giving you headaches: 1) JS is case sensitive. jobcodecombo02 is not the same as jobCodecombo02 2) the name of the field is jobcodecombo02 but instead of passing '02'

RE: Coldfusion Looking Glass CFC

2005-12-20 Thread Munson, Jacob
It seems to me that one could use server.os.name to make this dynamic, so one cfc would work with all the major OSes. -Original Message- From: Sean Corfield OK, I modified it to work with OS X: http://corfield.org/articles/lg.zip - [INFO] -- Access Manager: This

RE: Known Bug in CFWDDX CFML2JS Variable Name Case?

2005-12-20 Thread Dawson, Michael
Dan, I see the same output (below) as you have described. Either way, maybe this should be an ER since CF retains the camelCase in some instances, so why not pass it through to the JS? upper case - struct CAMELCASE key is stored in uppercase camel-case - struct camelCase key is

Re: CF / JS

2005-12-20 Thread Claude Schneegans
window.opener.document.forms[0].[fldLoc].value window.opener.document.forms[0][fldLoc].value would look more correct to me. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this

RE: CF / JS

2005-12-20 Thread Adkins, Randy
True field name are: jobCode1 jobCode2 jobCode3 . Sorry that was from the old page :-( damn gotta hate copy/paste And frustrations The window.opener command that works is: window.opener.document.forms[0].jobCode2.value = vCode; But need it to be dynamic. -Original

RE: CF / JS

2005-12-20 Thread Adkins, Randy
I thought you would need the dot notation between the form name And the field name? -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 20, 2005 10:24 AM To: CF-Talk Subject: Re: CF / JS window.opener.document.forms[0].[fldLoc].value

Re: CF / JS

2005-12-20 Thread Claude Schneegans
I thought you would need the dot notation between the form name And the field name? But not both: one.two is equivalent to one['two'] If you have three = 'two'; then one[three] is equivalent to one['two'] or one.two one.[three] would more look like one.['two'] or one..two and I don't know what

RE: CF / JS

2005-12-20 Thread Adkins, Randy
Excellent! That worked! See your not too o-l-d to learn something new. Thanks Claude -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 20, 2005 10:36 AM To: CF-Talk Subject: Re: CF / JS I thought you would need the dot notation between the

Which page called my custom tag

2005-12-20 Thread jonese
Is there something i can code inside of my custom tag which will tell me what cf template called it? jonese ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: Which page called my custom tag

2005-12-20 Thread Greg Saunders
yes, GetBaseTagList() Greg Saunders Vice-President, Technology, Trump University 40 Wall Street New York, NY 10005 http://www.trumpuniversity.com [EMAIL PROTECTED] At 10:01 AM 12/20/2005, jonese wrote: Is there something i can code inside of my custom tag which will tell me what cf template

Re: CF / JS

2005-12-20 Thread Charlie Griefer
bah. I didn't notice the dot in your original post. You may not be too o-l-d to learn something new, but I'm apparently too o-l-d to spot the errors :) On 12/20/05, Adkins, Randy [EMAIL PROTECTED] wrote: Excellent! That worked! See your not too o-l-d to learn something new. Thanks Claude

Re: Which page called my custom tag

2005-12-20 Thread jonese
Ok that helps a little bit. I'm getting out put like so CFQUERY,CF_FORMPROCESS,CFINCLUDE,CFINCLUDE,CF_FORMPROCESS,CF_CHROMESHELL Is there anyway to find out what those cfinclude files are? Here's my delimma. We have a custom tag which processes form for us and does a lot of high level stuff.

RE: Reversing an HTMLCodeFormat string.

2005-12-20 Thread Bobby Hartsfield
I just realized this screwed up as it came through the laquo; symbols were replaced with and the same for raquo; and Test raquo; = not laquo; = not ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com function doit(str) { replace(str, , , all);

RE: Reversing an HTMLCodeFormat string.

2005-12-20 Thread Bobby Hartsfield
Oh well... no symbols then I'm sure you have this solved by now? ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 20, 2005 12:03 PM To: CF-Talk Subject: RE:

RE: Known Bug in CFWDDX CFML2JS Variable Name Case?

2005-12-20 Thread Dan G. Switzer, II
Michael, s1 = new Object(); s1[camelcase] = key is stored in uppercase; s2 = new Object(); s2[camelcase] = key is stored in camel-case; Like I said, in the long run I think it's better if case doesn't carry over and that you just expect the JS keys to be lowercase. It gets to confusing when

CF MX 6.1 and odd caching

2005-12-20 Thread Phill B
I'm writing an app that uses CFCs on a Win2K3 and CF MX 6.1. I have never noticed this before but today it is caching all the files I am working on. I'll upload the page, run it, make a change, upload it, page runs using the previous code instead of the current code. I can delete the file, try

Re: CF MX 6.1 and odd caching

2005-12-20 Thread Dave Carabetta
On 12/20/05, Phill B [EMAIL PROTECTED] wrote: I'm writing an app that uses CFCs on a Win2K3 and CF MX 6.1. I have never noticed this before but today it is caching all the files I am working on. I'll upload the page, run it, make a change, upload it, page runs using the previous code instead

RE: Coldfusion Looking Glass CFC

2005-12-20 Thread Snake
How is WHOIS done, do we have to supply a whois server to use, or does it directly query the registrars whois server for each TLD. Pretty much all registrars only allow xx number of whois lookups per day, or in the case of nominet, you have to do it via their website period. Russ -Original

RE: Coldfusion Looking Glass CFC

2005-12-20 Thread cfteam
The whois lookups are performed by the jwhois utility which has it's own configuration for TLDs and obtains the first info from the internic server. If the registrar is limiting the number of queries, there is not much we can do about it. Here is an example output for google.com. [Querying

namo web editor

2005-12-20 Thread dave
anyone used Namo web editor? and what were your thoughts on it? ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/ ~| Discover CFTicket - The

Re: Which page called my custom tag

2005-12-20 Thread Greg Saunders
hmm, i don't know an elegant way to get the includes. You could always say: cfif attributes.formobjectid EQ '10002' cfset x=1/0 /cfif to throw an error and get the stack trace. greg At 10:30 AM 12/20/2005, jonese wrote: Ok that helps a little bit. I'm getting out put like so

Re: Which page called my custom tag

2005-12-20 Thread Ryan Guill
Could you not use cgi vars? something like path_info, i think there is even a template_path or something like it. On 12/20/05, Greg Saunders [EMAIL PROTECTED] wrote: hmm, i don't know an elegant way to get the includes. You could always say: cfif attributes.formobjectid EQ '10002'

Re: Which page called my custom tag

2005-12-20 Thread Ryan Guill
Re-reading your message again, cant you just turn on debugging and look at the stack trace and templates that are being called? On 12/20/05, jonese [EMAIL PROTECTED] wrote: Ok that helps a little bit. I'm getting out put like so

Re: Which page called my custom tag

2005-12-20 Thread jonese
looked at the stack, and the vars. It turned out that it was a file on the Dev server which had the hard coded value, but i didn't have that copy locally. when i grabbed the Dev version and did my site wide search i found the hard coded value. BUT i did learn alot about debugging in custom tags

RE: Coldfusion Looking Glass CFC

2005-12-20 Thread Snake
Well I'm wondering how do all these domain registration web sites do their whois all day long when other registrars limit the number of requests? Russ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 20 December 2005 17:48 To: CF-Talk Subject: RE: Coldfusion

MXNA contact?

2005-12-20 Thread jonese
I just tried to drop [EMAIL PROTECTED] an email with some questions but it bounced. can any provide me with a working email address? thanks in advance jonese ~| Find out how CFTicket can increase your company's customer

Re: MXNA contact?

2005-12-20 Thread Ryan Guill
maybe try [EMAIL PROTECTED] ? ;) On 12/20/05, jonese [EMAIL PROTECTED] wrote: I just tried to drop [EMAIL PROTECTED] an email with some questions but it bounced. can any provide me with a working email address? thanks in advance jonese

RE: CFMX and Sql Server 2005 (mirrored instances)

2005-12-20 Thread Todd Mathews
CFMX works fine with SQL 2005 server. Haven't tried any of the mirroring functions yet or the new JDBC driver from MS but CFMX 7.01 connects and works fine. -Original Message- From: Paul [mailto:[EMAIL PROTECTED] Sent: Friday, December 16, 2005 12:28 PM To: CF-Talk Subject: RE:

RE: CFMX and Sql Server 2005 (mirrored instances)

2005-12-20 Thread Todd Mathews
CFMX 7.01 ENT connects and works fine with SQL 2005. -Original Message- From: Paul [mailto:[EMAIL PROTECTED] Sent: Friday, December 16, 2005 10:48 AM To: CF-Talk Subject: RE: CFMX and Sql Server 2005 (mirrored instances) Last I heard CF couldn't connect to SQL Server 2005 yet.

RE: CFMX and Sql Server 2005 (mirrored instances)

2005-12-20 Thread Russ
I just set up CF 7 standard with sql 2005, and although I had to install the JDBC driver from Microsoft, it appares to be working... -Original Message- From: Todd Mathews [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 20, 2005 1:48 PM To: CF-Talk Subject: RE: CFMX and Sql Server 2005

OT: determine SQL Server Version via Ent Mngr

2005-12-20 Thread Bryan Stevenson
Can anyone point me to a way that I can determine the version of a remote SQL Server database via Enterprise Manager? TIA Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail:

SQL Server 2000 to 7

2005-12-20 Thread Bryan Stevenson
Hey All, I have a SQL Server 2000 DB that I need to convert to SQL Server 7. Can it be done? if so, how? BTW this is tables, PKs, FKs, and data types.no triggers or stored procs. TIA Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc.

Re: determine SQL Server Version via Ent Mngr

2005-12-20 Thread Dirk De Bock - Lists
SELECT SERVERPROPERTY('ProductVersion'); - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, December 20, 2005 8:26 PM Subject: OT: determine SQL Server Version via Ent Mngr Can anyone point me to a way that I can

Re: determine SQL Server Version via Ent Mngr

2005-12-20 Thread Bryan Stevenson
Thanks Dirk! Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com ~|

Re: SQL Server 2000 to 7

2005-12-20 Thread Robert Everland III
I don't think a backup will work for this, but you can try. If that doesn't work I would create SQL scripts for the structure of the database then use data transformation services to get the data into the tables. Bob ~|

RE: SQL Server 2000 to 7

2005-12-20 Thread Dave Watts
I have a SQL Server 2000 DB that I need to convert to SQL Server 7. Can it be done? if so, how? You should be able to do this through DTS, if the SQL Server 2000 machine can connect to the SQL Server 7 machine. If that's not possible, you can install both on a single machine by installing a

Re: MX7 CFHTTP : connection failure with Proxy

2005-12-20 Thread Yves Leung-Tack
Hi, The weird things is that when I call the CGI program directly from the browser using the following

Re: CF MX 6.1 and odd caching

2005-12-20 Thread Dan Phillips
On 12/20/05, Phill B [EMAIL PROTECTED] wrote: Check your CFMX Administrator and make sure the Use Trusted Cache option is not selected. When it's selected, the CF engine will not check the file timestamps for an updated file. Regards, Dave. If you apply any updaters make sure you go back into

Re: SQL Server 2000 to 7

2005-12-20 Thread Bryan Stevenson
You should be able to do this through DTS, if the SQL Server 2000 machine can connect to the SQL Server 7 machine. If that's not possible, you can install both on a single machine by installing a default SQL Server 7 instance, then installing a named SQL Server 2000 instance. Dave Watts,

Re: CF MX 6.1 and odd caching

2005-12-20 Thread Phill B
I did have to deselect it but I didn't notice anything. I restarted the server so I'll see if that makes things better. Thanks On 12/20/05, Dave Carabetta [EMAIL PROTECTED] wrote: On 12/20/05, Phill B [EMAIL PROTECTED] wrote: I'm writing an app that uses CFCs on a Win2K3 and CF MX 6.1. I have

Microsoft SQL DataSource

2005-12-20 Thread Troy Simpson
We use CFMX 7. When creating a Microsoft SQL Server cf data source name, the following fields are available: CF Data Source Name Database Server Port Username Password Description Can a developer use cfquery to query a database without a CF Data Source Name by specifying the values for

Re: CF MX 6.1 and odd caching

2005-12-20 Thread Phill B
@[EMAIL PROTECTED] Still have the problem. I have to delete each page, call it, then upload it before CF sees a new file. I made sure my CF admin cache options were turned off. Is there a tag or some thing I can put in my code to stop caching? On 12/20/05, Phill B [EMAIL PROTECTED] wrote: I

Installation help

2005-12-20 Thread ecreese
I am trying to load the CFMX 6 developer edition on Windows XP. I load it up but when I got to launcht he admin it fails with the following. HELP! Error Occurred While Processing Request Please Try The Following: Check the CFML Reference Manual to verify that you are using the correct

Re: Installation help

2005-12-20 Thread Eric Creese
BTW no specific error code is generated. ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message:

[SOT] HTTP 400 error has me stumped

2005-12-20 Thread Anthony Prato
details are below my hail marry question... does anyone have any experience with http 400 errors? I'm completely lost on what to do to help one of our clients. They frequently (not always) cause a 400 error to show up in the IIS (win2k) logs when submitting a specific form. The form is in an

RE: Microsoft SQL DataSource

2005-12-20 Thread Dave Watts
Can a developer use cfquery to query a database without a CF Data Source Name by specifying the values for database, server, and port in the cfquery tag? No. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized

Re: MXNA contact?

2005-12-20 Thread Sean Corfield
On 12/20/05, jonese [EMAIL PROTECTED] wrote: I just tried to drop [EMAIL PROTECTED] an email with some questions but it bounced. I'll let Christian Cantrell know (see his blog for his new email address). -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not annoying

RE: Which page called my custom tag

2005-12-20 Thread Matthew Walker
I think this will give you the info you want -- put it inside your tag. If necessary, get it to mail you the dump only if the unexpected value occurs. cftry cfthrow cfcatch cfdump var=#cfcatch# /cfcatch /cftry -Original Message- From: jonese

Help me convince my boss to go with CF

2005-12-20 Thread Josh Nathanson
Hello All, I'm the web dude at a small clothing company in San Francisco. Although my boss is now CEO of the company, he started out as a C programmer and so is a PHP fan. Currently our storefront is Miva Merchant. I on the other hand am a CF devotee (intermediate level) with very little

Re: Installation help

2005-12-20 Thread Eric Creese
Nobody have a clue? ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message:

Re: Coldfusion Looking Glass CFC

2005-12-20 Thread Kym Kovan
Hi Russ, Snake wrote: Well I'm wondering how do all these domain registration web sites do their whois all day long when other registrars limit the number of requests? The registrars are on a white-list so they don't get limited but, more relevantly, for most NICs there is another

RE: Help me convince my boss to go with CF

2005-12-20 Thread Dawson, Michael
Well, it seems you are both at a stalemate: He knows PHP; You know CF. But, when the coding starts, who will do the work? You or him? Why throw out your CF skills and put you on a learning curve with PHP? Also, check out www.forta.com for some more resources. Another good reason to stick with

Re: Help me convince my boss to go with CF

2005-12-20 Thread Ray Champagne
I have no ideas on how to convince your boss that you should go with CF over PHP, but I can put in a plug for CFWebstore. I've HEAVILY customized it, and while it was awkward to use at first, it was easy to figure out after hacking around a bit (it's written using FuseBox, and this was only

Re: Help me convince my boss to go with CF

2005-12-20 Thread Mary Jo Sminkey
Just to add to those comments...if you look around, you may find some comparison articles that may be helpful elsewhere on the net. Here's one from the Macromedia (Adobe) site that has some good code comparisons: http://www.macromedia.com/devnet/coldfusion/articles/php_cfmx.html Something that

Flash form overlaps my css menu

2005-12-20 Thread Will Tomlinson
Check out this page. When the flash form loads, mouseover 'products' in the left menu. The form overlaps my css flyouts. Whassup wit dis? http://wtomlinson.com/newcart/admin/product_edit.cfm?prodID=164prodname=Volley%20Shorts Thanks, Will

Re: Flash form overlaps my css menu

2005-12-20 Thread Will Tomlinson
wmode=transparent Thanks Disruptor! You really know your stuff! :) Your friend, Will ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a

Re: Flash form overlaps my css menu

2005-12-20 Thread Bryan Stevenson
Thanks Disruptor! You really know your stuff! :) Your friend, Will You know it's Christmas time when... ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL

Re: Help me convince my boss to go with CF

2005-12-20 Thread Mike Kear
I can give you a specific example. I undertook a private pro-bono project for the volunteer radio station I have my show on, about the same time as a friend in the USA did a similar thing.He and a colleague took two years to build their station's site, http://wamu.org which has about

Help with displaying BLOB Images.

2005-12-20 Thread Terry Troxel
Last week I asked for help with displaying Blob images stored in MSSQL and I was sent A link to a blog on the subject on forta.com. This is the meat of the solution, but I am not Having any luck so far. I have built a cfquery that grabs the blob field But I am unable to display it. !--- Set

Re: Help me convince my boss to go with CF

2005-12-20 Thread Will Tomlinson
Maybe to build on mike's post, you could have your boss write some basic php code he usually uses, then translate it to CF, so he can actually SEE how much his looks like NASA Egyptian hieroglyphics code compared to soothing CF. :) Will

Re: Help with displaying BLOB Images.

2005-12-20 Thread James Holmes
The cfquery and the display code all go in getimage.cfm. Try doing it something like this: cfquery name=QMyQuery blah blah SELECT blobcolumn FROM images WHERE imageid = cfqueryparam cfsqltype=cf_sql_numeric value=#URL.imageid# /cfquery cfcontent

Displaying data from XLS file

2005-12-20 Thread John Lucania
I have a datasource created with XLS as below: SELECT * FROM [HRJobPostings$] IN 'd:\\Inetpub\wwwroot\HRJobPostings\HRJobPostings.xls' 'EXCEL 5.0;' In a row for the column, Additional, it has: Experience should also include: configuring and monitoring of Cisco switches, routers, wireless,

Re: Help me convince my boss to go with CF

2005-12-20 Thread Matt Robertson
Good God in heaven... if you are presently using MIVA I have to believe there is nowhere to go but up. I just got done buying product as a customer of a MIVA system and I was sadly reacquainted with how truly awful -- how very mid 1990's (as in Devonian period) -- their product was insofar as

Part Time Coding

2005-12-20 Thread Paul Giesenhagen
We are looking for a good CF programmer who can help us in the finishing of our application SiteDirector (version 4 release). If you are looking for some sideline work and are flexible, we may be able to use you. Currently we have most of the work completed and have alot of lose ends to tie

RE: Part Time Coding

2005-12-20 Thread Ben Arledge
Hi Paul, I'm available for part time work from home. My time is fairly flexible as long as it's outside of my day job hours. I work for one of the largest online dating networks in the world so I'm accustomed to working on large, complex, and high traffic projects. I consider myself an expert

Re: Part Time Coding

2005-12-20 Thread John Wilker
we won't tell anyone Ben. :) On 12/20/05, Ben Arledge [EMAIL PROTECTED] wrote: However, it appears I'm a novice with email. :) Sorry everyone! Ben ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble

Re: Part Time Coding

2005-12-20 Thread Jeffry Houser
Hey, it happens. I know I've made that mistake. At 08:49 PM 12/20/2005, you wrote: we won't tell anyone Ben. :) On 12/20/05, Ben Arledge [EMAIL PROTECTED] wrote: However, it appears I'm a novice with email. :) Sorry everyone! Ben