Write Permissions For Database

trying to set up my first windows hosted site with database i have a folder db with my database and i'm using macromedia can i use macromedia to set write permissions for this directory?

View Replies


ADVERTISEMENT

How Set DB Directory Permissions To Allow Write?

I previously used PWS on Win 98. Nothing special had to be done locally for a directory that contained an Access database.

But on the Web host I had to do this:

Access Permissions | [Go to proper folder] | Anonymous account given permission of Change

Now I've just gotten a PC with Win XP Pro and have just installed IIS. My development Web sites work fine locally except whenever the ASP page tries to write data to the database, then there is an error message at the line that first tries to write data.

What can I do to modify my settings?

I read something about NTFS, but my PC's drive is not set up with that. Is NTFS something that I need or is there hopefully another solution?

View Replies View Related

Write Permissions And Security

we're working on a cms system that allows the admin to upload files to the server - the host (supplied by the client) says that opening write permissions means that windows is open to exploits.

we're using FSO to move the file anyone know a way of locking down this so its not 'open to exploits' ?

View Replies View Related

Write Permissions Using Scripting.TextStream Object

In Windows 2000 I need permissions set so that I can write a text file to the folder when the asp page is loaded. Right now I have only these permissions set:

Administrator: Full
System: Full
Everyone: Read and Execute, List, Read
Network: Read and Execute. List. Read

Is there some other "user" that I can give permissions to to write a text file to the folder that doesn't allow write permissions to IUSER_MachineName?

View Replies View Related

IIS Delete/write Text File Permissions

ive set the permissions to the folder which the text file is in to 'Write' and 'Read', but i still continue to get:

[/CODE]
Microsoft VBScript runtime error '800a0046'

Permission denied

/modules/admin/program.asp, line 197
[/CODE]

all the path leading to the file is set to allow write aswell.... any ideas why this might be happening?

View Replies View Related

Calling All Robots On Read/write Permissions

i need to set read/write persmissions on an Access DB, can access IIS folder permissions -> not alleviating issues can't access explorer security -> why is this? ad infinitum require UPDATE operation on access DB, this erroring out with : Operation must use an updateable query.

View Replies View Related

Permissions - Access Database

I get the error below when I attempt to write to an access database.
Reading is fine.

I solved this on the DEV site by making the IUSR_machine a domain
administrator.

Now the website is up on a production server on SISNA. Code:

View Replies View Related

Access Database File Permissions

I am methodically working my way through the Sitepoint 'Build your own ASP.NET website' and have been successful in every lesson up to page 279. However I've come stuck when trying to add information to an Access Database. When I try to do so I get the message:

Operation must use an updateable query.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Operation must use an updateable query.

I have tried the solution described in the book but still get the message. I am using IIS and XP Professional. The database works for queries so how do I get it to accept information entries?

View Replies View Related

Access Database File Permissions

I had some issues with setting file permissions to write to my database in access. How do I go about, step - by - step setting the file permissions?

View Replies View Related

Can't Write To Database

I have an asp page created in Dreamweaver with a form that is supposed to write to an Access database. It redirects to a formmail.asp that sends the info to my email. Everything works except the fact that no new info is written/inserted into the database.

I can connect, read, etc, it just doesn't write anything new. I get the email just like I'm supposed to only it has old entries and nothing new. There's nothing new added to the database when I check it. I've tried about everything I can think of. I've checked and double checked that the file can be written to, added all the default users, etc. Moved the file around, recreated the database, etc. I'm using DW 8, Access 2003 and Windows Server 2003. Code:

View Replies View Related

Response.Write Ntext Data From MS SQL Database

Upon retrieving a recordset from a MS SQL database I can't Response.Write those columns that are of the data type text or ntext.

I'm using the shorthand: <%= oRS("COLUMN_NAME") %>

Other fields work fine, so I know the query is returing at least one row.

Any ideas on this?

View Replies View Related

Write Data From A Database Field Into A Text File On The Server

Is there away to write data from a database field into a text file on the server.

The data would be more than one line.....

View Replies View Related

JPG Stored As Long Binary In Database: How To Write Output As Image In Asp?

For a while I am working with ThumbsPlus ( http://www.cerious.com/ ) as manager for pics.
The benefit of the program is that it stores all kind of information in a central Microsoft Database that easily can be manipulated. A thumbnail of the picture is also stored in de MDB as long binary (jpeg format)

I made a small script that extracts all kind of information of the MDB by use of queries and ASP. This works perfect for string/numerical information.

I am wondering if I can also write the stored (jpg)thumbnail to the asp file so that I have a preview of my picture.

Can this be done? What is the syntax?

I tried already:

Response.BinaryWrite BinData

Where BinData is the contents of the Thumbnail field. When I take a look at the MDB table in design view, the DataType of this field is "OLE object", if I open the table, the contents of the field displays "long binary data".....

View Replies View Related

FTP And IIS Permissions

I need to set an online directory and file the write permissions,fot JET to use it's temp file whthout problems.

Im using ACE FTP Freeware,and the properties I ask for each element directory and each file says that the write permissions are OK, but I still got errors while trying to update it online.How can I change IIS permissions?

View Replies View Related

Dll Permissions

I have a compiled activex dll component on my server. When I log into the website under the administrator I can successfully access the dll, however using another windows NT user simply shows 'unable to create component due to permission'.I have ensured that the user in question has all writes to the dll file on the server, including the IUSR and IWAM accounts.

View Replies View Related

Permissions Error

i got somethiung about permissions or something, like when
i goto my site, and theres a bunch of bs about folder
permissions set to non read... whats up witht that????

View Replies View Related

Folder Permissions

Does anyone know of an asp script, online somewhere, that I can use to find
out the permissions of a folder? My ISP says these folders have full
permissions, but my programs say "permission denied". I don't know if it is
the programming, or if the folder don't really have the right permissions.

View Replies View Related

List Permissions

Is there a way to list the permissions on a directory in my web folder? Like group permissions and such

View Replies View Related

Permissions Configured

I keep getting"Unable to open registry key 'Temporary (volatile) Jet DSN "
errors pointing to my connection string when the same connection string
is working for a few of my other pages.The MSAccess database does have
the right permissions configured. Below is code I'm using:

<%
dbcon="DBQ=" & Server.Mappath("diary.mdb") & ";Driver={Microsoft Access
Driver (*.mdb)};"
Set calConn = Server.CreateObject("ADODB.Connection")
calConn.Open dbcon%>
<%dim freetsql,rsfree
freetsql = "select text_field from diary where dte ='" & dfm & "'"
set rsfree = Server.CreateObject("ADODB.Recordset")
rsfree.Open freetsql,calConn,3 %>

View Replies View Related

ADSI Permissions

I know this isn't the best group to ask this in - but I also know a lot of
you have experience with this kind of stuff
I'm going to be creating a site where customers will be able to set up their
own sub-site (ie. www.mysite.com/theirsubsite). I'll need to be able to
create virtual directories on-the-fly, so I plan on using ADSI to accomplish
this. My question is - what are my options when it comes to permissions?
Will I need to give the IUSR account admin permissions to create these
directories, or is there some way to impersonate an admin account on the
script creating the directories? Has anyone dealt with this before?

View Replies View Related

Permissions Question

i need to allow my ASP app to append and use data in text file, but restrict users from pointing directly to it and opening it for viewing.

what permissions should be set for the text file and is there a special way to access the file from the my ASPs? i am use JET ISAM driver to had data access to the text file. it all works fine except for the problem i mention. also, i have to reset permissions when ever i upload from my PC to development and production sites.

View Replies View Related

Simple DB Permissions

I have a database (*.mdb), which I can connect to, query on, and return results from in ASP. Now, I want to do some ADDs,UPDATEs,and DELETEs.... but I get errors executing my SQL... What's the trick?

PS My connection (thus far) is this, and works.

Dim Conn
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Provider="Microsoft.Jet.OLEDB.4.0"
Conn.Open Server.MapPath("myDatabase.mdb")

View Replies View Related

Permissions In FTP Root

How do I setup perrmissions in my FTP to allow anonymous access where you can only upload to and download from a separate folder but not create sub folders or change any permissions etc.

I have my trusted users with extended permission in like c:ftproot ame1, c:ftproot ame2 etc and would like to have my anonymous access directed to something like c:anonymous. I do not want them to see the trusted accounts. Can I and how do I do that?

View Replies View Related

HTML Permissions

I have a mixure of .htm / .html / .asp files on an IIS Server at our main office. When people at another location goto the web they can view the .htm,.html files but can't access the .asp because of permissions.

Now i've checked the permissions on the individual files and the two file types have the same permission settings. Is there something in the ASP platform that adds extra permissions to .asp files. (Active Directory wise).

View Replies View Related

Ftp Directory Permissions

can someone explain to me what the following privelages . eg. in one folder i want my database to be written to, but not allowed to be downloaded as a single mdb file.

in another folder i want my user to be able to upload images into it freely. other folders i want untouchable. here are the settings my host give me. if somebody could explain to me what the different users are. what certain settings will allow. in terms of ftp and website use.

here are the settings i can apply to each directory/file ....

View Replies View Related

Group Permissions

I have a asp page that I need to check to see if the current logged on user is a member of a specific active directory group. How can I do this? I have tried so many different LDAP code examples and none seem to work.

Do I need to include a administrator username and password in the code? Does any have any samples of code I can try?

View Replies View Related

Ftp Delete Permissions

I am trying to delete a file using an ftp script. But it is not working. Is there some setting for ftp delete permissions or something?

View Replies View Related

Configuring Permissions In IIS

i had this site of mine running from my pc with duc no-ip for avoiding my ip from changing my ip. it was working fine, but i made an upgrade to my machine, so had to start all over again;

my web app works with access and asp;

i gave my .mdb total control to IUSER_myPcName and, in iis, in mmconsole, i go to my websites/properties/security and then in this window i click edit and i have:

anonimous access checked but the rest of it i'm unsure
when i try my login, i get this error msg:
Provider (0x80004005)
unspecified error
/a/login.asp, linha 53
that's the line where, in my script, i connect to odbc.

View Replies View Related

Db Permissions IIS5.1

Ive recently migrated from dirty ol' PWS on Win98 to IIS 5.1 on XP and Im a little unfamiliar with the IIS snap on. Would any of you be able to help me with permissions so the Db can be updated but without adding security risks.

View Replies View Related

Managing Permissions

I keep getting this error when I want to upload an image .

Microsoft VBScript runtime error '800a0046'

Permission denied

/sljobs/uploadphoto.asp, line 39

Do I have to give read/write permissions to the Scripts folder as well? what is the process for managing permissions to the folder?

View Replies View Related

Access Permissions For Asp.net

im running asp.net using visual studio .net on IIS and Windows XP Pro im tryying to run a web application with accessing an access database but when i try to open the connection it says the file is in use or dont have permission.

im pretty sure it is the permissions but i cant add asp.net user to have access like with windows server what do i have to do to fix this?

View Replies View Related

Website Permissions

Could someone help tell me what permissions I need to set my websites to
that run under IIS5 (on a windows 2000 server)

At the moment I have folders of websites within the c:inetpub i.e web1 web2
and so on
Each folder has 'allow inheritable permissions' selected.

View Replies View Related

Permissions Problem On .mdb With Win XP

I have just installed a web site that I am developing on to an XP machine. I cannot run update or set sql statements as I get an error: Error Type:

Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an
updateable query.

I've seen it before, and I thought I'd resolved it: Code:

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved