Re: Country/City/Province List for DB import

2008-05-01 Thread [STS] Ravi Gehlot
Thanks Richard. On Wed, Apr 30, 2008 at 12:52 PM, Richard Dillman [EMAIL PROTECTED] wrote: theirs an sql script at http://forums.asp.net/t/1045550.aspx appears to have all countries and provinces/states for Canada, US, and UK On 4/30/08, [STS] Ravi Gehlot [EMAIL PROTECTED] wrote: I

Business Venture

2008-05-01 Thread [STS] Ravi Gehlot
I am interested in starting my own business once again doing hosting but the main goal here is to have a server in which we have total access and own it. Also, the goal is to focus on web development rather than hosting. The person(s) interested in the venture should be able to come up with money

Re: Business Venture

2008-05-01 Thread [STS] Ravi Gehlot
unless expressly authorized otherwise by the sender. If you are not an authorized recipient, please notify the sender immediately and permanently destroy all copies of this message and attachments. On Thu, 2008-05-01 at 10:53 -0400, [STS] Ravi Gehlot wrote: I am interested in starting my own

Country/City/Province List for DB import

2008-04-30 Thread [STS] Ravi Gehlot
I know this question has already been asked and I unfortunately I lost my bookmarks and now I am here asking it again. What's that website with the list of country/cities to import to the database? Someone had passed through a FREE site with a complete list of countries/cities with link to

Re: getex replace

2008-04-19 Thread [STS] Ravi Gehlot
Message- From: [STS] Ravi Gehlot [mailto:[EMAIL PROTECTED] Sent: Thursday, April 17, 2008 8:22 PM To: CF-Talk Subject: getex replace I have a list I obtained from export ldap members out of a ldap directory in LDIF format that looks like this: memberUserName: John Doe memberAge: 34

getex replace

2008-04-17 Thread [STS] Ravi Gehlot
I have a list I obtained from export ldap members out of a ldap directory in LDIF format that looks like this: memberUserName: John Doe memberAge: 34 memberLocation: US memberEmail: [EMAIL PROTECTED] memberUserName: Mary Doe memberAge: 44 memberLocation: US memberEmail: [EMAIL PROTECTED]

Re: cfhttp stopped working, anyone experienced this

2008-04-17 Thread [STS] Ravi Gehlot
Cool. On Thu, Apr 17, 2008 at 5:39 PM, Scott Mulholland [EMAIL PROTECTED] wrote: Trapping it just showed me it was a connection timeout. Oddly (or not) a reboot seems to have fixed this. -Original Message- From: AJ Mercer [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 16, 2008

Re: cfhttp stopped working, anyone experienced this

2008-04-16 Thread [STS] Ravi Gehlot
Try using cfsetting timeout=3600 Ravi. On Wed, Apr 16, 2008 at 9:26 PM, Cutter (CFRelated) [EMAIL PROTECTED] wrote: If you can browse and ping then I doubt your firewall is at fault, unless your calling in a file whose MIME type isn't registered with the firewall. CFHTTP uses port 80 by

Using tags with CFSCRIPT

2008-04-14 Thread [STS] Ravi Gehlot
I found a way to cheat HostMySite's 1 domain per account set up. What this does is it checks the URL for the domain typed and it redirects it to a directory specific for that domain. That way I am able to host all my sites with the CF+ Builder package. My question is...I was about to achieve this

Re: Using tags with CFSCRIPT

2008-04-14 Thread [STS] Ravi Gehlot
) -Original Message- From: [STS] Ravi Gehlot [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 8:57 AM To: CF-Talk Subject: Using tags with CFSCRIPT I found a way to cheat HostMySite's 1 domain per account set up. What this does is it checks the URL for the domain typed

Re: Using tags with CFSCRIPT

2008-04-14 Thread [STS] Ravi Gehlot
Variable CFLOCATION is undefined. The error occurred in C:\Websites\156945dm2\index.cfm: line 4 2 : cfscript 3 : switch(cgi.http_host) { 4 : case 'www.brightWebWorks.com':cflocation(theURL:'brightWebWorks.com/'); break; 5 : 6 : } On Mon, Apr 14, 2008 at 9:13 AM, [STS] Ravi Gehlot [EMAIL

Re: Using tags with CFSCRIPT

2008-04-14 Thread [STS] Ravi Gehlot
().forward(/path/page.cfm); or GetPageContext().getResponse().sendRedirect('PageName.cfm') -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: [STS] Ravi Gehlot [mailto:[EMAIL

Re: Using tags with CFSCRIPT

2008-04-14 Thread [STS] Ravi Gehlot
Hi Dominic, Thank you for clarifying this whole thing. I had done a couple of searches on Google and I didn't read anything about creating an UDF. Obviously creating an UDF for this matter is not necessary when you can use cfswitch and cfcase but for the sake of learning lets say I were to

Re: Using tags with CFSCRIPT

2008-04-14 Thread [STS] Ravi Gehlot
Gotcha, would it be better to put these UDFs in CFCs and then instantiate them on Application.CFC? Ravi. On Mon, Apr 14, 2008 at 10:22 AM, Dominic Watson [EMAIL PROTECTED] wrote: Where would I place these UDFs so that whenever I needed them I could just call the function? Yeh, I

Re: Using tags with CFSCRIPT

2008-04-14 Thread [STS] Ravi Gehlot
Thanks. This issue is now resolved. Ravi. On Mon, Apr 14, 2008 at 10:35 AM, Dominic Watson [EMAIL PROTECTED] wrote: Gotcha, would it be better to put these UDFs in CFCs and then instantiate them on Application.CFC? I don't think so because then you would have to call them with:

Re: Using tags with CFSCRIPT

2008-04-14 Thread [STS] Ravi Gehlot
Hi Raymond, I am just being cheap. But the workaround with cfswitch/case works for now with HMS and it lets me have multiple domains in a shared hosting account. I don't have any hard feelings towards HMS; They have been good to me. But I would imagine that the cheat would only work with

Re: Using tags with CFSCRIPT

2008-04-14 Thread [STS] Ravi Gehlot
Hey Scott, I spoke to a couple of my senior developer friends and they told me that back in the days of CF5 cfscript was faster than tags but that doesn't hold true with CF7 and 8 so it doesn't really matter. I prefer to code in cfscript/cfscript blocks when I do imports...just my way of

Re: How to write this query?

2008-04-13 Thread [STS] Ravi Gehlot
Rick, You can use FROM and immediately use ON. That's why you have a syntax error. ON is used with joins. Ravi. On Sun, Apr 13, 2008 at 7:23 AM, Rick Faircloth [EMAIL PROTECTED] wrote: Thanks for the reply, Azadi. However, your solution has the same problem I encountered with a

Re: How to write this query?

2008-04-13 Thread [STS] Ravi Gehlot
I meant to say can not Ravi. On Sun, Apr 13, 2008 at 7:30 AM, [STS] Ravi Gehlot [EMAIL PROTECTED] wrote: Rick, You can use FROM and immediately use ON. That's why you have a syntax error. ON is used with joins. Ravi. On Sun, Apr 13, 2008 at 7:23 AM, Rick Faircloth [EMAIL

Re: weird issue in browser with cf8 and long execution times

2008-04-13 Thread [STS] Ravi Gehlot
It is weird that it asks you to save the index.cfm file. The only time I had that problem was when IIS was not configured to open CFM files. Same had happened with Apache. But since you are saying that the process are running on the background with data being inserted into the database it makes me

Re: CFLDAP question

2008-03-27 Thread [STS] Ravi Gehlot
Hey Nate, Thanks for your interest in trying to solve this problem. How do I ping the LDAP with Coldfusion? LDAP Browser and LDAP Administrator can access the LDAP Directory without a problem. Ravi. On Thu, Mar 27, 2008 at 9:59 AM, Nathan Smith [EMAIL PROTECTED] wrote: Can the