Ask a Question related to ASP, Design and Development.
-
Dodo #1
writeline permission denied
I'm trying to append to a file a string such as the following: 127599.0
127838.5 14.434 87
first error - 500 internal server error
refresh
second error - echoes string...does not append file
refresh
third error - permission denied
Any ideas greatly appreciated!
<%set
file=server.createobject("scripting.filesystemobje ct").opentextfile(server.m
appath("mpg.txt"),8)
file.writeline(request.querystring("start")&"
"&request.querystring("finish")&" "&request.querystring("gallons")&"
"&request.querystring("octane"))
file.close%>
Dodo Guest
-
Permission Denied...
I'm not sure how many people have run into this problem, but it's one that is extremely annoying. When a user submits a file to me (or anyone else),... -
Permission denied
I'm running a intranet site on a NT 4.0 IIS 4 server. I have a page that uses CDONTS. I recently change this intranet application to run as an... -
ocx permission denied
I've updated an ocx (using VB6) that is currently being used in an asp 3.0 application. I created an internet package(using VB6) containing the... -
permission denied WHY?
Hi! I wrote this script and executed on my server, with php 4.1.2 <?php $fp = fopen('test.txt', 'w'); fwrite($fp, "Bla bla"); fclose($fp); ... -
Permission Denied (in FTP)
Hello, I'm having some slight issues. I have a script which creates a directory and then copies a blank file into it 4 times each with different... -
Ray at #2
Re: writeline permission denied
Does IUSR_machineName have NTFS permissions to write to this file?
Also read here. [url]http://www.aspfaq.com/2109[/url]
Ray at work
"Dodo" <dodo@no.fly> wrote in message
news:evBkoW7lDHA.1244@TK2MSFTNGP11.phx.gbl...file=server.createobject("scripting.filesystemobje ct").opentextfile(server.m> I'm trying to append to a file a string such as the following: 127599.0
> 127838.5 14.434 87
>
> first error - 500 internal server error
> refresh
> second error - echoes string...does not append file
> refresh
> third error - permission denied
>
> Any ideas greatly appreciated!
>
> <%set
>> appath("mpg.txt"),8)
> file.writeline(request.querystring("start")&"
> "&request.querystring("finish")&" "&request.querystring("gallons")&"
> "&request.querystring("octane"))
> file.close%>
>
>
>
>
Ray at Guest
-



Reply With Quote

