CF Error after new install

2009-12-21 Thread Jason Slack
Hello All, I am setting up CF 8 on a new server, CentOS 5.4. I install like normal I made sure httpd-devel was installed I run the following: /opt/coldfusion8/runtime/bin/wsconfig -server coldfusion -ws Apache -bin /usr/sbin/httpd \ -script /etc/init.d/httpd -dir /etc/httpd/conf -coldfusion

Re: CF Error after new install

2009-12-21 Thread Jason Slack
The user you are running the script with needs permission to write that file. I am root ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: CF Error after new install

2009-12-21 Thread Jason Slack
Hi Andrew, That doesnt mean root has permission to write to that directory. Have you tried listing that direcotry to see what user and group has permission? Oh, on /opt/coldfusion8 it is nobody:root on /opt/coldfusion8/runtime/bin where wsconfig is it is: drwxrwxr-x 2 nobody root 4096 Dec

Load CF Page - get asked to save binary data?

2009-12-21 Thread Jason Slack
HI All, CF 8.01 and CentOS 5.4 I am moving along further, not CF loads great, Apache loads mod_jrun22.so. When I try to get to: http://my ip/cfide/administrator/index.cfm FireFox asks me to save the untyped binary data (a dialog box comes up) I recall this happening before, I just dont

ODBC Date help

2009-06-28 Thread Jason Slack
Hi All, My ODBC dates are being siaplyed as: {ts '2009-06-27 00:00:00'} How can I display just as 2009-06-27? -Jason ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

Re: ODBC Date help

2009-06-28 Thread Jason Slack
Doh! This: #DateFormat(eventqry.eventdate, mm/dd/)# ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

SQL Help

2009-06-28 Thread Jason Slack
CF 8.01 OS X. I have: cfset sqlToRun = INSERT INTO personalevent(eventid, userid, username, eventdate) VALUES(#FORM.eventidentity#, #FORM.whois#, '#FORM.juser#', '#FORM.eventdate#') cfoutput #sqlToRun# /cfoutput cfquery name=addpersonaleventtome

Re: SQL Help

2009-06-28 Thread Jason Slack
Right I am switching everything to cfqueryparam as I read about SQL injection. Do you see my Invalid CFML construct found on line 22 at column 120. above though? I still dont. -Jason if you're going to be generating your SQL like that, you'll need to wrap your final variable in

Re: Apache and ColdFusion Trouble

2009-05-05 Thread Jason Slack
Hi Tom, Anyone available to ssh in and fix? As is everyone I am a bit strapped and trying to get this worming to launch my LLC live, but I can afford something... -Jason On Tuesday 05 May 2009, Jason Slack wrote: I stopped apache and changed jrun.xml to use port 80 and I am broken

Re: Apache and ColdFusion Trouble

2009-05-04 Thread Jason Slack
I am still not figuring this out! Does anyone have ideas? -Jason Hi Maureen, Are you running apache 2.2x? Yes. Can you perform a restart (apachectl restart or apachectl stop| apachectl start) and watch to see how things load and post back? Sure, I did an apachectl stop, tailed

Re: Apache and ColdFusion Trouble

2009-05-04 Thread Jason Slack
I dont need mod_proxy or ldap. Can you tell me how to enable CF web server? can you enable web server in cf and see what happens? do you need mod_proxy and ldap supprt? have you enabled sandbox security? On Mon, May 4, 2009 at 17:29, Jas

Re: Apache and ColdFusion Trouble

2009-05-04 Thread Jason Slack
Hi Maureen, OK, so I did: [r...@server1 ~]# apachectl stop [r...@server1 ~]# /opt/coldfusion8/bin/coldfusion stop [r...@server1 ~]# nano /opt/coldfusion8/runtime/servers/coldfusion/SERVER-INF/jrun.xml chanced built-in webserver to deactivated = false saved and exited [r...@server1 ~]#

Re: Apache and ColdFusion Trouble

2009-05-04 Thread Jason Slack
OK, so I got myself to a state where I can hit :8500 with /opt/coldfusion8/wwwroot as my root I stopped apache and changed jrun.xml to use port 80 and I am broken again. Everything i do it CF and cgi, so do I even need apache? if I could get CF on port 80 would this nor work using the

Re: Apache and ColdFusion Trouble

2009-05-03 Thread Jason Slack
port 51011 - yours may be different. On Sat, May 2, 2009 at 21:25, Jason Slack applesl...@gmail.com wrote: Hi Maureen, There is a stanza you need to add for mod_jrun - did you add that too? No, I am not sure what you are referring to. This is my first time deploying on Linux

Re: Apache and ColdFusion Trouble

2009-05-03 Thread Jason Slack
Hi Maureen, OK, I did this and both error_log and the cfserver.log dont change. In cfserver.log I see some run client storage purge, but that is it. in /etc/httpd/logs/error_log all I see is: [r...@server1 logs]# tail -f error_log [Sun May 03 17:28:03 2009] [debug] proxy_util.c(1967): proxy:

Re: Apache and ColdFusion Trouble

2009-05-03 Thread Jason Slack
Hi Maureen, Are you running apache 2.2x? Yes. Can you perform a restart (apachectl restart or apachectl stop| apachectl start) and watch to see how things load and post back? Sure, I did an apachectl stop, tailed and did a start here is what is spit back: [Sun May 03 23:10:19 2009] [info]

Re: Apache and ColdFusion Trouble

2009-05-02 Thread Jason Slack
Hi Maureen, There is a stanza you need to add for mod_jrun - did you add that too? No, I am not sure what you are referring to. This is my first time deploying on Linux. -Jason ~| Adobe® ColdFusion® 8 software 8 is the most

Re: CFQuery

2009-01-09 Thread Jason Slack
Hi Dave, Thanks for the reply. Second, and more importantly, using raw data from the browser like that is a serious security vulnerability. Whenever you use unsafe data within a query, you should build a prepared statement using the CFQUERYPARAM tag:

Data from MySQL

2006-11-11 Thread Jason Slack
So I am doing good on my 2nd day with CF. How does one get data from MySQL? I can write the query and get a resultset back, but how do I get inside the resultset? Like say I query a table called Locations and gets Locationname in return. How do I use Locationname values in my app? I want the

Re: RE: Data from MySQL

2006-11-11 Thread Jason Slack
is your friend. Arguably your best friend. :-) -Original Message- From: Jason Slack [mailto:[EMAIL PROTECTED] Sent: Saturday, November 11, 2006 3:13 PM To: CF-Talk Subject: Data from MySQL So I am doing good on my 2nd day with CF. How does one get data from MySQL? I can write