Re: Error with Web Connector after installing CFMX 6.1

2003-11-25 Thread Mahmut Basaran
Here is what you should check: 1. Make sure no firewall software is running at the time you install cf. 2. Make sure you don't have ipsec or tcp/ip filtering enabled during installation. 3. If you don't have firewall stuff, your problem could be the regional settings of your server (some say you

Re: Error with Web Connector after installing CFMX 6.1

2003-11-24 Thread Mahmut Basaran
I had a similar problem a while ago, although it says localhost it's not really using localhost (it's using the static ip of your box). so, if you have any firewalls, ipsec rules etc.. disable them and run the connector executable again. You can also check the log files to dig more info. -

Re: preventing back button of browser

2003-11-24 Thread Mahmut Basaran
I wrote that script a while (2 years something) ago with my friend Joseph Thompson (also from the list). http://cfhub.com/contributions/backbutton/ you can probably improve the code (to make it less), anyway, it should be fine as it is. completely server side logic, there is also a live demo you

Re: Help with Transact SQL

2003-09-25 Thread Mahmut Basaran
you can use the following to update all rows at once: update tablename set uri_column = 'http://etc.com/etc' + uri_column - Original Message - From: Frank Mamone [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 25, 2003 1:38 AM Subject: Help with Transact SQL

Re: about blue dragon.

2003-09-07 Thread Mahmut Basaran
thanks, was just curious about the specs of the notebook. - Original Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, September 07, 2003 4:59 AM Subject: Re: about blue dragon. On Saturday, Sep 6, 2003, at 17:42 US/Pacific, Matt Liotta

Re: about blue dragon.

2003-09-06 Thread Mahmut Basaran
what kind of notebook is it ? - Original Message - From: Matt Liotta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, September 07, 2003 12:46 AM Subject: Re: about blue dragon. can blue dragon run alongside cfmx server? Sure, they just have to be on different ports.

shipping label query

2003-09-02 Thread Mahmut Basaran
I'm tryin to setup a sheet for printing shipping labels. Orders are stored in two tables as usual. [orders] (firstname, lastname, address etc) [orderdetails] (shopping cart contents - prdID, quantity, options etc) I tried to select the data from orderdetails with a subquery but it didn't work

Re: Access SQL Question :(

2003-08-01 Thread Mahmut Basaran
try to use [ ] in column names, like [MAKE], you can also partially delete the sql statement one by one to find the bad row. - Original Message - From: Tim Heald [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 01, 2003 4:19 PM Subject: Access SQL Question :(

Re: Safe to Upgrade to MX?

2003-07-12 Thread Mahmut Basaran
if you're using access lists on your ntfs partition make sure c:\cfusionmx\wwwroot folder has write permissions set. if you're using com objects make sure you updater3 installed for cfmx. If it still doesn't work, use asp pages for com objects. if you're using a non-english w2k server and cfmx

Re: Page break for dynamic tables.

2003-07-11 Thread Mahmut Basaran
as far as I remember, you need to define print instructions on a seperate stylesheet block. STYLE MEDIA=print TABLE { page-break-before: auto ;} /STYLE haven't tested the above, but it should work fine. I have a page that displays a query in several different size tables using cfloop. When I

RE: I knew your name was Neo

2003-07-09 Thread Mahmut Basaran
just begun, Mahmut Basaran Mahmut, While I also agree that your email was in bad taste...I do also have to agree with most things you said. I think most people on this list went through what you've gone through. I can't even count the number of posts to cf-talk that asked about

Re: I knew your name was Neo

2003-07-08 Thread Mahmut Basaran
going to resolve any of your issues? It sucks you had so many problems, but please do not act like a child. The cf-talk list is available to help you and work with you. MX is not perfect, but its getting there. Don't give up yet. Mike -Original Message- From: Mahmut Basaran [mailto:[EMAIL

Re: Anti-Spam Email harvesting

2003-07-08 Thread Mahmut Basaran
you can create a javascript .js file and place a javascript funtion (document.write) into the js file. Then include it to your webpage via script src=etc and then call it from the webpage. - Original Message - From: Ian Skinner [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Re: IIS and making SES URLs work [WAS: Search Engine Optimization]

2003-07-08 Thread Mahmut Basaran
You should also check this website: http://www.fusium.com/index.cfm?fuseaction=view.aProductcontentObjectID=5DA 3DC7A-1C03-4367-A7B90A1EEE3EF675#sesConverter Also, if you're using iis lockdown, make sure allowdotinpath is set to 1 otherwise ses urls will not work. - Original Message -

Re: insert multiple records into multiple tables

2003-07-08 Thread Mahmut Basaran
you can use this: input name=name1 input name=name2 input name=name3 etc... input type=hidden name=fields value=3 and then cfloop from=1 to=#form.fields# index=i cfquery code here insert into names (name) values (#evaluate('form.name' i)) /cfquery ends here - Original Message -

I knew your name was Neo

2003-07-07 Thread Mahmut Basaran
Hi Macromedia, How's it going bro ? I hope you're doing well. Do you know what happened last night.. I know you're really busy but you definetly should read that. I spent more than 10 hours to get cf mx working. I tried several installs and uninstalls (which takes longer than install),

Re: I knew your name was Neo

2003-07-07 Thread Mahmut Basaran
VERY feature-rich administrator It's the greatest admin, missing log file link in first release was another great feature. fail over Great feature, it definetly fails over on you from time to time. Good thing is it doesn't even tell you unless you type some weird commands during install.

Re: SQL Question: Selecting records where there are multiple occurrences

2003-06-28 Thread Mahmut Basaran
Something like this should work: select count(state), state from orders group by state having (count(state) 400) Mahmut from Turkiye - Original Message - From: Brook Davies [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 26, 2003 12:10 AM Subject: SQL Question:

Re: Calendar App

2003-06-26 Thread Mahmut Basaran
I wouldn't mind having a copy as well! - Original Message - From: Bosky, Dave [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 26, 2003 5:55 AM Subject: RE: Calendar App I did a simple calendar app a few years ago, I could make it a lot better now but it works

Re: Matrix problem

2003-03-17 Thread Mahmut Basaran
You may consider using sub queries. They may slow down the queries a bit, but it will work in the way you would like. SELECT firstname, lastname, someothercolumn , (SELECT COUNT(*) FROM Orders WHERE orders.customerID = customers.customerID) as totalOrders , (SELECT COUNT(*) FROM Referrals WHERE

Re: flash forms

2003-03-16 Thread Mahmut Basaran
- Original Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, March 15, 2003 10:24 PM Subject: Re: flash forms On Sunday, Mar 16, 2003, at 03:52 US/Pacific, Mahmut Basaran wrote: I have 3 page html form that I want to build in flash. So far

Re: flash forms

2003-03-16 Thread Mahmut Basaran
: flash forms On Sunday, Mar 16, 2003, at 03:52 US/Pacific, Mahmut Basaran wrote: I have 3 page html form that I want to build in flash. So far, I couldn't figure out how to put all of them into one .swf file. I tried making 3 different flash forms and calling them with loadMovie

Re: Access SQL question

2003-03-16 Thread Mahmut Basaran
This one works fine in sql server, but you need to test it with ms access. SELECT RIGHT(emailAddress, CHARINDEX('@', REVERSE(emailAddress))-1) AS [domainName] FROM dbo.customers GROUP BY RIGHT(emailAddress, CHARINDEX('@', REVERSE(emailAddress))-1) ORDER BY [domainName] - Original

Re: flash forms

2003-03-16 Thread Mahmut Basaran
into design and out of my realm... :) On Sunday, Mar 16, 2003, at 20:23 US/Pacific, Mahmut Basaran wrote: Also, is there a way to make html style textboxes (that has depth) in flash ? at the moment, all I can do is black borders around text areas

flash forms

2003-03-15 Thread Mahmut Basaran
Hi, Has anyone got experience in building flash forms ? Is there a checklist that I should have? I have 3 page html form that I want to build in flash. So far, I couldn't figure out how to put all of them into one .swf file. I tried making 3 different flash forms and calling them with

wait for cfexecute

2003-03-07 Thread Mahmut Basaran
I'm writing an import / export function with the bcp.exe that comes with sql server. When I execute the command via cfexecute, coldfusion doesn't wait for bcp to return a response, and continues to process the rest of the command. Is there a workaround for this ? may be cflock ?

iis authentication problem

2003-03-02 Thread Mahmut Basaran
I'm having some problems with cf mx and iis 5.0. For every cfmx request iis is responding with a login pop up. If you enter administrator / password, template continues to execute. I checked the folder permissions for c:\inetpub and c:\cfusionmx\inetpub and gave full access to everyone group

Re: iis authentication problem

2003-03-02 Thread Mahmut Basaran
as it looks like this was the problem. Mahmut - Original Message - From: Mahmut Basaran [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 03, 2003 3:11 AM Subject: iis authentication problem I'm having some problems with cf mx and iis 5.0. For every cfmx request iis

Re: NEVERMIND...sql 2000 vs sql 2000 enterprise

2003-02-05 Thread Mahmut Basaran
As far as I know sql2000 personal edition supports more than 2gb database size. and as far as I know 2gb was the limit of sql 7.0 personal edition. - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, February 05, 2003 10:41 AM Subject:

speed test website

2003-02-04 Thread Mahmut Basaran
Is it possible to make an internet connection speed analyzer with coldfusion ? If not, what's the best way to make such an application ? Has anyone got any experiences ? Thanks, Mahmut ~| Archives:

Re: speed test website

2003-02-04 Thread Mahmut Basaran
yes, right. Is there a way to do the speed test in flash mx ? - Original Message - From: Thane Sherrington [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, February 04, 2003 6:25 AM Subject: Re: speed test website At 04:18 PM 02/04/03 -0800, Mahmut Basaran wrote

Re: telnet server w2k - is it safe to use ?

2003-01-26 Thread Mahmut Basaran
I was planning to use the telnet server to give access to hosting customers like they do in *nix enviroments, but you're right, it's not the right way to do it. I'm going to dig more about ssh on w2k. Thank you very much, Mahmut - Original Message - From: Dave Watts [EMAIL PROTECTED]

Re: Any way to send notice of a request for info to a cell phone?

2003-01-26 Thread Mahmut Basaran
you can also consider using an email to sms gateway or sms APIs. http://www.clickatell.com - you can install their com object and directly integrate it with your website. http://www.ipipi.com - a great email to sms gateway, let's you setup forwarders for each email address. Looks down since

telnet server w2k - is it safe to use ?

2003-01-25 Thread Mahmut Basaran
Hello, I wonder if anyone has experience with using the telnet server that ships with windows 2000 ? Has anyone got a things to consider before using list ? Any comment is greatly appreciated, Mahmut ~| Archives:

Re: Security Issue With PayPal CF

2003-01-20 Thread Mahmut Basaran
You can use cfheader cfheader name=Location value=http://etc.com/somethinghere.zip cfheader statusCode = 302 statusText = Status Text Here -not crucial Mahmut - Original Message - From: Double Down, Inc. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January 20, 2003

Re: Visual Fusion - Thoughts?

2003-01-14 Thread Mahmut Basaran
That would be a dope thing for sure, the question is how much is it going to cost ? - Original Message - From: Pablo Varando [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 14, 2003 2:11 PM Subject: Re: Visual Fusion - Thoughts? No, they are stand-alone just as

Re: parent - child relations

2003-01-10 Thread Mahmut Basaran
Although xml is the proper way to display data, I need to calculate data. I'm still working on it. If I come up with anything (hopefully) I'm going to post it to the forums. Thanks everyone, Mahmut - Original Message - From: Rob Rohan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

site-wide error handler

2003-01-10 Thread Mahmut Basaran
Hi All, I'm trying to implement a site-wide error handler. Although it works with a static page (an error occured etc..), I had no luck with putting cf logic into the error handler (cfmail). Has anyone successfuly implemented this in cf mx ? Thank you, Mahmut

Re: site-wide error handler

2003-01-10 Thread Mahmut Basaran
Hi All, I'm sorry for the confusion, I was trying to setup a site-wide error handler in cf administration. I did but it doesn't work. This is what did: 1) made a template called handleOurErrors.cfm in /sitewide 2) put /sitewide/handleOurErrors.cfm in cfadmin - settings - sitewide box 3) call a

parent - child relations

2003-01-08 Thread Mahmut Basaran
it to calculate sales totals of affiliates where an affiliate can have their own sub affiliates, and a sub affiliate can have its own ones too etc... Any advise is greatly appreciated, Mahmut Basaran ~~oO Measure Twice Cut Once Oo

Re: Getting Just A Directory Name

2002-12-31 Thread Mahmut Basaran
Hi Mike, You can use LISTLAST(directoryVariable,'\'). Mahmut Basaran ~~oO Measure Twice Cut Once Oo ~~ - Original Message - From: Mike Alberts [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 31, 2002 5:03 PM Subject: Getting Just A Directory Name Hello All

Re: CF and Authorize.net

2002-12-18 Thread Mahmut Basaran
or ListToArray to evaluate. Mahmut Basaran Measure Twice Cut Once - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 17, 2002 11:27 PM Subject: CF and Authorize.net Hey All, I'm trying to implement the WebLink service offered

Re: AbleCommerce

2001-12-03 Thread Mahmut Basaran
Hi Chris, I agree with the others, it is great for standart use. But when it comes to editing, I can't say the same. If you are planning to add new features, you should better write the code yourself. I remember I spent 3 hours at my first shopping cart modification. Mahmut Basaran Measure

Re: Terrorism

2001-09-11 Thread Mahmut Basaran
Amen we all believe in same god. - Original Message - From: admin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 11, 2001 7:48 PM Subject: Re: Terrorism Amen - Original Message - From: Scott Van Vliet [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: Terrorism

2001-09-11 Thread Mahmut Basaran
Not sure I completely agree with that, but a lot of it makes sense, Let me tell, how this tragedy looks from Turkey, Most of the people here belive that this happened to USA, because new government could not keep the balance like clinton did. It's because that you supported Israel more than

Re: Terrorism

2001-09-11 Thread Mahmut Basaran
I'm from Turkey, I will be happy If I can do something from here. Just let me know, - Original Message - From: Yager, Brian T Contractor/NCCIM [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 12, 2001 1:13 AM Subject: RE: Terrorism Alright people...We have

Re: DNS Question

2001-09-04 Thread Mahmut Basaran
it should look like this, SKILLPATH.NET is A record for 150.155.111.258 WWW.SKILLPATHNET is a CNAME to SKILLPATH.NET MAIL.SKILLPATH.NET is Mailserver for DUCKTOR.NET Mahmut Basaran [Measure Twice, Cut Once] - Original Message - From

Re: Server monitoring tools

2001-09-03 Thread Mahmut Basaran
may be, you should do a test to your memory... Mahmut Basaran [measure twice, cut once] - Original Message - From: Mike Brunt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, September 03, 2001 11:04 PM Subject: RE: Server monitoring tools Pretty basic, reasonable

Re: Server monitoring tools

2001-09-03 Thread Mahmut Basaran
Forgive my english, I mean a ram test. You can download a ram test software from download.com. Last month we were having the same problems, and after 2 days of debugging we found out that it was our rams that caused the server crash. Mahmut Basaran [Measure Twice, Cut Once] - Original

Re: Who's on

2001-09-01 Thread Mahmut Basaran
There is a nice tag at http://cfhub.com/tutorials/online/ it also displays them by page grouping - Original Message - From: Peter Tilbrook [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, September 01, 2001 12:00 PM Subject: Who's on What would be the best way

Re: SQL

2001-08-31 Thread Mahmut Basaran
First of all, while inserting dates, be sure field is set up as a date/time field. Then, if you are using an ms access database, you must not use single quotes. insert into tablename (username, password, createDate) values ('#Form.UserName#', '#Form.Password#', #CreateODBCDate(Now())#) also you

Re: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-28 Thread Mahmut Basaran
Hello safe characters... I sometimes have problems with the encrypt functions. Can someone point me where can I learn the safe characters? thanks, Mahmut - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, August 28, 2001 3:32 PM

Re: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-28 Thread Mahmut Basaran
to the DB. Tim Heald ACP/CCFD :) Application Development http://www.schoollink.net/ -Original Message- From: Mahmut Basaran [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 28, 2001 8:54 AM To: CF-Talk Subject: Re: Encryption differences in ColdFusion 4.5 and 5.0? Hello safe

Re: OT: Way Slow web pages

2001-08-23 Thread Mahmut Basaran
Have you scanned your server for CODE RED? TH Mahmut Basaarn - Original Message - From: Shawn Grover [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 10:31 PM Subject: RE: OT: Way Slow web pages if you are accessing an MS Access database, open the db