In-Browser editing - uploading a PDF as download link?

Can a client who has access to a Muse site with in-browser editing enabled logo on and add a link to download a PDF for e.g.?
Also, I presume the client doesn't have the ability to add new pages to the site?
Thanks!

Hi peadarotuathail
We have been trying to get an answer to this for some time.  See the thread here.  Hopefully somebody from Muse will pick up on it soon.
Re: Improved ICE Editor
Simon

Similar Messages

  • "Download Linked File As" Does Not Work

    As others have noted, although Safari is an excellent and fast browser, there is one feature that is quite annoying, namely that all filed download by default to a single folder selected in preferences. Internet Explorer (and Firefox, I believe) by default allows the user to save to any folder selected at the time. In each thread I've read noting this problem, someone answers that the solution in Safari is to right click on the link and select "Download Linked File As" then direct the browser to the folder. The problem is that this does not work as Safari downloads only the link (or something else) but not the linked file. For example, if the linked file is a PDF, under "file type" PDF does not appear, only "All Files" and once the download is complete you have an entry in the desired folder but not the file itself. (This is true even if you append the proper suffix to the file name; no actual file.) Is there a solution here or does it really take several steps to get a downloaded file into the folder of choice?

    I just checked a pdf and "Download linked file as" does give me option to save where I want for pdf, jpg files and others.

  • "Download Linked file as..." loses filename

    I'm having a problem saving gmail attachments.  "Download linked file as..." works fine, but the filename defaults to "0"!  How can I get the original filename in the "save" box?  I just want to save the attachment directly to a drive of my choosing with its original filename.  I know I can open the doc and save from there, but I'd prefer a solution rather than workarounds!
    I'm on Maverick and using Safari to access Gmail.

    I just checked a pdf and "Download linked file as" does give me option to save where I want for pdf, jpg files and others.

  • Please add the option to be able to upload/link new pdfs with the in-browser editing. I have a restaurant client who is constantly updating their menu! Please help so they can do this themselves!

    Please add the option to be able to upload/link new pdfs with the in-browser editing. I have a restaurant client who is constantly updating their menu! Please help so they can do this themselves!

    Thank you so much for your help! I am so relieved. I will have explain how to do this to my client, but a big weight is off my back!
    A long learning process and actually such an easy fix. So glad you responded. Again thank you...

  • Is it possible to change the PDF document on my website through in-browser editing after I've published my website?

    I've uploaded site but want to change PDF asset through in browser editing. Is this possible?

    Hi,
    It is not possible to change the PDF asset using IBE.
    Regards,
    Aish

  • How do I call browser Save As dialog box before downloading pdf files?

    How do I call browser Save As dialog box before downloading pdf files?
    Here's my favorite scenario:
    1. User clicks button
    2. Save As dialog displays
    3. User chooses location
    4. A set of PDF files download to that location OR a single zip file downloads
    Background:
    I want to ensure the user sees that files are being downloaded. I'm delivering content to users who may not be Web savvy.
    Concern:
    1. User has no clue how to find downloaded files or that files have even downloaded.
    2. I'd like to deliver the set as zip files. Not sure if self-opening zip files still exist.
    FYI:
    I'm using jQuery UI buttons. Not sure if that factors into response.

    Just for clarity, I'm not forcing a download. The user will click a button.
    Click a button or click a link, either way you're technically executing a script to force a download.
    I'm assuming that's the php file resident on the server.
    Yes but that's only part of it.  Once the contact form executes, another script is called up which opens the browser's download dialogue.
    Is there a php script for simply calling the Open/Save dialog box?
    Yes. 
    <?php
    /* This short script forces a file download.
       For simplicity, it's intended to be used for a single file.
       You can use multiple copies of this file (with unique names)
       with different variable values to use it with multiple files.
       Use of this script has a side-effect of hiding the location of the
       file on your server.
    // full server path to file to be downloaded (including filename)
    $Path2File = "path/to-file-on-server.zip";
    // the filename
    $theFileName = "name-of-file.zip";
    //the work gets done here
    header ("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header ("Content-Type: application/octet-stream");
    header ("Content-Length: " . filesize($Path2File));
    header ("Content-Disposition: attachment; filename=$theFileName");
    readfile($Path2File);
    ?>
    Name this file zip2download.php.
    Add a link to your HTML page:
    <a href="zip2download.php">Download Zip</a>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • How to upload a PDF file, zip it and download the zipped file?

    Hi Experts,
    I have a requirement to upload a PDF file, convert that to a ZIP file and download it. If anyone has worked on this requirement, can you please guide me on this? Thanks.
    Avi

    Here you go.  Hope it helps.
    REPORT  zrich_0004.
    DATA: lt_data TYPE TABLE OF x255.
    DATA: ls_data LIKE LINE OF lt_data.
    DATA: lv_zip_content TYPE xstring.
    DATA: lv_size  TYPE i.
    DATA: lv_filename TYPE string.
    DATA: lv_path TYPE string.
    DATA: lv_fullpath TYPE string.
    DATA: lt_filetab TYPE TABLE OF file_table.
    DATA: ls_filetab LIKE LINE OF lt_filetab.
    DATA: lv_rc TYPE sy-subrc.
    DATA: lv_content TYPE xstring.
    DATA: lo_zip TYPE REF TO cl_abap_zip.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: p_up TYPE string DEFAULT 'C:\upload.pdf' .
    PARAMETERS: p_down TYPE string DEFAULT 'C:\download.zip' .
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_up.
      REFRESH lt_filetab. CLEAR ls_filetab.
      cl_gui_frontend_services=>file_open_dialog(
          CHANGING
            file_table              = lt_filetab
            rc                      = lv_rc
        EXCEPTIONS
          OTHERS                  = 5 ).
      READ TABLE lt_filetab INTO ls_filetab INDEX 1.
      IF sy-subrc = 0.
        p_up = ls_filetab-filename.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_down.
      CLEAR: lv_filename, lv_path, lv_fullpath.
      cl_gui_frontend_services=>file_save_dialog(
         CHANGING
           filename             = lv_filename
           path                 = lv_path
           fullpath             = lv_fullpath
         EXCEPTIONS
           OTHERS               = 4 ).
      p_down = lv_fullpath.
    START-OF-SELECTION.
      CREATE OBJECT lo_zip.
    * Read the data as a string
      cl_gui_frontend_services=>gui_upload(
        EXPORTING
          filename                = p_up
          filetype                = 'BIN'
        IMPORTING
          filelength = lv_size
        CHANGING
          data_tab                = lt_data
        EXCEPTIONS
          OTHERS                  = 19 ).
    * convert binary to xstring
      CLEAR lv_content .
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = lv_size
        IMPORTING
          buffer       = lv_content
        TABLES
          binary_tab   = lt_data
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
    * Get the file name of the uploaded file
      DATA: lv_upfilename TYPE string.
      DATA: lv_tmp TYPE char1024.
      DATA: lv_tmp_file TYPE char1024.
      lv_tmp = p_up.
      CALL FUNCTION 'STRING_REVERSE'
        EXPORTING
          string  = lv_tmp
          lang    = sy-langu
        IMPORTING
          rstring = lv_tmp.
      SPLIT lv_tmp AT '\' INTO lv_tmp_file lv_tmp.
      CALL FUNCTION 'STRING_REVERSE'
        EXPORTING
          string  = lv_tmp_file
          lang    = sy-langu
        IMPORTING
          rstring = lv_tmp_file.
      lv_upfilename = lv_tmp_file.
    * add to zip file.
      lo_zip->add( name = lv_upfilename content = lv_content ).
      lv_zip_content   = lo_zip->save( ).
    * Conver the xstring content to binary
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer        = lv_zip_content
        IMPORTING
          output_length = lv_size
        TABLES
          binary_tab    = lt_data.
    * download
      cl_gui_frontend_services=>gui_download(
          EXPORTING
            bin_filesize = lv_size
            filename     = p_down
            filetype     = 'BIN'
          CHANGING
            data_tab     = lt_data
          EXCEPTIONS
            OTHERS       = 24 ).
    Regards,
    Rich Heilman

  • How to upload a pdf file and download/open it

    hi experts,
      i want to upload a pdf or word format files to server and let user download or open it when user click a button, how to do that, can you post some sample codes, hunger for your advices and thanks a lot !!

    Hi,
    We have 3 types of uploads n downloads Function Modules.in ABAP.
    1. UPLOAD 
    2.WS_UPLOAD
    3.GUI_UPLOAD
    1.DOWNLOAD
    2.WS_DOWNLOAD
    3.GUI_DOWNLOAD
    Now we r making use of only GUI_UPLOAD n GUI_DOWNLOAD in our programs.
      You can go through this code which will go u an idea about the GUI_Upload n gui_download. This may lead u to understand there function modules in more detail.
    REPORT  zjavacreate message-id zmsgnew.
    ************************Creation of Internal table******************
    DATA: BEGIN OF ti_record OCCURS 200,
    Line(250),
    END OF ti_record.
    DATA: BEGIN OF ti_rec OCCURS 200,
    Line(250),
    END OF ti_rec.
    *****************************Selection screen************************
    selection-screen begin of block b1 with frame .
    Parameters create radiobutton group g1.
    PARAMETERS: JavaName(30) lower case.
    parameters modify radiobutton group g1.
    selection-screen end of block b1.
    ******************Calling the java program creation page**************
    at selection-screen.
      if CREATE = 'X'.
        if javaname is not initial.
          refresh ti_record[].
       concatenate 'public class' javaname into ti_record-line separated by space.
       concatenate ti_record-line '{' into ti_record-line separated by space.
          Append ti_record.
          ti_record-line = 'public static void main(String []args){'.
          Append ti_record.
          ti_record-line ='//enter ur code here'.
          append ti_record.
          ti_record-line ='}'.
          Append ti_record.
          ti_record-line ='}'.
          Append ti_record.
          EDITOR-CALL FOR ti_record .
        else.
          Message e001.
        endif.
    **************************Saving the java program********************
    data tfile type string.
    concatenate 'D:\Programs\' javaname '.java' into tfile.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        FILENAME                        = tfile
        FILETYPE                        = 'ASC'
      TABLES
        DATA_TAB                        =   ti_record.
      endif.
    data new(15).
      if MODIFY = 'X'.
        new = 'ZJAVAMODIFY1'.
        CALL TRANSACTION NEW.
      endif.
    ZJAVAMODIFY:
    REPORT  zjavamodify.
    **********************selection screen.********************
    selection-screen begin of block b1 with frame .
    Parameters compile radiobutton group g1.
    Parameters modify radiobutton group g1.
    Parameters execute radiobutton group g1.
    PARAMETER : FILE(100) lower case.
    selection-screen end of block b1.
    DATA: BEGIN OF TI_RECORD OCCURS 1,
    LINE(200),
    END OF TI_RECORD.
    data: st1(30),st2(30).
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FILE.
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
        DEF_FILENAME           = ' '
          DEF_PATH               = '.'
        MASK                   = ' '
        MODE                   = ' '
        TITLE                  = ' '
        IMPORTING
          FILENAME               = FILE
        RC                     =
    End-of-selection.
    ****************************MODIFY********************************
      if modify = 'X'.
        data: TXT_FILE1 TYPE STRING .
        txt_file1 = file.
    **************FM GUI_UPLOAD
        CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            FILENAME = txt_file1
          TABLES
            DATA_TAB = ti_recORD[].
    **********End FM GUI_UPLOAD
        EDITOR-CALL FOR ti_record .
    **************FM GUI_UPLOAD
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            FILENAME = txt_file1
            FILETYPE = 'ASC'
          TABLES
            DATA_TAB = ti_record.
    **********End FM GUI_UPLOAD
      endif.
    *******************end of modify*******************
    *******************BAT file for compilation n
    execution.****************
      if compile = 'X'.
        DATA: begin of itab_bat_create occurs 0,
           row(500) type c,
          end of itab_bat_create.
        data:comp_join1(250).
        concatenate 'java' 'jCompiler' file into comp_join1
         separated
         by space.
        itab_bat_create-row = 'c:'.
        append itab_bat_create.
        itab_bat_create-row = 'cd Documents and Settings\127740'.
        append itab_bat_create.
        itab_bat_create-row = comp_join1.
        append itab_bat_create.
    ********FM GUI_DOWNLOAD
        data: st type string.
        st = 'C:\Documents and Settings\127740\compile_java.bat'.
        call function 'GUI_DOWNLOAD'
          EXPORTING
            filename         = st
            filetype         = 'ASC'
          TABLES
            data_tab         = itab_bat_create[]
          EXCEPTIONS
            file_open_error  = 1
            file_write_error = 2
            others           = 3.
    ********end FM GUI_DOWNLOAD
    *****FM dvsvas_doc_ws_execute_50
        CALL FUNCTION 'DSVAS_DOC_WS_EXECUTE_50'
          EXPORTING
            PROGRAM = 'C:\Documents and Settings\127740\compile_java.bat'.
    *****end FM dvsvas_doc_ws_execute_50
      endif.
    ***********************end of compile*******************************
    output***********************
      if execute = 'X'.
        data: TXT_FILE3 TYPE STRING .
        split File AT '.java' into: st1 st2  .
        concatenate st1 'error.txt' into TXT_FILE3.
    **************FM GUI_UPLOAD
        CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            FILENAME = txt_file3
          TABLES
            DATA_TAB = ti_recORD[].
    **********End FM GUI_UPLOAD
        if not ti_record[] is initial.
          loop at ti_record.
            write:/ ti_record.
          endloop.
        else.
          data: TXT_FILE4 TYPE STRING .
          split File AT '.java' into: st1 st2  .
          concatenate st1 'output.txt' into TXT_FILE4.
    **************FM GUI_UPLOAD
          CALL FUNCTION 'GUI_UPLOAD'
            EXPORTING
              FILENAME = TXT_FILE4
            TABLES
              DATA_TAB = ti_recORD[].
    **********End FM GUI_UPLOAD
          loop at ti_record.
            write:/ ti_record.
          endloop.
        endif.
      endif.
    ************************end of
    output****************************************

  • Using Upload to FTP feature hangs, rendering In-browser editing feature unusable. Is this a known issue?

    Verified FTP settings with my hosting at Godaddy. Adobe Muse CC (2014) says it can't sign in with the credentials provided. Therefore, I can't use the new In-browser editing feature. Is this a known issue?

    There is a default port,for most of the FTP sverver, is 21(or 20 maybe), then you can access FTP with " ftp.your_domain".
    But for some reasons, the hosting providers change the port to other number, 2100 for example, and the FTP address will be "ftp.your_domain:2100". In this case, you can upload your site to FTP in Muse, but u cann't login your FTP in Adobe® Muse™ CC In-Browser Editing ,because you cann't input the port number (:2100).

  • How to upload an image from my computer using in-browser editing

    When I use in-browser editing to change an image on my Muse site, there is not an option to upload the image "from my computer" like it shows in the documentation.  How can my clients update an image on their Muse sites from their own computers?

    Hello Cheny,
    Please check if the suggestions made here helps resolve the issue: http://forums.adobe.com/message/5687159
    Cheers
    Parikshit

  • I have a PC desktop and an iPad.  I have a large library of PDF documents on my desktop that I would like to sync with my iPad.  I would like to be able to download new PDF's and make edits on existing PDF's on either device and have those edits and new P

    I have a PC desktop and an iPad.  I have a large library of PDF documents on my desktop that I would like to sync with my iPad.  I would like to be able to download new PDF's and make edits on existing PDF's on either device and have those edits and new PDFs synced to the other device.  I would also like to have my library available on the iPad even if there isn't a wifi connection (i.e., not on the cloud).  Is that possible.  I don't mind if I have to purchase a separate product or a product upgrade ect.

    You can't use an external hard drive like you would with a computer.
    You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    When you first connect the USB flash drive, you will only see thumbnails of the pics on the iPad; you have to import the pic file to see the full size. With your large library of pics, you will have to do this repeateably and then delete pics so you don't exceed your memory capacity.
     Cheers, Tom

  • Trouble with browser editing FTP upload

    I have been updating a site to a sub-domain of my personal site while working for client. Yesterday when I tried to walk them through the in-browser editing feature I got an error that wouldn't let me login to edit the site. I followed all of the instructions in the error message (use the "upload via FTP" setting, sign in with the same user) but I still can't log in. Is this a bug with how Muse handles sub-domains, or what else am I doing wrong?

    No, everything uploaded correctly. You can see my site properly  
    -Eric
    On August 23, 2014 at 3:37:13 PM EDT, Zak Williamson (Adobe) <[email protected]> wrote:      Trouble with browser editing FTP upload    reated by Zak Williamson (Adobe) in Help with using Adobe Muse CC - View the full discussion   When using File > Upload to FTP Host... do you receive a warning message that the domain name could not be validated?    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6668001#6668001  Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:   To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.   Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community  For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • The FTP server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the

    When i tried to login in inbrowserediting.adobe.com i see that:
    The FTP server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the same user.
    What does it mean? What is problem?

    Hi,
    I have just created my First website using Muse and Its all been uploaded to my FTP server but i cant access the in browser editing which was the whole reason why i re-done the website for my client using muse
    its saying the following
    "The FTP server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the same user. server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the same user."
    Yet i Can access my website fine "www.calmwood.com.au"
    My ftp server responds to either the IP Address or the DNS Address www.calmwood.com.au
    so i am not understanding how it thinks its different. when its fully referenced
    any help would be appreciated.
    thanks

  • How can upload a pdf so that it can be downloaded off of the website? any help?

    I'm trying to get a pdf to download off of my website.  I've tried downloading it form several browsers, and still can't get it to work.  Always says "download failed"  I thought that i had uploaded it correctly but its obviously not working so i don't know what to try next.

    Yes, www.fab-equp.com<http://www.fab-equp.com> at the bottom of the home page.  “Used Equipment Report”
    Regards,
    Clayton Hughes
    614.377.5469

  • PDFs always download rather than open from a browser

    Since upgrading to Leopard the behavior of opening PDF files has changed and I cannot figure out how to reverse it. Before, opening a PDF in Safari or Firefox would download the file then open it automatically. I can't remember, but it may have given me both a choice to download or to open. Now I just get a download option. So I save it somewhere, then have to open it. Can anyone help me with how I can get back to opening PDFs directly when they are attached in Safari or Firefox? My default for PDFs is already set to Preview.

    I don't use Safari much. I'm using FireFox, now in version 3 Release Candidate 1. It's working perfectly for me.
    I'm using a Add-On named *PDF Download*. It's available thru the FireFox extensions site or here: http://www.pdfdownload.org/
    It's giving me full control of PDF viewing/downloading and lets me change my prefs from a new entry it creates in the Tools menu on FireFox.

Maybe you are looking for