Upload via Web?

I created an album and enabled Web Sharing. When I share the URL, it doesn't look like there's a way for other users to upload to the album via the web? Am I missing something?

If you enable web sharing and share a GroupPix album to the web, the URL is for viewing only (and download if enabled). This does not make the user a collaborative user who can participate in adding photos. If you want others to participate in taking photos of the event, then you must invite them by emailing them an invitation, or by having them scan a pass from your phone. They will need to become a GroupPix user  and download the app also to do this.
When you invite others by email or barcodescan to join in on a GroupPix album and add photos to an album in GroupPix they become a collaborative user in that album.  They can also add photos they took on their other cameras if they login to Adoberevel.com using their adobeid (email) and password. They can navigate to the library with the same name and then to the album within the library with the same name. If they are in the Album, then they can add photos there. If they are on a mac, they can login to revel using the Revel app instead.
The key here is to add the photos to the album within the library so that other shared users will be able to see the photos. Both have the same name. If you upload to the library but not to the album within the library, then shared users will not see the photos until you also add them to the album. 
Pattie

Similar Messages

  • Which is your favorite sharpen skill for image to print and to upload via web

    Hi
    which is your favorite sharpen skill for photo ?
    which skill do you use for a print or upload via web like flirck ,one exposure
    i like a lot this skill  http://www.photoshopsupport.com/tutorials/sharpen-an-image/photo-sharpening.html
    i know what would you think ... every image has a sharpen skill
    but i would like to know your favorite or more used for print or web upload
    thanks
    cheers

    Personally I'm fond of working at an upsampled resolution then sharpening near the end of my workflow, then downsampling for use as a work product.
    Example:  Work at double (or more) the pixel count you'll need for web publishing, sharpen fairly aggressively, then downsample.  That tends to get you highly detailed looking results that are cleaner of sharpening artifacts.
    As far as just sharpening things, I invented my own set of actions that employ fractals... 
    -Noel

  • Excel Upload via Web dynpro ABAP

    Hi All,
    Could any one please explain how to upload MS Excel file in Web Dynpro ABAP?
    Regards,
    Surya

    Hi Surya,
    Ya Excel upload is not supported some times.
    You can save your excel sheet as "Tab Limited" file. Then you can easily upload the file contents to your WebDynpro.
    Thanks.

  • I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer w

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

  • Unable to upload File to DMS (Document Managemt Sys) Via web Dynpro App

    Hi .
    I want add file to DMS i,e, SAP Document Management System .
    I first tried calling BAPI : BAPI_CREATE_DOCUMENT2 in Report and I was successfull.
    I am trying out same thing via Web Dynpro Application but I am getting error in Return of BAPI .Error is Error while checking in and storing: C:\Documents and Settings\Desktop\Hi.doc.
    I am pasting code I have written on click of Upload .
    method ONACTIONON_UPLOAD .
    implicitly available data objects
    wd_Context type ref to if_wd_context_node.
    wd_This type ref to if_FileUpload.
    DATA: gv_documento TYPE draw-doknr ,
    gv_clase TYPE draw-dokar VALUE 'Z99' ,
    gv_version TYPE draw-dokvr VALUE '00',
    gv_part TYPE draw-doktl VALUE '000',
    gv_descripcion TYPE drat-dktxt VALUE 'Description111',
    gv_return TYPE bapiret2,
    filename(60) type c ,
    lt_documentdata TYPE STANDARD TABLE OF bapi_doc_draw2,
    ls_documentdata LIKE LINE OF lt_documentdata,
    lt_characteristicvalues TYPE STANDARD TABLE OF bapi_characteristic_values ,
    lt_classallocations TYPE STANDARD TABLE OF bapi_class_allocation ,
    lt_documentfiles TYPE STANDARD TABLE OF bapi_doc_files2 ,
    ls_documentfiles LIKE LINE OF lt_documentfiles ,
    lv_content type xstring ,
    size type i.
    DATA lo_el_context TYPE REF TO if_wd_context_element.
    DATA ls_context TYPE wd_this->element_context.
    DATA lv_filename LIKE ls_context-filename.
    get element via lead selection
    lo_el_context = wd_context->get_element( ).
    get single attribute
    lo_el_context->get_attribute(
    EXPORTING
    name = `FILENAME`
    IMPORTING
    value = lv_filename ).
    ls_documentdata-documenttype = 'Z99'.
    ls_documentdata-documentversion = '000'.
    ls_documentdata-documentpart = '00'.
    ls_documentdata-description = 'Test Document Created Parag'.
    ls_documentdata-STATUSEXTERN = 'WR'.
    ls_documentdata-USERNAME = 'I046361'.
    ls_documentdata-WSAPPLICATION1 = 'DOC'.
    ls_documentdata-DOCFILE1 = lv_filename.
    ls_documentdata-DATACARRIER1 = 'DEFAULT'.
    ls_documentfiles-wsapplication = 'DOC'.
    ls_documentfiles-docfile = lv_filename.
    ls_documentfiles-storagecategory = 'DMS_C1_ST'.
    ls_documentfiles-checkedin = 'X'.
    APPEND ls_documentfiles to lt_documentfiles.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
    EXPORTING
    documentdata = ls_documentdata
    pf_http_dest = 'SAPHTTP'
    IMPORTING
    return = gv_return
    TABLES
    documentfiles = lt_documentfiles.
    IF gv_return-type CA 'AE'.
    WRITE gv_return-message.
    ELSE.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    wait = 'X'.
    ENDIF .
    endmethod.
    Now Can anyone tell
    In case of Web Dynpro what Is this code right ?
    Do I need to change value of Parameters I have Set ?
    Do i need to some change as I am trying to Upload file Via WebApplication ?
    Do I have to change data Carrier ?
    Please let me know urgently .Points will be surely Given ...
    Regards ,
    Parag

    Hi ,
    Finally I was successfull in Uploading Docs.It seems I was not getting right Parameters ..anyways correct code is as follows ...
    method ONACTIONON_UPLOAD .
      implicitly available data objects
      wd_Context type ref to if_wd_context_node.
      wd_This    type ref to if_FileUpload.
    DATA:     gv_documento    TYPE draw-doknr            ,
              gv_clase        TYPE draw-dokar   VALUE 'Z99'  ,
              gv_version      TYPE draw-dokvr              VALUE '00',
              gv_part         TYPE draw-doktl VALUE '000',
              gv_descripcion  TYPE drat-dktxt VALUE 'Description111',
             gv_return       TYPE  BAPIRETURN ,
              gv_return       TYPE  BAPIRET2 ,
              gv_ruta         TYPE bapi_doc_files2-docfile VALUE 'C:\BAPI_DMS.doc' ,
              filename(60) type c ,
              lt_documentdata         TYPE STANDARD TABLE OF bapi_doc_draw2,
              ls_documentdata         LIKE LINE OF  lt_documentdata,
              lt_characteristicvalues TYPE STANDARD TABLE OF bapi_characteristic_values ,
              lt_classallocations     TYPE STANDARD TABLE OF bapi_class_allocation ,
              lt_documentfiles        TYPE STANDARD TABLE OF bapi_doc_files2 ,
              ls_documentfiles        LIKE LINE OF lt_documentfiles ,
              lv_content type xstring ,
              size type i ,
              lt_binary              TYPE TABLE OF sdokcntbin ,
              ls_binary              LIKE LINE OF lt_binary ,
              lv_size                TYPE I  ,
              ls_doc_status          TYPE  CVAPI_DOC_STATUS ,
              ls_API_ctrl            TYPE  CVAPI_API_CONTROL ,
              l_MSG                  TYPE  MESSAGES ,
              lt_files type STANDARD TABLE OF CVAPI_DOC_FILE  ,
              lt_drao  TYPE STANDARD TABLE OF DRAO  ,
              ls_drao  LIKE LINE OF lt_drao ,
              lv_documenttype      TYPE  DRAW-DOKAR ,
              lv_documentnumber TYPE  DRAW-DOKNR ,
              lv_documentversion TYPE  DRAW-DOKVR ,
              lv_documentpart  TYPE  DRAW-DOKTL ,
              lv_text          TYPE string .
          FIELD-SYMBOLS <fs> TYPE ANY.
      DATA lo_el_context TYPE REF TO if_wd_context_element.
      DATA ls_context TYPE wd_this->element_context.
      DATA lv_filename LIKE ls_context-filename   .
    get element via lead selection
      lo_el_context = wd_context->get_element(  ).
    get single attribute
      lo_el_context->get_attribute(     EXPORTING       name =  `FILENAME`     IMPORTING       value = lv_filename ).
      lo_el_context->get_attribute(     EXPORTING       name =  `FILECONTENT`     IMPORTING       value = lv_content ).
    CONCATENATE lv_text 'by' sy-uname 'cretaed at ' sy-uzeit INTO lv_text .
      ls_documentdata-documenttype    = 'Z99'.
      ls_documentdata-documentversion = '00'.
      ls_documentdata-documentpart    = '000'.
      ls_documentdata-description     = 'Test Document Created in Web Dynpro ABAP '.
      ls_documentdata-STATUSEXTERN    = 'WR'.
      ls_documentdata-USERNAME        = 'I046361'.
      ls_documentdata-WSAPPLICATION1 = 'DOC'.
      ls_documentdata-DOCFILE1        = lv_filename.
      ls_documentdata-DATACARRIER1    = 'DEFAULT'.
      ls_documentfiles-DOCUMENTTYPE       = 'Z99'.
      ls_documentfiles-WSAPPLICATION      = 'DOC'.
      ls_documentfiles-DOCUMENTVERSION    = '00'.
      ls_documentfiles-DOCUMENTPART       = '000'.
      ls_documentfiles-DOCFILE            = lv_filename.
      ls_documentfiles-description        = 'Test Document Created in Web Dynpro ABAP  '.
      ls_documentfiles-CREATED_BY         = sy-uname.
      ls_documentfiles-CHECKEDIN          = 'X'.
      ls_documentfiles-DOCFILE            = lv_filename.
      APPEND ls_documentfiles  to lt_documentfiles .
        CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
        EXPORTING
            documentdata    = ls_documentdata
            pf_http_dest    = 'SAPHTTPA'
        IMPORTING
            DOCUMENTNUMBER  = lv_DOCUMENTNUMBER
            return          = gv_return
        TABLES
          documentfiles = lt_documentfiles.
    IF gv_return-type CA 'AE'.
      WRITE gv_return-message.
    ELSE.
       CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING     wait = 'X'.
       get message manager
       data lo_api_controller     type ref to if_wd_controller.
       data lo_message_manager    type ref to if_wd_message_manager.
       lo_api_controller ?= wd_This->Wd_Get_Api( ).
       CALL METHOD lo_api_controller->GET_MESSAGE_MANAGER
         RECEIVING
           MESSAGE_MANAGER = lo_message_manager
    CLEAR lv_text .
    CONCATENATE 'Dcoument ' lv_filename 'Successfully stored with Document No. ' lv_DOCUMENTNUMBER INTO lv_text .
       report message
       CALL METHOD lo_message_manager->REPORT_SUCCESS
         EXPORTING
           MESSAGE_TEXT             = lv_text
          PARAMS                   =
          MSG_USER_DATA            =
          IS_PERMANENT             = ABAP_FALSE
          SCOPE_PERMANENT_MSG      = CO_MSG_SCOPE_CONTROLLER
          VIEW                     =
          SHOW_AS_POPUP            =
          CONTROLLER_PERMANENT_MSG =
          MSG_INDEX                =
          CANCEL_NAVIGATION        =
    ENDIF .
    endmethod.

  • Upload data via web

    Hi
    My problem is if i open a document something.doc via web brovser IE 5.0 and i make some changes and i save document, then i try to reopen document and the contents of document is the same. But if i open document via file explorer i can see changes. And if i close IE and start IE again and when i reopen document i see changes. Could anyone say why? and how could i solve this problem.
    thanks by

    Hi Mark,
    We are implementing bi-ip w/support pack 11.  We have a current situation that needs solved:
    1.  Ability to cut and past from excel into IP via the web and excel interface
    2.  Ability to upload data from excel in IP via the web or excel interface.
    You mentioned  in your comments below:  "Also you can directly post data from an Excel file to BI-IP without any programming".  Can you send me more information on this solution?  Also, is there an how-to paper on using the "old" file upload solution from BPS?  We never implemented bps.
    Thanks,
    Dan LaFon
    Fujitsu
    [email protected]

  • Web upload via ImageMixer 3 Launcher

    I have a canon vixia hf m301. I could not  to do web upload via ImageMixer 3 Launcher. Windows XP explorer could see sd card but the software could not see it. What to do next?
    Thank,
    cherngchai

    Hi Cherngchai,
    For the best answer, I recommend calling Pixela for assistance.  Here's their contact information:
    Telephone support: 1-800-458-4029 Monday-Friday 9:00 a.m. - 6:00 p.m. (PST)
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Down-/Upload files via Web Services using a NON-SAP system!?

    Hello,
    is it possible to down-/upload files via web services using a NON-SAP system!?
    Regards,
    Jens

    Hi Jens,
    I am not sure about your requirement here. What i could understand is that you want to check whether service could handle file processing?
    1) Uploading file - You can build a Webservice which has import/export parameters as the file structures and implement the proxy class in such a way that the passed data is written to application server.
    2) Downloading file - Same as uploading file, but the proxy class would have the code to extract data from the application server and pass them as output parameter.
    Functionality of Non SAP system: The system which calls these services should be able to convert the output of proxy data into file in case of downloading the file and it should be able to convert the file data into export parameters in case of uploading file.
    Hope this helps.
    Regards,
    Prasanna

  • Web Gallery - Upload from web page doesn't work

    I've created a web gallery with upload permissions set, no name or password, and none of my friends or relatives can get anything to successfully upload.
    I'm using iPhoto 8 version 7.0.2 (341) to build my web gallery, but uploading for others just doesn't work. They get the dialog to enter their name and email, they can choose images, they get the progress window, then nothing. I've deleted the gallery and rebuilt it, I've renamed it, I've looked in my _gallery folders on iDisk, and so no, ad nauseum, ad infinitum.
    Anybody know what's up with the Gallery?

    I've not used the upload but some have reported that it does not work BUT that uploading via e-mail does work -- give the e-mail route a try as a work around and report the problem to Apple -- iPhoto menu ==> Provide iPhoto Feedback
    Larry Nebel

  • File Upload via CSOM is incrementing Version number by 2.

    Any ideas why a file upload via CSOM is incrementing the version number by 2 instead of one?
    I am using the following code to perform the upload
    List library = clientContext.Web.Lists.GetByTitle(DOCUMENTS_LIST_NAME);
    Folder folder = library.RootFolder;
    FileCreationInformation fci = new FileCreationInformation();
    Byte[] streamArray = new Byte[document.ContentLength];
    document.InputStream.Read(streamArray, 0, document.ContentLength);
    fci.Content = streamArray;
    fci.Url = documentTypeID + "." + document.FileName.Split('.').Last<String>();
    fci.Overwrite = true;
     File fileToUpload = folder.Files.Add(fci);
    clientContext.Load(fileToUpload);
    clientContext.ExecuteQuery();

    It may actually be to do with the metadata that is setting immediately after this code.
    Is there a way of overcoming that and including the file upload and the item update in one version?

  • I am having problems uploading via desktop to CC

    I am unable to upload anything via my desktop to Creative Cloud. Uploading via the web interface from my local machine is working, however, and appears on my desktop.
    I am using a Mac (10.9.4) and on Creative Cloud (1.81.451).
    If you require further information, please let me know.

    Moving the discussion to File Hosting, Syncing, and Collaboration.
    Thanks,
    Atul Saini

  • Can't upload my web page correctly

    We tried to upload are web page but its not loading correctly as laid out? any suggestions?

    What version of iWeb are you using?  How are you uploading to the FTP server:  via iWeb or a 3rd party FTP client.  A little detail on the situation would help immensely.
    OT

  • Attachments via WEB extrange behavoir

    Hi, I have an account under Sun Java Communications Suite 5 that when attaching via web a file of 3MB approx. the attachment page freezes...but with anoter account It does not happens.
    As a delegated administrator what can I check to find a solution?
    Thanks.

    shane_hjorth wrote:
    celord wrote:
    Hi, I have an account under Sun Java Communications Suite 5 that when attaching via web a file of 3MB approx. the attachment page freezes...The page will "freeze" until such time as the attachment has been uploaded. Does this happen if you are connected to the server via a fast LAN connection?
    Are you attaching a file to a calendar event or to an email?
    What interface are you using (UWC/CE or Messenger Express)?I am using UWC
    >
    What browser are you using (IE/Firefox/Safari) and what version?
    IE and Firefox
    but with anoter account It does not happens.Are you using the exact same PC & browser when using the other account to test?
    Yes the same PC & browser
    As a delegated administrator what can I check to find a solution?I'm not sure what you mean by this statement. Are you the administrator for the system running UWC/CE?
    Regards,
    Shane.Thanks Shane

  • Update/insert/delete data from xcelsius to Database via web service

    Hi,
    I need to create dashboard that go function can <b>update/insert/delete</b> data send to <u>Database</u> thru <u>web services</u>, as i know got 2 xcelsius add-on software which support those of function <b>InfoBurst</b> and <b>flynet </b>
    <b>InfoBurst</b>
    http://www.infosol.com/azbocug/minutes/4-Writeback%20to%20a%20Database%20with%20Xcelsius.pdf
    <b>flynet </b>
    http://www.flynetviewer.com/public/community/Blogs/FlynetXcelsiusServerUser/default.aspx
    Except this 2 purchase add-on xcelsius, any other solution ?  
    Maybe need to write some in MSSQL or C# programming which enable insert, update, delete ...etc  ?
    *note: i not use Xcelsius Engage Server , i use Xcelsius Engage only
    thanks,
    regards
    s1
    Edited by: Leong Pui Kee on Mar 1, 2011 6:06 AM

    Hi,
    As of now in Xcelsius/Dashboard Design there is no feature or functionality to insert/update/delete data from database.
    Solution:
    Create a Web service in let’s say C# or Java, which will perform insert/update/delete operation.
    In Xcelsius add Web Service connection and user above web service.
    Xcelsius Web Service connection provides option to pass input values to a Web Service (Input Pane) and get the result (Output values pane).
    We can pass values to be written to the database as a input to Web Service via Web Service connection from Xcelsius and write data to the database.
    Note:
    Performing delete operation from Xcelsius Dashboard could be risky and may delete important data from database. I would not prefer giving delete option/functionality in Xcelsius dashboard.
    Hope this helps!
    Thank you.
    Regards,
    Vinay Mhaske

  • How do I add image upload to web app edit template?

    How do I add image upload to web app edit template. When creating fields I am selecting image from the field type. But the only way to upload and image is when I create the web app item within the admin. The option to upload an image is not available when the user submit web form opens.
    Wont send any of these questions through this email anymore but really needed assistance.
    Thanks,
    Gordon

    On the Details tab of the Web App setup, under Web App Item Options; have you ticked "Allow File Upload" and specified a Default Upload Folder?

Maybe you are looking for

  • Generate xml output file from relational table

    Hi All, I'd like to generate an XML file from a relational table but would like to persist the XSD in Oracle does anyone have a working example? Edited by: houchen on Jun 2, 2009 5:34 AM

  • [Request] UEFI/GOP Update for 760-2GD5/OC

    912-V284-087 N760-2GD5/OC Serial #: 602-V284-45SB1306063243 Current BIOS version: 80.04.BF.00.0A - **http://rghost.net/53265627** Thanks in advance!

  • Watermark Palette Forgets

    I've installed the newest version of the watermark palette into Photoshop CC. The palette works fine, but I have two problems that reocurr after relaunching Photoshop: 1) It always asks, "Would you like to see the help video for Watermark now?" 2) It

  • Applet programming with Netbeans?

    Well I have been wanting to make a 2D side scrolling SIMPLE game with Java, just as a way for me to get my feet wet and keep practicing programming between classes. I have been using this guide: http://www.gamedev.net/reference/programming/features/j

  • What function does the APS service: Web Intelligence Monitoring Service perform?

    When creating an Adaptive Processing Server, one of the services that can be selected is: Web Intelligence Monitoring Service.  What exactly is this service monitoring? Is it monitoring the APS itself when chosen?  Or as the name implies, is it monit