On 2/17/07, Scott Stewart <[EMAIL PROTECTED]> wrote: > > When we run the template (it's supposed to upload data from an Excel > spreadsheet to a database) wget returns HTML, like it tried to do a direct > read of the template instead of executing the contents via the ColdFusion > server.
I've said it before in this thread. You CANNOT execute CFM files directly. wget is a utility for making http calls. So you use wget to have the web server execute the CFM file. There is no way to execute CFM files without doing it via the web server. THIS will not work: wget foo.cfm wget C:/inetpub/wwwroot/foo.cfm THIS will work: wget http://www.yourdomain.com/foo.cfm Rick -- > I'm not certified, but I have been told that I'm certifiable... > Visit http://www.opensourcecf.com today! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/flex2/ Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270054 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

