File permission issues when sharing project

Hi,
We are sharing a project amongst two developers that each have an account on a (Windows 7) machine. They are part of a windows group and don't develop at the same time.  All directories and files are in the group and are set to inherit permissions.  After one user develops using Labview, all the files that he saved when using Labview have the group permission removed and the second developer can no longer open the files.  Our sys admins claim Labview is somehow changing the permissions.  Has anyone seen/overcome this?
Thanks,
Steve

Where is the file being saved?
No place special.  We have a labview project/ directory under our own directory under C:/ that roots all the Labview project files.
If both users have full access to the directory where the files are being saved, there shouldn't be any problems.  I'm sure LabVIEW isn't doing anything to change access rights.
Both users have full access.  If I create a new file it has the correct permissions (a local group).
I'm concerned about the comment "part of a windows group"?  Most PC's in a corporate environment are part of an actual network domain, and don't use that poorman's excuse for network access rights of a workgroup that Windows seems to want to use for standalone PC's and those not registered onto a network.
I wouldn't be too concerned =)  We have a nationwide federated domain.  The "group" is a local group on the computer for two people specifically to share this labview project.
Steve

Similar Messages

  • File permission issue when indexing from JSP

    HI
    I have a class that I intend to use both in batch file and in JSP that will build a search index (Lucene) somwhere in the file system outside the web root. The class works great when called from the batch script but when I try to use it in the JSP page i get this error:
    [#|2004-04-23T09:56:41.155-0400|INFO|sun-appserver-pe8.0|javax.enterprise.system.stream.out|_ThreadID=13;|
    caught a class java.security.AccessControlException
    with message: access denied (java.io.FilePermission C:\AMIR\nemours_internet\common\search_index\html\segments delete)|#]
    Can someone tell me if this is a setting in PE8 server or do I have to do something within my class code?
    Thanks
    Following is my class (BuildPageIndex.java) and the snippet of the JSP file where I call it...
    <<<< package and imports ommited >>>>
    public class BuildPageIndex {
         private StringBuffer sbOut;
         public BuildPageIndex(){
         public BuildPageIndex(String pathToCMTXML){
         CMTController.loadCMTXML(pathToCMTXML);     
         public void buildIndex(){
              try {
              sbOut = new StringBuffer();
         // get all the page objects from the database
         ArrayList pageList = CMTPersister.getInstance().getAllPages();
         if (pageList.size() == 0)
              sbOut.append("<Lucene> No HTML pages in the database...Exiting...\n");
              return;     
         // obtain index location from XML config file
         HashMap searchMap = CMTController.getInstance().getSearchConfig();
         String strIndexLoc = (String)searchMap.get("LOCATION");
         sbOut.append("\n\n\n");
         // if backup management fails abort index creation
         if (!(manageBackup(strIndexLoc)))
                        return;
         // create index and start timing
         sbOut.append("<Lucene> Creating index for HTML pages in: "+ strIndexLoc + "\n");
         Date start = new Date();
         IndexWriter ixdBuilder = new IndexWriter(strIndexLoc, new StandardAnalyzer(), true);
         //for all pages ...
         for (int i=0;i<pageList.size();i++)
                        //get a page
                        Page thisPage = (Page)pageList.get(i);
                        // create lucene document from a page
                        sbOut.append("<Lucene> Page [" + thisPage.getURL().trim() +"] added \n");
                        Document pg_doc = PageDocument.Document(thisPage);
                        // add page document to the index...
                        ixdBuilder.addDocument(pg_doc);     
         // optimize and close index
                   ixdBuilder.optimize();
                   ixdBuilder.close();
         // calculate the time it took to build index
         Date end = new Date();
         long msecs = end.getTime() - start.getTime();
         sbOut.append("<Lucene> HTML Index created in: " + msecs + " milliseconds ("+ (float)msecs/1000.00 + " seconds) on "+pageList.size()+" pages\n\n");
         } catch (Exception e) {
                   System.out.println(" caught a " + e.getClass() + "\n with message: " + e.getMessage());
         public String getOutput(){
              return this.sbOut.toString();
         private boolean manageBackup(String loc){
    boolean retVal = true;
              //rename the location to _BACKUP so we have it
    File currIdx = new File(loc);
    File backIdx = new File(loc+"_BACKUP");
    if (currIdx.exists()){
         sbOut.append("<Lucene> Index directory allready exists!\n<Lucene> Backing it up to ["+backIdx.getPath()+"]...\n");
         if (backIdx.exists()){
              sbOut.append("<Lucene> Backup directory also exists! Will delete it first...\n");
              if (!(Utils.deleteDirRecursive(backIdx))){
                   sbOut.append("<Lucene> Failed deleting backup directory! Aborting...\n");
                   retVal = false;
         if (!(currIdx.renameTo(backIdx)))
              sbOut.append("<Lucene> Problem backing up existing index! Aborting...\n");
              retVal = false;
    return retVal;
         * Class has a main so it can be run from the batch file
         * or a command line
         * @param args
         public static void main(String[] args) {
              if (args.length == 0) {
                   System.err.println("Usage: BuildPageIndex <path_to_cmt.xml_file>");
                   System.exit(0);
              BuildPageIndex bpi = new BuildPageIndex(args[0]);
              bpi.buildIndex();
              System.out.println(bpi.getOutput());
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    JSP snippet
    +++++++++++++++++++++++++++++++++++++++++++++
    <%
         BuildPageIndex bpi = new BuildPageIndex();
         bpi.buildIndex();
         String results = bpi.getOutput();
    %>
         <%=results%>

    Hi Zambak,
    It looks like you might need to give your JSP permission to delete the file that it is complaining about. One way to do this would be to add a FilePermission to the server's security policy file (located at <PE install dir>/domains/domain1/config/server.policy. Adding the following would grant file delete permissions to all files for all codebases...
    grant{
    permission java.io.FilePermission "<<ALL FILES>>", "delete";
    After modifying the policy file, you will need to restart the domain by executing the following...
    <PE install dir>/bin/asadmin stop-domain
    <PE install dir>/bin/asadmin start-domain
    It is also possible to further restrict permissions to certain codebases or further open the set of file permissions (adding write, read, delete for example). For more information on how to do this, please refer to the J2SE security documentation loacted at http://java.sun.com/j2se/1.4.2/docs/guide/security/permissions.html .

  • Authorization issue when sharing project in eclipse to HANA trial instance

    Dear colleagues,
    I'm new that registered a trial account on hana cloud platform cockpit.When I do the step by step scenario create HANA XS Application, I faced some problem: after I created the project in Eclipse and tried to share it via hana cloud repository, the following error message appears:
    Can anyone help me on this? Thanks a lot.

    Finally I found the cause, when creating the project in the Project Explorer, we should not navigation to the path which we set in Repository Workplace, but should also add the "<username>" in front of the workspace in the path manually,
    For example, the workspace on my machine is:
    C:\Users\I000000\hana_work\JN4_00_DEV_8DCH17EFJG59GYBL0Y0I8BC78\myhanaxs
    When I created new project "helloworld", it automatically locate the path as:
    C:\Users\I000000\hana_work\JN4_00_DEV_8DCH17EFJG59GYBL0Y0I8BC78\myhanaxs\helloworld,
    but the path should be exactly like the following then it can be shared to cloud repository:
    C:\Users\I000000\hana_work\JN4_00_DEV_8DCH17EFJG59GYBL0Y0I8BC78\myhanaxs\<i000000trial>\<instance name>\<packagename>\hello

  • File permission issues

    I cannot access any printer plug-ins by going the HD>Library>Printer>Epson>Inkjet route. All the plug-ins are grayed out so I cannot load them. I am attempting to add a printer attached to a windows machine. I followed all the instructions, I can see the correct plug-in, but I cannot load the plug-in.
    The second permission issue is moving jpeg files to the DVD or to a windows machine on the network. I am the owner of the files and all the folders are marked read and write. I also have checked windows file sharing.
    I have also done the repair permission route.
    I am new to Macs, so this is probably a simple ix, it just does not show up in the searches I have made in the Help menu or support topics. Any help is greatly appreciated. Thank you.

    Thanks for the tip, but I have tried every known fix listed anywhere and still am missing something somewhere. I can access the correct drivers when I connect the epson directly to the laptop and it will work. I can almost access the print drivers if I use IP Print when connecting to the printer across the workgroup. Almost, in that the drivers are no longer grayed-out, but if I select them, I still get generic print driver and it ignores the Epson driver. For some reason, if I try to install the driver for the printer while it is attached to a PC on the windows nworkgroup, using windows print, the print utility will not allow me to use the print driver. It has got to be something silly that I am missing.

  • File formatting issues when saving PDF as PPTX in Acrobat XI Pro

    Hi guys,
    I have some issues when I'm saving my PDF (initially comming from InDesign) as PPTX. The format is suddenly changing, leaving a blank zone, and some of the pages are rotated.
    Is it a problem comming from the Indesign or from the Acrobat options itself? I have already tried changing the chekboxes in the option box when I'm saving, but nothing worked.
    If someone has an idea how to fix that, i would be very grateful! Thanks in advance

    Which dot version of Acrobat XI are you currently using in your export?  Is the PDF file tagged?  If not, then you may want to tag the PDF file before exporting it.

  • Imovie puts files in trash when reopening project

    I have captured 2 dv-tapes, which results in 450+ clips. When the project is saved and opened again, imovie has put alle the clips of the second tape in the trash. Dropping them from the trash onto the timeline is no option, because they are all in a random order, and i don't know of any way to sort them (only manually, which will take me forever.
    Is this happening because there are too much clips in this project?

    Welcome to the iMovie Discussion.
    Is the project saved on an external disk? If so, and if the disk doesn't use the Mac OS Extended disk format, what you see can occur.
    iMovie requires the Mac OS Extended format, and when the disk uses another format iMovie is unable to reliably write/read to the disk. As a result, the file inside the project that keeps track of the clips can't be written properly to disk. Then, when the project re-opens, iMovie sees clips inside the project but doesn't know where they belong. It shows them in the trash so you can place them where they belong.
    Trouble is, when you move them back to where they belong they may end up in the Trash again when you re-open the project.
    So check out the disk format, and fix the problem if it exists. Here's more about it:
    http://discussions.apple.com/message.jspa?messageID=4176921#4176921
    Karl

  • RH HTML 9 - CHM file Slow performance when opening project.

    Recently RH 9 runs very slow when I open my project, I even cannot open a folder in the Project Manager pod. I think maybe there are some corrupt files cause it.
    Anyone has experience please help me. Thank you.

    How did you bring the files in to the project, via Windows Explorer? If so that will not have helped.
    Have you tried deleting the CPD file and then reopening the project?
    Is the project on a local drive?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Error 8 (file permission​s) when using Help:Searc​h

    Hi there,
    When I use the help system and do a search, I get the following error:
    Error 8 occurred at Open File
    Possible reason(s):
    LabVIEW:  File permission error. You do not have the correct permissions for the file.
    =========================
    NI-488:  DMA hardware error detected.
    This is Labview 8.2 running on Linux (Enterprise RHEL4), and I had the same problem with Labview 7.1.  The problem seems to be caused by the permissions on some or all of the following files, which are written to the /tmp directory when the search is performed:
    controls2.htm 
    index2.htm 
    js_buttons.htm 
    search_results.html
    If I do a search, these files are written but not erased (with permissions -rw-r--r--).  If someone else then does a search, they get the Error 8 problem listed above.  If the owner of these files (or root) deletes them, the problem is solved -- until a different user than the owner of those temporary files wants to search the help system.
    My guess is that if I could get Labview to either open up the write permissions on these files or delete them after the help session is complete, the problem would be solved.
    Any advice?  Has anyone else had this problem (you would need a multiple-user linux system to see it)?
    Thanks,
    Tobin

    Hi Tobin-
    The following KnowledgeBase articles provide some valuable insight.  Check them out and reply if they don't help resolve the problem.
    KB 3GFF9FBP: Why do I get "Error 8 Occurred at Open File" When Writing to or Reading From a File?
    KB ...
    And there are lots of discussions about this already.  For other possible causes/solutions, try searching the forums for "file permission error 8".
    Drew Pierce | District Manager, Central Texas | National Instruments

  • Issues when sharing InDesign files across Mac and PC?

    I'm looking for advise regarding cross platform use of the same InDesign files. We'll be working on 1000+ files with high resolution images. One designer works on a Mac and the other on a PC. We run the same version of InDesign. So far we are finding some (not all) fonts have issues where a PC font has to be replaced by the Mac equivalent and this often means the text box size has to change. When finished the files will be handed over to a fabricator.
    Should we be getting a 2nd Mac to replace the PC or is this cross platform sharing going to work without long term issues down the road?
    Thank you.

    Please, let's not let this get into a platform war.
    There's no reason to buy another computer to collaborate unless one of your users is unhappy with the platform they use now, and then the deciding factor should be personal choice. One is decidedly not better than the other from any technical standpoint as far as working in Adobe applications. If you want to cooperate with other users it's best that everyone have the same version of ID, which you've already said is the case, so the only point of conflict is cross-platform sharing, and the only hangups there are fonts and a few third party plugins that might be available only on one platform. If you stick to OpenType fonts, fonts be come a non-issue, and if you don't have OpenType, Stick withthe PD fonts for what becomes a minor nuisance on the Mac side. As far as plugins, nothing you can do if you need a one-platform release to do the work on both sides, but most third-pary plugins are friendly enough that you can stillopen the file with missing plugins on the other end if necessary and don't need the functionality to do your work.

  • File permission in Users/Shared?

    I Got Info from the Finder on the Users/Shared folder, unlocked the permissions with my password, and set Everyone to read-write then click on Apply to Enclosed Items down in the hidden menu at the bottom [is that a gear icon?]
    I did the same to the subfolder then did the same to my pages document.
    I used Disk Utility to Repair Permissions...
    I used Terminal to "ls -ld" and "ls -l" then "chmod uog+rw" the folders and files The folders are all rwxrwxrwx and the files are all rw-rw-rw- as expected.
    Yet when I switch users Pages still won't save the file? I have to duplicate it, save it, delete the old one, and ping pong back and forth.
    If the Finder will let me delete a file I don't own by prompting me to enter the admin password, why can't pages do the same if it things I don't have permission, ask for the admin password and fix it?
    There are lots of tips on this but I can't get the file to be read-write for both users? What should I do? Do I need to add both usernames specifically because the Everyone group isn't really for everyone? It is just the two accounts my admin account and one normal user so we can collaborate on the file while sharing this machine.
    It looks like a .pages "file" is really a bundle in a subdirectory as far as the terminal is concerned. Do I need some fancy Unix recursive chmod command?
    Using OSX 10.9.2 and Pages 5.1.1769
    I would expect this level of frustration from Windows 8.1 as we say good bye to the Windows XP machines at the office, everyone should buy a mac, right?

    Try looking at the permissions of your iTunes folder. I have just tried sharing my library to multiple users on my MBP. This will allow you to all users to buy songs and share them too. I must admit I haven't yet chosen this library for addtional users

  • When sharing project to iTunes I get an error message "missing media"

    Mac Book Pro OS10.9.5  Imovie 10.0.5  Storing library on external hard drive.  Only opening iMovie from the library in the hard drive.  Working fine other than problem below
    Have a project that I tried to share to iTunes and it states there is missing media and if I continue that media will not be included.  How can I find out what is missing? 
    I see a Yellow error triangle symbol in the heading of the title, but is is not a link to anything and does not direct me to anything and I don't see that symbol anywhere else.  Project appears to play just fine.  When I exported to iTunes - the intro of my video is missing.  Which would be logical to think that is the missing media - however, I shared another project at the same time that did not give me the error and did not have the yellow triangle symbol and it too is missing the intro?? 
    I did copy the intro from the problem free project and pasted it into the project with the problem above.  I also copied an pasted a few other sections the same way and those sections are not missing in the iTunes export.
    I exported to file and saved to jump drive and opened from there - no problems - all parts there.
    Maddening.  Anyone have a fix for this.  Help appreciated.  Thanks

    I seem to recall that this may be cause by overloading the USB bus (lack of power to go around).  Shut down your computer.  Reset the iPod shuffle using this procedure.
    http://support.apple.com/kb/HT1655
    Disconnect ALL peripheral USB devices, including keyboard and mouse.  Power up the computer.  If you need your mouse, connect it and launch iTunes.  Connect the iPod shuffle to a direct USB port and try the sync again.  See if there is any difference.

  • Microsoft files Read-only when sharing between two Macs

    I'm trying to share Excel files between my Macbook and my iMac. The files are located on my macbook and I've given read/write permission to the folder containing the files. When I try to open the files on my iMac they open as read only. This happens with Excel, Word and Power Point files.
    How do I configure the file sharing so I can open Microsoft files without them being Read only.
    I'm using Office:mac 2004 and both the Macbook and iMac are running OS X (10.5.6)

    There have been occassions where I have wanted to transfer something from the MBP to the Mini or vice-versa over wi-fi and have encountered problems. I suspect this is because I am using the same user account and they get confused.
    Could you please explain, what kind of problems exactly you encountered? Error messages? Corrupted files? And why do you think the problem is caused by the same user profiles?
    Like markwmsn I have no problem with sharing using the same account name on all my macs. Only since upgrading to Mt. Lion I usually use AirDrop to send single files. That saves the trouble to copy the files to a public folder.
    Do both your macs support Air Drop?
    OS X Lion: Share your files with others near you
    and the requirements:  HT5444
    Regards
    Léonie

  • Sync issues when video project is uploaded to Facebook, but fine elsewhere

    I have posted multiple video clips to Facebook without any issues. I've just finished two large projects, one is 5 minutes, the other is 7. Both are uploaded to my MobileMe gallery and play fine. I can play the finalized movies (m4v files) in iTunes and no issues there either. However, when I upload the mv4 file to Facebook, the audio and video get out of sync. The movie starts playing fine, and then there will be little pops and crackles every so often, and it will be noticeably out of sync about 40 seconds in. (I don't get these same crackles when I play the movie from MobileMe gallery). If I click ahead in the progress bar below, it syncs back up again, only to go out of sync again the longer it plays. The audio gets progressively more and more ahead of the video the longer I let it play. I've tried both exporting the movie as the m4v file and uploading it to FB, and also trying the feature that lets me upload directly to my FB account from iMovie. Same problem each time. I tried both the Medium and Large sized files too. Any help would be much appreciated.

    It sounds like it may have to do with the resolution of the video that you produced in iMovie. Check the resolution of the video and see if they have any requirements for video clip resolution on Facebook and youtube.
    I have uploaded video from iMovie to both in the past and they worked... so it might be the settings you have for the iMovie file.

  • Apache pdf file permission issues

    I have a intranet site that I need to publish some pdf files. I am using a G5, Leopard and apache 2 and PHP. My PHP is just providing a link the pdf documents, but when a user clicks on the link they get a message "You don't have permission to access /PDF/filename.pdf on this server." I don't think there is any apache configuration to change but maybe I am wrong. Does anyone know what this could be?

    Clearly Apache doesn't have permission to serve the files (or the directory it's in).
    Check the permissions on the file. it needs to be readable at least by the user _www. The directory it's in also needs to be readable as well as executable (Apache can't look into a directory that isn't executable).

  • File permission issues after copying from hard drive

    Hi there,
    I've copied my Sites folder (containing lots of HTML, CSS, PHP files) from a Time Machine backup that lives on an external hard drive onto my new MacBook Air running Lion.
    Now, I can't edit any of the files. Here are the errors I'm getting:
    http://d.pr/1jlu
    I've already tried the following system/preference changes:
    Make sure the Time Machine "2 week lock" is disabled
    Make sure the folder (and subfolders) are not locked via "get info"
    Make sure I have read/write permissions for the folder/files
    See:
    http://d.pr/Iiee
    I'm going crazy! Nothing seems to help? What else can I try to get back permission to edit my own files? (Not very familiar with Terminal unfortunately).
    Help please!
    Kai

    Puck84 wrote:
    So my hard disk crashed and when I installed the new one I tried using the setup program to restore my mac settings from my Time Machine backup. But for some reason the process continued to freeze halfway.
    That sounds like something's corrupted on your backups. Try to repair them, per #A5 in Time Machine - Troubleshooting (or use the link in *User Tips* at the top of this forum).
    If that finds and fixes errors, your best bet will be to do a full system restore, per #14 in Time Machine - Frequently Asked Questions (or use the link in *User Tips* at the top of this forum). That will bring everything back, just as it was, permissions and all.
    If that doesn't work, the problem with your HD may have damaged your installation of OSX and/or some of your data, which Time Machine backed-up. So try it again, but choose an earlier backup, from before all the trouble started.

Maybe you are looking for

  • Viewing Tables/data from an old tablespace

    I'm using a database Oracle 11g. I have a DBF file of an old tablespace from a different database that I want to connect to the existing database. I've created a tablespace with REUSE caluse, and it was created successfully SQL> create tablespace TES

  • Any idea what this could be?

    I apologize, as I'm sure this is going to be VERY hard to put into words what is going on. I have a white Macbook. You know how when you open it and it's already on, it makes that little whirring sound? That happened as usual. Then I started going on

  • Itunes no longer loads

    Vista Business 100gb hard drive t7600 @2.33ghz 2gb ram I get the error: The iTunes application could not be opened. The file or directory is corrupted and unreadable. I have partitioned my drive into 2 hard drives, I have run check disk on both and i

  • Customer unit coming in for repair

    Hello All: I am hoping I am posting this in the right forum So I am posting in a few places....I am in desperate need of help...we are at our year end and have an issue that I need to clear up badly.  We are using ECC 6.0 Scenerio When we perform an

  • Read a layer's live 3D Position and Rotation?

    Hi, I'm having a little trouble figuring out how to use AEGP_GetLayerStreamValue to read a layer's 3D position and orientation. That is to say, it actually works as the values are read correctly, but unfortunately I don't get the "live" values while