|
Hello,
I am developing a web application and I am wondering if someone has a full read-only access to my filesystem, can this person (assuming that he is aware of everything necessary) have a write access to the system?
For example, if you have a PHP ...
Started by Tower on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Do not give anyone full (read) access to your system, ever!
Let me rephrase and has a read-only DB access, will he....
Then use that user to gain further access, they will succeed.
Table and get the password for your MySQL root user .
|
|
I'd like to set up an Access (2007) project that contains queries on a DB (actually in MS SQL Server 2005), but I do not want to allow any direct writing to the DB. (Basically, just read-only.)
Is this possible?
Thanks in advance!
Started by JW on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Set up roles in your SQL Server and tie.
This is not an Access question, but a SQL Server question.
|
|
Hi
i have a problem, i have a user who created a database using ms access 2003 the problem is, if he's opening the db and made some changes, the other user can open the db but they can't work on it. but if he's exited the program, then the user can make...
Started by tintincute on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
You need to ....
Are the users trying to make design changes or just add/edit/delete data? Access doesn't for exclusive access.
Yet another update
If you have Access 2003 or similar there is a Database slpitter utility is _be.mdb .
|
Ask your Facebook Friends
|
How can I deny access to a file I open with fstream? I want to unable access to the file while I'm reading/writing to it with fstream?
Started by sofr on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You will either need to use the Posix or Windows API to read/write from the file, or wrap.
Not with fstream s.
|
|
//can someone with a little time on their hands please compile and run this code and see where I am going wrong. Help! Thanks everyone! //
#include <iostream> #include <fstream> using std::cout; using std::endl; using std::ifstream; using ...
Started by yramesor on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Probably worse than any of that is the fact that your heading talks .
To the constructor: ofstream outFile("updatedNumbers.txt");
//write the updated numbers to the file outFile value before you write it out.
|
|
I've always opened my files two ways -- either read access and shared-read, or read/write access and no sharing.
To me it seems that allowing shared-write could always result in unexpected things happening to the file while you're reading it. Are there...
Started by zildjohn01 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
And as often said, profile and test!
Anyways.
I'm also curious about a "real life" scenario where shared write access has been used of concurrency if there is a lot of contention on the write lock.
|
|
I need to export data from a SQL server 2005 DB to an Access 97 .mdb file. The client that needs it, needs it to be Access 97 because the system that they're importing it into requires Access 97 file format (don't get me started). Any suggestions how ...
Started by leebrandt on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Or....
You can use this to export directly into your Access database, just follow the prompts.
For whatever Access version you have installed (as long as it's 2000...2003; Access 2007 can't write, then Tasks, then Export Data.
|
|
Just for clairity I'm wondering what the best practice is for giving the IUSR_ account write access under IIS 6.0 to a folder. I gave searching on Google a try and on here a try but nothings really pointing me in either direction. From my understanind...
Started by Tim Meers on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
In short, if you have ....
Of discomfort they cause me (least to worst):
I wouldn't give anonymous users write access give anonymous users write access to a folder on a server computer configured to run arbitrary on the issue.
|
|
OK, so instead of writing a whole bunch of access control specs, and duplicating them across many of my spec files, I'm looking to create a custom matcher. So instead of this:
describe "access control" do it "should prevent access by non-logged-in users...
Started by Mr. Matt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The following code in your spec_helper.rb:
def access_control (code, options={}) options = {:allow => response.should redirect_to(login_path) end end end
And call it as follows:
access_control("get :index.
|
|
I have a asp.net website where the users have the possibility to print a document. This document is first written to a folder on the server and then opened/printed by the client. When deploying the website on IIS server I did encounter a few times issues...
Started by Mez on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I would give write / modify access to the IUSR_MACHINE and NETWORK SERVICE accountsUsially it's NETWORK SERVICE user, grand to it write permissions on the required folder account for XP.)
Rather than giving that ....
Related issues.
|