Re: Urgent help needed Please

2004-07-25 Thread Sangeeta Karmokar
Hi Guys, Thanks for the response. I did test and I am sure that CF server is not running. I am working on Mac OS X an Web Server is also installed on the same machine. So how to strart the server? Do I have to start manually or I have to run a batch file to start the server? Regards Sangeeta

Re: Urgent help needed Please

2004-07-25 Thread Dick Applebaum
If you installed CFMX under JRun4 in Applications: 1) Get into terminal mode (run /Applications/Utilities/Terminal 2) Start CFMX with: /Applications/JRun4/bin/jrun -start yourcfmxservername admin this will start both your and the admin server after a while the JMC will be available at:

Re: Urgent help needed Please

2004-07-23 Thread Greg Stewart
What is the error that is being returned? G On Thu, 22 Jul 2004 21:40:33 -0400, Sangeeta Karmokar [EMAIL PROTECTED] wrote: I am posting this question and no one is responding... Can anyone please respond. I think I am sounding dum in your world... Sangeeta Can anyone help me I am

Re: Urgent help needed Please

2004-07-23 Thread powell
? The action should be a page address. _ From: Sangeeta Karmokar [mailto:[EMAIL PROTECTED] Sent: Friday, 23 July 2004 3:45 p.m. To: CF-Talk Subject: Re: Urgent help needed Please Hi Matthew, Thanks for responding. I can see the cf markup when I submit it to the action page. Action page does

RE: Urgent help needed Please

2004-07-23 Thread Ken Ferguson
Sangeeta, Please provide more detail. Is the form sending this data a .cfm file? What's the name of the file with the SQL statement on it? In what scope are the variables name and email (url/form...)? --Ferg _ On Thu, 22 Jul 2004 21:40:33 -0400, Sangeeta Karmokar [EMAIL PROTECTED] wrote:

Urgent help needed Please

2004-07-22 Thread Sangeeta Karmokar
Can anyone help me I am new to CF. we have backend as MySql and I am trying to insert into a database created in SQL using this query: cfquery name=add datasource=newmembers INSERT INTO members (name,email) VALUES ('#name#','#email#') /cfquery But it is not adding to the

Re: Urgent help needed Please

2004-07-22 Thread Sangeeta Karmokar
Can anyone help me I am new to CF. we have backend as MySql and I am trying to insert into a database created in SQL using this query: cfquery name=add datasource=newmembers INSERT INTO members (name,email) VALUES ('#name#','#email#') /cfquery But it is not adding to the database,

Re: Urgent help needed Please

2004-07-22 Thread Charlie Griefer
this is like deja vu all over again. - Original Message - From: Sangeeta Karmokar [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, July 22, 2004 2:59 PM Subject: Re: Urgent help needed Please Can anyone help me I am new to CF. we have backend as MySql and I am

Re: Urgent help needed Please

2004-07-22 Thread Sangeeta Karmokar
I am posting this question and no one is responding... Can anyone please respond. I think I am sounding dum in your world... Sangeeta Can anyone help me I am new to CF. we have backend as MySql and I am trying to insert into a database created in SQL using this query:

RE: Urgent help needed Please

2004-07-22 Thread Matthew Walker
July 2004 1:41 p.m. To: CF-Talk Subject: Re: Urgent help needed Please I am posting this question and no one is responding... Can anyone please respond. I think I am sounding dum in your world... Sangeeta Can anyone help me I am new to CF. we have backend as MySql and I am trying

Re: Urgent help needed Please

2004-07-22 Thread Sangeeta Karmokar
p.m. To: CF-Talk Subject: Re: Urgent help needed Please I am posting this question and no one is responding... Can anyone please respond. I think I am sounding dum in your world... Sangeeta Can anyone help me I am new to CF. we have backend as MySql and I am trying to insert

RE: Urgent help needed Please

2004-07-22 Thread Matthew Walker
Your method should be post. What's your action? The action should be a page address. _ From: Sangeeta Karmokar [mailto:[EMAIL PROTECTED] Sent: Friday, 23 July 2004 3:45 p.m. To: CF-Talk Subject: Re: Urgent help needed Please Hi Matthew, Thanks for responding. I can see the cf markup when

Re: Urgent help needed Please Simon.....

2004-07-21 Thread Sangeeta Karmokar
Yes Simon I have closed the query, I forgot to paste it and I have sav ed as thanks.cfm. I think the problem will be as u mentioned coldfusion is not parsing c ode before handing it over to the webserver. we are working on Mac OS X with MySql. How to fix this problem... It was working fine on

Re: Urgent help needed Please Simon.....

2004-07-21 Thread Sangeeta Karmokar
Can anyone help me I am new to CF. we have backend as MySql and I am trying to inser into a database created in SQL using this query: cfquery name=add datasource=newmembers INSERT INTO members (name,email) VALUES ('#name#','#email#') /cfquery But it is not adding to the database,

Re: Urgent help needed Please Simon.....

2004-07-21 Thread Sangeeta Karmokar
Can anyone help me I am new to CF. we have backend as MySql and I am trying to insert into a database created in SQL using this query: cfquery name=add datasource=newmembers INSERT INTO members (name,email) VALUES ('#name#','#email#') /cfquery But it is not adding to the database,

Urgent help needed Please.....

2004-07-20 Thread Sangeeta Karmokar
Hi, I am new to CF. we have backend as MySql and I am trying to inser into a database created in SQL using this query: cfquery name=add datasource=newmembers INSERT INTO members (name,email) VALUES ('#name#','#email#') But it is not adding to the database, the submit is just going to the

Re: Urgent help needed Please.....

2004-07-20 Thread Bryan Stevenson
Karmokar To: CF-Talk Sent: Tuesday, July 20, 2004 2:21 PM Subject: Urgent help needed Please. Hi, I am new to CF. we have backend as MySql and I am trying to inser into a database created in SQL using this query: cfquery name=add datasource=newmembers INSERT INTO members (name,email

Re: Urgent help needed Please.....

2004-07-20 Thread Jerry Johnson
Is your file running this code named .cfm? (Or some other extension handled by Cold Fusion) Is Cold Fusion Server installed and running on your server? Jerry Johnson [EMAIL PROTECTED] 07/20/04 05:21PM Hi, I am new to CF. we have backend as MySql and I am trying to inser into a database

Re: Urgent help needed Please.....

2004-07-20 Thread Jeff Langevin
Close the cfquery, perhaps?Unless that was just a cut and paste issue... --Jeff cfquery name=add datasource=newmembers INSERT INTO members (name,email) VALUES ('#name#','#email#') /cfquery Sangeeta Karmokar wrote: Hi, I am new to CF. we have backend as MySql and I am trying to inser into

Re: Urgent help needed Please.....

2004-07-20 Thread Simon Whittaker
On Tue, 20 Jul 2004 17:21:17 -0400, Sangeeta Karmokar [EMAIL PROTECTED] wrote: Hi, I am new to CF. we have backend as MySql and I am trying to inser into a database created in SQL using this query: cfquery name=add datasource=newmembers INSERT INTO members (name,email) VALUES

Re: Urgent help needed Please.....

2004-07-20 Thread Sangeeta Karmokar
Yes Simon I have closed the query, I forgot to paste it and I have saved as thanks.cfm. I think the problem will be as u mentioned coldfusion is not parsing code before handing it over to the webserver. we are working on Mac OS X with MySql. It was working fine on PC, this is the first time we are

Re: Urgent help needed Please.....

2004-07-20 Thread Sangeeta Karmokar
Yes Simon I have closed the query, I forgot to paste it and I have sav ed as thanks.cfm. I think the problem will be as u mentioned coldfusion is not parsing c ode before handing it over to the webserver. we are working on Mac OS X with MySql. How to fix this It was working fine on PC, this

RE: CFMAIL Urgent Help Needed...Please!

2000-06-30 Thread Paul Ihrig
nope same mail server. no atatchments. just get errors on my local server but not on the production server. allire wnts 150 bucks to talk to me. have posted on forums. no luck. this really sucks. -paul

CFMAIL Urgent Help Needed...Please!

2000-06-29 Thread Paul Ihrig
on local test i get 100 results which is Bad! on production server i get 1 result, good! what is wrong with my local cfmail or server? Is somthing corrupted? same mail server. i am using PWS on my laptop. win 98. CF SEVRER 4.5 the same mail server settings for both local enviroment

RE: CFMAIL Urgent Help Needed...Please!

2000-06-29 Thread Paul Ihrig
just found this in my local mail log "Warning","TID=-1754369","06/29/00","09:30:34","Unable to move the spooled mail file, C:\CFUSION\MAIL\spool\E0C3.cfmail. Access is denied.." what now? -- Archives:

RE: CFMAIL Urgent Help Needed...Please!

2000-06-29 Thread Sharon DiOrio
We ran into this a few months ago when we upgraded to 4.5.1. Apparently they changed the handling of attachments in 4.5.1. You used to do something like this: cfmail from="[EMAIL PROTECTED]" to="[EMAIL PROTECTED]" subject="Dave Watts is King" attachment="c:\mydocs\mypicture.jpg" More