The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
12 views

how can object call a method of owner to skill self [closed]

@class MyControll; @protocol MyControllDelegate <NSObject> -(void)CloseSelf:(MyControll*)me; @end @interface MyControll :NSObject<NSWindowDelegate> { NSWindow *_MyStructureWindow; ...
0
votes
0answers
29 views

Batch Script: Adding Owner, Last User to Modify File

I found & have edited a batch script that creates a .csv with most of the file properties that I need. I would like to add the owner of the file and/or the last user to modify the file to the ...
3
votes
3answers
54 views

Securing SQL Server database from Domain Admin

I have inherited a SQL Server box with a series of databases and it has Windows Auth for creation/maintaining the well-baked and established databases. The box itself has many other services which ...
0
votes
2answers
39 views

crm 2011 Changing owners of 30K records

We currently have a single business unit and 90% records are owned by a single Scribe user. Now we have added a new business unit and out of 400K contacts, 30K contacts will be moving under this new ...
0
votes
2answers
72 views

iOS Controllers for universal (iPhone/iPad) app

I am just working on iOS app and I want to make it universal for both iPhones and iPads. This is done and works without any problems: if ([[UIDevice currentDevice] userInterfaceIdiom] == ...
0
votes
0answers
21 views

Wrong owner after extractTo

I'm trying to unzip some files, and the script I found actually works fine. However, after everything gets extracted, every file has the wrong owner (498). So I can't edit the files afterwards. So ...
0
votes
1answer
85 views

Changing Parent Container causes Createwnd to be called again, Delphi 6

We have some legacy delphi custom components that override createwnd. These components sit on a panel within a form. When the form and panel get instantiated, so do the components, and ...
1
vote
3answers
71 views

batch: get the name of the owner of a folder

the only command that i know to get the owner of a folder in a batch script is: dir %foldername% /q this has two problems: it shows in a list all foldername's content, so i've to read only the ...
0
votes
0answers
26 views

Install4j setOwnerAction doesn't seem to work on symlink

I'm trying to use the "setOwnerAction" in install4j to set the owner:group on the contents of a directory. The "recursive" checkbox is checked. It works fine when the directory is NOT a symlink, but ...
1
vote
1answer
98 views

what is the purpose of std::set<VALUE, std::owner_less<VALUE>>?

I'm trying to dissect this websocket++ example https://github.com/zaphoyd/websocketpp/blob/experimental/examples/broadcast_server/broadcast_server.cpp At line 126, there is typedef ...
-1
votes
2answers
82 views

way to check original file permissions in linux [closed]

I was wondering if there was a way to check factory original file permissions of important system config files in linux, solaris, and freebsd systems etc. I'm creating a hardening software tool in ...
1
vote
1answer
64 views

How do I lock an Object / become owner of a monitor (Android)

How can I wait a second in an addTextChangedListener? Following code gives following error: E/AndroidRuntime(1003): java.lang.IllegalMonitorStateException: object not locked by thread before wait() ...
0
votes
1answer
152 views

iptables --gid-owner works only for user's main group

I am trying to disable access to IP 1.2.3.4 for all users except for members of group "neta". This is a new group which I created only for this matter. iptables -I OUTPUT -o eth0 -p tcp -d 1.2.3.4 -m ...
0
votes
1answer
351 views

WPF window should be modal to native owner window, but isn't

I have the following C# code in a WPF project: private static void RunConfig(string owner) { long ownerHandle; var settingsWindow = new SettingsWindow(); if (long.TryParse(owner, ...
1
vote
0answers
162 views

Google Calendar API - Import event: Owner must be organizer or attendee

I'm using Google Calendar API for one of my projects. I want to import events to Google Calendar from my app, and lock them so the final user won't be able to modify them in Google Calendar. The API ...
1
vote
2answers
209 views

Unzipped files change owner, php

I have a zip file into a directory like this: drwxr-xr-x 2 salome salome 4096 Dec 16 17:41 staff.zip When I unzip the file with ZipArchive class, all the upzipped files are owner by nobody user. ...
0
votes
1answer
68 views

How to identify Facebook app developer by id number?

We've created an app last year and are still using it. Problem is now that no one at the office can see the app when visiting developers.facebook.com. Q: Who is the 'owner' of our app with id ...
0
votes
0answers
95 views

C# Determine process owner in unelevated application

I found some code that will tell me the owner of a process. My problem is that it only works if the application has Administrator privileges. Is there any way to do the same thing as an unelevated ...
0
votes
1answer
319 views

Liferay - is user Site Owner?

I am working on one feature in Liferay 6 and I want it, to be accessible only for Site Owner. I have big problem how to get if user is Site Owner. I can get if user is Administrator using this if ...
1
vote
0answers
90 views

Facebook page tab app is not visible for a person authorized as an page owner

I have FB page with a tab where an application is located. The visitors are seeing it properly. And I can see it to, but just before I authorized as a page owner. Right after that I see an empty tab ...
0
votes
0answers
74 views

Where is the error with that Owner? [closed]

I want to call a Form which is owned by my Mainform. I called them the following way: case 2: cableCreate.Show(this); cable++; break; The ,,this" says that the owner is my mainform (Form1) ...
1
vote
0answers
416 views

Adding owner side object in JPA+Eclipselink ManyToMany bidirectional relation

I am using JPA and Eclipselink. My problem is that in a @ManyToMany bidirectional relationship how to add a new object on the owner side correctly when the other side object was created and persisted ...
1
vote
4answers
228 views

Why is it necessary to distinguish one side of a bidirectional relationship in orm as an owning side?

In a one-to-many relationship usualy the field annotated with @ManyToOne is the owner - the other side has 'mappedBy' attribute. However if I skip the 'mappedBy' and annotate both sides with ...
0
votes
1answer
46 views

Facebook create events with several owners with Graph API

Is it possible to create an event with the graph API with several owners/promoters ? It seems to be possible manually so why not using Graph API, but I don't find any docs about that issue...? Any ...
1
vote
1answer
137 views

How to get owners information for sas file in Windows SAS?

Apologies if a repost, Is there a way to find the information about owner of sas file in Windows SAS? I tried the following code But it doesnt give any information about the owner of code. data ...
0
votes
1answer
100 views

Uploaded file with PHP cannot changed by FTP

I have a script to upload files, after uploading file the owner of files are 48 (Apache) and when I trying to delete that files with FTP, I get the access denied error, the ftp owner id is 500. I ...
2
votes
2answers
116 views

C#: What does 'owner' mean when used as argument of a class?

In the class below what does the "owner" argument do to both myClass and the base class? public class Base { public myClass(owner) : base (owner) { } }
1
vote
1answer
663 views

Trying to change owner of account on CRM 4.0 using a plugin

I am creating a plugin for Microsoft Dynamics CRM 4 that will change the owner of the account entity according to the value of another lookup field. Now I have managed to get the GUID of the user that ...
0
votes
1answer
144 views

WPF prevent Owner window to be used

I am using WPF with C#. I have a windows that is full screened. Upon this window I open a Dialog. My Dialogs are just another Window that is designed different and are centered on this Owner. During ...
0
votes
1answer
557 views

php create folder owner/group

I'd transfer my site to linux hosting, Its has an issue on uploading image to the system's auto create folder which permission is chmod 0777, I found that its always make the uploading failed because ...
0
votes
1answer
203 views

Write owner info to Android tablets

we will end up with 100+ Android tablets for our shop. On the 'Owner Info' screen, I need to have some text such as 'Property of... If found, return it to "address"'. I don't want to type this into ...
1
vote
1answer
890 views

Missing the File's Owner item

i try to understand how i can show my textfield over the keyboard and do an tutorial. this is an older Version than my SDK 5.1. Now I try to do this : "In Interface Builder, right-click on each Text ...
0
votes
1answer
413 views

Change event owner of an event

We have a small problem here about the ownership of an event. Is it possible to transfer the ownership between two fanpages? There doesn't seem to be an option in the administration panel so maybe ...
0
votes
2answers
331 views

Is it safe to use HTTPS without SSL certificates for my own domains?

I'd like to run some encrypted connections between some of my own servers. One can use Curl (or some other mechanism) to connect using HTTPS without SSL certificate verification. I'm using PHP, but ...
0
votes
0answers
47 views

Is there an easy way in java to find out the autor who and/or the computer that produced a certain file ( e.g. image)?

Now that my tool can load and display images as well as their metadata - using metadata extractor - i'd also like to see information about who made the file and what was the name of that person's ...
3
votes
1answer
131 views

How to show Owner of Defect in Rally

I'm using /apps/1.29/sdk.js for the custom app. And I can get fields like "FormattedID" , "State", but I can not get the "Owner" printed out. Can you advise? thanks! table.setCell(i, 5, '' + ...
0
votes
1answer
320 views

Appengine owner invite gives Unauthorized errors

I did get an invitation to become the owner of a billed-enabled application from a regular google account (I have a google apps account). I've tried both invite links and both gives the "You are not ...
0
votes
4answers
848 views

Changing Owner/Group ID In PHP

In my client's ftp the old files have 3002 3000 value in owner/group column. But when i upload a new page it have 3002 3002 and i cant to access this file. When i try to load this new page it ...
1
vote
1answer
284 views

How programmatically can one find a Control's owning thread

It is a requirement that all .net Controls are created on the main thread, at least this is necessary if the intent is to integrate the control in with the interface which is usually the case. ...
4
votes
1answer
606 views

How do you permit PHP to write to a file without compromising server security

I am often confronted with negative comments whenever I want to have a PHP script write output to a file on the server. I use the fopen(), fwrite() and fclose() functions. The only way I know how to ...
2
votes
2answers
1k views

C# query for process owner (Windows 7 x64)

I would like to know how to query for a process's owner in (or via) C#. I've tried the example at http://www.codeproject.com/KB/cs/processownersid.aspx. WMI: Can query all process and their owners, ...
2
votes
2answers
373 views

List all possible owners and groups

Using either Java or bash how can I list all possible owners and groups. For instance if i was to do the following command in a shell with an obviously wrong owner: chown ljafdj ~/Desktop/test.txt ...
5
votes
2answers
5k views

Cocoa - How to connect view's delegate to file's owner in storyboard mode?

When I use an .xib, I connect a view's delegate to the File's Owner via interface builder, then go into the view controller's .h file and set it as the delegate to complete the connection via . ...
3
votes
1answer
476 views

change user owner of process on Mac/Linux?

I have a program that is running as root. This app calls another program (processA) to run. When processA is running, it is owned by root but I want owner of it to be the current user logged on. How ...
0
votes
1answer
1k views

facebook app - check if user is page owner (PHP SDK)

I am writing an app to add to users pages and need it to do the following: 1) When a user adds my app to their page, a form will appear asking for them to complete some details prior to the app fully ...
0
votes
2answers
220 views

Cant change owner of new file

I'm using PHP to retrieve some Base64 data, decode it and write it to a file, my code works fine. However, the owner is apache and the permissions are very low, so even if I FTP into the area where ...
2
votes
2answers
2k views

How to get file's owner name in Linux using C++?

How can I get get the owner name and group name of a file on a Linux filesystem using C++? The stat() call only gives me owner ID and group ID but not the actual name. -rw-r--r--. 1 john devl 3052 ...
3
votes
1answer
585 views

File's Owner of UITabBarController Subviews

I followed this UITabBarController Tutorial which creates a Tab Bar with according subviews mostly using Interface Builder. The UITabBarController is created there and the Tab's View Controllers are ...
1
vote
1answer
364 views

Liferay 6.0.5 - hide IGFolders from owner on private/public layout of his private community

We need to create hidden "system" subfolders in every IGFolder an normal user creates. The image gallery portlet resides mainly on the private community layouts of all normal users. The portlets and ...
0
votes
1answer
691 views

What is the owner in a oracle database?

When talking about relational database the concepts I've learned are that there exists schema, table, attribute. We can prefix the table name with the schema name and the attribute with the table name ...

1 2