Re: CF8 autosuggest automatically filters again?

2008-04-10 Thread Dominic Watson
I was wondering how many records can you through at your tag? I.E is it good if I past it a list of all U.S. cities? Hi Jim, The tag just wraps cfinput and adds some javascript to set extra properties. As such, it will be the same as using cfinput in terms of the number of items you can pass

cf_image - where I can get?

2008-04-10 Thread Silver Spoon
Could you please tell me from where I can download cf_image ? Is it compatible with CF 8? Thanks. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

RE: cf_image - where I can get?

2008-04-10 Thread Adrian Lynch
I won't be the only one thinking this, but what does cf_image do that cfimage doesn't? Genuine question by the way. Adrian http://www.adrianlynch.co.uk/ -Original Message- From: Silver Spoon [mailto:[EMAIL PROTECTED] Sent: 10 April 2008 12:12 To: CF-Talk Subject: cf_image - where I can

RE: cf_image - where I can get?

2008-04-10 Thread Bobby Hartsfield
Probably keeps old code from changing. That's the only thing I can think of. And sorry, I checked the first couple pages of google but it seems that the built in CFImage has take over the results -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10,

cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Paul Ihrig
i have a page using cfftp to move files from one server to another. if i open the file in the browser it loads moves the file just fine. but if i put the url, in a Scheduled Tasks on the CF8 server, it says it ran. but the file never shows up on our server. the file being run is behind a little

Re: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Paul Ihrig
ok i just moved the file out of the secured area it ran just fine which is great, but how do i pass my un/pw in cfadmin, schedualed task... i have my pass in there. ~| Adobe® ColdFusion® 8 software 8 is the most important

Re: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Paul Ihrig
nm.. found a bit of code i needed. man coldfusion is great! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive:

RE: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Rick Faircloth
How about sharing the solution? I've got to implement some automated FTP work and would like to have your solution ready for a potential problem. Rick -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 8:05 AM To: CF-Talk Subject: Re: cf8:

RE: Resetting Active Directory Password using CFLDAP ?

2008-04-10 Thread Dawson, Michael
Account Operators should have enough permission to change any password for any user account with equal or lesser permissions. In other words, Account Operators can change the password for any Domain User, but cannot change the password for a Domain Admin or Enterprise Admin. Make sure you are

simple loop

2008-04-10 Thread Orlini, Robert
I have a simple loop problem. I'm comapring two tables and want it to display serial numbers from both tables when there is a match. Unfotunately the way I have it setup it never finds a match even though I know there is a few. I think the loop is wrong. See code below. Thanks. RO HWW

Re: cfdocument on cf8 and unix/linux

2008-04-10 Thread Dave Phillips
To everyont that has helped so far, I have used the following code to test my problem. I can be sure now that it is NOT permissions. See below. mytest.txt is created successfully, but the cfdocument tag times out after 30 seconds (the timeout set in cfadmin). cfset sStuff = This is some

Re: simple loop

2008-04-10 Thread Claude Schneegans
Hi, Your approach looks weid to me Why do you need the first query to get the serial number to be used in the second query if you already know the serial number? Any way, shouldn't be at least something like where serialnumber = '#serialnumber#' in the first query? Are serial numbers text

Re: simple loop

2008-04-10 Thread Brian McCairn
CFIF check.recordcount instead of CFIF get.recordcount eq 1? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive:

Re: simple loop

2008-04-10 Thread Ian Skinner
Claude Schneegans wrote: Wouldn't use of a JOIN more appropriate in this case? No idea for all the other questions, but I did notice that these where to two different data sources. So presumable one is querying different databases that may not be able to connect internally for a join.

Re: cfdocument not working with CF 8.0.1 update

2008-04-10 Thread Dave Phillips
Anyone find a solution on this? I'm having the same problem ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k

Re: simple loop

2008-04-10 Thread AJ Mercer
I have had weird things happing with queies with in a query loop try putting the outer query column into it's own variable and use that in the inner query cfset VARIABLES.serialnumber = Trim(get.serialnumber) / where serialnumber = '#VARIABLES.serialnumber#' On Thu, Apr 10, 2008 at 9:36

Re: simple loop

2008-04-10 Thread Ian Skinner
Orlini, Robert wrote: CFIF get.recordcount eq 1 I just noticed this on the third posting repeating the code. I bet you meant that to be check.recordcount. I.E. does the second query return any records matching the first query. Otherwise you are checking to see if a query you are currently

Re: cfdocument not working with CF 8.0.1 update

2008-04-10 Thread Dave Morris
Anyone find a solution on this? I'm having the same problem Can you please go through the entire thread? You will have the solution. ~D ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Re: Cfslider can it be disabled

2008-04-10 Thread Tom Chiverton
On Tuesday 08 Apr 2008, kurt schroeder wrote: I have a print page that has a cfslider on it for html print. Can it be disabled? If you use a print CSS style sheet, probably. -- Tom Chiverton Helping to biannually negotiate distributed content on: http://thefalken.livejournal.com

Looking for creative implementation of cf ajax related tags/functions

2008-04-10 Thread Don L
Technically I'm talking about using cf8; on business end, I'm talking about adding/creating Business Value while improving User Experience. One particular tag to me is CFAJAXPROXY, and I've used it in tandom with some other cf feature(s) to create something new (and hopefully, it can achieve

Re: simple loop

2008-04-10 Thread Dominic Watson
CFloop query=get CFQUERY name=check datasource=spice Select * from spice where serialnumber = '#trim(get.serialnumber)#' /cfquery CFIF get.recordcount eq 1 CFoutput#trim(check.serialnumber)# -- #trim(get.serialnumber)#br/CFOUTPUT cfelseNO MATCH - cfoutput#get.recordcount#/cfoutputbr

RE: simple loop

2008-04-10 Thread Orlini, Robert
Yes it worked...thanks all! -Original Message- From: Dominic Watson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 11:01 AM To: CF-Talk Subject: Re: simple loop CFloop query=get CFQUERY name=check datasource=spice Select * from spice where serialnumber =

Re: cfdocument on cf8 and unix/linux

2008-04-10 Thread Jochem van Dieten
Dave Phillips wrote: I'm going to see if we can get a stack trace today, but it's going to be difficult due to our infrastructure setup. If you have the administrator password you can get a snapshot through the Admin API or through the server monitor. Oh, by the way, I did find something

Re: cfdocument not working with CF 8.0.1 update

2008-04-10 Thread Dave Phillips
Anyone find a solution on this? I'm having the same problem Can you please go through the entire thread? You will have the solution. ~D I did read the entire thread. This doesn't solve my problem though. I'm not on CF 8.0.1 and I tried removing the CF hotfix 3 and I still have the same

qoq date formating

2008-04-10 Thread Chad Gray
Is there any dateformating functions when doing a query of a query? Like in MS SQL I can use the CONVERT function. SELECT JOBNOTE, CONVERT(varchar, DateCreated, 108) AS DateCreatedAsTime FROM JobNotes ~| Adobe® ColdFusion® 8

Re: Looking for creative implementation of cf ajax related tags/functions

2008-04-10 Thread mailme
Just out of curiosity... if you cannot garner the functionality that you desire of the built-in tag, why be limited by it? There are a plethora of other Ajaxy type libraries available that can help accomplish a goal, why limit yourself to just one? Matthew Williams Geodesic GraFX

Re: cfdocument not working with CF 8.0.1 update

2008-04-10 Thread Dave Morris
Anyone find a solution on this? I'm having the same problem Can you please go through the entire thread? You will have the solution. ~D I did read the entire thread. This doesn't solve my problem though. I'm not on CF 8.0.1 and I tried removing the CF hotfix 3 and I still

RE: qoq date formating

2008-04-10 Thread Chad Gray
I tried that but it did not seem to like it. SELECT JOBNOTE, #dateFormat(DateCreated,short)# AS NewDate FROM JobNotes I have to do it in the QOQ because I am returning the whole query object back to a bound CFGrid. Or I need to figure out how to format the data in the bound CFGrid, but I

Re: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Paul Ihrig
sure.. was simple, just had to pass url vars do bypass security. let me know what you need when you need it... the schedual task thing is pretty simple. the ftp all i am doing is grabbing files nightly renaming then with the date like file.04.10.08.txt and saving then to local server. then using

Portals/Portlets in ColdFusion?

2008-04-10 Thread David Simcik
I noticed that Adobe Labs has a newish portal/portlet framework out that sits atop WebSphere Portal. Are there any CF portal frameworks/apps out there that are written (natively) in CFML that folks would recommend? Thanks, DS

Invalid object name Dilemma

2008-04-10 Thread Ryan Hinton
Hello, I have multiple cf servers, one being a developer's version, the two other's are enterprise versions. I have created something like the following: cfquery name=updateUnitID datasource=#db_database# cfloop from=1 to=#listlen(form.updatedUnitIDs)# index=x cfset inputUnitID

RE: qoq date formating

2008-04-10 Thread Bob Imperial
Will DateFormat() give you what you need? -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 11:59 AM To: CF-Talk Subject: qoq date formating Is there any dateformating functions when doing a query of a query? Like in MS SQL I can use the

Invalid object name Dilemma

2008-04-10 Thread Ryan Hinton
Hello, I have multiple cf servers, one being a developer's version, the two other's are enterprise versions. I have created something like the following: cfquery name=updateUnitID datasource=#db_database# cfloop from=1 to=#listlen(form.updatedUnitIDs)# index=x cfset inputUnitID

Migrating to Application.cfc

2008-04-10 Thread Jeff Price
This is not a question about the structure of an Application.cfc, I've got that down. No problem. This is about taking a bunch of apps that use the same application scope but different Application.cfm files, and converting them one by one to Application.cfc. All of these have the same

Re: Portals/Portlets in ColdFusion?

2008-04-10 Thread Gerald Guido
Funny you should ask. I just ran into this today. I have not looked into it. I am just aware of it's existence. http://www.homeportals.net/ FarCry is another that is rather popular. http://www.farcrycms.org/ On Thu, Apr 10, 2008 at 12:25 PM, David Simcik [EMAIL PROTECTED] wrote: I noticed

Re: Migrating to Application.cfc

2008-04-10 Thread Patrick Santora
This question has been tossed around a few lists lately. I have not verified, but from what I understand as long as you have the same application name within the application.cfc and application.cfm files, then you should be ok. On Thu, Apr 10, 2008 at 9:38 AM, Jeff Price [EMAIL PROTECTED] wrote:

Re: Migrating to Application.cfc

2008-04-10 Thread Barney Boisvert
As long as you use the same application name, the application has no awareness of an Application.cfm/cfc distinction. Only the Application.* file itself is different. Both have strengths and weaknesses. cheers, barneyb On Thu, Apr 10, 2008 at 9:38 AM, Jeff Price [EMAIL PROTECTED] wrote: This

RE: Portals/Portlets in ColdFusion?

2008-04-10 Thread Nick Gleason
David, Hi there. We have a portal-like app at www.citysoft.com. Let me know offline if you want any more info. Best, Nick . .. Nick Gleason | CitySoft, Inc. | http://www.citysoft.com Direct: (617) 899-5395 |

cfgrid and grid.refresh on Safari

2008-04-10 Thread Chad Gray
Safari 2.0.4 on my Mac does not like this on CFGrid: cfinput type=button name=searchBtn value=Insert onclick=ColdFusion.Grid.refresh('FirstGrid', false); / It does not submit my form data to the bound cfc and it does not refresh the cfgrid. All other browsers the form data is submitted and

Ajax Problem: Callback isn't happening.

2008-04-10 Thread RobG
I'm hoping somebody has seen this problem before... I'm using cfajaxproxy to proxy to my CFC... that works fine. My local javascript creates the instance of the proxy, then sets the callback hander, and then calls the CFC in the function. This all works great, and up until sometime last night,

Re: Migrating to Application.cfc

2008-04-10 Thread Qasim Rasheed
Barney, I would be interested in knowing what are the weaknesses in Application.cfc based on your expertise. Thanks On Thu, Apr 10, 2008 at 12:47 PM, Barney Boisvert [EMAIL PROTECTED] wrote: As long as you use the same application name, the application has no awareness of an

Re: Ajax Problem: Callback isn't happening.

2008-04-10 Thread RobG
Followup... no callbacks are happening related to ajax. I have an AutoSuggest setup with CFINPUT on another page, and it works (it returns values according to firebug) but they too never appear on screen. So something is globally hosed... Rob

Re: Looking for creative implementation of cf ajax related tags/functions

2008-04-10 Thread Don L
Just out of curiosity... if you cannot garner the functionality that you desire of the built-in tag, why be limited by it? There are a plethora of other Ajaxy type libraries available that can help accomplish a goal, why limit yourself to just one? Matthew Williams Geodesic GraFX

Re: Migrating to Application.cfc

2008-04-10 Thread Barney Boisvert
The primary one is that you can't set variables in the page's variables scope without using onRequest, which breaks remote calls. You can use the request scope from onRequestStart, of course, but there are different semantics for that (like being shared across CFCs/custom tags). Less troubling,

How can I copy/move a file from coldfusion server (data area) to the my local machine

2008-04-10 Thread sandeep saini
Hi, How can I copy/move a file from coldfusion server (data area) to the my local machine . Looking for a reply. thanks ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

RE: How can I copy/move a file from coldfusion server (data area) to the my local machine

2008-04-10 Thread Andy Matthews
You cannot. That would be a breach of security. The best you can do is to force a file download box to be displayed. But then the user takes over and you have no more input in the matter. -Original Message- From: sandeep saini [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008

Re: Portals/Portlets in ColdFusion?

2008-04-10 Thread Brian Swartzfager
I noticed that Adobe Labs has a newish portal/portlet framework out that sits atop WebSphere Portal. Where'd you see that? I just poked around Adobe Labs (briefly, I'll grant you) and didn't see what you're describing: what's it called? -- Brian Swartzfager [EMAIL PROTECTED]

Re: How can I copy/move a file from coldfusion server (data area) to the my local machine

2008-04-10 Thread Ian Skinner
Andy Matthews wrote: You cannot. That would be a breach of security. The best you can do is to force a file download box to be displayed. But then the user takes over and you have no more input in the matter. You can, if both machines are on the same well defined network domain and

NumberForamt Issue with csv file

2008-04-10 Thread Tech Gate
//CFMX I have a query returning employee, jobcode: cfquery name=GetHR datasource=MyHRDB select employee, jobcode from hrdb /cfquery The query returns: 0235981332 0289772908 0324090180 0373253350 0422426220 0481403121 0514820430 0561763110 .. cfset

Re: NumberForamt Issue with csv file

2008-04-10 Thread Dominic Watson
Are you opening the file in a plain text editor? If not, try that - you may find that excel (or whatever spreadsheet software) is just displaying the numbers without the zero even though they are in fact there in the file. Dominic -- Blog it up: http://fusion.dominicwatson.co.uk

Re: NumberForamt Issue with csv file

2008-04-10 Thread Kris Jones
You want this data to format as text, not numeric. Excel will automatically format what it thinks are numerics without any leading zeros. Check the file in notepad or some other straight-up text editor. When saving a csv file from Excel, make sure you format the columns as text prior to saving

Re: Migrating to Application.cfc

2008-04-10 Thread Don L
The primary one is that you can't set variables in the page's variables scope without using onRequest, which breaks remote calls. You can use the request scope from onRequestStart, of course, but there are different semantics for that (like being shared across CFCs/custom tags). Less troubling,

Re: NumberForamt Issue with csv file

2008-04-10 Thread Dominic Watson
Creating an excel xml file may be useful here - you can specify the formatting of cells. Ben Nadel has an excellent howto: http://www.bennadel.com/blog/461-Creating-Microsoft-Excel-Documents-With-ColdFusion-And-XML.htm Dominic -- Blog it up: http://fusion.dominicwatson.co.uk

Re: NumberForamt Issue with csv file

2008-04-10 Thread Tech Gate
When I open the csv file with notepad, indeed, the format is right in notepad as I want. So, the task is how to write the data in text format. I am generating the file through cfoutput query Please advise. thx much On Thu, Apr 10, 2008 at 3:18 PM, Kris Jones [EMAIL PROTECTED] wrote: You

Re: NumberForamt Issue with csv file

2008-04-10 Thread morgan l
You'll have to surround each data column with quotes, either one at a time in the cfset CONTENT=#employee#, #jobcode# line ( cfset CONTENT= '#employee#,#jobcode#'), or with a cfset CONTENT = ListQualify(CONTENT,'',,,all) statement before the cffile append line.

RE: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Rick Faircloth
Thanks, Paul... Rick -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 12:18 PM To: CF-Talk Subject: Re: cf8: Scheduled Tasks: cfftp sure.. was simple, just had to pass url vars do bypass security. let me know what you need when you

Re: NumberForamt Issue with csv file

2008-04-10 Thread Tech Gate
surround each data column with quotes, either one at a time If I put the quotes at a time, I am getting the error below. Invalid CFML construct found on line 20 at column 44.ColdFusion was looking at the following text:p,/ppThe CFML compiler was processing:ullia cfset tag beginning on line 20,

Re: NumberForamt Issue with csv file

2008-04-10 Thread Tech Gate
On Thu, Apr 10, 2008 at 3:53 PM, morgan l [EMAIL PROTECTED] wrote: You'll have to surround each data column with quotes, either one at a time in the cfset CONTENT=#employee#, #jobcode# line ( cfset CONTENT= '#employee#,#jobcode#'), or with a cfset CONTENT = ListQualify(CONTENT,'',,,all)

Re: NumberForamt Issue with csv file

2008-04-10 Thread morgan l
ListQualify() can't be made to only affect certain elements, no. And if setting them inline didn't work, hmm... Some DB's will allow concatenation in the select: MySQL would be something like: SELECT Concat('', employee, '') as textEmployee, Concat('', jobcode, '') as textJobcode or maybe

Cant find datasource in CFC

2008-04-10 Thread Colman, Richard
I know the datasource is there, in the root directory. So why can't the CFC find it ...?? Element DATASOURCE is undefined in APPLICATION. The error occurred in /var/www/html/coda/datatrack/DataTrack.cfc: line 14 12 :cfargument name=getType default=ALL type=String required=yes

Tutorial on creating this pagination?

2008-04-10 Thread Rick Faircloth
Anyone know of a tutorial that would teach me how to setup pagination that would work like this: Previous 1 2 ... 8 9 [10] 11 12 ... 39 40 Next - Previous Link - Next Link - First one or two pages - Last one or two pages - Current Page (represented by the [10]) - Several links

Re: Tutorial on creating this pagination?

2008-04-10 Thread Nathan Strutz
Rick, Check out my pagination.cfc: http://www.dopefly.com/projects/pagination/ It's currently 1.0 RC, full release coming soon. Check out the documentation live examples (code available in the download) to do basically exactly what you want. -- nathan strutz http://www.dopefly.com/ On Thu,

Re: Portals/Portlets in ColdFusion?

2008-04-10 Thread Adam Haskell
http://labs.adobe.com/wiki/index.php/ColdFusion_Portlet_Toolkit Buddy of mine also has a similar project for jboss portal, I need to poke him some more about getting it posted. Course it would probably help if I got that server up and running I keep talking about with him... Adam Haskell On

Re: Tutorial on creating this pagination?

2008-04-10 Thread Sonny Savage
Have you looked at this? http://paginationcfc.riaforge.org/ On Thu, Apr 10, 2008 at 5:15 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Anyone know of a tutorial that would teach me how to setup pagination that would work like this: Previous 1 2 ... 8 9 [10] 11 12 ... 39 40 Next

Re: Cant find datasource in CFC

2008-04-10 Thread Nathan Strutz
Other than the obvious comment about how calling variables straight out of the application from within a CFC breaks your object encapsulation ( http://en.wikipedia.org/wiki/Separation_of_concerns) -- I would suggest dumping before your query. cfdump var=#application# /cfabort / if that doesn't

Re: Cant find datasource in CFC

2008-04-10 Thread Ian Skinner
Colman, Richard wrote: I know the datasource is there, in the root directory. So why can't the CFC find it ...?? Most likely because the cfc is not in the root or a sub-directory under the root. If so then it is not being associated with any application.cfc|cfm file that may be in that root

Re: cfdocument on cf8 and unix/linux

2008-04-10 Thread Dave Phillips
If you have the administrator password you can get a snapshot through the Admin API or through the server monitor. Have to get assistance from someone else tomorrow on this as I don't have admin access. This looks familiar. Can you try the following code: cfsetting requesttimeout=60

RE: Tutorial on creating this pagination?

2008-04-10 Thread Rick Faircloth
Thanks for the tip, Nathan... I'll definitely check it out! Rick -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 5:22 PM To: CF-Talk Subject: Re: Tutorial on creating this pagination? Rick, Check out my pagination.cfc:

RE: Tutorial on creating this pagination?

2008-04-10 Thread Rick Faircloth
Thanks for the tip, Sonny, I'll check it out! Rick -Original Message- From: Sonny Savage [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 5:22 PM To: CF-Talk Subject: Re: Tutorial on creating this pagination? Have you looked at this? http://paginationcfc.riaforge.org/

OT: domain registrar

2008-04-10 Thread Jenny Gavin-Wear
Hi all, I'm looking for a good domain name registrar with: 1. a good control panel, including nameserver changes 2. decent rates on domain name registrations 3. an affiliatiate/partner programme (api would be handy) If anyone springs to mind the info would be much appreciated. TIA, Jenny No

Re: OT: domain registrar

2008-04-10 Thread Patrick Santora
hate godaddy.com, love register.com. Not sure about the API with register.com though. On Thu, Apr 10, 2008 at 3:14 PM, Jenny Gavin-Wear [EMAIL PROTECTED] wrote: Hi all, I'm looking for a good domain name registrar with: 1. a good control panel, including nameserver changes 2. decent rates

Re: domain registrar

2008-04-10 Thread Peter Donahue
Hello Jenny and listers, I highly recommend: http://www.nameregistrars.com Their annual charge for most domains is $14.95, but they'll give you hefty discounts if you register a domain for multiple years. For example I was able to register several site domains for 10 years for around

Open Source CF Shopping Carts

2008-04-10 Thread Dave Phillips
Hi all, I'm looking at shopping cart solutions and am wondering what some of you have used in the past as far as 'off the shelf' stuff that is written in ColdFusion. Specifically ones that are open source so they can be customized. Thanks! Dave

RE: domain registrar

2008-04-10 Thread ColdFusion
Sorry I have been using GoDaddy for many years and at a rate of about $8 or $9 per domain, not a bad price. Easy interface and such. -Original Message- From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 6:14 PM To: CF-Talk Subject: OT: domain registrar Hi

RE: domain registrar

2008-04-10 Thread Jenny Gavin-Wear
thanks Peter .. i should have mentioned, I need .co.uk registrations, too. -Original Message- From: Peter Donahue [mailto:[EMAIL PROTECTED] Sent: 10 April 2008 23:21 To: CF-Talk Subject: Re: domain registrar Hello Jenny and listers, I highly recommend:

RE: OT: domain registrar

2008-04-10 Thread Jenny Gavin-Wear
thanks patrick .. agreed on godaddy, real pain. -Original Message- From: Patrick Santora [mailto:[EMAIL PROTECTED] Sent: 10 April 2008 23:18 To: CF-Talk Subject: Re: OT: domain registrar hate godaddy.com, love register.com. Not sure about the API with register.com though. On Thu, Apr

Re: domain registrar

2008-04-10 Thread Peter Donahue
Hello Jenny and listers, I'm sure they can take care of you with that as well. Peter Donahue - Original Message - From: Jenny Gavin-Wear [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, April 10, 2008 5:36 PM Subject: RE: domain registrar thanks Peter .. i

Re: OT: domain registrar

2008-04-10 Thread Peter Donahue
Hello Jenny and listers, Not meaning to get on the soap box again but GoDaddy also has accessibility issues for those of us that use adaptive software. Peter Donahue - Original Message - From: Jenny Gavin-Wear [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday,

RE: OT: domain registrar

2008-04-10 Thread Jim Davis
On Thu, Apr 10, 2008 at 3:14 PM, Jenny Gavin-Wear [EMAIL PROTECTED] wrote: Hi all, I'm looking for a good domain name registrar with: 1. a good control panel, including nameserver changes 2. decent rates on domain name registrations 3. an affiliatiate/partner programme (api

Re: Open Source CF Shopping Carts

2008-04-10 Thread Bob Dronski
Dave, I originally thought about writing my own shell until I found CFWebstore. The bang for the buck is great. And their yahoo group is a great source of support. Between the community and CFWebstore quickly responding to all questions, it's the best way to get tech support. I have no

Re: Open Source CF Shopping Carts

2008-04-10 Thread Bob Dronski
Forgot to mention All the source is open and available. I've been doing a lot of customizing the code for ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Open Source CF Shopping Carts

2008-04-10 Thread Josh Nathanson
I originally thought about writing my own shell until I found CFWebstore. The bang for the buck is great. And their yahoo group is a great source of support. Between the community and CFWebstore quickly responding to all questions, it's the best way to get tech support. I have no

Re: Open Source CF Shopping Carts

2008-04-10 Thread Bob Dronski
Forgot to mention All the source is open and available. I've been doing a lot of customizing the code for Damned Enter key ;-) Anyway, you get the idea. bob ~| Adobe® ColdFusion® 8 software 8 is the most

RE: Tutorial on creating this pagination?

2008-04-10 Thread Rick Faircloth
Nathan, Just wanted to let you know that I implemented your component and it went perfectly...and that was the first cfc I've ever used! I haven't gone beyond the default settings, except for number of records per page, but I'm sure customizing will go well, too. Nice clear instructions for the

Re: OT: domain registrar

2008-04-10 Thread Gerald Guido
my $.02 Domainmonger.com an bulkregister.com Have used them for years. I love Domainmonger. A bit pricey but worth it. G On Thu, Apr 10, 2008 at 6:14 PM, Jenny Gavin-Wear [EMAIL PROTECTED] wrote: Hi all, I'm looking for a good domain name registrar with: 1. a good control panel,

RE: domain registrar

2008-04-10 Thread Bobby Hartsfield
No need to apologize. :-) All of my domains are through godaddy as well. I've never had a complaint. ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: ColdFusion [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 6:33 PM

Re: CF8 - Why is my ajax undefined?

2008-04-10 Thread Tim Brown
I have a page that uses cfwindow. It works fine on my dev machine. Works fine at CrystalTech shared hosting... But on my HostMySite VPS server, I get undefined errors in Firebug. Does the /CFIDE URL properly resolve on that server? My guess is that it doesn't. Whenever you have a problem

Re: Tutorial on creating this pagination?

2008-04-10 Thread Nathan Strutz
Awesome, glad it worked, thanks for the review. I'm blogging this. :) On Thu, Apr 10, 2008 at 6:08 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Nathan, Just wanted to let you know that I implemented your component and it went perfectly...and that was the first cfc I've ever used! I haven't

RE: Tutorial on creating this pagination?

2008-04-10 Thread Rick Faircloth
Be my guest! I'm looking forward to using some of the custom designs that you've created, as well! Rick -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 11:11 PM To: CF-Talk Subject: Re: Tutorial on creating this pagination?

Re: Tutorial on creating this pagination?

2008-04-10 Thread Will Tomlinson
Nathan, Just wanted to let you know that I implemented your component and it went perfectly...and that was the first cfc I've ever used! My god son!! :) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

RE: Tutorial on creating this pagination?

2008-04-10 Thread Rick Faircloth
I knew I hear from you, Will! :o) Yep, that was the first file I've had on my system with a .cfc extension! I'm catching up, *slowly* but surely! Rick -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 11:29 PM To: CF-Talk Subject: Re: