How to upload site created with Dreamweaver via FTP to the iWEB server?

Hi everyone,
I recently created a site on Dreamweaver and want to upload the site, via FTP to the iWEB server. My questions are the following:
1. What is the FTP host address?
2. How do I connect to my website via FTP?
Any help on the following questions will be much appreciated.
Thanks!

Hello Lauretta and welcome to the forum.
You do not connect to iDisk via FTP. iDisk uses WebDAV. Also you do not need to manually upload the published files to iDisk as recommended buy others in this thread. Once the site and server is set up in DW you can publish and upload directly through DW.app Check out this post for more info.

Similar Messages

  • How to upload large file with http via post

    Hi guys,
    Does anybody know how to upload large file (>100 MB) use applet to servlet with http via post method? Thanks in advance.
    Regards,
    Mark.

    Hi SuckRatE
    Thanks for your reply. Could you give me some client side code to upload a large file. I use URL to connect to server. It throws out of memory exception. The part of client code is below:
    // connect to the servlet
    URL theServlet = new URL(servletLocation);
    URLConnection servletConnection = theServlet.openConnection();
    // inform the connection that we will send output and accept input
    servletConnection.setDoInput(true);
    servletConnection.setDoOutput(true);
    // Don't used a cached version of URL connection.
    servletConnection.setUseCaches (false);
    servletConnection.setDefaultUseCaches(false);
    // Specify the content type that we will send text data
    servletConnection.setRequestProperty("Content-Type",
    +"application/octet-stream");
    // send the user string to the servlet.
    OutputStream outStream = servletConnection.getOutputStream();
    FileInputStream filein = new FileInputStream(largeFile);
    //BufferedReader in = new BufferedReader(new InputStreamReader
    +(servletConnection.getInputStream()));
    //System.out.println("tempCurrent = "+in.readLine());
    byte abyte[] = new byte[2048];
    int cnt = 0;
    while((cnt = filein.read(abyte)) > 0)
    outStream.write(abyte, 0, cnt);
    filein.close();
    outStream.flush();
    outStream.close();
    Regards,
    Mark.

  • How do web site created with After Effect differ from that created with dream weaver or Flash?

    As I have some experiance not much in After Effect..I have created my website in After Effect., I  have no  knowledge of Dream weaver or Flash..  My web pages take too much time to open., due to it loads SHOCK WAVE and it take much longer time., were as I see many a website created in other software opens prety fast. As such I want to know whether creating website in After effect is right or not.,   and how to speed up

    You do not create websites in AE, you can create at best animations and that is what you ahev done - produce a fat SWF file. You are really using the wrong tool and should better spend your time on learning HTML and CSS proper and do your website in Dreamweaver or otehr web design tools. And no, Flash is not a website design tool, either.
    Mylenium

  • Can you create a site map with Dreamweaver?

    Greetings,
    Can you create a site map with Dreamweaver?
    Crawkers do not work because many of my pages are not linked.
    Thanks

    I'm not too sure what Crawkers is, but I do not think DW has that capability out of the box.  There are some web based solutions that will scan you site for you and give you a map for search engines.  I choose to go with a commercial option which is pretty good from WebAssist, it's called Surveyor: http://www.webassist.com/dreamweaver-extensions/surveyor/ .

  • How to find report created with Report Painter?

    Hi!
    how to find report created with Report Painter?
    Here is the information that I have:
    Object filename, let's say <b>Y_P01_90000001</b>
    Report painter object <b>INV-102</b>
    The thing is that Library is unknown, thats why I can not find it via GR22...
    Any ideas?
    Will reward,
    Mindaugas

    Check in GRR3 under <b>INV</b> node...

  • Will my web site created with iweb hosted by fatcow work on icloud?

    will my web site created with iweb hosted by fatcow work on icloud?

    No. iCloud does not host websites.

  • Can i import a old site create with leopard in iWeb on Lion?

    can i import a old site create with iWeb on leopard in iWeb on Lion intalled in another Mac?

    Yes you can but there are a couple of things you need to know. See this page under "iWeb and Lion OS X 10.7"...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html

  • How to make slide images with Dreamweaver CS6?

    How to make slide images with Dreamweaver CS6? Please teach me.

    Hello
    in addition to Jon's hint, I'll send you some links to nice sliders (have fun with the different representations ):
    http://sandbox.scriptiny.com/javascript-slideshow/
    http://jquery.malsup.com/cycle/
    http://wowslider.com/best-jquery-slider-crystal-linear-demo.html
    http://www.jcoverflip.com/demo
    http://www.jacksasylum.eu/ContentFlow/
    http://addyosmani.com/blog/jqueryuicoverflow/
    You only need to use the source code to implant these shows there where you want. In my eyes it would be the best that you use first a very new and blank DW file to perform (maybe in LiveView) the one or the other.
    Hans-Günter

  • Editing a site created with Iweb - with another program

    Hello,
    I built a website for a friend and he wants to be able to make small changes on it from time to time and I downloaded a WYSIWYG editor and none of them are compatible with sites created with Iweb...
    Does anyone have any suggestions? He runs a windows machine.
    Thank you so much!!!

    Well, not really. A lot of people have their sites built for them and then, with a little guidance, can change out photos, or do a little editing here and there. So your idea certainly has merit.
    The problem is, iWeb is a unique html generator. It stores everything you create in the application in a single file, (Domain.sites2), and only the application itself can open this file for editing. iWeb doesn't even create the html until you publish the site, either to a folder or to an Apple server. iWeb also changes many things into .png files--including text--believe it or not, in a well intentioned effort to cross platform better with other browser applications. So even simple text editors, which would normally be fine for changing small things in most websites, will struggle.
    Your idea was a good one; it is iWeb that isn't a good candidate for it.
    You must therefore now convince this person to become an Apnewbie, and buy a Mac!
    -Mark

  • IF_IXML : How can i add encoding with value UTF-8 to the document object??

    Hi
    i want to create a xml file with the following content:
    <?xml version="1.0" encoding="UTF-8"?>
    <OpenSearchDescription xmlns="http://...."> 
    </OpenSearchDescription>
    i did this with the if_ixml interface and rendered the content in a file 'D:\usr\sap\IFD\DVEBMGS01\log\TEST_out.xml
    <?xml version="1.0"?>
    <OpenSearchDescription xmlns="http://...."> 
    </OpenSearchDescription>
    BUT the document attribut(?) encoding="UTF-8"?> is missing!
    How can i add encoding with value UTF-8 to the document object?? it should look like:
    <?xml version="1.0" encoding="UTF-8"?>
    *here is my coding.
    TYPE-POOLS: ixml.
    CLASS cl_ixml DEFINITION LOAD.
    DATA: lo_ixml           TYPE REF TO if_ixml,
          lo_streamfactory  TYPE REF TO if_ixml_stream_factory,
          lo_document       TYPE REF TO if_ixml_document,
          lo_parent         TYPE REF TO if_ixml_element,
          lo_ostream        TYPE REF TO if_ixml_ostream,
          lo_renderer       TYPE REF TO if_ixml_renderer,
         lv_rc           TYPE i.
    lo_ixml = cl_ixml=>create( ).
    lo_streamfactory = lo_ixml->create_stream_factory( ).
    lo_document = lo_ixml->create_document( ).
    lo_parent = lo_document->create_simple_element( name   = 'OpenSearchDescription'  "root node
                                                    parent = lo_document ).
    lo_parent->set_attribute_ns( name   =  'xmlns'
                                 value  = 'http://....' ).
    *rausrendern in file
    lo_ostream = lo_streamfactory->create_ostream_uri( system_id = 'D:\usr\sap\IFD\DVEBMGS01\log\TEST_out.xml' ).
    lo_renderer = lo_ixml->create_renderer( ostream  = lo_ostream
                                            document = lo_document ).
    lv_rc = lo_renderer->render( ).
    Thanks for help
    Britta

    Use the following code:
    set an document encoding
      l_encoding = l_ixml->create_encoding( character_set = 'UTF-8'
                                            byte_order = if_ixml_encoding=>co_none ).
      l_success  = l_ostream->set_encoding( encoding = l_encoding ).
    create a xml renderer
      l_renderer = l_ixml->create_renderer( document = l_doc ostream  = l_ostream ).

  • SharePoint site connection with Office Professional Plus 2013 on Terminal Server

    Hi,
    Background info:
    We use multiple Office 365 E3 subscriptions (12 now) and also have an Windows Server 2008 R2 Terminal Server.
    The users may install Office 365 Pro Plus on their local machines and are able to connect to SharePoint online with the Office applications. Now not everyone has a PC so they log in to one of the two Windows Server 2008 R2 Terminal Servers. I do
    however want one big happy family working with SharePoint so I installed Office Professional Plus 2013 and tweaked the Group Policies so that the start up screen and movie arent beeing showed.
    When I log in with my test user on the Terminal Server (who has a E3 subscription) I miss the feature to add a location (to connect to the SharePoint site). I just do not have that feature. When I log in with my domain administrator account who also
    has an E3 subscription, I am able to add a connection.
    There is SO much info on the web about Office 365/Terminal Servers etc but I am not able to find what I was looking for.
    Question:
    What do I need to do so our Domain Users who log in to the Windows Server 2008 R2 Terminal Server are able to open/save files directly to the SharePoint site? How do I add the SharePoint location as shown in the image:

    Hi,
    SharePoint would not exist when Office 2013 initial installed.  After you save a file to a SharePoint library for the first time, you can click
    Save as you do for any file. Please try the following steps:
    1) Add the document (Word file) to a document library on a SharePoint 2013 site
    2) Click on the file within the SharePoint document library.
    3) Click open in Excel
    4) Save the file
    5) Close Excel
    6) Open Excel, select new Blank Workbook, File, Save As, "SharePoint" should now appear.
    Regards,
    George Zhao
    TechNet Community Support

  • Can I upload apps made with xcode Interface Builder to the App Store

    Like my title says Can I upload apps made with xcode Interface Builder to the App Store? I'm currently making an app with the interface builder from xcode and I was wondering if I could upload it like that to the App Store.
    Please help me with this.

    Hi seba,
    In order to be able to submit apps to the App Store, you need these things:
    1. An Apple ID
    2. Join the Mac developer program ($99) https://developer.apple.com/programs/mac/
    Once you've got these, you're free to submit your created applications to the App Store. It should walk you through the process

  • I have a Symphonic 32' HDTV (Dolby Digital Plus). can someone help me figure out how to configure it optimally with my Mac Mini? the display and sound is off. Do I need drivers/software? I'm new to macs.

    I have a Symphonic 32' HDTV (Dolby Digital Plus). can someone help me figure out how to configure it optimally with my Mac Mini? the display and sound is off. Do I need drivers/software? I'm new to macs.

    Hello, since nobdy else has replied...
    Long shot, but...
    Open Audio Midi Setup in Applications>Utilities, see the input & output options & KHz setting there.

  • How to upload a Flat file into sap database if the file is in Appl'n Server

    Hello Sap Experts , Can you tel me
    " How to upload a Flat file into sap database if the file is in Application Server.
    what is Path for that ?
    Plz Tel Me its Urgent
    Thanks for all

    Hi,
    ABAP code for uploading a TAB delimited file into an internal table. See code below for structures.
    *& Report  ZUPLOADTAB                                                  *
    *& Example of Uploading tab delimited file                             *
    REPORT  zuploadtab                    .
    PARAMETERS: p_infile  LIKE rlgrap-filename
                            OBLIGATORY DEFAULT  '/usr/sap/'..
    DATA: ld_file LIKE rlgrap-filename.
    *Internal tabe to store upload data
    TYPES: BEGIN OF t_record,
        name1 like pa0002-VORNA,
        name2 like pa0002-name2,
        age   type i,
        END OF t_record.
    DATA: it_record TYPE STANDARD TABLE OF t_record INITIAL SIZE 0,
          wa_record TYPE t_record.
    *Text version of data table
    TYPES: begin of t_uploadtxt,
      name1(10) type c,
      name2(15) type c,
      age(5)  type c,
    end of t_uploadtxt.
    DATA: wa_uploadtxt TYPE t_uploadtxt.
    *String value to data in initially.
    DATA: wa_string(255) type c.
    constants: con_tab TYPE x VALUE '09'.
    *If you have Unicode check active in program attributes then you will
    *need to declare constants as follows:
    *class cl_abap_char_utilities definition load.
    *constants:
    *    con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB.
    *START-OF-SELECTION
    START-OF-SELECTION.
    ld_file = p_infile.
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc NE 0.
    ELSE.
      DO.
        CLEAR: wa_string, wa_uploadtxt.
        READ DATASET ld_file INTO wa_string.
        IF sy-subrc NE 0.
          EXIT.
        ELSE.
          SPLIT wa_string AT con_tab INTO wa_uploadtxt-name1
                                          wa_uploadtxt-name2
                                          wa_uploadtxt-age.
          MOVE-CORRESPONDING wa_uploadtxt TO wa_upload.
          APPEND wa_upload TO it_record.
        ENDIF.
      ENDDO.
      CLOSE DATASET ld_file.
    ENDIF.
    *END-OF-SELECTION
    END-OF-SELECTION.
    *!! Text data is now contained within the internal table IT_RECORD
    * Display report data for illustration purposes
      loop at it_record into wa_record.
        write:/     sy-vline,
               (10) wa_record-name1, sy-vline,
               (10) wa_record-name2, sy-vline,
               (10) wa_record-age, sy-vline.
      endloop.

  • I own iwork '09 for my Imac I and just bought a Macbook Air, can I have have the suite on both computers, and if so how do I do this with no CD drive on the MBAir

    I own iwork '09 for my Imac I and just bought a Macbook Air, can I have have the suite on both computers, and if so how do I do this with no CD drive on the MBAir

    Welcome to Apple Support Communities
    https://discussions.apple.com/message/18269126#18269126

Maybe you are looking for

  • Save and refresh after entering data inoto table.

    hello guys, im using abap webdynpro now. and im facing a problem with the saving and update " refresh function" I have entry table and some other text input. the thing im doing is to enter data in the filed, attachment, drop down selection. then the

  • Java.security.AccessControlException: access denied (java.util.PropertyPermission weblogic.kernel.allowQueueThrottling read)

              We are in the process of migrating from Weblogic 6.1 SP2 to SP5. We have an applet           that subscribes to a JMS Topic.           The applet is throwing the following exception with SP5:           java.lang.ExceptionInInitializerError:

  • Issues with jdk1.6.0_19 and coldfusion 8

    Due to a security finding, I have a need to upgrade from jdk1.6.0_17 to jdk1.6.0_19. The install is successful, however, when I try to start my content server, Coldfusion8, I get the following java exception: Exception in thread "main" java.lang.NoSu

  • Screen Replaced On Macbook Pro Now No Boot

    I had 2 separate incidents with replacing the lcd on macbook pro's. After replacing the lcd it boots up fine the first time then after a reset or shut down i get the status bar loading with spinning wheel. i know a re-install will fix it and I've tri

  • Can't find Camera Raw\Cache on my C drive

    When I go to Preferences in LR4, it says my Cache is located: C:\Users\Owner\AppData\Local\Adobe\CameraRaw\Cache. When I do a search under my C drive, I can only get as far as Owner, from there I can't find AppDate or the rest. Any idea where else to