Can anyone tell me what this string is in the server permissions?

Can anyone tell me what the character sting is third from the top?
This is taken from the server app < select the server < storage < then edit permissions.
I feel like this is something simple, but all of my searches have turned up nothing.
Any insight would be greatly appreciated,
-Tom

I have recently deleted a user.
Can I remove them from the ACL with no effect to the system?
Is there a more efficient way to do that rather then by each individual folder and file?
Thank you,
-Tom

Similar Messages

  • My imac will not load after I enter my password. The only thing I get is the arrow from my mouse on top of a blank white screen.  Can anyone tell me what this is?  I've restarted and turned off several times.  I left it on in this state for 8 hours and

    My imac will not load after I enter my password. The only thing I get is the arrow from my mouse on top of a blank white screen.  Can anyone tell me what this is?  I've restarted and turned off several times.  I left it on in this state for 8 hours hoping it would reload and work.  No luck.

    Hello KCC4ME,
    You may try booting your Mac in Safe Boot, as it can resolve many issues that may prevent a successful login.
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/HT1564
    If a Safe Boot allows you to successfully log in, you may have issues with one or more login itmes (while the following article is labelled as a Mavericks article, it is viable for earlier versions of the Mac OS, as well).
    OS X Mavericks: If you think you have incompatible login items
    http://support.apple.com/kb/PH14201
    Cheers,
    Allen

  • Can anyone tell me what this Time Machine error means? The network backup disk does not support the required AFP features?

    Can anyone tell me what this Time Machine error means? The network backup disk does not support the required AFP features?

    AFP - Apple Filing Protocol
    The Network Attached Storage (NAS) that you are pointing Time Machine at does not have the features needed by Time Machine in order to do its Thing.  Time Machine needs some specific features that are not typically available on generic networked storage devices.
    There are manufactures that support the Mac OS X HFS+ file system formats and implement all the needed AFP protocol packets necessary so that they can be used with Time Machine, but apparently yours does not.
    If you are not using a networked mounted volume for Time Machine, then more information will be needed about your Time Machine setup.

  • Can anyone tell me what this error means?

    Hi All
    The following error was encountered by a printer who has opened a supplied PDF in Acrobat, Saved it as a postscript and then run it through distiller server 6. Can anyone tell me what this error means and what sort of things can cause it?
    %%[ Error: syntaxerror; OffendingCommand: ! ]%%
    Stack:
    /PaintProc
    5.32031
    /YStep
    258.404
    /XStep
    [257.404 5.32031 258.404 5.32031]
    /BBox
    1
    /TilingType
    1
    /PaintType
    1
    /PatternType
    -mark-
    -mark-
    -mark-
    -save-
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%

    Something to do with software from wireless.umass.edu.

  • Can anyone tell me what this javascript is

    The following  script is at the top of  the code for my index page, can anyone tell me what it is for and can I deletye it.
    <script type="text/JavaScript">
        <!--
        function MM_preloadImages() { //v3.0
        var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        function MM_findObj(n, d) { //v4.01
        var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
        if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
        for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
        if(!x && d.getElementById) x=d.getElementById(n); return x;
        function MM_nbGroup(event, grpName) { //v6.0
        var i,img,nbArr,args=MM_nbGroup.arguments;
        if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
        img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
        if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
        nbArr[nbArr.length] = img;
        for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
        if (!img.MM_up) img.MM_up = img.src;
        img.src = img.MM_dn = args[i+1];
        nbArr[nbArr.length] = img;
        } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
        if (!img.MM_up) img.MM_up = img.src;
        img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
        nbArr[nbArr.length] = img;
        } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
        img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
        } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
        for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
        if (!img.MM_up) img.MM_up = img.src;
        img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
        nbArr[nbArr.length] = img;
        //-->
        </script>

    It's standard boilerplate javascript inserted by Dreamweaver when you add behaviors to your page. The block you posted contains three function definitions. The first covers preloading images (function MM_preloadImages), the second is what you need when an event in one place affects something in another (function MM_findOb) place on your page, and the third is for managing a group of checkboxes (function MM_nbGroup) I think!
    To say whether you could delete them or not, we would have to see the rest of your page to see if you are using any behaviors that might require those functions.

  • Can anyone tell me what this Error Code is??

    I just recently started having my computer go to sleep on me every so many seconds out of nowhere and i have tried everything i know of to fix it. I ran the apple hardware test and got this error..
    4mot/1/400000002: CPU-0
    can anybody tell me what this means?????

    Just FYI, a 4MOT error code indicates a problem with one of the fans. My guess is that the CPU fan has failed and the CPU is overheating. A trip to the Apple Store is definitely called for.
    Regards.

  • Struts - Can anyone tell me what this URL is doing??

    Hi
    In a Struts framework, we normally have a class being mapped in the action tag, for example, in the struts-config.xml, we can have the following
    <action-mappings>
    <action
    path="/mapping10"
    type="mypackage.MyMappingAction10"
    name="MappingForm10"
    scope="request"
    validate="false"
    input="/Error.jsp">
    <forward name="success" path="/MappingOut10.jsp" />
    </action>
    </action-mappings>
    that means, if we type something like
    http://...../mapping/maping10.do
    it would go to the MyMappingAction10 execute method and do whatever it's supposed to do.
    But the other day I come across a URL path which looks something like this....
    http://...../mypackage/route.logging.do
    I have been trying to figure out how/why it can get executed because normally, as you can see from the above example, it's only forward10.do (something.do) but in this case, it's route.logging.do (something.something.do) how can I actually find out what program (class) this actually maps to? How does this work??
    I understand that my information might not be sufficient, but I would still appreciate anyone could offer me some pointers to find out what's happening. Thx.
    Sheep

    From what you have given in the code, with struts the only place the requets to /mapping10.do can end up is MappingOut10.jsp.
    You are saying it ends up somewhere else?
    Easiest way to find it would be to do a global search through your code for the text "route.logging.do" It must be specified somewhere.
    It is possible your action is creating an ActionForward on the fly rather than using the one in the action mapping - so check the MyMappingAction10 class execute method to see what it returns, and where it gets that return value from.
    Is there a global actionForward defined for the route.logging maybe?
    Hope this helps,
    evnafets

  • Can anyone tell me what this messsage means and how to fix it?

    I use CS3 to prepare a black and white newsletter for our village onmy MAC and frequently change colour photos to greyscale.  However when printing on my HP Colour Laserjet 2550L the photo shows as a dark green colour.  I've tried everything imaginable, new drivers etc. but still get the green print instead of greyscale. 
    The ColorSync Utility had just appeared on my desktop with the following message:
    Searching for profiles...
    Checking 54 profiles...
    /Library/ColorSync/Profiles/EW-sRGB
       Tag 'desc': Tag size is not correct. Could not be fixed.
    /Library/Application Support/Adobe/Color/Profiles/Recommended/CoatedFOGRA27.icc
       Tag 'desc': Tag size is not correct.
       The file is locked. Could not be fixed.
    Repair done - 0 out of 2 profiles fixed.
    Could this be the problem?  And if so, how do I fix it?
    Don't really want to uninstall and reinstall but expect that's the only answer.  Is it?  Can anyone help?

    The driver is one the Apple Mac store downloaded for me.
    I attach the print summary which might give a clue.  When converting 
    files to grayscale, I use Image>Mode>grayscale.  The other thing is 
    that I can't print in Photoshop, so I do all my editing in Photoshop 
    and print through Indesign.  Printing in Photoshop is just a page of 
    text.
    The other odd thing is that coloured pdf files printed in Adobe 
    Acrobat are just a mass of colour, no recognisable picture but if I 
    change the print option in Acrobat to print in grayscale I get 
    pictures!  I just feel I'm overlooking some checked option, but I've 
    tried to restore to default without success.  I used to use Pagemaker 
    6.0 to do my newsletter on my PC but had to change to Indesign when I 
    changed to MAC and the printer hasn't worked properly since!!!
    Many thanks for your reply.  Maybe someone out there might be able to 
    help.

  • I have recently upgraded to Yosemite and when launching PS I get error message 150:30.  Can anyone tell me what this means?

    I have recently upgraded to Yosemite and when trying to launch PS I get an error message 150:30.  Can anyone help me out with this please?

    Yes. The upgrade broke your CS4 install. You have to reinstall.
    Easiest way to fix this is to download the installer Download CS4 products and have your serial number at the ready.
    Then you will need to download and install the updates for Photoshop, Camera Raw, and Bridge here: Product updates
    There is a Terminal fix, but you have to be familiar with Terminal and running the python license Repair script. You will need the bash shell on your user account. If that makes sense to you, we can try that.
    Gene

  • Can anyone tell me what this is for?

    The link below is a picture. I need to know what the metal thing is that the black and red cords are wrapped around it almost looks like a Ferrite Bead but I'm not sure. The wire goes to the power jack. 
    http://i377.photobucket.com/albums/oo212/kraze1978/repair-damaged-power-jack-14.jpg
    [IMG]http://i377.photobucket.com/albums/oo212/kraze1978/repair-damaged-power-jack-14.jpg[/IMG]
    please help...thank you

    Shutting down only returns a Mac to a certain default running state.
    If the beach balling problem is there, it can and, most probably, will return.
    Sometimes a shut down or restart can reset things, but if this was something that was nagging issue, it may return.
    It's better for a Mac to sleep or hibernate than to constantly shut it down.
    Shutting down and starting up a computer all the time puts more strain on electronic components than just letting the computer sleep and go into a reduced power mode.
    Sometimes Safari ( or any web browser) can be the culprit as Adobe Flash Player, running inside Safari, can eat up a lot of CPU and RAM resources when on a website that needs extensive use of Adobe Flash Player.  Also, animations and pop- up ads in a web browser can have the web browser using up more CPU and RAM cycles, too! Other web browser factors like having a lot of windows or tabs active can increase the amount of RAM that the web browser is using.
    Also, it a good idea not to have too many CPU and RAM intensive apps running concurrently in the background.
    Also, some unknown process can eat up system resources.
    From time to time if the beach balling returns, launch Activity Monitor app inside your Applications>Utilities folder a see if there are any processes that are eating up an excessive amount of RAM or CPU cycles.
    Any antivirus apps are known causes of OS X slowdowns and beach balling as well as a lot of " crapware" like MacKeeper. Keep software like that off of your system.

  • Can anyone tell me what this "Kikin" popup is about?

    I've been getting this pop up for something called "Kikin" that says it's a browser update. If it's an update to my firefox browser, why is it coming in this way? It tells me to click update or upgrade now and that by clicking I agree to their terms and services. Well, I don't want to agree to the terms and services and I want it to just stop. How do I do that?

    I'm afraid that the answers from by TonyE and TheSchnaz were off the mark. I'm getting the kikin popup ad even though I don't have kikin installed. (It doesn't show up in the add-ons menu). Since I don't have kikin installed, I can't uninstall it. This sort of popup ad is the sort of thing that you usually see with trojans. I don't know if kikin is a trojan or not, but I certainly wouldn't trust it.
    Regardless, how do you block the pop up and any other software associated with kikin?

  • Can anyone tell me what this is doing

    hey this is part of some parser code from an earlier java forum post
    http://forum.java.sun.com/thread.jspa?threadID=506162&messageID=2399163#239 9163
    i modified the code slightly to work with my program which involves its use in an applet and to solve logical equations. However i'm still uncertain as to what certain sections of the code are doing
    i know that this code evaluates the variables within the given equation, begins a for loop that does not exit until i = codeSize which is the length of the given String. However i'm not so certain as to how it achieves this. I'd like to know
    private int eval(int variableX, int variableY, int variableZ)
                    try {
                            int top = 0;
                            for (int i = 0; i < codeSize; i++)
                                    if (code[i] >= 0)
                                            stack[top++] = constants[code];
    else if (code[i] >= POWER)
    int y = stack[--top];
    int x = stack[--top];
    int ans = (int)Double.NaN;
    switch (code[i])
    case PLUS: ans = x | y; break;
    case MINUS: ans = x & y; break;
    case TIMES: ans = x & y; break;
    case DIVIDE: ans = x / y; break;
    // case POWER: ans = Math.pow(x,y); break;
    if (Double.isNaN(ans))
    return ans;
    stack[top++] = ans;
    else if (code[i] == VARIABLEX)
    stack[top++] = variableX;
    else if (code[i] == VARIABLEY)
    stack[top++] = variableY;
    else if(code[i] == VARIABLEZ)
    stack[top++] = variableZ;
    /* else {
    double x = stack[--top];
    double ans = Double.NaN;
    int d;
    d = (int) ans;
    switch (code[i])
    case SIN: ans = Math.sin(x); break;
    case COS: ans = Math.cos(x); break;
    case TAN: ans = Math.tan(x); break;
    case COT: ans = Math.cos(x)/Math.sin(x); break;
    case SEC: ans = 1.0/Math.cos(x); break;
    case CSC: ans = 1.0/Math.sin(x); break;
    case ARCSIN: if (Math.abs(x) <= 1.0) ans = Math.asin(x); break;
    case ARCCOS: if (Math.abs(x) <= 1.0) ans = Math.acos(x); break;
    case ARCTAN: ans = Math.atan(x); break;
    case EXP: ans = Math.exp(x); break;
    case LN: if (x > 0.0) ans = Math.log(x); break;
    case LOG2: if (x > 0.0) ans = Math.log(x)/Math.log(2); break;
    case LOG10: if (x > 0.0) ans = Math.log(x)/Math.log(10); break;
    case ABS: ans = Math.abs(x); break;
    case SQRT: if (x >= 0.0) ans = Math.sqrt(x); break;
    case UNARYMINUS: ans = -x; break;
    if (Double.isNaN(ans))
    return d;
    stack[top++] = d;
    catch (Exception e)
    double b = Double.NaN;
    int i = (int)b;
    return i;
    } double d2;
    if (Double.isInfinite(stack[0]))
    d2 = Double.NaN;
    int i2 = (int) d2;
    return i2;
    }else
    return stack[0];
    any help much appreciated
    cheers
    podger

    Well this is a very basic interpreter. What this piece of code does is:
    1) take an opcode from the code array, and retrieves the description for it from the constants array. This description is stored in the stack array.
    stack[top++] = constants[code];
    2) check what opcode it is
    switch (code)
    3) "execute" the opcode with simple java math operators.
    case PLUS:    ans = x | y;  break;
    case MINUS:   ans = x & y;  break;
    case TIMES:   ans = x & y;  break;
    case DIVIDE:  ans = x / y;  break;4) store the result of the opcode in the stack array, after the description of the opcode retrieved in step 1)
    stack[top++] = ans;There is also some sort of error check in there: initially the result of the opcode is "NaN", (not a number). If the opcode passed to this code is not known, the result is not added to the stack according to this piece of code:
    if (Double.isNaN(ans))
    return ans;

  • Can anyone tell me what this alert is about?

    Just received this alert while trying to post.
    My post did not include anything beyond a plain text reply, no pictures, no videos, no links of any sort.
    Anyone have any idea?
    Thanks in advance.

    To be frank, the sooner this one is sunk, the better.   The moderators have already helped in removing one (arguably) related thread which came up, the other, as Steve mentioned, was markedly censored ... and retained only for its value in other directions, I guess.   Whover was the root cause, we don't need reminding of.
    < Off topic >
    Hi Steve, I waited for hours at the castle gate ... and you didn't show.  So I drank both pints. 

  • I have been searching all day, can anyone tell me what this effect is -

    Hi, im trying to find out what effect is used on this text at the start of this intro. What effect is used to make this text form like it is - https://youtu.be/sLkA1tu5IU8
    if anyone can help it will be greatly appreciated!  Thanks.

    Personally, I'd recreate this with a combination of Cinema 4D and After Effects.  Some of the upper, flat text layers could be generated in AE, while the text with Z depth would be built in C4D.
    Here's a few beginner C4D Lite tutorials that might help you on that path, in particular the Wiggle Expression one.
    Cinema 4D Lite Tutorials - angietaylor | angietaylor

  • Can anyone tell me what this error message in console means?

    im having trouble loading pages on my new macbook pro after using migration assistant. I am getting this error in console:
    9/27/10 9:19:55 PM com.apple.WindowServer452 Mon Sep 27 21:19:55 vl951-296.wireless.umass.edu WindowServer452 <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    does anyone know what it means?

    Something to do with software from wireless.umass.edu.

Maybe you are looking for

  • Explorer error "Failed to retrieve the Information Spaces list." from HANA

    I am getting this dumb error "Failed to retrieve the Information Spaces list. // Request timed out" in Explorer's "Manage Spaces" area every time I click on the analytic view listed under my HANA sources of the Explorer. So, my HANA source is visible

  • Create Business Partner from XMl String not a file

    Hi, Is it possible to create a BP from an XML string.  I know about GetBusinessPartnerFromXml(string FileName, int index) but I dont want to save the string in a file before creating a BP from it Hope there's a method to do that

  • Problem in creating attributes

    Hi All, I have a problem adding an attribute to an existing node in an XML document. e.g., Document doc; Element elem; Node n = NodeListObj.item(0); Now i want to add an attribute "type" to this node "n" How do i set the atttrbute of node n ? Could s

  • Reg : infotypes

    hi friends.. can you tell me wat is purpose of hrp1000 and hrp1001 infotypes.. which infotype is used for position creation..?

  • Kernel26tp_plus on X61- madwifi problems

    I had been running the stock kernel with no real problems, wireless or otherwise, on a new lenovo thinkpad x61.  Then, recently tried kernel26tp_plus package from the AUR to try to get suspend to work.  Everything seems to work except that I've now l