hey guys.
working on a project, that will involve 100s of files that go through a development/review/test workflow process. (knowledgetree is too large/bloated..)
the developer checks the file out/in, where the reviewer then reviews (accepts/denies) the file which passes it to the next phase where it's tested and again (accept/deny). i...
Hi all,
I just joined a web dev project that uses Symfony 1.4 on CentOS 5.4 with MySQL. The server is down. My first task in the project is to get it back up. I don't know a lot about Symfony.
The Apache server log says
Access denied for user 'root'@'localhost' (using password: NO)
From all I can tell, the database access configuratio...
Hello all, this is my first post here.
I want to access the whole hard disk directly from a C program. There's no FS on it and never's gonna be one.
I just want to open /dev/sda (for example) and do I/O at the block/sector level of the disk.
I'm planning to write some programs for learning C programming in the Linux environment (...
Hi,
I have developed a site in ASP.NET 3.5
I had deployed it on Windows server 2008 and iis7. I was using evaluation version of Windows server 2008. Day before yesterday the evalution period expired and I formatted my machine and re-installed the Windows server 2008.
Now, when I deploy the site on IIS7 and try to access it then I get ...
Hi,
right function declaration is:
[DllImport("user32.dll")]
static extern int SetScrollInfo (IntPtr hwnd, int n, ref SCROLLINFO lpcScrollInfo, bool b);
I declared it like:
[DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
static extern int SetScrollInfo (IntPtr hwnd, int n, SCROLLINFO lpcScrollInfo, bool b);
c...
Hello,
We're using an SVN repository. I am getting the error below when we try to compare a local unmodified file with the latest revision of the file in the repository. In other words, someone's checked in a change and if I update I will get their change but first I want to see what their change was. DOn't think it matters but we're us...
I'm using C#, with which I don't have a lot of experience (I've mostly worked with java/php/javascript so far)
What I want is a class in which I save some data, this data can only be written by one other class, but still be read by other classes in the program.
Something like this:
public class DataObtainer{
DataItem[] Items;
public...
Hello,
I'm trying to realize a file. Each event just appends one line to the file. So far this is a no brainer. The hard part is that several users are supposed to be able to add entries to that file but no one is supposed to be able to modify or delete existing ones. Can I somehow enforce this using file access rights? I'm using Linux....
I am trying to figure out how to use the dom to access the access keys of each access keyed link and underline the first character of all of the links on the page when the access key is pressed.
i.e.
when the person presses alt in IE and Chrome all of the first letters of the links underline letting the person know which key to press. ...
Possible Duplicate:
How can I use Delphi to test if a Directory is writeable?
My program will download an update for the user if they request it. The user has to specify the location to save the installer. They might pick a directory which they don't have access to save something to. In this case the download starts (downlo...
I have a grave problem.
I have a folder with about 1000+ files. I need to set the permission of some of the files which i copied over the internet to the disk. Now, as I try to allow full control after letting 'Everyone' have full access, by the time it reaches certain files, i get the "Error Applying Security" pop-up window. Saying an e...
trying to setup drupal's taxonomy module (http://drupal.org/project/taxonomy_access) to administer access to specific categories.
i have two categories of users (two kind of roles). all i'm trying to do is to setup that one have access to some category, and other not.
i did made proper(?) changes in admin/user/taxonomy_access and (ie.)...
how can i assign modify rights on the a file on VSS to a particular user in a team and the rest of team have ready only rights.
For Example, there are 4 users in the VSS and I want that one user should only be edit a particular file and the others 3 user should only be view that file, can't not edit it.
Thanks in Advance
Hussain
...
Hello. I downloaded a disk and memory editor called HxD (available at http://mh-nexus.de/en/hxd/). I wonder how it is able to access (read and modify) virtual memory assigned to all applications running on my system (Windows XP Pro SP3). From what I know, Windows is running in protected mode, making such endeavours impossible. Yet it's n...
VS2010: What is the best way to access a remote database over the internet from a WinForms application? By that I don't mean talking to the database (SQL Server) directly, but rather through a service. Best if I could use http as a protocol to avoid firewall issues.
...
I created a splash class with a timer on it, and when the timer is finished it instances another class as shown in the code below. When i then create a new class how can i access MainWindow?
namespace Kinetics
{
public class KineticsCommand : RMA.Rhino.MRhinoCommand
{
Splash Splash = new Splash();
Splash.Show();
...
hi,
how can i access a subview i added in another view controller? Like
DummyViewController:
- Subview 1
- Subview 2
TestViewController:
- Subview 3
Now I want to access the properties of Subview 1 (DummyViewController) in Subview 3 (TestViewController).
Thank + Regards
...
Hi all,
I have a simple WMI query that runs fine locally, but querying a remote system gives an access denied error. When I add the local user to the remote system as member of the administrator group, the query works as expected, but I don't want to have that user as a member of that group.
I already tried the following things, unfort...
Consider a case of a form that is getting its data from a service and is implemented using the MVP pattern. Do I need to isolate the service access in a separate class or it can be kept in the Model class itself. In my particular case, the model class only acts as a pass through to the data access class that eventually calls the service....
We're developing a web app using the Zend framework and Mysql.
Currently, accounts are unique by email address. We want to be able to allow the admin of an account to grant access to the admin of another account. This person would then be a "user" of the linked account. The account holder would then log into their admin account and then...