question about security?
I have a coldfusion script that I know works because I use it on my personal web server. However I put it on a customer website that is hosted on godaddy servers and get a security error.
You can view the error here...
http://www.heartoftucson.org/HOT-main.cfm
This is the code used.
<CFFILE ACTION="READ" FILE="/home/content/h/e/a/heartoftucson/html/counter/counter.txt" VARIABLE="count">
<CFSET NEWCOUNT=COUNT+1>
<CFFILE ACTION="WRITE" FILE="/home/content/h/e/a/heartoftucson/html/counter/counter.txt" OUTPUT="#newcount#">
<CFLOOP INDEX="i" FROM="1" TO="#Len(newcount)#">
<CFSET DIGIT=LEFT(#NEWCOUNT#,1)>
<CFOUTPUT>
<IMG SRC="./counter/digits/#digit#.gif" WIDTH="12" HEIGHT="14" ALT="" BORDER="0">
</CFOUTPUT>
<CFSET NEWCOUNT=REMOVECHARS(#NEWCOUNT#,1,1)>
</CFLOOP><BR>
Like I said I have this code working on my website and I even recreated the site on my server and it works there.
Godaddy support tells me it's my fault and they do not support 'CUSTOM' scripts on their system. I find this funny but also annoying. I wrote a simple text PHP counter and stuck it up on the site but would prefer the graphical counter I wrote.
What do I need to tell these godaddy yahoos in order to get it working or can somebody reccomend a script modification that would be a work around?
