How to put files in a server subfolder?

How do you make sure that DW uploads a website into a sub folder. Working in DW CS5.5  I use godaddy and I'm trying to put from DW into a sub folder so that a new website I'm loading doesn't interfere with my primary domain name. It's something you can do with file zilla but I prefer working from DW if I can to accomplish this.
I would really appreciate help with this.Iwork in CS5.5
Thank you.

There are also instances where you are calling for pictures from an "Images" folder (capitol I) and others from an "images" folder (lower case i).
Your server sees Images as different from images, so it gives a 404 File Not Found error for anything referencing the capitol I "Images" folder. You'll need to correct those as well.
EDIT: The incorrect references seem to be mainly located in your css. You also have a stray </div> at the end of your page just before the <script>. Remove the <div> below...
<div id="apDiv1"></div>
</div>
</div>
<script type="text/javascript">
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
</script>
</body>
</html>

Similar Messages

  • How to download file from application server

    Hi Experts,
                  I developed report and execute in background mode. for this i used Open dataset transfer and close dataset . i got the requried output . But in this case user want downloaded file on presentation server so can anyone tell me How to download file from application server?
    i know it is possible through Tcode CG3Y. but i want code in program.

    This code will download a file to your Client package by package, so it will also work for huge files.
    *& Report  ZBI_DOWNLOAD_APPSERVER_FILE
    REPORT  zbi_download_appserver_file.
    PARAMETERS: lv_as_fn TYPE sapb-sappfad
    DEFAULT '/usr/sap/WBP/DVEBMGS00/work/ZBSPL_R01.CSV'.
    PARAMETERS: lv_cl_fn TYPE string
    DEFAULT 'C:\Users\atsvioli\Desktop\Budget Backups\ZBSPL_R01.CSV'.
    START-OF-SELECTION.
      CONSTANTS blocksize TYPE i VALUE 524287.
      CONSTANTS packagesize TYPE i VALUE 8.
      TYPES ty_datablock(blocksize) TYPE x.
      DATA lv_fil TYPE epsf-epsfilnam.
      DATA lv_dir TYPE epsf-epsdirnam.
      DATA ls_data TYPE ty_datablock.
      DATA lt_data TYPE STANDARD TABLE OF ty_datablock.
      DATA lv_block_len TYPE i.
      DATA lv_package_len TYPE i.
      DATA lv_subrc TYPE sy-subrc.
      DATA lv_msgv1 LIKE sy-msgv1.
      DATA lv_processed_so_far TYPE p.
      DATA lv_append TYPE c.
      DATA lv_status TYPE string.
      DATA lv_filesize TYPE p.
      DATA lv_percent TYPE i.
      "Determine size
      SPLIT lv_as_fn AT '/' INTO lv_dir lv_fil.
      CALL FUNCTION 'EPS_GET_FILE_ATTRIBUTES'
        EXPORTING
          file_name      = lv_fil
          dir_name       = lv_dir
        IMPORTING
          file_size_long = lv_filesize.
      "Open the file on application server
      OPEN DATASET lv_as_fn FOR INPUT IN BINARY MODE MESSAGE lv_msgv1.
      IF sy-subrc <> 0.
        MESSAGE e048(cms) WITH lv_as_fn lv_msgv1 RAISING file_read_error.
        EXIT.
      ENDIF.
      lv_processed_so_far = 0.
      DO.
        REFRESH lt_data.
        lv_package_len = 0.
        DO packagesize TIMES.
          CLEAR ls_data.
          CLEAR lv_block_len.
          READ DATASET lv_as_fn INTO ls_data MAXIMUM LENGTH blocksize LENGTH lv_block_len.
          lv_subrc = sy-subrc.
          IF lv_block_len > 0.
            lv_package_len = lv_package_len + lv_block_len.
            APPEND ls_data TO lt_data.
          ENDIF.
          "End of file
          IF lv_subrc <> 0.
            EXIT.
          ENDIF.
        ENDDO.
        IF lv_package_len > 0.
          "Put file to client
          IF lv_processed_so_far = 0.
            lv_append = ' '.
          ELSE.
            lv_append = 'X'.
          ENDIF.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize         = lv_package_len
              filename             = lv_cl_fn
              filetype             = 'BIN'
              append               = lv_append
              show_transfer_status = abap_false
            TABLES
              data_tab             = lt_data.
          lv_processed_so_far = lv_processed_so_far + lv_package_len.
          "Status display
          lv_percent = lv_processed_so_far * 100 / lv_filesize.
          lv_status = |{ lv_percent }% - { lv_processed_so_far } bytes downloaded of { lv_filesize }|.
          CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
            EXPORTING          "percentage = lv_percent - will make it fash
              text = lv_status.
        ENDIF.
        "End of file
        IF lv_subrc <> 0.
          EXIT.
        ENDIF.
      ENDDO.
      "Close the file on application server
      CLOSE DATASET lv_as_fn.

  • How to handle file on application server without coading?

    HI all,
    can anybody tell me How to handle file on application server without coading? Is there any solution?
    Thanks in advance.

    > can anybody tell me How to handle file on application server without coading? Is there any solution?
    what is that you want to handle. what you do if you don't code ...

  • How to delete file on ftp server

    hello,how to delete file on ftp server?thank you!

    I was trying to hint to the fact that you gave no where near enough information.
    Have you already written anything? Such as software that will connect to an FTP server?
    Are you using a 3rd party package?
    Are you doing it by hand, using sockets?

  • How to create file on application server?

    how to create file on application server?

    Hi,
    The following program illustrates the creation of ifle in app server and reading the file from appli server:
    DATA: ITAB LIKE vbakOCCURS 0 WITH HEADER LINE.
    PARAMETERS: P_VBELN LIKE VBAP-VBELN.
    START-OF-SELECTION.
      SELECT *
        FROM VBAP
        INTO TABLE ITAB
    WHERE VBELN = P_VBELN
        PERFORM WRITE_DATA.
        PERFORM READ_DATA.
    *&      Form  WRITE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_DATA.
    OPEN DATASET 'VBAP_DATA' FOR OUTPUT IN TEXT MODE.
    LOOP AT ITAB.
    TRANSFER ITAB TO 'VBAP_DATA'.
    ENDLOOP.
    CLOSE DATASET 'VBAP_DATA'.
    CLEAR: ITAB, ITAB[].
    ENDFORM.                    " WRITE_DATA
    *&      Form  READ_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM READ_DATA.
    OPEN DATASET 'VBAP_DATA' FOR INPUT IN TEXT MODE.
    DO.
    READ DATASET 'VBAP_DATA' INTO ITAB.
    IF SY-SUBRC <> 0.
    EXIT.
    ENDIF.
    APPEND ITAB.
    ENDDO.
    CLOSE DATASET 'VBAP_DATA'.
    LOOP AT ITAB.
    WRITE:/ ITAB-VBELN,
            ITAB-POSNR.
    ENDLOOP.
    ENDFORM.                    " READ_DATA
    If it is helpful rewards points
    Regards
    Pratap.M

  • How to transfer file from application server to presentation server in background?

    Hi Experts,
    How to transfer file from application server to presentation server in background?
    Thanks in advance
    Namita

    Thanks Raman and Challa,
    We want to move file from application server to Shared folder, not on local machine. We checked FM which you guys have provided but those are not able to read file from application server.
    We need this program to run in background so that we can use this in daily process chain.
    Appreciate your inputs on this.
    Thanks,
    Namita

  • How to upload file from Application Server?

    Dear Friends,
    How to upload file from Application Server?
    Plz. with example...
    Regards,
    Dharmesh

    hi,
    check the code for upload from application server.
    tables: kna1.
    types: begin of s_file,
             customer type kna1-kunnr,
             country  type kna1-land1,
             name     type kna1-name1,
             region   type kna1-regio,
           end of s_file.
    *--Internal tables
    data: it_file type s_file occurs 0 with header line.
    *-- Selection screen
    selection-screen: begin of block b1 with frame title text-001.
    parameter: p_file type rlgrap-filename default 'C:/customer.txt'
    obligatory.
    selection-screen: end of block b1.
    *-- At selection screen
    at selection-screen on value-request for p_file.
    perform file_help using p_file.
    *-- Process File
    start-of-selection.
      perform upload_file using p_file.
    *-- write File data to o/p
    end-of-selection.
      perform write_data.
    *&      Form  file_help
    form file_help  using    p_p_file.
      data: l_filepath type ibipparms-path.
      call function 'F4_FILENAME'
    EXPORTING
      PROGRAM_NAME        = SYST-CPROG
      DYNPRO_NUMBER       = SYST-DYNNR
      FIELD_NAME          = ' '
       importing
         file_name           = l_filepath
      p_p_file = l_filepath.
    endform.                    " file_help
    *&      Form  upload_file
    form upload_file  using    p_p_file.
      call function 'WS_UPLOAD'
       exporting
         filename                      = p_p_file
         filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
        tables
          data_tab                      = it_file
       exceptions
         conversion_error              = 1
         file_open_error               = 2
         file_read_error               = 3
         invalid_type                  = 4
         no_batch                      = 5
         unknown_error                 = 6
         invalid_table_width           = 7
         gui_refuse_filetransfer       = 8
         customer_error                = 9
         no_authority                  = 10
         others                        = 11
      if sy-subrc <> 0.
        message i001.
      endif.
    endform.                    " upload_file
    *&      Form  write_data
    form write_data .
      loop at it_file.
        write:/ it_file-customer, it_file-country, it_file-name,
                it_file-region.
      endloop.
      endform.
    regards,
    keerthi.

  • How to copy file to another server from database using FTP in oracle

    How to copy file to another server from database using FTP in oracle.
    Please do the needfaul.

    Billy  Verreynne  wrote:
    BluShadow wrote:
    Not to mention that some FTP servers can return more than one return message per operation whereas others may return one message for the same operation.I had the problem using the LIST command to determine if a file exists on the server. Cannot be determined via the FTP server's return code. Which means parsing and checking the text response from the server to the command. And this vary from server to server.
    But the basics were quite easy to code. The entire package is 500 lines, includes comments and blank lines for formatting, and supports the basic FTP client command set. Not really a complex piece of software to write - but I found that many developers seem to think that writing network socket software is complex. Not really the case...Mine's a big larger, but incorporates functionality similar to what Chris provided in his, such as being able to use SQL to query a remote file using pipelined functions, or functionality to write the results of a query directly to a remove file.
    :)

  • How To Store Files On a Server?

    I am using the Tomcat 5.0.27 web container. I have always store things into the database. Now, I am told to store files (uploaded files) on the server. And, when clients want the files later on, clients can download them.
    Because I have not yet had this concept, I need help and explanation.
    1. How to store files on a server?
    2. Where on the server that files can be stored?
    3. How to let clients download files when they are asked to be viewed?

    Look at the Jakarta Commons FileUpload package.

  • Put files onto Remote Server?

    I am connected to the remote server and have tried repeatedly to put files onto remote server. It either says successful or not transferred and the new page never gets put up. What am I doing wrong? I have put files on my remote server before, but all of a sudden it is not working for me.

    This is what it is saying..
    Started: 7/22/2013 3:21 PM
    Website\5K_run08.html - same - not transferred
    Website\images\nav_home_on.gif - same - not transferred
    Website\images\nav_info_on.gif - same - not transferred
    Website\images\nav_photos_on.gif - same - not transferred
    Website\images\nav_members_on.gif - same - not transferred
    Website\images\nav_minutes_on.gif - same - not transferred
    Website\images\nav_faq_on.gif - same - not transferred
    Website\images\nav_home_off.gif - same - not transferred
    Website\images\nav_info_off.gif - same - not transferred
    Website\images\nav_photos_off.gif - same - not transferred
    Website\images\nav_members_off.gif - same - not transferred
    Website\images\nav_minutes_off.gif - same - not transferred
    Website\images\nav_faq_off.gif - same - not transferred
    Website\images\header.jpg - same - not transferred
    Website\images\button_friend.jpg - same - not transferred
    Website\images\run_button_blue.jpg - same - not transferred
    Website\images\committee_button.jpg - same - not transferred
    Website\images\map_button3_blue.jpg - same - not transferred
    Website\images\links_button_blue.jpg - same - not transferred
    File activity complete.
    Files skipped: 19
    Finished: 7/22/2013 3:21 PM

  • How to stop my Preview button from auto putting files to the server?

    Hi, I just had a tech guy to my house helping me with dreamweaver and when he left my program is working differently.  It did not automatically put files when I previewed them.  Now I can't preview anything without it putting the file to the server.  I created a contact form as a php file.  Could that have anything to do with this change?  I appreciate your assistance!

    Hi, I actually had to turn off the test button to the server to stop it.  In preferences nothing was changed.  I have checked "prompt on put" and "prompt on get".
    It only stops putting my files while I have the testing unchecked.  Thanks for your reply.  I really appreciate it.

  • How to read file from prsntn server in Inbound idoc FM.

    Hi Experts,
    I am new to idoc.
    I have requirment that i need to read a file from presentation and application server and put in inbound idoc FM.Idoc will be processed in batch.
    How can i put selection screen in FM and read the file?or how can i proceed  with the solution?
    Please help..
    Umesh

    Hi Umesh,
    My understanding on your requirement is to read a file from pres. server and pass the data to an IDoc function module. Am I correct?
    If this is the case then you can create a report which picks up the file from pres. server and then read data from the file and pass it to the parameters of the required function module.
    Hope this helps.
    Regards,
    -Sandeep

  • How to edit files directly from server?

    I'm new to dreamweaver (CS5) and I'm really lost when it comes to editing files directly in remote servers.
    When you add a new site, you have to select a Local Site Folder. I dont mind that html editor saves auto backups to my computer, but I really dont want to download files from the server, edit them and upload them back to the server. In my work I always edit files directly over SFTP servers.
    After spending time configuring DW, I can now connect to the remote server, edit a file and save it to the server (I know that really the files are automatically downloaded to my pc and sent back when saved). The only problem with this is that everytime I open a file from server, I get this annoying prompt "Do you wish to overwrite your local copy of [FILE]?"
    How can I disable this for good, or is the dreamweaver just not the right tool to edit files directly from servers?

    Again, if you are doing it the easy way, you don't download files from the server to edit them.
    Always edit local files. Then upload them.
    When you open Dreamweaver, your Files panel should be showing Local View, NOT Remote View. That way you are working with local files.
    The way you're doing it here's what happens:
    1. You doubleclick a file in the Files panel (Remote View)
    2. Dreamweaver connects to your server and MUST download the file and related content (because the software IS NOT installed on the server and you CANNOT edit there)
    3. When the file is downloaded, Dreamweaver asks if you wish to overwrite the local file because when you save it before putting the file back, your OS will not allow two files of the same name in the same location and the file MUST be saved before you can put it back.
    4. You then put the file to the server, overwriting the original file.
    All of that can be avoided by simply opening THE LOCAL FILE and editing it. Then you put it to the server, and overwrite the original with the edited file.
    "What if someone else modifies a file on the server after I saved it, when I open and edit a local file, wont I just replace it when I upload it?"
    If multiple people have access to the same files on the server, you NEED to have collaboration software so that when a change is made it can be saved by EVERYONE who has access to the site. Something like LiveCycle.
    Without that your site will be a mess in no time because six different people (or more) will have six different copies of six different sites locally and they will all be working on it at the same time and it will end up like a Three Stooges movie where Larry, Curly and Moe are all cooking dinner and each adds the same ingredients at different times.

  • How to delete file from application server(Unix)

    Hi All,
    Using the below code downloading a file from application server(Unix) to client machine. I want to delete the file from application server once it is downloaded to client
    We work on Forms 11.1.1.4.0 and Oracle DB 10g. Client machine are Windows 7.
    BEGIN
      IF webutil_file_transfer.AS_to_Client
      (clientFile => Name_In('global.g_file_name')
      ,serverFile => ls_AppServer_Loc)THEN
      message('Data exported Successfully');
      ELSE
       message('File download from Application Server failed');
      END IF;
    EXCEPTION
      WHEN OTHERS THEN
      message('File download failed: '||SUBSTR(sqlerrm,1,200));
      END;
    I have search for solution on OTN. Few suggested to use HOST.
    Can any one help me how to use Host() built_in to delete the file.
    Thanks,
    Maddy

    Can any one help me how to use Host() built_in to delete the file.
    Host('/bin/rm <complete file path>');

  • How to fetch file from app. server without complete filename?

    Hi,
    In my report I have to read data from txt file on application server.
    My file name on App. server conatain system id and date and time stam.
    my file path :- /User/IDD/S10009112007101525
    here,'User'  is dirctory
            'IDD' is folder in directory
            'S100' is system id
             '09112007' is date
             '101525'  is time in hour,miniute,second format.
    From my program I can only pass directory , Folder name,System Id,Date only. I don't have time value in my program.
    So please tell me how to fetch files without having time stamp value from app. server.
    Plz send me exact code.It's urgent.
    Message was edited by:
            Manisha Kadam
    Title was edited by:
            Alvaro Tejada Galindo

    Do you want to return the file to the user on click of button or something?
    Then, use web_show_document with http link which you are speaking about.
    Else download the file to client using Webutil.

Maybe you are looking for

  • Oracle Arrays and getVendorConnection API and Class Cast Exception

    I 've gone through various threads relating to the topic of Oracle Arrays and the getVendorConnecton API call to avoid the class Cast Exception.. i ve used all these but am still facing the problem... I would appreciate it if some one could resolve t

  • GarageBand 4.1.2 released

    About GarageBand 4.1.2 This update improves overall stability and addresses issues with the automation of software instrument parameters, FireWire and USB based audio devices and Magic GarageBand. http://www.apple.com/support/downloads/garageband412.

  • Test web service published returns Error code: InternalError, Http status code: 500

    Further invastigating ther error mentioned here:  https://social.msdn.microsoft.com/Forums/azure/en-US/14afa50f-287d-4158-852a-c9532f9f30eb/test-published-web-service-experiment-error-with-status-code-400?forum=MachineLearning I have made an even sim

  • Distributed destination issue on Web Logic server 8.1

    Hi, I'm using distributed JMS destination (Cluster) of Web Logic server 8.1. I'm using Oracle B2B to talk to the cluster. Oracle B2B is only creating a consumer on one of the managed servers in this cluster. This is resulting in loss of messages when

  • [solved]Every mirror is giving me different errors (I know I'm online)

    I can ping google, and have confirmed that I am online. BTW I am using x86_64 and I just installed it. I am trying to run pacman -Syu but keep getting errors from nethat.com that I am "not logged in" Every other server i have tried says 'core.db.tar.