How to set up file sharing for outside users

Hi can anyone help me,
I am pretty new with this.
I want to share files outside of my netwerk with my osx lion server.
I tried ftp but when i log in it says permission denied login failed code 530.
Can anyone help me how to share my files proper or get my ftp to work ?

Hi
http://manuals.info.apple.com/en_US/FileServerAdmin_v10.6.pdf
Bottom of page 40 and continue onto page 41.
HTH?
Tony

Similar Messages

  • How to set default file type for Open dialog

    Dear my friends,
    I am using "At selection-screen ON VALUE-REQUEST FOR filepath" to display open dialog and i want to set default file type for open dialog = *.txt.
    Thank your times !

    Hello,
    U can make use of this code:
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR SP_FILE.
      PERFORM SAVE_DIALOG CHANGING SP_FILE G_F_RC.
    FORM SAVE_DIALOG CHANGING PO_FILE PO_RC.
      DATA: L_VA_BOXTITLE     TYPE STRING,
            L_VA_DEFAULTFILE  TYPE STRING,
            L_VA_DEFAULTNAME  TYPE STRING,
            L_VA_DEFAULTPATH  TYPE STRING,
            L_VA_DEFAULTFULL  TYPE STRING,
            L_VA_FILTERTEXT   TYPE STRING,
            L_VA_CODE         TYPE I.
      CLEAR: PO_RC, G_F_CONF.
      L_VA_BOXTITLE   = TEXT-B01.
      L_VA_FILTERTEXT = TEXT-B02.
      IF PO_FILE IS INITIAL.
        CLEAR L_VA_DEFAULTFILE.
      ELSE.
        L_VA_DEFAULTFILE = PO_FILE.
      ENDIF.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
        EXPORTING
          WINDOW_TITLE            = L_VA_BOXTITLE
          DEFAULT_EXTENSION       = 'TXT'
          DEFAULT_FILE_NAME       = L_VA_DEFAULTFILE
          FILE_FILTER             = L_VA_FILTERTEXT
          INITIAL_DIRECTORY       = 'C:SAPWorkdir'
        CHANGING
          FILENAME                = L_VA_DEFAULTNAME
          PATH                    = L_VA_DEFAULTPATH
          FULLPATH                = L_VA_DEFAULTFULL
          USER_ACTION             = L_VA_CODE
        EXCEPTIONS
          CNTL_ERROR              = 1
          ERROR_NO_GUI            = 2
          OTHERS                  = 3.
      IF SY-SUBRC <> 0.
        PERFORM CHECK_ERRORTYPE(Z48M_MATDATA_UP) CHANGING SY-MSGTY.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        CLEAR PO_FILE.
        EXIT.
      ENDIF.
      IF L_VA_CODE NE 0.
        MESSAGE S818(3F) WITH TEXT-011.
        CLEAR: PO_FILE, PO_RC.
        EXIT.
      ELSE.
        WRITE L_VA_DEFAULTFULL TO PO_FILE.
        G_F_CONF = G_C_XFELD.
      ENDIF.
    ENDFORM.                    " save_dialog
    If useful reward.
    Vasanth

  • How to set a welcome message for a user when he is login

    in my server i am creatin a user "john" in solaris10 box when ever he logins in to the server he should get a message like "welcome john" what is the option to set the message ....
    how can i set a welcome message for a user in solaris
    please guide me the process how i can do
    Thanks in Advance

    THANK YOU FOR YOUR REPLY
    i have checked it out in /etc/motd
    its working fine but the message is coming for every user when they login
    i want message lilke
    if john is looged in
    than message like "welcome john"
    can u please tell me the procedure where to change in /etc/profile and /etc/.login

  • How to set default file path for save

    Hello all,
    I'm currently blocked on the below issue and is hoping to gain your help and insights.
    We have recently upgraded to InDesign CS6. Now when an INDD file created in an older version of INDD is opened in CS6, all the save dialogs would not default to the location of the original INDD file. Though if the same file is opened in the version of InDesign that created it, the save dialog goes to the proper location by default.
    Debugged using our custom plugin as a gate way, and found out that after InDesign CS6 performed the document upgrade/convert, the database for the converted document loses file information. i.e.  IDataBase::GetSysFile() returns nil. I think we can figure out some way to get the original file path. For example, we can intercept "kAfterOpenDocSignalResponderService", and get the original file path of the opened file from IDocumentSignalData. Though I haven't yet able to figure out a safe way to set this file path to the document, so that the save dialogs would by default point at this path.
    Utils<Facade::IWorkgroupFacade>()->InitDocumentAssetManagement(docRef, filePath) seems to do the right thing, but it seems to be quite intruding, and I'm afraid that it is overkilling and will cause bad side effect for the use case I'm looking for.
    So I'm wondering if anyone has any suggestions to achieve this without implementing/overriding the file save dialog.
    Thanks.
    -Jeff

    You should be able to avoid writing your own open-doc trap by using kDocBoss's IOpenedFileInfo to obtain the original file's path. It seems fairly reliable; the only time I've seen it come up empty is for an opened QuarkXPress document.
    I'm afraid I don't know of a sanctioned way to change IDataBase::GetSysFile() without going through the database's SaveAs machinery. Overriding this behavior might only be possible by replacing the regular Save dialog with your own.
    But if InitDocumentAssetManagement() is helping, maybe the workgroup/asset management approach is worth pursuing. Have you tried spying on that call in the debug app? You might be able to isolate and use one of the commands that it's invoking (IAMSPManager::BindAsset() / kSetAssetAttributesCmdBoss?) without all of the side-effects of the higher-level call.

  • How to set default file permissions for applicatio...

    I have the nokia n86 and was wondering if there was any way of setting the file permissions of a program via the phone. To put it in context, i downloaded a program that edits photos but everytime i try to load a picture from my phone it asks me (for every single folder in my phone, not just the photo ones) if the program can open it. I can be there clicking yes all day as i there is a lot of folders and subfolders on the phone. I know sony ericssons had an option where you could select the programs permissions to always ask or never ask but i cant seem to find a similar option on the nokia.
    Does anyone have any ideas?

    Same issue here. Everything I put on the drive is set to Read-only for the group.

  • How to set a common page for all users after loging on?

    hi all,
    Now "My Dashboard" is the default page after logon.
    i want to set a default home page for all users. users can see the home page after loging on.
    how to change the default dashboard from "My Dashboard" to "Home page" for all users?
    thanks,
    dan

    Hi,
    Steps:
    Tried to set default dashboard for all the users.
    1. Created a session init block
    2. Used data source as select '/shared/SH Test/_portal/Test1' from dual
    3. Assigned this value to PORTALPATH session variable
    4. In Presentation services > Administration > My account > Default dashboard should be set to 'default'. Then only the dashboard specified in init block will be displayed otherwise My account will override the init block.
    5. Save the changes made to rpd.
    5. Logout and relogin to see if it is working fine. it is working perfectly fine.
    For details please refer the GSC replication document. But it is for all the users.
    if customer would like to have user/group based home page.
    1. They may need to have 2 separate tables.
    i. Group_path_tab with 2 columns. Group_id, portal_path
    Have group wise portal path for all the groups
    ii. User-group map table
    Group_id, Group_name, user_id
    User should be part of some group.
    2. Then in the init block write the sql should be something like this
    select A.portal_path from Group_path_tab A, User_group_map B
    where B.user_id = :USER
    and B.Group_id = A.Group_id
    SO based on USER session variable, it will try to identify the group and then the portal_path.
    Finally assign this value to PORTALPATH session variable.
    ref:
    http://total-bi.com/2011/01/obiee-11g-change-default-dashboard/
    Thanks!

  • I need to set up 12 iPad 3s to train groups of teachers in one-day workshops.  Any suggestions as to how to set up the iPads for multiple users?

    I have 12 iPad 3s that I want to set up to train multiple groups of teachers on in anticipation of purchasing classroom sets eventually.  I am looking for suggestions in how to set up the iPads to be used by multiple users.

    Managing Multiple iPads/iPods in a School Setting
    http://courses.moodleshare.com/course/view.php?id=162
     Cheers, Tom

  • How to set mozilla firefox homepage for all users in windows 7?

    I want to set same homepage for all users in windows 7.

    You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.
    Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.
    pref("general.config.filename", "mozilla.cfg");
    These functions can be used in the mozilla.cfg file:
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes in current session
    lockPref(); // lock pref, disallow changes
    See:
    *http://kb.mozillazine.org/Locking_preferences
    *http://mike.kaply.com/2012/03/16/customizing-firefox-autoconfig-files/

  • How to set up file sharing in Snow Leopard Server?

    Apple had SLS for just about free when I needed SL, regular SL not yet then, so I grabbed it. I have been using it for quite some time for legacy applications and never needed to move files to that machine over the network. Tonight I needed to and noticed I could only do screen sharing. I went the control panel and there is no settings to do it. Can anyone tell me how to "turn it on". Can it be?
    Any assistance will be greatly appreciated.
    . . . guy

    Open the Server Admin program (in the dock if nowhere else). It's there.

  • How to set up family sharing for 8 people in my family

    My wife and I are both remarried so between us we have 6 children ranging in age from 16 to 8.  We all have iphones/ipods or ipads.  I had set us up with the same itunes and icloud so we could share purchases and more importantly easily use Find My iPhone to locate devices and keep track of them.  Obviously there are some pitfalls with that approach so i recently set up one of them with family sharing with me so i could separate it, unfortunately it tells me i can only do this with a group of 6 people.  Is there a way to increase this limit or another option to maintain everyone on my Find My iPhone app without having them logged into my iCloud?  Thank you
    Jesse

    Family Sharing
    http://www.apple.com/ios/ios8/family-sharing/

  • How to set default file type for screen capture?

    I want to change the default from .jpg2 to .jpg when doing a screen selection
    capture (cmd-shft-4). Where is the place to do this?
    Thank you,
    todd

    Todd,
    OnyX has 10 screen shot options available in Parameters>General>Screen Capture format:
    ;~)

  • How to set the default settings for all users in 11.1.1.3

    I have couple of questions
    1. How can I change the default setting for all the users so that whenever they log in the planning takes them to the Task lists mode. Or is this a one time thing which they need to do individually ?
    2. How can I set the defalut setting for all the users so that they can see the same page when they log into Workspace ?

    For workspace have a read of - http://docs.oracle.com/cd/E12825_01/epm.111/bpmui_admin/assigning_default_preferences.html
    For planning you can't really set it without hacking tables.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to set an alerting substitution for another user as admin?

    Dear experts,
    having the case on of our employees went on vaction without entering a substitution for his alerts.
    How can I as an administrator setup a substitution for the alerts of this user?
    Thanks in advance,
    BR Matthias

    No ideads around?

  • How to set password never expires for a user?

    Hello,
    I can't seem to find in the Administrative Console a place to enable "Password never expires".
    I know that if I edit the USR_PWD_NEVER_EXPIRES field in the OIM DB and put the value '1' it will work.
    However, I'd like to know how and if it is possible to activate this option on a user via OIM.
    Thanks in advance,
    Tomic

    Hi,
    Now I got it.Try this one.
    In FormMetaData.xml you will find.
    <Attribute name="-13" variantType="String" dataLength="1" map="Users.Password Never Expires" />
    Modify it to.
    <Attribute name="-13" variantType="String" dataLength="1" displayComponentType="CheckBox" map="Users.Password Never Expires" />
    Add this in.
    <Form name="3">
    <AttributeReference editable="true" optional="true">-13</AttributeReference>
    I never need this but I hope above will work.
    About disabling the resource I have few suggestion for you.
    1.You can have your password policy consistent across the resources you are integrating in OIM.
    2.Write an entity adapter so that when ever password is expired then can disable all provisioned user.
    3.Alternatively you can also write a schedule task which will check for password expire date and disable the resource.
    4.You will also need to enable the resources when password is changed.You can catch change password event through event handler or entity adapter.
    Please let me know if you have fllow up questions.
    Regards
    Nitesh

  • Can't Enable File Sharing for Guest Users on Time Capsule

    Hey all,
    My roommate has a time capsule that is capable of using a guest network, which my other roommate and I use to connect to the Internet. I have a Mac Mini, Mac Pro, iPhone, iPad, all of which cannot currently communicate with each other due to being on the "guest network."
    I have seen instructions for enabling the "allow guest users to communicate with each other" option, but have loaded the roommate's Airport Utility and it does not have that option. He's running OS X 10.7 and has Airport Utility 6.1. There are options to configure the guest network, but nothing about enabling sharing between computers on the guest network.
    See:
    http://news.goldenweb.it/article.php?l=en&id=27203&group_dir=comp&grouplist=comp .sys.mac&group=comp.sys.mac.comm
    This article seems to suggest the option is not even available anymore, which seems very odd to me. Any ideas? Thank you for your help!

    AirPort Utility 5.6 for Mac OS X Lion

Maybe you are looking for

  • How to disable Xsan in Mac OS X 10.6.8

    Hi Guys, Anyone can tell me how disable Xsan in Mac OS X 10.6.8. Big thanks in advance. Charles

  • 2.93 MBP - Problems before I even opened the box.

    Well. My new MBP arrived about 20 minutes ago. The shipping box was double taped on the top. I peeled the top layer off, and the tape below was slit, so the box was opened and then resealed. Fine... I took out the box that houses the computer, and lo

  • Palm Centro Unlock Button

    The key unlock button on my Palm Centro has ceased to work.  The only way to access the phone is to remove and replace the battery then use it before it goes to the sleep mode.  Has anyone else encountered this problem, and how did you solve it? Than

  • Errors installing virtualbox guest additions from AUR

    After failing to get ose guest additions working in an Arch guest on Ubuntu host by (a) mounting the ISO and (b) installing from pacman, I thought that it would be an idea to use builds from AUR as these would likely to be more customised for Arch gu

  • Want to see English app store reviews again

    In the past you could (only) see English reviews in the iOS app store even if you were in the national (in my case Danish app store). Now it is ONLY possible to se Danish reviews, which are very few (with a population of 6 Mio people). Is it not poss